:root {
  --navy-980: #030a13;
  --navy-950: #061421;
  --navy-900: #09213a;
  --navy-820: #0b3154;
  --navy-700: #0f4f7d;
  --teal-600: #008f8c;
  --teal-500: #13b7ab;
  --emerald-500: #26d28f;
  --cyan-300: #8ee7f2;
  --gold-400: #e9c36a;
  --coral-400: #ff775f;
  --ink: #102033;
  --muted: #627286;
  --platinum: #f7fafc;
  --platinum-2: #edf4f7;
  --white: #ffffff;
  --line: rgba(18, 54, 86, .14);
  --line-bright: rgba(142, 231, 242, .28);
  --glass: rgba(255, 255, 255, .12);
  --glass-strong: rgba(255, 255, 255, .22);
  --shadow-strong: 0 34px 90px rgba(3, 10, 19, .34);
  --shadow-soft: 0 20px 54px rgba(6, 20, 33, .13);
  --radius: 24px;
  --radius-lg: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  color: var(--ink);
  background: var(--platinum);
  line-height: 1.6;
  overflow-x: hidden;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

button {
  font: inherit;
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.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;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 16px;
  background: var(--white);
  color: var(--navy-900);
  box-shadow: var(--shadow-soft);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, .48);
  background: rgba(247, 250, 252, .78);
  backdrop-filter: blur(22px) saturate(145%);
  transition: box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(9, 33, 58, .1);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 52px rgba(6, 20, 33, .11);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--navy-950);
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(19, 183, 171, .16);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(237, 244, 247, .9));
  box-shadow: 0 16px 40px rgba(9, 33, 58, .12);
  overflow: hidden;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand-text {
  white-space: nowrap;
  font-size: 1.08rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 10px 13px;
  border-radius: 999px;
  color: #213b52;
  font-weight: 800;
  font-size: .93rem;
  transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  outline: none;
  transform: translateY(-1px);
  background: rgba(19, 183, 171, .1);
  color: var(--teal-600);
}

.site-nav .nav-cta {
  margin-left: 6px;
  border: 1px solid rgba(15, 79, 125, .14);
  background: var(--navy-950);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(9, 33, 58, .16);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: linear-gradient(135deg, var(--navy-900), var(--teal-600));
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(9, 33, 58, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  color: var(--navy-950);
  box-shadow: 0 12px 30px rgba(9, 33, 58, .09);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
  content: "";
}

.nav-toggle-lines::before {
  transform: translateY(-7px);
}

.nav-toggle-lines::after {
  transform: translateY(5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  transform: translateY(0) rotate(90deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  opacity: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(900px, calc(100vh - 82px));
  padding: 86px 0 76px;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 12%, rgba(19, 183, 171, .22), transparent 31%),
    radial-gradient(circle at 82% 6%, rgba(233, 195, 106, .16), transparent 27%),
    linear-gradient(135deg, var(--navy-980), var(--navy-950) 46%, #073947);
}

.mesh-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .72;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(19, 183, 171, .3), transparent 34%),
    radial-gradient(ellipse at 76% 24%, rgba(15, 79, 125, .5), transparent 42%),
    radial-gradient(ellipse at 58% 92%, rgba(38, 210, 143, .16), transparent 34%);
  filter: blur(8px);
  transform: translate3d(0, var(--parallax-y, 0), 0);
}

.data-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .85), transparent 90%);
}

.data-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.data-particles span {
  position: absolute;
  width: 4px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(var(--cyan-300), var(--teal-500));
  opacity: .32;
  animation: particleDrift 12s linear infinite;
}

.data-particles span:nth-child(1) { left: 12%; top: 32%; }
.data-particles span:nth-child(2) { left: 45%; top: 16%; animation-delay: -4s; }
.data-particles span:nth-child(3) { left: 72%; top: 32%; animation-delay: -7s; }
.data-particles span:nth-child(4) { left: 84%; top: 66%; animation-delay: -2s; }
.data-particles span:nth-child(5) { left: 28%; top: 74%; animation-delay: -9s; }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: 56px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--teal-500);
  font-weight: 900;
  letter-spacing: 0;
}

.hero .eyebrow {
  display: inline-flex;
  max-width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(142, 231, 242, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: var(--cyan-300);
  backdrop-filter: blur(12px);
}

p,
li,
span,
small,
strong {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.15rem, 6vw, 5.7rem);
  font-weight: 950;
  overflow-wrap: normal;
  word-break: normal;
}

h2,
h3 {
  overflow-wrap: normal;
  word-break: normal;
}

.hero h2 {
  margin-top: 18px;
  max-width: 760px;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  font-weight: 950;
}

.hero-text {
  max-width: 710px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 1.14rem;
}

.founder-line {
  margin: 18px 0 0;
  color: var(--gold-400);
  font-weight: 900;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  position: relative;
  isolation: isolate;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  font-size: .98rem;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}

.btn::after {
  position: absolute;
  inset: -140% auto -140% -46%;
  z-index: -1;
  width: 42%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .44), transparent);
  animation: buttonShimmer 4.4s ease-in-out infinite;
  content: "";
}

.btn:hover,
.btn:focus-visible {
  outline: none;
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal-500), var(--emerald-500));
  color: var(--navy-980);
  box-shadow: 0 18px 40px rgba(19, 183, 171, .32);
}

.btn-secondary {
  background: rgba(255, 255, 255, .95);
  color: var(--navy-950);
  box-shadow: 0 18px 40px rgba(255, 255, 255, .12);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, .26);
  background: rgba(255, 255, 255, .07);
  color: var(--white);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.hero-proof div {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .06));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16);
  backdrop-filter: blur(16px);
}

.hero-proof strong {
  display: block;
  color: var(--cyan-300);
  font-size: 1.65rem;
  line-height: 1;
}

.hero-proof span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, .74);
  font-size: .9rem;
}

.hero-visual {
  min-width: 0;
  perspective: 1200px;
}

.product-stage {
  position: relative;
  min-width: 0;
  border-radius: var(--radius-lg);
  transform-style: preserve-3d;
}

.product-stage::before,
.pillar-card::before,
.report-card::before,
.premium-metric::before,
.final-cta-card::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(142, 231, 242, .5), rgba(255, 255, 255, .1), rgba(233, 195, 106, .32));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  content: "";
}

.hero-photo,
.image-panel,
.cinema-tile {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-lg);
  background: #dfeaf0;
}

.hero-photo {
  box-shadow: var(--shadow-strong);
  transform: rotateY(-4deg) rotateX(2deg);
  animation: panelFloat 8s ease-in-out infinite;
}

.hero-photo::after,
.image-panel::after,
.cinema-tile::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(3, 10, 19, .64));
  content: "";
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.phone-stage {
  position: absolute;
  right: -18px;
  bottom: -48px;
  width: min(192px, 30%);
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(3, 10, 19, .38);
  overflow: hidden;
  transform: translateZ(48px) rotate(4deg);
}

.phone-stage img {
  width: 100%;
  aspect-ratio: 3 / 4.3;
  object-fit: cover;
  object-position: 46% 50%;
}

.stage-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  max-width: min(290px, 52%);
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  background: rgba(3, 10, 19, .58);
  box-shadow: 0 18px 48px rgba(3, 10, 19, .25);
  backdrop-filter: blur(14px);
}

.stage-badge span,
.stage-badge strong {
  display: block;
}

.stage-badge span {
  color: var(--cyan-300);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.stage-badge strong {
  margin-top: 4px;
  color: var(--white);
  line-height: 1.22;
}

.executive-console {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
  padding-right: min(116px, 18%);
}

.premium-metric {
  position: relative;
  min-width: 0;
  padding: 15px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .08));
  box-shadow: 0 18px 42px rgba(3, 10, 19, .18);
  backdrop-filter: blur(16px);
  transition: transform .22s ease, box-shadow .22s ease;
}

.premium-metric:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(19, 183, 171, .18);
}

.premium-metric svg,
.story-points svg,
.process-card svg,
.pillar-card svg,
.report-card svg,
.industry-card svg,
.ai-core svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.premium-metric svg {
  color: var(--cyan-300);
  margin-bottom: 12px;
}

.premium-metric span,
.premium-metric small {
  display: block;
  color: rgba(255, 255, 255, .72);
  font-size: .78rem;
}

.premium-metric strong {
  display: block;
  margin: 7px 0;
  color: var(--white);
  font-size: 1.13rem;
  line-height: 1.05;
}

.premium-metric strong span {
  display: inline;
  color: inherit;
  font-size: inherit;
}

.premium-metric.warn strong {
  color: var(--gold-400);
}

.premium-metric.emerald strong {
  color: var(--emerald-500);
}

.section {
  position: relative;
  padding: 116px 0;
  overflow: hidden;
}

.section-heading {
  max-width: 830px;
  margin-bottom: 50px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.section-copy h2,
.roadmap-head h2,
.final-cta h2 {
  color: var(--navy-950);
  font-size: clamp(2.2rem, 4.6vw, 4.15rem);
  font-weight: 950;
}

.section-heading p:not(.section-kicker),
.section-copy p,
.roadmap-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-copy p {
  margin: 22px 0 0;
}

.story-section,
.concept-section,
.reports-section,
.image-story-section {
  background: linear-gradient(180deg, var(--platinum), var(--white));
}

.story-grid,
.split-layout,
.reports-hero,
.ai-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(340px, .9fr);
  align-items: center;
  gap: 62px;
}

.split-layout.reverse {
  grid-template-columns: minmax(340px, .92fr) minmax(0, .9fr);
}

.story-visual {
  position: relative;
  min-width: 0;
}

.image-panel {
  box-shadow: var(--shadow-soft);
}

.image-panel.framed {
  border: 1px solid rgba(9, 33, 58, .08);
  padding: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .88), rgba(237, 244, 247, .78));
}

.image-panel img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.image-panel.wide img {
  aspect-ratio: 4 / 3;
}

.image-panel figcaption,
.cinema-tile figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 18px;
  color: var(--white);
  background: rgba(3, 10, 19, .58);
  backdrop-filter: blur(14px);
  font-weight: 850;
}

.story-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.story-points span,
.capability-grid span,
.ai-list span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: var(--navy-820);
  box-shadow: 0 12px 30px rgba(6, 20, 33, .08);
  font-weight: 850;
}

.story-points svg {
  width: 22px;
  height: 22px;
  color: var(--teal-600);
}

.float-note {
  position: absolute;
  z-index: 2;
  padding: 12px 14px;
  border: 1px solid rgba(142, 231, 242, .28);
  border-radius: 16px;
  background: rgba(255, 255, 255, .86);
  color: var(--navy-900);
  box-shadow: 0 18px 44px rgba(6, 20, 33, .14);
  backdrop-filter: blur(14px);
  font-weight: 900;
}

.note-a { top: 10%; left: -30px; }
.note-b { right: -26px; top: 38%; }
.note-c { left: 10%; bottom: -18px; }

.problem-section,
.ai-section,
.roadmap-section,
.site-footer {
  color: var(--white);
  background:
    radial-gradient(ellipse at 14% 10%, rgba(19, 183, 171, .2), transparent 34%),
    radial-gradient(ellipse at 90% 30%, rgba(233, 195, 106, .1), transparent 32%),
    linear-gradient(135deg, var(--navy-980), var(--navy-900) 58%, #063744);
}

.problem-section .section-heading h2,
.problem-section .section-heading p,
.ai-section .section-copy h2,
.ai-section .section-copy p,
.roadmap-section h2,
.roadmap-section p {
  color: var(--white);
}

.problem-section .section-heading p,
.ai-section .section-copy p,
.roadmap-section p {
  color: rgba(255, 255, 255, .76);
}

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

.comparison-card,
.ai-console,
.chart-showcase,
.capability-panel {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .09);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
}

.comparison-card {
  padding: 28px;
}

.comparison-card.legacy {
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
}

.comparison-card.future {
  background: linear-gradient(180deg, rgba(19, 183, 171, .17), rgba(255, 255, 255, .07));
}

.comparison-title span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--cyan-300);
  font-weight: 950;
}

.comparison-title strong {
  display: block;
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1.15;
}

.comparison-card ul,
.report-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-card li,
.report-card li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, .82);
  font-weight: 760;
}

.comparison-card li::before,
.report-card li::before {
  position: absolute;
  left: 0;
  top: .48em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal-500);
  box-shadow: 0 0 18px rgba(19, 183, 171, .55);
  content: "";
}

.concept-section {
  isolation: isolate;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.process-track::before {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 44px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(19, 183, 171, .58), transparent);
  content: "";
}

.process-card,
.pillar-card,
.report-card,
.industry-card {
  position: relative;
  min-width: 0;
  border-radius: var(--radius);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.process-card {
  padding: 24px;
  border: 1px solid rgba(9, 33, 58, .1);
  background:
    linear-gradient(180deg, rgba(19, 183, 171, .08), rgba(255, 255, 255, .96)),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.process-card:hover,
.pillar-card:hover,
.report-card:hover,
.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 68px rgba(6, 20, 33, .16);
}

.process-card svg,
.pillar-card svg,
.report-card svg,
.industry-card svg {
  width: 34px;
  height: 34px;
  color: var(--teal-600);
}

.process-card h3,
.pillar-card h3,
.report-card h3,
.industry-card h3,
.capability-panel h3 {
  margin-top: 18px;
  color: var(--navy-950);
  font-size: 1.15rem;
}

.process-card p,
.pillar-card p,
.industry-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .95rem;
}

.accountant-note {
  max-width: 780px;
  margin: 34px auto 0;
  padding: 18px 22px;
  border: 1px solid rgba(19, 183, 171, .22);
  border-radius: 20px;
  background: rgba(255, 255, 255, .86);
  color: var(--navy-900);
  box-shadow: var(--shadow-soft);
  text-align: center;
  font-weight: 900;
}

.feature-section,
.industry-section,
.erp-section,
.final-cta {
  background:
    radial-gradient(ellipse at 84% 8%, rgba(19, 183, 171, .1), transparent 30%),
    linear-gradient(180deg, var(--white), var(--platinum));
}

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

.pillar-card {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(237, 244, 247, .78));
  box-shadow: var(--shadow-soft);
}

.pillar-card::before,
.report-card::before,
.premium-metric::before,
.final-cta-card::before {
  opacity: .72;
}

.capability-panel {
  margin-top: 28px;
  padding: 28px;
  border-color: rgba(9, 33, 58, .08);
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow-soft);
}

.capability-panel h3 {
  margin: 0 0 18px;
}

.capability-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.capability-grid span {
  box-shadow: none;
}

.ai-grid {
  position: relative;
  z-index: 1;
}

.ai-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.ai-list span {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .09);
  color: rgba(255, 255, 255, .84);
  box-shadow: none;
}

.ai-console {
  padding: 28px;
}

.ai-core {
  position: relative;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  margin: 0 auto 24px;
  border: 1px solid rgba(142, 231, 242, .45);
  border-radius: 26px;
  color: var(--cyan-300);
  background: rgba(142, 231, 242, .08);
  animation: aiPulse 2.8s ease-in-out infinite;
}

.ai-core svg {
  width: 44px;
  height: 44px;
}

.assistant-window {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 22px;
  background: rgba(3, 10, 19, .42);
}

.assistant-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 14px;
  color: var(--cyan-300);
  font-weight: 950;
}

.assistant-label span {
  color: var(--gold-400);
  font-size: .82rem;
}

.assistant-line,
.assistant-reply {
  padding: 14px;
  border-radius: 18px;
  color: rgba(255, 255, 255, .88);
}

.assistant-line {
  background: rgba(255, 255, 255, .11);
}

.assistant-reply {
  margin-top: 10px;
  background: rgba(19, 183, 171, .16);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.insight-grid article {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
}

.insight-grid strong,
.insight-grid span {
  display: block;
}

.insight-grid strong {
  color: var(--white);
}

.insight-grid span,
.review-strip {
  color: rgba(255, 255, 255, .68);
  font-size: .88rem;
}

.review-strip {
  margin: 14px 0 0;
  padding: 13px 14px;
  border: 1px solid rgba(233, 195, 106, .2);
  border-radius: 18px;
  background: rgba(233, 195, 106, .1);
}

.reports-hero {
  align-items: stretch;
}

.chart-showcase {
  min-width: 0;
  padding: 24px;
  border-color: rgba(9, 33, 58, .08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(237, 244, 247, .78)),
    var(--white);
  box-shadow: var(--shadow-soft);
  perspective: 900px;
}

.chart-note {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(19, 183, 171, .1);
  color: var(--teal-600);
  font-weight: 950;
  font-size: .85rem;
}

.bar-chart {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 14px;
  min-height: 260px;
  padding: 24px 18px 14px;
  border: 1px solid rgba(9, 33, 58, .08);
  border-radius: 24px;
  background:
    linear-gradient(rgba(9, 33, 58, .08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(237, 244, 247, .78));
  background-size: 100% 44px, auto;
  transform: rotateX(4deg);
}

.bar-column {
  display: grid;
  align-items: end;
  justify-items: center;
  gap: 10px;
  min-width: 0;
  height: 100%;
}

.bar-column span {
  width: min(48px, 72%);
  height: var(--h);
  border-radius: 10px 10px 5px 5px;
  background: linear-gradient(180deg, var(--cyan-300), var(--teal-600));
  box-shadow: 10px 12px 0 rgba(9, 33, 58, .12), 0 18px 28px rgba(19, 183, 171, .2);
  transition: height 1s cubic-bezier(.2, .8, .2, 1);
}

.js .bar-column span {
  height: 0;
}

.js .bar-chart.is-visible .bar-column span {
  height: var(--h);
}

.bar-column.emerald span { background: linear-gradient(180deg, #95f1c0, var(--emerald-500)); }
.bar-column.amber span { background: linear-gradient(180deg, #f7dc93, var(--gold-400)); }
.bar-column.coral span { background: linear-gradient(180deg, #ffa894, var(--coral-400)); }
.bar-column.teal span { background: linear-gradient(180deg, #8ee7f2, var(--teal-500)); }

.bar-column small {
  color: #31546a;
  font-size: .78rem;
  font-weight: 900;
  text-align: center;
}

.line-chart {
  width: 100%;
  margin-top: 16px;
  border: 1px solid rgba(9, 33, 58, .08);
  border-radius: 24px;
  background: var(--white);
}

.line-area {
  fill: url(#lineFill);
}

.line-path {
  fill: none;
  stroke: var(--teal-600);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 520;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.2s ease;
}

.js .line-path {
  stroke-dashoffset: 520;
}

.js .chart-showcase.is-visible .line-path {
  stroke-dashoffset: 0;
}

.report-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.report-card {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(237, 244, 247, .76));
  box-shadow: var(--shadow-soft);
}

.report-card ul {
  gap: 10px;
}

.report-card li {
  color: var(--muted);
}

.report-card li::before {
  background: var(--gold-400);
  box-shadow: 0 0 14px rgba(233, 195, 106, .42);
}

.callout {
  padding: 18px;
  border-left: 4px solid var(--teal-500);
  border-radius: 18px;
  background: rgba(19, 183, 171, .08);
  color: var(--navy-900) !important;
  font-weight: 900;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.industry-card {
  display: grid;
  align-content: start;
  min-height: 188px;
  padding: 22px;
  border: 1px solid rgba(9, 33, 58, .08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(237, 244, 247, .8)),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.industry-card h3 {
  margin-top: 16px;
}

.cinema-grid {
  display: grid;
  grid-template-columns: .86fr 1fr 1fr;
  grid-auto-rows: 260px;
  gap: 16px;
}

.cinema-tile {
  border: 1px solid rgba(9, 33, 58, .08);
  box-shadow: var(--shadow-soft);
}

.cinema-tile.tall {
  grid-row: span 2;
}

.cinema-tile.wide {
  grid-column: span 2;
}

.cinema-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.cinema-tile:hover img {
  transform: scale(1.045);
}

.cinema-tile:nth-child(1) img { object-position: 42% 50%; }
.cinema-tile:nth-child(2) img { object-position: 50% 42%; }
.cinema-tile:nth-child(3) img { object-position: 50% 38%; }
.cinema-tile:nth-child(4) img { object-position: 50% 42%; }
.cinema-tile:nth-child(5) img { object-position: 50% 44%; }
.cinema-tile:nth-child(6) img { object-position: 48% 45%; }

.roadmap-head {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.status-pill {
  display: inline-flex;
  margin-top: 22px;
  padding: 12px 16px;
  border: 1px solid rgba(142, 231, 242, .3);
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  color: var(--cyan-300);
  font-weight: 950;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.timeline article {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 22px;
  background: rgba(255, 255, 255, .09);
  box-shadow: 0 18px 42px rgba(3, 10, 19, .16);
  backdrop-filter: blur(14px);
}

.timeline strong {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--teal-500), var(--emerald-500));
  color: var(--navy-980);
  box-shadow: 0 0 26px rgba(19, 183, 171, .36);
}

.timeline span,
.timeline small {
  display: block;
}

.timeline span {
  margin-top: 16px;
  color: rgba(255, 255, 255, .9);
  font-weight: 900;
  line-height: 1.28;
}

.timeline small {
  margin-top: 8px;
  color: var(--gold-400);
  font-weight: 900;
}

.final-cta {
  padding: 88px 0;
}

.final-cta-card {
  position: relative;
  padding: 48px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse at 78% 8%, rgba(19, 183, 171, .16), transparent 34%),
    linear-gradient(135deg, var(--navy-950), #073947);
  color: var(--white);
  box-shadow: var(--shadow-strong);
  text-align: center;
}

.final-cta-card h2 {
  max-width: 760px;
  margin: 0 auto 26px;
  color: var(--white);
}

.site-footer {
  padding: 64px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: .9fr 1fr .9fr;
  gap: 34px;
  align-items: start;
}

.footer-logo {
  width: 190px;
  height: 72px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  padding: 7px;
}

.site-footer h2 {
  margin-top: 18px;
  font-size: 2rem;
}

.site-footer p {
  color: rgba(255, 255, 255, .74);
}

.footer-tagline {
  color: var(--cyan-300) !important;
  font-size: 1.3rem;
  font-weight: 950;
}

.prototype-note {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  background: rgba(255, 255, 255, .08);
}

.reveal {
  transition: opacity .7s ease, transform .7s ease;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
}

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

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

.tilt-active {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-3px);
}

@keyframes particleDrift {
  0%, 100% { transform: translateY(40px) rotate(0deg); }
  50% { transform: translateY(-26px) rotate(12deg); }
}

@keyframes panelFloat {
  0%, 100% { transform: rotateY(-4deg) rotateX(2deg) translateY(0); }
  50% { transform: rotateY(-2deg) rotateX(1deg) translateY(-10px); }
}

@keyframes aiPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(142, 231, 242, .26); }
  50% { box-shadow: 0 0 0 18px rgba(142, 231, 242, 0); }
}

@keyframes buttonShimmer {
  0%, 55% { transform: translateX(0) rotate(18deg); opacity: 0; }
  70% { opacity: 1; }
  100% { transform: translateX(420%) rotate(18deg); opacity: 0; }
}

@media (max-width: 1180px) {
  .hero-grid,
  .story-grid,
  .split-layout,
  .split-layout.reverse,
  .reports-hero,
  .ai-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 860px;
  }

  .phone-stage {
    right: 18px;
    bottom: -34px;
  }

  .note-a {
    left: 16px;
  }

  .note-b {
    right: 16px;
  }

  .process-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-track::before {
    display: none;
  }

  .industry-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  html {
    scroll-padding-top: 84px;
  }

  .container {
    width: min(100% - 32px, 1200px);
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
  }

  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 90px;
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid rgba(9, 33, 58, .1);
    border-radius: 24px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow-strong);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    min-height: 48px;
    padding: 13px 14px;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    justify-content: center;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-proof,
  .executive-console,
  .pillar-grid,
  .report-card-grid,
  .comparison-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .executive-console {
    padding-right: 0;
  }

  .process-track {
    grid-template-columns: 1fr 1fr;
  }

  .cinema-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 230px;
  }

  .cinema-tile.tall,
  .cinema-tile.wide {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  .nav-shell {
    min-height: 72px;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
    border-radius: 17px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand-text {
    font-size: 1rem;
  }

  .site-nav {
    top: 78px;
  }

  .hero {
    min-height: auto;
    padding: 42px 0 50px;
  }

  .hero .eyebrow {
    border-radius: 18px;
  }

  .hero-text,
  .section-heading p:not(.section-kicker),
  .section-copy p,
  .roadmap-head p {
    font-size: .98rem;
  }

  .cta-row,
  .btn {
    width: 100%;
  }

  .hero-proof,
  .executive-console,
  .pillar-grid,
  .report-card-grid,
  .comparison-grid,
  .industry-grid,
  .footer-grid,
  .process-track,
  .insight-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .phone-stage {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(210px, 70%);
    margin: -22px auto 0;
    transform: none;
  }

  .stage-badge {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .section {
    padding: 78px 0;
  }

  .story-grid,
  .split-layout,
  .reports-hero,
  .ai-grid {
    gap: 34px;
  }

  .float-note {
    position: static;
    display: inline-flex;
    margin: 10px 8px 0 0;
  }

  .comparison-card,
  .ai-console,
  .capability-panel,
  .chart-showcase,
  .pillar-card,
  .report-card,
  .industry-card {
    padding: 22px;
  }

  .bar-chart {
    min-height: 220px;
    gap: 8px;
    padding-inline: 8px;
  }

  .bar-column small {
    font-size: .7rem;
  }

  .cinema-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .cinema-tile img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .final-cta-card {
    padding: 34px 22px;
  }
}

@media (max-width: 390px) {
  .hero .eyebrow,
  .section-kicker {
    font-size: .86rem;
  }

  .premium-metric {
    padding: 14px;
  }
}

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

  .mesh-bg {
    transform: none !important;
  }

  .reveal,
  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .bar-column span {
    height: var(--h);
  }

  .line-path {
    stroke-dashoffset: 0;
  }
}
