:root {
  --orange: #f56632;
  --orange-dark: #dd4e1d;
  --ink: #26343f;
  --ink-dark: #101820;
  --slate: #5d6972;
  --paper: #f6f5f1;
  --white: #ffffff;
  --line: rgba(38, 52, 63, 0.13);
  --radius: 22px;
  --shadow: 0 24px 70px rgba(19, 28, 35, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
body.intro-active { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 130px 0; }
.noise {
  position: fixed; inset: 0; z-index: 30; pointer-events: none; opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}
.video-intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  background: #030506;
  opacity: 1;
  visibility: visible;
  transition: opacity .8s cubic-bezier(.4,0,.2,1), visibility .8s;
}
.video-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 180px rgba(0,0,0,.72);
}
.video-intro.is-leaving {
  opacity: 0;
  visibility: hidden;
}
.intro-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #030506;
}
.intro-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.45), transparent 22%, transparent 72%, rgba(0,0,0,.58)),
    radial-gradient(circle at center, transparent 35%, rgba(0,0,0,.24) 100%);
}
.intro-brand {
  position: absolute;
  z-index: 3;
  top: max(26px, env(safe-area-inset-top));
  left: max(30px, env(safe-area-inset-left));
  display: flex;
  font: 800 18px/1 "Manrope", sans-serif;
  letter-spacing: -.065em;
  opacity: .82;
}
.intro-brand .brand-code { color: white; }
.intro-controls {
  position: absolute;
  z-index: 4;
  left: max(30px, env(safe-area-inset-left));
  right: max(30px, env(safe-area-inset-right));
  bottom: max(34px, calc(env(safe-area-inset-bottom) + 20px));
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.intro-control {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 30px;
  color: white;
  background: rgba(8,12,15,.36);
  backdrop-filter: blur(14px);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
  transition: border-color .25s, background .25s, transform .25s, opacity .35s;
}
.intro-control:hover {
  border-color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}
.intro-control svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
#intro-sound svg path:first-child { fill: currentColor; stroke: none; }
.intro-skip {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}
.intro-skip.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.intro-progress {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255,255,255,.12);
}
.intro-progress i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--orange);
  box-shadow: 0 0 14px rgba(245,102,50,.75);
  transition: width .12s linear;
}
.cursor-glow {
  position: fixed;
  z-index: 1;
  width: 520px;
  height: 520px;
  left: 0;
  top: 0;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  background: radial-gradient(circle, rgba(245,102,50,.105), rgba(245,102,50,.025) 38%, transparent 70%);
  transition: opacity .4s ease;
  will-change: transform;
}
body.pointer-active .cursor-glow { opacity: 1; }

.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 20; transition: .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { background: rgba(246,245,241,.9); backdrop-filter: blur(18px); border-color: var(--line); }
.nav-wrap { width: min(1280px, calc(100% - 48px)); height: 88px; margin: auto; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; font: 800 22px/1 "Manrope", sans-serif; letter-spacing: -.065em; }
.brand-code { color: var(--ink); }
.brand-vap { color: var(--orange); }
.main-nav { display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 600; }
.main-nav > a:not(.nav-cta) { position: relative; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--orange); transition: width .25s; }
.main-nav > a:hover::after { width: 100%; }
.nav-cta { border: 1px solid var(--ink); border-radius: 30px; padding: 11px 20px; transition: .25s; }
.nav-cta:hover { color: white; background: var(--ink); }
.menu-toggle { display: none; border: 0; background: none; width: 42px; height: 42px; position: relative; }
.menu-toggle span:not(.sr-only) { position: absolute; left: 9px; width: 24px; height: 2px; background: var(--ink); transition: .3s; }
.menu-toggle span:first-child { top: 16px; }
.menu-toggle span:nth-child(2) { top: 24px; }

.hero { min-height: 900px; padding: 175px 0 40px; position: relative; isolation: isolate; overflow: hidden; }
.data-field { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; opacity: .68; pointer-events: none; }
.hero-grid, .contact-grid {
  position: absolute; inset: 0; opacity: .5;
  background-image: linear-gradient(rgba(38,52,63,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(38,52,63,.055) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}
.hero-grid {
  animation: grid-drift 18s linear infinite;
  transform-origin: center;
}
.aurora {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  mix-blend-mode: multiply;
  will-change: transform;
}
.aurora-one {
  width: 560px;
  height: 560px;
  right: -140px;
  top: -100px;
  opacity: .2;
  background: var(--orange);
  animation: aurora-float 13s ease-in-out infinite alternate;
}
.aurora-two {
  width: 480px;
  height: 480px;
  left: 32%;
  bottom: -330px;
  opacity: .09;
  background: #507f9b;
  animation: aurora-float-two 17s ease-in-out infinite alternate;
}
.signal-rings { position: absolute; z-index: -1; width: 590px; height: 590px; right: -240px; top: 45px; pointer-events: none; }
.signal-rings i { position: absolute; inset: 50%; border: 1px solid rgba(245,102,50,.2); border-radius: 50%; animation: signal-wave 5.4s ease-out infinite; }
.signal-rings i:nth-child(2) { animation-delay: 1.8s; }
.signal-rings i:nth-child(3) { animation-delay: 3.6s; }
.orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.orb-one { width: 620px; height: 620px; right: -260px; top: 30px; background: radial-gradient(circle at 40% 45%, rgba(245,102,50,.15), rgba(245,102,50,0) 68%); }
.orb-two { width: 450px; height: 450px; left: -310px; bottom: 10px; background: radial-gradient(circle, rgba(38,52,63,.08), transparent 68%); }
.hero-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 65px; align-items: center; position: relative; z-index: 2; }
.eyebrow { display: flex; align-items: center; gap: 11px; text-transform: uppercase; letter-spacing: .14em; font-size: 11px; font-weight: 700; margin-bottom: 28px; }
.eyebrow span { width: 28px; height: 2px; background: var(--orange); }
h1, h2, h3 { font-family: "Manrope", sans-serif; margin: 0; letter-spacing: -.045em; }
.hero h1 { font-size: clamp(54px, 5vw, 79px); line-height: .99; font-weight: 700; max-width: 650px; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-lead { max-width: 590px; margin: 30px 0 34px; font-size: 18px; line-height: 1.65; color: var(--slate); }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; border-radius: 40px; padding: 15px 23px; font-size: 14px; font-weight: 700; transition: transform .25s, background .25s, box-shadow .25s; }
.button:hover { transform: translateY(-3px); }
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.button-primary { background: var(--orange); color: white; box-shadow: 0 13px 26px rgba(245,102,50,.24); }
.button-primary:hover { background: var(--orange-dark); box-shadow: 0 18px 35px rgba(245,102,50,.32); }
.text-link { font-size: 14px; font-weight: 600; }
.text-link span { color: var(--orange); margin-left: 7px; }
.trust-line { display: flex; align-items: center; gap: 12px; margin-top: 48px; }
.trust-mark { width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--orange); font-size: 11px; font-weight: 800; }
.trust-line p { margin: 0; font-size: 11px; line-height: 1.45; color: var(--slate); }
.trust-line strong { color: var(--ink); font-size: 12px; }

.hero-visual { position: relative; perspective: 1000px; }
.data-shell {
  position: relative;
  background: #17222b; color: white; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; overflow: hidden;
  box-shadow: 0 45px 100px rgba(20,30,38,.28), 0 0 0 1px rgba(245,102,50,.05); transform: rotateY(-3deg) rotateX(1deg);
  transition: transform .16s ease-out, box-shadow .4s ease;
  animation: shell-breathe 5s ease-in-out infinite;
}
.data-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 22%, rgba(255,255,255,.06) 46%, transparent 68%);
  transform: translateX(-120%);
  animation: glass-shine 7s ease-in-out infinite;
}
.shell-scan {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  height: 110px;
  top: -120px;
  pointer-events: none;
  opacity: .28;
  background: linear-gradient(to bottom, transparent, rgba(245,102,50,.18), rgba(245,102,50,.8), transparent);
  mix-blend-mode: screen;
  animation: dashboard-scan 6s linear infinite;
}
.shell-top { height: 42px; border-bottom: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: space-between; padding: 0 16px; font-size: 8px; color: #8d9aa4; letter-spacing: .08em; }
.shell-dots { display: flex; gap: 5px; }.shell-dots i { width: 6px; height: 6px; border-radius: 50%; background: #53616b; }.shell-dots i:first-child { background: var(--orange); }
.live { display: flex; align-items: center; gap: 5px; text-transform: uppercase; }.live i { width: 5px; height: 5px; border-radius: 50%; background: #43d392; box-shadow: 0 0 8px #43d392; animation: live-pulse 1.5s ease-in-out infinite; }
.shell-body { min-height: 470px; display: grid; grid-template-columns: 48px 1fr; }
.mini-nav { border-right: 1px solid rgba(255,255,255,.08); padding: 15px 0; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.mini-logo { width: 25px; height: 25px; border-radius: 7px; display: grid; place-items: center; color: white; background: var(--orange); font-size: 11px; font-weight: 800; margin-bottom: 12px; }
.mini-nav i { width: 13px; height: 13px; border: 1px solid #5b6871; border-radius: 4px; }.mini-nav i.active { background: var(--orange); border-color: var(--orange); box-shadow: 0 0 12px rgba(245,102,50,.4); }
.dashboard { padding: 28px; background: radial-gradient(circle at 90% 5%, rgba(245,102,50,.08), transparent 30%); }
.dash-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 22px; }.dash-heading small { font-size: 7px; letter-spacing: .18em; color: var(--orange); }.dash-heading h2 { font-size: 20px; letter-spacing: -.02em; margin-top: 4px; }.dash-heading > span { font-size: 8px; color: #778791; padding: 7px 10px; border: 1px solid rgba(255,255,255,.09); border-radius: 6px; }
.metric-row { display: grid; grid-template-columns: 1.35fr .9fr; gap: 12px; }
.metric-card, .chart-card, .ring-card { min-height: 130px; padding: 16px; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.035); border-radius: 11px; position: relative; overflow: hidden; }
.metric-card > span, .card-label { display: block; color: #87949d; font-size: 8px; }
.metric-card strong { display: block; font-family: "Manrope"; font-size: 30px; margin: 11px 0 4px; letter-spacing: -.04em; }.metric-card strong small { font-size: 13px; }.metric-card > small { color: #54d89d; font-size: 7px; }
.sparkline { position: absolute; bottom: 0; left: 0; width: 100%; height: 50px; }.sparkline path { fill: none; stroke: var(--orange); stroke-width: 2; vector-effect: non-scaling-stroke; stroke-dasharray: 320; stroke-dashoffset: 320; animation: draw-line 3s .8s ease forwards, line-pulse 3s 4s ease-in-out infinite; }
.progress { height: 4px; border-radius: 4px; margin-top: 19px; background: rgba(255,255,255,.09); overflow: hidden; }.progress i { display: block; height: 100%; background: var(--orange); border-radius: inherit; }
.dash-lower { display: grid; grid-template-columns: 1.35fr .9fr; gap: 12px; margin-top: 12px; }
.chart-card, .ring-card { min-height: 190px; }
.card-label { display: flex; justify-content: space-between; }.card-label b { color: #54d89d; font-size: 8px; }
.bars { height: 112px; display: flex; align-items: end; gap: 8px; padding: 14px 5px 8px; border-bottom: 1px solid rgba(255,255,255,.08); }.bars i { flex: 1; background: #40505b; border-radius: 3px 3px 0 0; transform-origin: bottom; animation: bar-rise 1.1s cubic-bezier(.2,.8,.2,1) both; }.bars i:nth-child(2) { animation-delay: .08s; }.bars i:nth-child(3) { animation-delay: .16s; }.bars i:nth-child(4) { animation-delay: .24s; }.bars i:nth-child(5) { animation-delay: .32s; }.bars i:nth-child(6) { animation-delay: .4s; }.bars i:nth-child(7) { animation-delay: .48s; }.bars i.hot { background: var(--orange); box-shadow: 0 0 18px rgba(245,102,50,.28); }
.months { display: flex; justify-content: space-between; padding-top: 7px; color: #697883; font-size: 6px; }
.ring-card { text-align: center; }.ring { width: 94px; height: 94px; margin: 15px auto 9px; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(var(--orange) 0 89%, #33424d 89%); position: relative; animation: ring-enter 1.4s cubic-bezier(.2,.8,.2,1) both; }.ring::after { content: ""; position: absolute; inset: 8px; background: #1d2a34; border-radius: 50%; }.ring strong { position: relative; z-index: 2; font-size: 18px; }.ring-card > small { color: #71808a; font-size: 7px; }
.float-chip { position: absolute; border-radius: 12px; box-shadow: 0 18px 45px rgba(16,24,32,.18); backdrop-filter: blur(12px); z-index: 3; }
.chip-one { left: -45px; bottom: 42px; display: flex; align-items: center; gap: 10px; padding: 12px 15px; color: var(--ink); background: rgba(255,255,255,.92); font-size: 9px; animation: chip-float 4.5s ease-in-out infinite; }.chip-one i { width: 28px; height: 28px; border-radius: 50%; background: rgba(67,211,146,.13); position: relative; }.chip-one i::after { content: "✓"; color: #25a96e; position: absolute; inset: 0; display: grid; place-items: center; font-weight: 800; }.chip-one span { display: flex; flex-direction: column; }.chip-one small { color: #80909b; margin-bottom: 2px; }
.chip-two { right: -24px; top: 95px; display: flex; align-items: center; gap: 10px; padding: 13px 15px; color: white; background: rgba(245,102,50,.93); animation: chip-float 5.2s .8s ease-in-out infinite reverse; }.chip-two b { font-size: 20px; }.chip-two span { font-size: 7px; line-height: 1.4; text-transform: uppercase; letter-spacing: .08em; }
.hero-foot { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; margin-top: 94px; padding-top: 27px; border-top: 1px solid var(--line); font-size: 11px; color: var(--slate); }.hero-foot > p { font-weight: 600; color: var(--ink); }.ticker { display: flex; align-items: center; gap: 16px; text-transform: uppercase; letter-spacing: .08em; font-size: 9px; }.ticker i { width: 4px; height: 4px; background: var(--orange); border-radius: 50%; }
.ticker-window { width: 650px; overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); }
.ticker { width: max-content; animation: ticker-flow 22s linear infinite; }

.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 80px; margin-bottom: 65px; }
.section-heading h2 { font-size: clamp(40px, 4.4vw, 64px); line-height: 1.06; }
.section-heading > p { max-width: 410px; margin: 0 0 5px; color: var(--slate); font-size: 16px; line-height: 1.7; }
.section-number { display: block; color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: .16em; margin-bottom: 22px; }
.section-number.light { color: #ff8a61; }
.solutions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; align-items: stretch; }
.solution-card { --mx: 50%; --my: 50%; background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; min-height: 410px; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: transform .3s, box-shadow .3s; }
.solution-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0; background: radial-gradient(420px circle at var(--mx) var(--my), rgba(245,102,50,.11), transparent 45%); transition: opacity .3s; }
.solution-card:hover::after { opacity: 1; }
.solution-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.solution-large { grid-row: span 2; min-height: 838px; padding: 38px; background: linear-gradient(145deg, white, #f2f0eb); }
.card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px; }
.icon-box { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 12px; }.icon-box svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; }.icon-box.orange { color: var(--orange); border-color: rgba(245,102,50,.35); }
.product-tag { font-size: 8px; letter-spacing: .13em; font-weight: 800; color: var(--orange); border: 1px solid rgba(245,102,50,.25); border-radius: 20px; padding: 7px 10px; }
.card-index { font-size: 10px; color: #a0a8ad; }
.overline { color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.solution-card h3 { max-width: 500px; margin: 12px 0 17px; font-size: 31px; line-height: 1.15; }
.solution-large h3 { font-size: 43px; }
.solution-card p { max-width: 470px; color: var(--slate); font-size: 14px; line-height: 1.7; margin: 0; }
.feature-list { list-style: none; padding: 0; margin: 30px 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.feature-list li { font-size: 11px; font-weight: 600; display: flex; align-items: center; gap: 7px; }.feature-list li::before { content: "✓"; color: var(--orange); font-weight: 800; }
.campus-preview { position: absolute; left: 38px; right: 38px; bottom: -45px; height: 315px; background: #1c2933; border-radius: 16px 16px 0 0; box-shadow: 0 24px 45px rgba(17,26,33,.25); display: grid; grid-template-columns: 50px 1fr; overflow: hidden; transform: rotate(-1deg); }
.preview-sidebar { border-right: 1px solid rgba(255,255,255,.07); display: flex; flex-direction: column; align-items: center; gap: 24px; padding: 18px 0; }.preview-sidebar b { display: grid; place-items: center; width: 25px; height: 25px; background: var(--orange); border-radius: 7px; color: white; font-size: 10px; }.preview-sidebar i { width: 12px; height: 12px; border: 1px solid #596671; border-radius: 3px; }
.preview-main { padding: 28px; }.preview-main > span { display: block; width: 100px; height: 13px; background: rgba(255,255,255,.13); border-radius: 4px; }.preview-cards { display: flex; gap: 10px; margin: 22px 0; }.preview-cards i { width: 30%; height: 65px; border: 1px solid rgba(255,255,255,.07); background: rgba(255,255,255,.03); border-radius: 8px; }.preview-chart { height: 100px; border: 1px solid rgba(255,255,255,.07); border-radius: 8px; background: linear-gradient(150deg, transparent 47%, rgba(245,102,50,.25) 48%, transparent 50%); }
.card-link { margin-top: auto; padding-top: 30px; display: flex; justify-content: space-between; border-top: 1px solid var(--line); font-size: 12px; font-weight: 700; }.card-link span { color: var(--orange); }
.dark-card { color: white; background: var(--ink-dark); border-color: var(--ink-dark); }.dark-card p { color: #9ba6ad; }.dark-card .card-index { color: #687780; }
.mini-graph { height: 90px; display: flex; gap: 8px; align-items: end; margin-top: auto; }.mini-graph i { flex: 1; height: 45%; border-radius: 3px 3px 0 0; background: #34434e; }.mini-graph i:nth-child(2) { height: 62%; }.mini-graph i:nth-child(3) { height: 50%; }.mini-graph i:nth-child(4) { height: 75%; }.mini-graph i:nth-child(5) { height: 66%; }.mini-graph i:nth-child(6) { height: 88%; }.mini-graph i:nth-child(7) { height: 98%; background: var(--orange); }

.growth { position: relative; color: white; background: var(--ink-dark); overflow: hidden; }
.growth::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 70px 70px; }
.growth-glow { position: absolute; right: -140px; top: -180px; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(245,102,50,.22), transparent 65%); }
.growth-layout { position: relative; display: grid; grid-template-columns: 1fr .9fr; gap: 80px; align-items: center; }
.growth-copy h2 { max-width: 690px; font-size: clamp(43px, 4.8vw, 67px); line-height: 1.05; }
.growth-copy > p { max-width: 590px; color: #a9b2b9; font-size: 16px; line-height: 1.75; margin: 27px 0 38px; }
.growth-points { border-top: 1px solid rgba(255,255,255,.1); margin-bottom: 35px; }.growth-points > div { display: grid; grid-template-columns: 40px 1fr; gap: 8px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.1); }.growth-points b { color: var(--orange); font-size: 9px; }.growth-points span { color: #8e9ba4; font-size: 12px; }.growth-points strong { display: block; color: white; font-size: 14px; margin-bottom: 4px; }
.button-light { color: var(--ink); background: white; }
.orbit-visual { aspect-ratio: 1; position: relative; display: grid; place-items: center; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }.orbit-a { inset: 14%; }.orbit-b { inset: 3%; border-style: dashed; animation: spin 26s linear infinite; }.orbit-c { inset: 27%; border-color: rgba(245,102,50,.3); animation: spin-reverse 18s linear infinite; }
.orbit-core { width: 145px; height: 145px; display: grid; place-content: center; text-align: center; border: 1px solid rgba(245,102,50,.4); border-radius: 50%; background: radial-gradient(circle, rgba(245,102,50,.18), rgba(245,102,50,.02)); box-shadow: 0 0 70px rgba(245,102,50,.18); }.orbit-core span { font-family: "Manrope"; font-size: 32px; font-weight: 800; letter-spacing: -.04em; }.orbit-core small { color: var(--orange); font-size: 7px; letter-spacing: .3em; }
.orbit-node { position: absolute; width: 84px; height: 84px; display: grid; place-content: center; text-align: center; color: var(--ink); background: white; border-radius: 50%; box-shadow: 0 20px 40px rgba(0,0,0,.25); }.orbit-node b { font-size: 17px; }.orbit-node small { color: var(--slate); font-size: 7px; letter-spacing: .12em; }.node-a { top: 3%; left: 21%; }.node-b { right: 0; top: 46%; background: var(--orange); color: white; }.node-b small { color: white; }.node-c { left: 9%; bottom: 10%; }
@keyframes spin { to { transform: rotate(360deg); } } @keyframes spin-reverse { to { transform: rotate(-360deg); } }
@keyframes grid-drift { 0% { background-position: 0 0, 0 0; } 100% { background-position: 52px 52px, 52px 52px; } }
@keyframes aurora-float { to { transform: translate3d(-130px, 105px, 0) scale(1.18); } }
@keyframes aurora-float-two { to { transform: translate3d(120px, -80px, 0) scale(.84); } }
@keyframes signal-wave { 0% { inset: 50%; opacity: .75; } 80%, 100% { inset: 0; opacity: 0; } }
@keyframes shell-breathe { 0%, 100% { box-shadow: 0 45px 100px rgba(20,30,38,.28), 0 0 0 1px rgba(245,102,50,.05); } 50% { box-shadow: 0 52px 115px rgba(20,30,38,.34), 0 0 35px rgba(245,102,50,.09); } }
@keyframes glass-shine { 0%, 62% { transform: translateX(-120%); } 82%, 100% { transform: translateX(120%); } }
@keyframes dashboard-scan { 0% { transform: translateY(0); opacity: 0; } 10% { opacity: .28; } 85% { opacity: .2; } 100% { transform: translateY(620px); opacity: 0; } }
@keyframes live-pulse { 50% { transform: scale(1.7); opacity: .55; box-shadow: 0 0 15px #43d392; } }
@keyframes draw-line { to { stroke-dashoffset: 0; } }
@keyframes line-pulse { 50% { opacity: .55; } }
@keyframes bar-rise { from { transform: scaleY(0); opacity: .1; } }
@keyframes ring-enter { from { transform: scale(.5) rotate(-120deg); opacity: 0; } }
@keyframes chip-float { 50% { transform: translateY(-10px); } }
@keyframes ticker-flow { to { transform: translateX(calc(-50% - 8px)); } }

.section-heading.compact { margin-bottom: 90px; }
.method-line { display: grid; grid-template-columns: repeat(4, 1fr); }
.method-line article { position: relative; padding: 0 28px 0 0; }.method-line article:not(:last-child)::after { content: ""; position: absolute; top: 19px; left: 43px; right: 15px; height: 1px; background: var(--line); }
.method-line span { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; color: var(--orange); background: var(--paper); font-size: 9px; font-weight: 800; position: relative; z-index: 2; }
.method-line article:hover span { color: white; background: var(--orange); border-color: var(--orange); }
.method-line h3 { font-size: 22px; margin: 29px 0 12px; }.method-line p { color: var(--slate); font-size: 13px; line-height: 1.65; margin: 0; }

.proof { padding: 110px 0; background: white; }
.proof-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 110px; align-items: center; }
.proof-statement { position: relative; }.quote-mark { position: absolute; top: -55px; left: -8px; color: rgba(245,102,50,.12); font: 170px/1 Georgia; }.proof-statement p { position: relative; margin: 0; max-width: 650px; font-family: "Manrope"; font-size: clamp(30px, 3vw, 45px); font-weight: 600; line-height: 1.22; letter-spacing: -.04em; }
.proof-facts { border-top: 1px solid var(--line); }.proof-facts > div { display: grid; grid-template-columns: 90px 1fr; gap: 22px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--line); }.proof-facts strong { color: var(--orange); font: 700 27px "Manrope"; }.proof-facts span { color: var(--slate); font-size: 12px; line-height: 1.5; }

.contact { padding-bottom: 90px; }
.contact-card { min-height: 450px; padding: 65px; position: relative; overflow: hidden; border-radius: 28px; color: white; background: var(--ink-dark); display: grid; grid-template-columns: 1.3fr .7fr; gap: 60px; align-items: end; box-shadow: 0 30px 80px rgba(16,24,32,.2); }
.contact-card::after { content: ""; position: absolute; width: 480px; height: 480px; border-radius: 50%; right: -200px; top: -230px; background: radial-gradient(circle, rgba(245,102,50,.35), transparent 68%); }
.contact-grid { opacity: .5; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); }
.contact-copy, .contact-action { position: relative; z-index: 2; }
.contact-copy h2 { max-width: 780px; font-size: clamp(42px, 5vw, 65px); line-height: 1.08; }.contact-copy p { max-width: 610px; color: #9eabb3; font-size: 15px; line-height: 1.7; margin: 26px 0 0; }
.contact-action { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }.button-large { padding: 18px 26px; }.contact-action > a:last-child { color: #9eabb3; font-size: 11px; border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: 3px; }

.site-footer { padding: 40px 0 25px; background: white; }
.footer-top { display: flex; justify-content: space-between; padding-bottom: 45px; }
.footer-brand { width: 190px; }
.footer-brand > div { font: 800 25px/1 "Manrope", sans-serif; letter-spacing: -.065em; }.footer-brand p { color: var(--slate); font-size: 11px; margin: 6px 0 0; }
.footer-links { display: flex; gap: 100px; }.footer-links > div { display: flex; flex-direction: column; gap: 10px; }.footer-links span { color: #9ba4aa; text-transform: uppercase; letter-spacing: .13em; font-size: 8px; font-weight: 800; margin-bottom: 4px; }.footer-links a { font-size: 12px; font-weight: 500; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--line); color: #909ba2; font-size: 10px; }
.creator-credit strong { color: var(--ink); font-weight: 600; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal-delay { transition-delay: .16s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .hero { padding-top: 145px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 790px; }
  .hero-visual { width: min(730px, 95%); margin: 20px auto 0; }
  .growth-layout { gap: 25px; }
  .orbit-visual { transform: scale(.9); }
  .contact-card { grid-template-columns: 1fr; }
  .ticker-window { width: 52vw; }
}

@media (max-width: 780px) {
  .container, .nav-wrap { width: min(100% - 32px, 1180px); }
  .section { padding: 90px 0; }
  .nav-wrap { height: 72px; }
  .brand { font-size: 20px; }
  .menu-toggle { display: block; z-index: 2; }
  .menu-toggle[aria-expanded="true"] span:first-child { top: 20px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { top: 20px; transform: rotate(-45deg); }
  .main-nav { position: fixed; inset: 0; padding: 120px 32px 50px; background: var(--paper); display: flex; flex-direction: column; align-items: flex-start; gap: 25px; font-size: 24px; transform: translateX(100%); transition: transform .35s ease; }
  .main-nav.open { transform: translateX(0); }
  .nav-cta { font-size: 16px; margin-top: 15px; }
  .hero { min-height: auto; padding: 125px 0 35px; }
  .data-field { opacity: .46; }
  .aurora { filter: blur(55px); }
  .aurora-one { width: 340px; height: 340px; right: -190px; top: 30px; opacity: .16; }
  .aurora-two { width: 330px; height: 330px; left: -160px; bottom: 23%; }
  .signal-rings { width: 330px; height: 330px; right: -210px; top: 190px; }
  .hero-layout { gap: 45px; }
  .hero h1 { font-size: clamp(48px, 14vw, 70px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-visual { width: 100%; }
  .data-shell { transform: none; }
  .dashboard { padding: 16px; }
  .shell-body { min-height: 390px; grid-template-columns: 38px 1fr; }
  .dash-lower { grid-template-columns: 1fr; }
  .ring-card { display: none; }
  .chip-one { left: -8px; bottom: -24px; }
  .chip-two { right: -7px; top: 68px; }
  .hero-foot { display: none; }
  .section-heading { display: block; margin-bottom: 45px; }
  .section-heading > p { margin-top: 25px; }
  .solutions-grid { grid-template-columns: 1fr; }
  .solution-large { grid-row: auto; min-height: 750px; }
  .solution-card { min-height: 380px; padding: 28px; }
  .solution-large h3 { font-size: 35px; }
  .campus-preview { left: 25px; right: 25px; }
  .growth-layout { grid-template-columns: 1fr; }
  .orbit-visual { width: min(500px, 100%); margin: 35px auto 0; transform: none; }
  .method-line { grid-template-columns: 1fr 1fr; gap: 50px 15px; }
  .method-line article:nth-child(2)::after { display: none; }
  .proof-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-card { width: min(100% - 24px, 1180px); padding: 38px 28px; min-height: 590px; }
  .footer-top { gap: 40px; }
  .footer-links { gap: 35px; }
}

@media (max-width: 520px) {
  .intro-video { object-fit: cover; }
  .intro-brand { top: max(20px, calc(env(safe-area-inset-top) + 8px)); left: 18px; font-size: 16px; }
  .intro-controls { left: 16px; right: 16px; bottom: max(24px, calc(env(safe-area-inset-bottom) + 14px)); }
  .intro-control { padding: 9px 12px; }
  .intro-control span { font-size: 10px; }
  .eyebrow { font-size: 9px; }
  .hero h1 { font-size: 45px; }
  .float-chip { transform: scale(.86); animation: none; }
  .chip-one { transform-origin: left; }
  .chip-two { transform-origin: right; }
  .metric-row { grid-template-columns: 1fr; }
  .metric-row .metric-card:last-child { display: none; }
  .dashboard { padding: 14px; }
  .dash-heading > span { display: none; }
  .solutions-grid { gap: 14px; }
  .feature-list { grid-template-columns: 1fr; }
  .solution-large { min-height: 780px; }
  .solution-card h3 { font-size: 28px; }
  .solution-large h3 { font-size: 32px; }
  .orbit-node { width: 68px; height: 68px; }
  .orbit-node b { font-size: 14px; }
  .orbit-core { width: 112px; height: 112px; }
  .method-line { grid-template-columns: 1fr; }
  .method-line article::after { display: none; }
  .proof-facts > div { grid-template-columns: 75px 1fr; }
  .contact-copy h2 { font-size: 37px; }
  .footer-top { display: block; }
  .footer-links { margin-top: 40px; justify-content: space-between; }
  .footer-bottom { display: block; line-height: 1.8; }
}

@media (max-width: 430px) {
  .container, .nav-wrap { width: calc(100% - 28px); }
  .site-header { padding-top: env(safe-area-inset-top); }
  .nav-wrap { height: 66px; }
  .main-nav { padding-top: calc(105px + env(safe-area-inset-top)); padding-bottom: calc(35px + env(safe-area-inset-bottom)); }
  .hero { padding-top: calc(108px + env(safe-area-inset-top)); }
  .hero h1 { font-size: clamp(40px, 12.5vw, 48px); }
  .hero-lead { font-size: 15px; line-height: 1.72; }
  .button-primary { width: 100%; }
  .hero-actions { width: 100%; }
  .trust-line { margin-top: 39px; }
  .hero-visual { margin-top: 5px; }
  .shell-body { min-height: 370px; }
  .chip-two { top: 60px; right: -4px; }
  .solution-card { padding: 25px; }
  .campus-preview { left: 20px; right: 20px; }
  .orbit-visual { margin-top: 15px; }
  .contact-card { padding: 35px 24px; border-radius: 22px; }
  .contact-action, .contact-action .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .data-field, .cursor-glow { display: none; }
  .video-intro { transition-duration: .01ms; }
}
