@import url("https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,400..850&display=swap");

:root {
  --ink: #071a1a;
  --ink-2: #0b1f2a;
  --paper: #f9fff8;
  --paper-strong: #ffffff;
  --mist: #e8f2ee;
  --muted: #5d716b;
  --soft: rgba(7, 26, 26, 0.08);
  --line: rgba(7, 26, 26, 0.12);
  --vet: #0e9f8a;
  --vet-deep: #0e6b63;
  --pharm: #f5a524;
  --med: #5661f5;
  --coral: #f15d6f;
  --blue: #37a6ff;
  --green: #35d38b;
  --shadow: 0 28px 80px rgba(11, 31, 42, 0.16);
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(249, 255, 248, 0.98) 0%, rgba(238, 248, 245, 0.9) 38%, #f8fbff 72%, #eef7f3 100%),
    linear-gradient(112deg, rgba(14, 107, 99, 0.16), transparent 40%, rgba(86, 97, 245, 0.12) 76%, transparent),
    var(--paper);
  font-family: "Google Sans", "Product Sans", "Roboto Flex", Roboto, Arial, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(7, 26, 26, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 26, 26, 0.055) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.22) 68%, transparent);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(249, 255, 248, 0.9) 0%, rgba(249, 255, 248, 0.7) 35%, rgba(249, 255, 248, 0.16) 72%, rgba(249, 255, 248, 0.08) 100%),
    linear-gradient(180deg, rgba(249, 255, 248, 0.04), rgba(238, 247, 244, 0.72));
}

a {
  color: inherit;
  text-decoration: none;
}

section {
  scroll-margin-top: 108px;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

#stage-3d {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.scene-light {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(132deg, rgba(53, 211, 139, 0.13), transparent 42%),
    linear-gradient(32deg, transparent 55%, rgba(245, 165, 36, 0.12));
  mix-blend-mode: multiply;
}

main,
.site-footer,
.marquee-band {
  position: relative;
  z-index: 2;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  width: min(calc(100% - 32px), var(--max));
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 10px;
  border: 1px solid rgba(7, 26, 26, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 54px rgba(11, 31, 42, 0.1);
  backdrop-filter: blur(24px) saturate(1.2);
  transform: translateX(-50%);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(7, 26, 26, 0.16);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 64px rgba(11, 31, 42, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 16px 36px rgba(14, 107, 99, 0.22);
}

.brand-mark::after {
  position: absolute;
  inset: -40%;
  content: "";
  background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.72) 48%, transparent 58%);
  transform: translateX(-120%) rotate(12deg);
  animation: logo-scan 5.8s cubic-bezier(0.2, 0.9, 0.18, 1) infinite;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: "Google Sans", "Product Sans", "Roboto Flex", Roboto, Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.76rem;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(7, 26, 26, 0.08);
  border-radius: 14px;
  background: rgba(249, 255, 248, 0.82);
}

.nav-links a {
  position: relative;
  overflow: hidden;
  padding: 11px 14px;
  border-radius: 11px;
  color: rgba(7, 26, 26, 0.74);
  font-size: 0.84rem;
  font-weight: 800;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: #ffffff;
  transform: translateY(-1px);
}

.nav-links a::after {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--vet), var(--pharm), var(--med));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms cubic-bezier(0.2, 0.9, 0.18, 1);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-action {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px 0 62px;
  border: 1px solid rgba(7, 26, 26, 0.12);
  border-radius: 999px;
  color: #071a1a;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 44px rgba(14, 107, 99, 0.14);
  font-size: 0.86rem;
  font-weight: 900;
  --orb: #f15d6f;
  --pill-hover: #071a1a;
}

.section-shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.42fr);
  align-items: center;
  gap: clamp(28px, 7vw, 96px);
  padding-top: 112px;
  padding-bottom: 72px;
}

.hero-copy {
  max-width: 790px;
}

.eyebrow,
.card-label,
.panel-kicker,
.contact-label,
.console-cell small,
.proof-strip span,
.focus-grid span {
  margin: 0 0 16px;
  color: var(--vet-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Google Sans", "Product Sans", "Roboto Flex", Roboto, Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(3.1rem, 6.4vw, 6.15rem);
  line-height: 0.92;
  text-wrap: balance;
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(7, 26, 26, 0.76);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-action,
.secondary-action {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
}

.primary-action {
  gap: 12px;
  padding: 0 22px 0 66px;
  color: #ffffff;
  background: linear-gradient(135deg, #0e6b63, #0e9f8a 52%, #2337d7);
  box-shadow: 0 22px 54px rgba(14, 107, 99, 0.28);
  --orb: #f9b54a;
  --pill-hover: #071a1a;
}

.primary-action svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
  position: relative;
  z-index: 2;
  transition:
    transform 420ms cubic-bezier(0.2, 0.9, 0.18, 1),
    color 240ms ease;
}

.secondary-action {
  padding: 0 22px 0 66px;
  border: 1px solid rgba(7, 26, 26, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 36px rgba(11, 31, 42, 0.08);
  --orb: #5661f5;
  --pill-hover: #071a1a;
}

.hover-pill {
  --tx: 0px;
  --ty: 0px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transform: translate3d(var(--tx), var(--ty), 0);
  transition:
    transform 300ms cubic-bezier(0.2, 0.9, 0.18, 1),
    box-shadow 300ms ease,
    border-color 300ms ease,
    color 300ms ease,
    background 300ms ease;
}

.hover-pill::before {
  position: absolute;
  inset: 3px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: inherit;
  pointer-events: none;
  content: "";
  opacity: 0.68;
}

.hover-pill::after {
  position: absolute;
  inset: -45% -35%;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.58) 48%, transparent 62%);
  transform: translateX(-115%) rotate(7deg);
  transition: transform 720ms cubic-bezier(0.2, 0.9, 0.18, 1);
}

.hover-orb {
  position: absolute;
  left: 8px;
  top: 50%;
  z-index: 0;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 38% 32%, rgba(255, 255, 255, 0.88), transparent 0 16%, transparent 17%),
    radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--orb), #ffffff 22%), var(--orb));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.52),
    0 10px 28px color-mix(in srgb, var(--orb), transparent 62%);
  transform: translateY(-50%);
  transition:
    width 560ms cubic-bezier(0.2, 0.9, 0.18, 1),
    transform 560ms cubic-bezier(0.2, 0.9, 0.18, 1),
    box-shadow 560ms ease,
    background 560ms ease;
}

.hover-orb::after {
  position: absolute;
  inset: 13px;
  border-radius: inherit;
  background: rgba(7, 26, 26, 0.82);
  content: "";
  opacity: 0.9;
  transition:
    transform 480ms cubic-bezier(0.2, 0.9, 0.18, 1),
    opacity 320ms ease,
    background 320ms ease;
}

.hover-label {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  height: 1.2em;
  overflow: hidden;
  white-space: nowrap;
}

.hover-label span {
  grid-area: 1 / 1;
  transition:
    transform 440ms cubic-bezier(0.2, 0.9, 0.18, 1),
    opacity 320ms ease;
}

.hover-label span:last-child {
  opacity: 0;
  transform: translateY(120%) skewY(8deg);
}

.hover-pill:hover,
.hover-pill.is-hovering,
.hover-pill:focus-visible {
  color: #ffffff;
  border-color: rgba(7, 26, 26, 0.2);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 22px 62px rgba(11, 31, 42, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.42) inset;
  transform: translate3d(var(--tx), calc(var(--ty) - 2px), 0);
}

.hover-pill:hover::after,
.hover-pill.is-hovering::after,
.hover-pill:focus-visible::after {
  transform: translateX(112%) rotate(7deg);
}

.hover-pill:hover .hover-orb,
.hover-pill.is-hovering .hover-orb,
.hover-pill:focus-visible .hover-orb {
  width: calc(100% - 16px);
  background: linear-gradient(135deg, var(--orb), var(--pill-hover) 72%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.35),
    0 16px 34px color-mix(in srgb, var(--orb), transparent 48%);
}

.hover-pill:hover .hover-orb::after,
.hover-pill.is-hovering .hover-orb::after,
.hover-pill:focus-visible .hover-orb::after {
  opacity: 0;
  transform: scale(0.2);
}

.hover-pill:hover .hover-label span:first-child,
.hover-pill.is-hovering .hover-label span:first-child,
.hover-pill:focus-visible .hover-label span:first-child {
  opacity: 0;
  transform: translateY(-120%) skewY(-8deg);
}

.hover-pill:hover .hover-label span:last-child,
.hover-pill.is-hovering .hover-label span:last-child,
.hover-pill:focus-visible .hover-label span:last-child {
  opacity: 1;
  transform: translateY(0) skewY(0);
}

.hover-pill:hover svg,
.hover-pill.is-hovering svg,
.hover-pill:focus-visible svg {
  transform: translateX(5px) rotate(-10deg);
}

.hero-panel,
.contact-card,
.ops-console,
.system-card,
.focus-grid div {
  border: 1px solid rgba(7, 26, 26, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(1.12);
}

.hero-panel {
  align-self: end;
  display: grid;
  gap: 18px;
  padding: 22px;
}

.hero-panel strong {
  font-family: "Google Sans", "Product Sans", "Roboto Flex", Roboto, Arial, sans-serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.06;
}

.signal-list {
  display: grid;
  gap: 10px;
  padding-top: 4px;
}

.signal-list div {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding-top: 10px;
  border-top: 1px solid rgba(7, 26, 26, 0.1);
}

.signal-list p,
.signal-list strong {
  margin: 0;
  font-size: 0.91rem;
}

.signal-list strong {
  color: rgba(7, 26, 26, 0.56);
  font-size: 0.78rem;
}

.signal-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--vet);
  box-shadow: 0 0 24px currentColor;
}

.signal-dot::after {
  position: absolute;
  inset: -7px;
  border: 1px solid currentColor;
  border-radius: inherit;
  content: "";
  opacity: 0;
  animation: signal-pulse 2.8s ease-out infinite;
}

.signal-dot.vet {
  color: var(--vet);
}

.signal-dot.pharm {
  color: var(--pharm);
  background: var(--pharm);
}

.signal-dot.med {
  color: var(--med);
  background: var(--med);
}

.marquee-band {
  overflow: hidden;
  border-block: 1px solid rgba(7, 26, 26, 0.1);
  background: rgba(7, 26, 26, 0.92);
  color: #f9fff8;
}

.marquee-track {
  width: max-content;
  display: flex;
  gap: 42px;
  padding: 20px 0;
  color: rgba(249, 255, 248, 0.84);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  animation: marquee 26s linear infinite;
}

.systems,
.craft,
.contact,
.vetos-focus {
  padding-block: clamp(92px, 13vw, 172px);
}

.section-heading {
  width: min(850px, 100%);
  margin-bottom: 42px;
}

.section-heading.compact {
  margin-bottom: 30px;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.25rem, 5.7vw, 6.2rem);
  line-height: 0.92;
  text-wrap: balance;
}

.section-heading p:not(.eyebrow),
.contact-copy p,
.craft-copy p,
.focus-copy p {
  color: rgba(7, 26, 26, 0.68);
  font-size: 1.04rem;
  line-height: 1.74;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.system-card {
  min-height: 468px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  overflow: hidden;
  position: relative;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

.system-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 92px rgba(11, 31, 42, 0.2);
}

.system-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.78;
  background-size: 145% 145%;
  animation: card-ambient 9s ease-in-out infinite;
}

.system-card.vet::before {
  background:
    linear-gradient(145deg, rgba(14, 159, 138, 0.28), transparent 48%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.66));
}

.system-card.pharm::before {
  background:
    linear-gradient(145deg, rgba(245, 165, 36, 0.32), transparent 48%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.66));
}

.system-card.med::before {
  background:
    linear-gradient(145deg, rgba(86, 97, 245, 0.28), transparent 48%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.66));
}

.card-index {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border: 1px solid rgba(7, 26, 26, 0.12);
  border-radius: 14px;
  color: rgba(7, 26, 26, 0.68);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.card-label {
  margin-top: 34px;
  margin-bottom: 12px;
  display: block;
}

.system-card h3 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 0.9;
}

.system-card p {
  color: rgba(7, 26, 26, 0.68);
  line-height: 1.65;
}

.system-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.system-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(7, 26, 26, 0.76);
  font-size: 0.95rem;
  font-weight: 700;
}

.system-card li::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.vetos-focus {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 0.72fr);
  align-items: start;
  gap: clamp(28px, 6vw, 70px);
}

.focus-copy {
  max-width: 720px;
}

.focus-grid {
  display: grid;
  gap: 12px;
}

.focus-grid div {
  min-height: 124px;
  display: grid;
  align-content: space-between;
  padding: 18px;
  transition:
    transform 260ms cubic-bezier(0.2, 0.9, 0.18, 1),
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.focus-grid div:hover {
  border-color: rgba(14, 107, 99, 0.2);
  box-shadow: 0 26px 72px rgba(11, 31, 42, 0.14);
  transform: translateY(-4px);
}

.focus-grid strong {
  font-family: "Google Sans", "Product Sans", "Roboto Flex", Roboto, Arial, sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.12;
}

.craft-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 0.78fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: start;
}

.craft-copy {
  max-width: 600px;
}

.craft-metrics {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.craft-metrics div {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(7, 26, 26, 0.12);
}

.craft-metrics strong {
  color: var(--med);
  font-family: "Google Sans", "Product Sans", "Roboto Flex", Roboto, Arial, sans-serif;
}

.craft-metrics span {
  color: rgba(7, 26, 26, 0.82);
  font-weight: 800;
}

.ops-console {
  padding: 15px;
  background: rgba(7, 26, 26, 0.9);
  color: #f9fff8;
}

.console-header {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px 12px;
}

.console-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(249, 255, 248, 0.28);
}

.console-header strong {
  margin-left: auto;
  color: rgba(249, 255, 248, 0.7);
  font-size: 0.8rem;
}

.console-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.console-cell {
  min-height: 132px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(249, 255, 248, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.console-cell.wide {
  grid-column: 1 / -1;
}

.console-cell strong {
  font-family: "Google Sans", "Product Sans", "Roboto Flex", Roboto, Arial, sans-serif;
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  line-height: 0.9;
}

.progress-line {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(249, 255, 248, 0.12);
}

.progress-line span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8fffe1, #f9b54a, #5661f5);
  background-size: 180% 100%;
  animation: progress-flow 3.8s ease-in-out infinite;
}

.timeline p {
  margin: 0;
  color: rgba(249, 255, 248, 0.82);
  line-height: 1.45;
}

.contact {
  min-height: 78svh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.45fr);
  align-items: center;
  gap: clamp(26px, 6vw, 78px);
}

.contact-copy h2 {
  max-width: 780px;
}

.contact-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: rgba(7, 26, 26, 0.92);
  color: #f9fff8;
}

.contact-card a {
  overflow-wrap: anywhere;
  color: #f9b54a;
  font-family: "Google Sans", "Product Sans", "Roboto Flex", Roboto, Arial, sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
}

.contact-card p {
  margin: 0;
  color: rgba(249, 255, 248, 0.68);
  line-height: 1.55;
}

.site-footer {
  width: min(calc(100% - 40px), var(--max));
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-inline: auto;
  border-top: 1px solid rgba(7, 26, 26, 0.12);
  color: rgba(7, 26, 26, 0.58);
  font-size: 0.88rem;
  font-weight: 800;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes logo-scan {
  0%,
  58% {
    transform: translateX(-120%) rotate(12deg);
  }

  78%,
  100% {
    transform: translateX(120%) rotate(12deg);
  }
}

@keyframes signal-pulse {
  0% {
    opacity: 0.44;
    transform: scale(0.62);
  }

  78%,
  100% {
    opacity: 0;
    transform: scale(1.65);
  }
}

@keyframes card-ambient {
  0%,
  100% {
    background-position: 0% 0%;
  }

  50% {
    background-position: 100% 100%;
  }
}

@keyframes progress-flow {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .craft-layout,
  .contact,
  .vetos-focus {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    width: min(100%, 470px);
    justify-self: start;
  }

  .system-grid {
    grid-template-columns: 1fr;
  }

  .system-card {
    min-height: 350px;
  }
}

@media (max-width: 640px) {
  body::after {
    background:
      linear-gradient(180deg, rgba(249, 255, 248, 0.84), rgba(249, 255, 248, 0.34) 42%, rgba(249, 255, 248, 0.78)),
      linear-gradient(90deg, rgba(249, 255, 248, 0.92), rgba(249, 255, 248, 0.54));
  }

  .scene-light {
    opacity: 0.8;
  }

  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), var(--max));
    min-height: 62px;
    padding: 8px;
    border-radius: 16px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .brand-copy small {
    display: none;
  }

  .nav-action {
    min-height: 42px;
    padding: 0 12px 0 54px;
    font-size: 0.78rem;
  }

  .nav-action .hover-orb {
    width: 34px;
    height: 34px;
  }

  .section-shell {
    width: min(calc(100% - 24px), var(--max));
  }

  .hero {
    min-height: 100svh;
    padding-top: 94px;
    padding-bottom: 52px;
  }

  h1 {
    font-size: clamp(3.15rem, 15.8vw, 5.6rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 4.2rem);
  }

  .hero-lede,
  .section-heading p:not(.eyebrow),
  .contact-copy p,
  .craft-copy p,
  .focus-copy p {
    font-size: 0.99rem;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .hero-panel,
  .system-card,
  .contact-card {
    border-radius: 18px;
  }

  .signal-list div {
    grid-template-columns: 12px 1fr;
  }

  .signal-list strong {
    grid-column: 2;
  }

  .systems,
  .craft,
  .contact,
  .vetos-focus {
    padding-block: 82px;
  }

  .system-card {
    min-height: 330px;
    padding: 20px;
  }

  .focus-grid div {
    min-height: 112px;
  }

  .console-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    width: min(calc(100% - 24px), var(--max));
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
