/**
 * Copyright (c) 2026 NXT SAS Global Pte. Ltd., Singapore. All rights reserved.
 * DeepLMS — Enterprise marketing prototype design system.
 */

*, *::before, *::after { box-sizing: border-box; }

:root {
  --color-ink: #0b0b0d;
  --color-ink-soft: #3f3d38;
  --color-muted: #777269;
  --color-gold: #d4a017;
  --color-gold-deep: #815a00;
  --color-gold-soft: #f5e9bd;
  --color-ivory: #faf8f2;
  --color-ivory-deep: #f0ebdf;
  --color-white: #ffffff;
  --color-line: #ddd6c8;
  --color-success: #138a61;
  --color-slate: #eef1f4;
  --color-danger: #a73d31;
  --shadow-soft: 0 24px 80px rgba(11, 11, 13, 0.12);
  --shadow-card: 0 16px 48px rgba(11, 11, 13, 0.10);
  --font-display: Fraunces, Georgia, serif;
  --font-body: Inter, "Segoe UI", sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --page: min(1440px, calc(100vw - 64px));
  --page-narrow: min(960px, calc(100vw - 64px));
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-ivory);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
:where(main > .section, main > .story-band, main > .cta-band) {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}
:focus-visible { outline: 3px solid var(--color-gold); outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 24px;
  top: -80px;
  padding: 12px 16px;
  background: var(--color-ink);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  transition: top 180ms ease;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  background: rgba(250, 248, 242, 0.86);
  backdrop-filter: blur(20px);
  transition: border-color 240ms ease, background 240ms ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--color-line);
  background: rgba(250, 248, 242, 0.97);
}
.nav {
  width: var(--page);
  min-height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  text-decoration: none;
  letter-spacing: -1px;
}
.brand-mark {
  position: relative;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  overflow: hidden;
  border-radius: 14px;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-name { white-space: nowrap; }
.brand-name strong { color: var(--color-gold-deep); font-weight: 500; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 24px; }
.nav-links a {
  position: relative;
  color: var(--color-ink-soft);
  font-size: 14px;
  text-decoration: none;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--color-gold);
  transition: right 220ms ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.button.menu-toggle { display: none; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  background: transparent;
  color: var(--color-gold-deep);
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(169, 120, 0, 0.16); }
.button-primary { background: var(--color-gold); color: var(--color-ink); }
.button-dark { border-color: var(--color-ink); background: var(--color-ink); color: var(--color-white); }
.button-light { border-color: var(--color-white); color: var(--color-white); }
.motion-toggle {
  min-height: 40px;
  padding: 8px 12px;
  border-color: var(--color-line);
  color: var(--color-ink-soft);
  font-size: 12px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--color-gold-deep);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.gold { color: var(--color-gold); }
.lede { color: var(--color-muted); font-size: 18px; line-height: 1.7; }
.kicker { color: var(--color-muted); font-size: 14px; }
.text-link { color: var(--color-gold-deep); font-weight: 750; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.top-gap-32 { margin-top: 32px; }
.top-gap-40 { margin-top: 40px; }
.center-actions { justify-content: center; }

.home-hero {
  position: relative;
  min-height: 850px;
  padding: 152px 0 96px;
  overflow: hidden;
  isolation: isolate;
}
.home-hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: 760px;
  height: 760px;
  right: -120px;
  top: 24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.20), rgba(212, 160, 23, 0.04) 42%, transparent 72%);
  filter: blur(8px);
}
.home-hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 80px 0 0 45%;
  background-image:
    linear-gradient(rgba(212, 160, 23, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 160, 23, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent, var(--color-ink) 36%, transparent 96%);
  opacity: 0.65;
}
.hero-grid {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(620px, 1.18fr);
  gap: 64px;
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-title,
.page-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.052em;
}
.hero-title { font-size: clamp(64px, 6.7vw, 108px); }
.hero-title span { display: block; }
.hero-copy { max-width: 700px; margin: 32px 0 0; color: var(--color-ink-soft); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.trust-line { display: flex; align-items: center; gap: 12px; margin: 32px 0 0; color: var(--color-muted); font-size: 14px; }
.trust-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--color-gold); box-shadow: 0 0 0 6px rgba(212, 160, 23, 0.14); }

.product-stage { position: relative; min-height: 620px; perspective: 1400px; }
.product-frame {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(221, 214, 200, 0.92);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  transition: transform 1100ms cubic-bezier(0.22, 1, 0.36, 1), opacity 900ms ease, filter 900ms ease;
  will-change: transform;
}
.product-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top left; }
.frame-label {
  position: absolute;
  z-index: 2;
  left: 16px;
  top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(221, 214, 200, 0.94);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 24px rgba(11, 11, 13, 0.08);
  font-size: 12px;
  font-weight: 800;
}
.frame-label::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--color-gold); }
.frame-analytics { width: 88%; height: 410px; right: 0; top: 24px; z-index: 3; }
.frame-ice { width: 56%; height: 290px; left: 0; bottom: 16px; z-index: 5; }
.frame-transition { width: 58%; height: 290px; right: -24px; bottom: 0; z-index: 4; }
.frame-analytics img, .frame-transition img { object-position: 14% top; }
.frame-ice img { object-position: 28% top; }
.product-stage[data-scene="ice"] .frame-ice { transform: translate3d(32px, -64px, 110px) scale(1.08); }
.product-stage[data-scene="ice"] .frame-analytics { transform: translate3d(24px, 8px, -70px) scale(0.96); filter: saturate(0.75); opacity: 0.72; }
.product-stage[data-scene="ice"] .frame-transition { transform: translate3d(8px, 24px, -100px) scale(0.93); opacity: 0.58; }
.product-stage[data-scene="analytics"] .frame-analytics { transform: translate3d(-16px, 56px, 120px) scale(1.08); }
.product-stage[data-scene="analytics"] .frame-ice { transform: translate3d(-24px, 24px, -70px) scale(0.93); opacity: 0.62; }
.product-stage[data-scene="analytics"] .frame-transition { transform: translate3d(24px, 32px, -70px) scale(0.93); opacity: 0.62; }
.product-stage[data-scene="transition"] .frame-transition { transform: translate3d(-48px, -72px, 110px) scale(1.08); }
.product-stage[data-scene="transition"] .frame-analytics { transform: translate3d(-24px, 8px, -80px) scale(0.95); filter: saturate(0.75); opacity: 0.68; }
.product-stage[data-scene="transition"] .frame-ice { transform: translate3d(-32px, 24px, -100px) scale(0.91); opacity: 0.55; }

.hero-reveal > *, .hero-copy, .hero-actions, .trust-line, .product-stage { opacity: 0; transform: translateY(16px); }
.is-ready .hero-reveal > * { animation: reveal-up 760ms both; }
.is-ready .hero-reveal > *:nth-child(2) { animation-delay: 140ms; }
.is-ready .hero-reveal > *:nth-child(3) { animation-delay: 280ms; }
.is-ready .hero-copy { animation: reveal-up 720ms 380ms both; }
.is-ready .hero-actions { animation: reveal-up 720ms 500ms both; }
.is-ready .trust-line { animation: reveal-up 720ms 620ms both; }
.is-ready .product-stage { animation: reveal-up 1000ms 320ms both; }
@keyframes reveal-up { to { opacity: 1; transform: translateY(0); } }

.scene-control {
  width: var(--page);
  margin: -40px auto 0;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.scene-tab {
  position: relative;
  min-height: 96px;
  overflow: hidden;
  border: 0;
  border-right: 1px solid var(--color-line);
  padding: 20px 24px;
  background: transparent;
  color: var(--color-ink);
  text-align: left;
  cursor: pointer;
  transition: background 220ms ease;
}
.scene-tab::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left center;
}
.scene-control.is-timing .scene-tab[aria-selected="true"]::after { animation: scene-progress var(--scene-duration, 7200ms) linear both; }
@keyframes scene-progress { to { transform: scaleX(1); } }
.scene-tab:last-child { border-right: 0; }
.scene-tab:hover, .scene-tab[aria-selected="true"] { background: var(--color-gold-soft); }
.scene-tab span { display: block; color: var(--color-gold-deep); font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: 0.12em; }
.scene-tab strong { display: block; margin-top: 6px; font-family: var(--font-display); font-size: 22px; font-weight: 500; }

.page-hero { position: relative; min-height: 720px; padding: 168px 0 96px; overflow: hidden; isolation: isolate; }
.page-hero-inner {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(440px, 0.82fr);
  gap: 72px;
  align-items: center;
  text-align: left;
}
.page-hero-inner > :not(.page-hero-visual) { grid-column: 1; }
.page-title { max-width: 820px; font-size: clamp(52px, 5.8vw, 84px); }
.page-hero .lede { max-width: 720px; margin: 32px 0 0; }
.page-hero .hero-actions { justify-content: flex-start; }

.page-hero-visual {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 5;
  width: min(100%, 560px);
  min-height: 480px;
  justify-self: end;
  perspective: 1200px;
  transform: rotateX(4deg) rotateY(-5deg);
  transform-style: preserve-3d;
}
.page-hero-visual::before {
  content: "";
  position: absolute;
  inset: 42px;
  border: 1px solid rgba(212, 160, 23, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(212, 160, 23, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.32);
  box-shadow: inset 0 0 64px rgba(212, 160, 23, 0.08), 0 32px 80px rgba(11, 11, 13, 0.10);
  backdrop-filter: blur(8px);
}
.hero-motion-orbit {
  position: absolute;
  border: 1px solid rgba(154, 109, 0, 0.28);
  border-radius: 50%;
}
.hero-motion-orbit::before,
.hero-motion-orbit::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 8px rgba(212, 160, 23, 0.10), 0 0 28px rgba(212, 160, 23, 0.46);
}
.orbit-outer { inset: 28px; animation: hero-orbit 24s linear infinite; }
.orbit-outer::before { left: 13%; top: 12%; }
.orbit-outer::after { right: 9%; bottom: 17%; }
.orbit-inner { inset: 104px; animation: hero-orbit-reverse 18s linear infinite; }
.orbit-inner::before { right: 5%; top: 22%; }
.orbit-inner::after { left: 8%; bottom: 18%; }
.hero-motion-core {
  position: absolute;
  z-index: 3;
  inset: 50% auto auto 50%;
  width: 184px;
  min-height: 184px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  border: 1px solid rgba(212, 160, 23, 0.54);
  border-radius: 50%;
  background: rgba(11, 11, 13, 0.94);
  color: var(--color-white);
  text-align: center;
  transform: translate(-50%, -50%) translateZ(72px);
  box-shadow: 0 24px 56px rgba(11, 11, 13, 0.24), 0 0 0 14px rgba(212, 160, 23, 0.08);
  animation: hero-core-pulse 5.6s ease-in-out infinite;
}
.hero-motion-core small { color: var(--color-gold); font-size: 11px; font-weight: 850; letter-spacing: 0.16em; text-transform: uppercase; }
.hero-motion-core strong { font-family: var(--font-display); font-size: 23px; font-weight: 500; line-height: 1.08; }
.hero-motion-node {
  position: absolute;
  z-index: 4;
  min-width: 136px;
  padding: 14px 16px;
  border: 1px solid rgba(221, 214, 200, 0.94);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(11, 11, 13, 0.12), 0 5px 0 -3px rgba(154, 109, 0, 0.26);
  backdrop-filter: blur(10px);
  animation: hero-node-float 6.8s ease-in-out infinite;
}
.hero-motion-node small { display: block; color: var(--color-gold-deep); font-size: 10px; font-weight: 850; letter-spacing: 0.14em; }
.hero-motion-node strong { display: block; margin-top: 4px; font-family: var(--font-display); font-size: 20px; font-weight: 550; }
.node-1 { left: 1%; top: 18%; }
.node-2 { right: 0; top: 11%; animation-delay: -1.7s; }
.node-3 { left: 2%; bottom: 13%; animation-delay: -3.4s; }
.node-4 { right: 1%; bottom: 18%; animation-delay: -5.1s; }
@keyframes hero-orbit { to { transform: rotate(360deg); } }
@keyframes hero-orbit-reverse { to { transform: rotate(-360deg); } }
@keyframes hero-core-pulse {
  0%, 100% { box-shadow: 0 24px 56px rgba(11, 11, 13, 0.24), 0 0 0 14px rgba(212, 160, 23, 0.08); }
  50% { box-shadow: 0 28px 68px rgba(11, 11, 13, 0.28), 0 0 0 24px rgba(212, 160, 23, 0.04); }
}
@keyframes hero-node-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.trust-band { border-block: 1px solid var(--color-line); background: var(--color-white); }
.trust-band-inner { width: var(--page); margin: 0 auto; display: grid; grid-template-columns: 1.2fr repeat(4, 1fr); align-items: center; }
.trust-band-inner > * { min-height: 112px; display: flex; align-items: center; padding: 24px; border-right: 1px solid var(--color-line); }
.trust-band-inner > *:last-child { border-right: 0; }
.trust-band strong { font-family: var(--font-display); font-size: 22px; font-weight: 500; }
.trust-band span { color: var(--color-muted); font-size: 13px; }

.section { padding: 112px 0; }
.section-compact { padding: 72px 0; }
.section-dark { background: var(--color-ink); color: var(--color-white); }
.section-deep { background: var(--color-ivory-deep); }
.section-inner { width: var(--page); margin: 0 auto; }
.section-narrow { width: var(--page-narrow); margin: 0 auto; }
.section-heading { max-width: 860px; margin-bottom: 56px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.section h3 { margin: 0; font-family: var(--font-display); font-size: 30px; font-weight: 500; line-height: 1.15; }
.section .lede { margin: 24px 0 0; }
.split { display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr); gap: 72px; align-items: center; }
.split-reverse > :first-child { order: 2; }
.split-reverse > :last-child { order: 1; }

.screenshot-shell { margin: 0; overflow: hidden; border: 1px solid var(--color-line); border-radius: var(--radius-md); background: var(--color-white); box-shadow: var(--shadow-card); }
.screenshot-shell img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top left; }
.screenshot-caption { padding: 16px 20px; border-top: 1px solid var(--color-line); color: var(--color-muted); font-size: 13px; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 32px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease, border-color 220ms ease;
}
.card:hover { border-color: var(--color-gold); }
.card-number { display: inline-flex; min-width: 40px; height: 40px; align-items: center; justify-content: center; margin-bottom: 24px; border-radius: 50%; background: var(--color-gold-soft); color: var(--color-gold-deep); font-size: 12px; font-weight: 850; }
.card h3 { font-size: 28px; }
.card p { margin: 16px 0 0; color: var(--color-muted); }
.card .card-action { margin-top: auto; padding-top: 24px; }
.card ul { margin: 20px 0 0; padding-left: 18px; color: var(--color-ink-soft); }
.card li + li { margin-top: 8px; }
.section-dark .card { border-color: rgba(255, 255, 255, 0.16); background: rgba(255, 255, 255, 0.05); }
.section-dark .card p, .section-dark .card li { color: rgba(255, 255, 255, 0.72); }

.people-lead,
.family-figure,
.story-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}
.people-lead img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; }
.people-lead figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 72px 32px 28px;
  background: linear-gradient(transparent, rgba(11, 11, 13, 0.88));
  color: var(--color-white);
}
.people-lead figcaption strong,
.family-figure figcaption strong { display: block; font-family: var(--font-display); font-size: 24px; font-weight: 500; }
.people-lead figcaption span,
.family-figure figcaption span { display: block; margin-top: 6px; font-size: 13px; line-height: 1.55; }
.family-figure figcaption { padding: 20px; }
.family-figure figcaption span { color: var(--color-muted); }
.family-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 24px; }
.family-figure img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }

.story-band { padding: 56px 0; border-block: 1px solid var(--color-line); background: var(--color-white); }
.story-band-deep { background: var(--color-ivory-deep); }
.story-band-inner {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.08fr);
  gap: 64px;
  align-items: center;
}
.story-band-reverse .story-figure { order: 2; }
.story-band-reverse .story-copy { order: 1; }
.story-figure img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.story-copy { max-width: 680px; }
.story-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 3.6vw, 56px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.story-copy .lede { margin: 24px 0 0; }

.workflow { margin: 32px 0 0; padding: 0; list-style: none; counter-reset: workflow; }
.workflow li { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--color-line); }
.workflow-number { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 50%; background: var(--color-gold-soft); color: var(--color-gold-deep); font-size: 12px; font-weight: 850; }
.workflow strong { display: block; font-size: 16px; }
.workflow small { display: block; margin-top: 4px; color: var(--color-muted); font-size: 14px; line-height: 1.55; }

.feature-matrix { width: 100%; border-collapse: collapse; border: 1px solid var(--color-line); background: var(--color-white); }
.feature-matrix th, .feature-matrix td { padding: 18px 20px; border-bottom: 1px solid var(--color-line); text-align: left; vertical-align: top; }
.feature-matrix th { background: var(--color-ivory-deep); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; }
.feature-matrix td:first-child { font-weight: 750; }
.feature-matrix td { color: var(--color-ink-soft); }

.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--color-line); border-radius: var(--radius-md); overflow: hidden; }
.metric { min-height: 152px; padding: 28px; border-right: 1px solid var(--color-line); background: var(--color-white); }
.metric:last-child { border-right: 0; }
.metric strong { display: block; font-family: var(--font-display); font-size: 34px; font-weight: 500; }
.metric span { display: block; margin-top: 8px; color: var(--color-muted); font-size: 13px; }

.quote-panel { padding: 48px; border-left: 4px solid var(--color-gold); background: var(--color-white); box-shadow: var(--shadow-card); }
.quote-panel blockquote { margin: 0; font-family: var(--font-display); font-size: clamp(28px, 3vw, 44px); line-height: 1.3; }
.quote-panel cite { display: block; margin-top: 24px; color: var(--color-muted); font-style: normal; }

.network-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.network-card { min-height: 170px; padding: 24px; border: 1px solid var(--color-line); border-radius: var(--radius-md); background: var(--color-white); text-decoration: none; }
.network-card strong { display: block; font-family: var(--font-display); font-size: 24px; }
.network-card span { display: block; margin-top: 12px; color: var(--color-muted); font-size: 13px; }
.network-card:hover { border-color: var(--color-gold); }

.address-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.address-card { padding: 32px; border: 1px solid var(--color-line); border-radius: var(--radius-md); background: var(--color-white); }
.address-card address { margin-top: 16px; color: var(--color-muted); font-style: normal; line-height: 1.75; }

.resource-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.resource-item { display: grid; grid-template-columns: 64px 1fr; gap: 20px; align-items: start; padding: 28px; border: 1px solid var(--color-line); border-radius: var(--radius-md); background: var(--color-white); }
.resource-type { display: inline-flex; width: 64px; height: 64px; align-items: center; justify-content: center; border-radius: 50%; background: var(--color-gold-soft); color: var(--color-gold-deep); font-size: 11px; font-weight: 850; }
.resource-item h3 { font-size: 24px; }
.resource-item p { margin: 10px 0 0; color: var(--color-muted); }

.faq-list { display: grid; gap: 16px; margin-top: 40px; }
.faq-item { border: 1px solid var(--color-line); border-radius: var(--radius-md); background: var(--color-white); box-shadow: 0 14px 36px rgba(11, 11, 13, 0.05); }
.faq-item summary { position: relative; padding: 24px 64px 24px 24px; cursor: pointer; list-style: none; font-size: 18px; font-weight: 750; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; top: 50%; right: 24px; transform: translateY(-50%); color: var(--color-gold-deep); font-size: 24px; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 0; padding: 0 64px 24px 24px; color: var(--color-muted); }
.faq-item summary:focus-visible { outline: 3px solid var(--color-gold); outline-offset: 4px; }

.request-layout { width: var(--page); margin: 0 auto; display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 72px; align-items: start; }
.request-card { padding: 40px; border: 1px solid var(--color-line); border-radius: var(--radius-lg); background: var(--color-white); box-shadow: var(--shadow-card); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.field { display: grid; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label { color: var(--color-ink-soft); font-size: 13px; font-weight: 750; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--color-line); border-radius: var(--radius-sm); padding: 13px 14px; background: var(--color-ivory); color: var(--color-ink); }
.field textarea { min-height: 132px; resize: vertical; }
.consent { display: grid; grid-template-columns: 20px 1fr; gap: 12px; color: var(--color-muted); font-size: 12px; }
.consent input { width: 18px; height: 18px; margin: 0; }
.form-note, .form-status { margin: 16px 0 0; color: var(--color-muted); font-size: 12px; }
.form-note a { color: inherit; font-weight: 750; }
.form-status { min-height: 20px; color: var(--color-success); font-weight: 750; }
.form-status[data-state="error"] { color: var(--color-danger); }
.form-trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.request-card button[disabled] { cursor: wait; opacity: 0.65; }

.process-list { display: grid; gap: 16px; margin-top: 32px; }
.process-step { display: grid; grid-template-columns: 40px 1fr; gap: 16px; }
.process-step strong { display: block; }
.process-step span { color: var(--color-muted); font-size: 14px; }

.cta-band { padding: 80px 0; background: var(--color-gold); }
.cta-inner { width: var(--page); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.cta-inner h2 { max-width: 760px; margin: 0; font-family: var(--font-display); font-size: clamp(36px, 4vw, 56px); font-weight: 450; line-height: 1.08; }

.site-footer { background: var(--color-ink); color: var(--color-white); }
.footer-main { width: var(--page); margin: 0 auto; display: grid; grid-template-columns: 1.5fr repeat(3, 0.8fr); gap: 56px; padding: 72px 0 48px; }
.footer-brand p { max-width: 360px; margin: 20px 0 0; color: rgba(255, 255, 255, 0.64); }
.footer-brand .brand { color: var(--color-white); }
.footer-brand .brand-name strong { color: var(--color-gold); }
.footer-col h3 { margin: 0 0 20px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; }
.footer-col a { display: block; margin-top: 12px; color: rgba(255, 255, 255, 0.68); text-decoration: none; }
.footer-col a:hover { color: var(--color-gold); }
.footer-corporate { width: var(--page); margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; padding: 32px 0; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.footer-corporate strong { display: block; font-size: 13px; }
.footer-corporate address { margin-top: 8px; color: rgba(255, 255, 255, 0.58); font-size: 12px; font-style: normal; line-height: 1.65; }
.footer-bottom { width: var(--page); margin: 0 auto; display: flex; justify-content: space-between; gap: 32px; padding: 24px 0 32px; border-top: 1px solid rgba(255, 255, 255, 0.14); color: rgba(255, 255, 255, 0.54); font-size: 12px; }
.footer-bottom a { color: inherit; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 800ms ease, transform 800ms cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.bento-surface {
  --bento-rx: 0deg;
  --bento-ry: 0deg;
  --bento-lift: 0px;
  position: relative;
  isolation: isolate;
  transform-style: preserve-3d;
  transform: perspective(1100px) translateY(var(--bento-lift)) rotateX(var(--bento-rx)) rotateY(var(--bento-ry));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 7px 0 -5px rgba(154, 109, 0, 0.20),
    0 22px 44px rgba(11, 11, 13, 0.09);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease, border-color 220ms ease;
  will-change: transform;
}
.bento-surface::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 40%, rgba(212, 160, 23, 0.07));
  pointer-events: none;
}
.bento-surface > * { position: relative; z-index: 1; transform: translateZ(14px); }
.bento-surface.is-tilting,
.bento-surface:focus-within {
  --bento-lift: -5px;
  border-color: rgba(212, 160, 23, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 10px 0 -6px rgba(154, 109, 0, 0.24),
    0 32px 64px rgba(11, 11, 13, 0.15);
}
.section-dark .bento-surface {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 7px 0 -5px rgba(212, 160, 23, 0.22),
    0 28px 56px rgba(0, 0, 0, 0.28);
}
.reveal.bento-surface:not(.is-visible) {
  transform: perspective(1100px) translateY(24px) rotateX(0deg) rotateY(0deg);
}
.reveal.bento-surface.is-visible {
  transform: perspective(1100px) translateY(var(--bento-lift)) rotateX(var(--bento-rx)) rotateY(var(--bento-ry));
}

@media (max-width: 1180px) {
  .nav-links { display: none; }
  .button.menu-toggle { display: inline-flex; }
  .nav-links.is-open {
    position: absolute;
    inset: 80px 0 auto;
    display: grid;
    gap: 0;
    padding: 16px 32px 24px;
    border-bottom: 1px solid var(--color-line);
    background: var(--color-ivory);
  }
  .nav-links.is-open a { padding: 14px 0; border-bottom: 1px solid var(--color-line); }
  .hero-grid, .split, .request-layout, .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-inner { width: var(--page-narrow); gap: 40px; text-align: center; }
  .page-hero-inner > :not(.page-hero-visual) { grid-column: 1; }
  .page-hero .lede { margin-inline: auto; }
  .page-hero .hero-actions { justify-content: center; }
  .page-hero-visual { grid-column: 1; grid-row: auto; width: min(100%, 560px); justify-self: center; }
  .story-band-inner { grid-template-columns: 1fr; gap: 40px; }
  .story-band-reverse .story-figure,
  .story-band-reverse .story-copy { order: initial; }
  .hero-content { max-width: 760px; }
  .product-stage { min-height: 600px; }
  .trust-band-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-band-inner > * { border-bottom: 1px solid var(--color-line); }
  .trust-band-inner > *:nth-child(2n) { border-right: 0; }
  .card-grid.four { grid-template-columns: repeat(2, 1fr); }
  .family-grid { grid-template-columns: 1fr; }
  .network-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1.5fr repeat(2, 1fr); }
  .footer-main .footer-col:last-child { grid-column: 2 / 4; }
}

@media (max-width: 760px) {
  :root { --page: min(100% - 32px, 640px); --page-narrow: min(100% - 32px, 640px); }
  .site-header {
    background: rgba(250, 248, 242, 0.97);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .nav { min-height: 72px; }
  .brand { gap: 8px; font-size: 27px; }
  .brand-mark { width: 44px; height: 44px; flex-basis: 44px; border-radius: 12px; }
  .brand-mark img { width: 100%; height: 100%; }
  .motion-toggle {
    position: fixed;
    z-index: 96;
    right: auto;
    left: max(16px, env(safe-area-inset-left));
    bottom: max(16px, env(safe-area-inset-bottom));
    display: inline-flex;
    border-color: var(--color-line);
    background: rgba(250, 248, 242, 0.96);
    box-shadow: 0 12px 32px rgba(11, 11, 13, 0.14);
    backdrop-filter: blur(12px);
  }
  .nav-actions > .button:not(.menu-toggle) { padding: 10px 12px; min-height: 42px; font-size: 12px; }
  .menu-toggle { min-width: 42px; padding: 8px 10px; }
  .nav-links.is-open { inset-block-start: 72px; padding-inline: 16px; }
  .home-hero { min-height: auto; padding: 128px 0 72px; }
  .home-hero::after, .page-hero::after { inset-inline-start: 0; opacity: 0.34; }
  .hero-title { font-size: clamp(52px, 16vw, 72px); }
  .hero-copy { font-size: 16px; }
  .product-stage { min-height: 440px; margin-top: 24px; }
  .frame-analytics { width: 94%; height: 300px; }
  .frame-ice, .frame-transition { width: 68%; height: 205px; }
  .scene-control { margin-top: -16px; grid-template-columns: 1fr; }
  .scene-tab { min-height: 74px; border-right: 0; border-bottom: 1px solid var(--color-line); }
  .scene-tab:last-child { border-bottom: 0; }
  .page-hero { padding: 144px 0 80px; }
  .page-hero { min-height: auto; }
  .page-title { font-size: 52px; }
  .page-hero-visual { min-height: 390px; transform: none; }
  .page-hero-visual::before { inset: 36px; }
  .orbit-outer { inset: 24px; }
  .orbit-inner { inset: 84px; }
  .hero-motion-core { width: 156px; min-height: 156px; }
  .hero-motion-node { min-width: 118px; padding: 12px 14px; }
  .hero-motion-node strong { font-size: 18px; }
  .section { padding: 80px 0; }
  .section h2 { font-size: 42px; }
  .section-heading { margin-bottom: 40px; }
  .split { gap: 48px; }
  .split-reverse > :first-child, .split-reverse > :last-child { order: initial; }
  .trust-band-inner, .card-grid, .card-grid.four, .card-grid.two, .metric-grid, .network-grid, .address-grid, .resource-list, .form-grid { grid-template-columns: 1fr; }
  .people-lead img { aspect-ratio: 4 / 3; }
  .story-band { padding: 40px 0; }
  .story-band-inner { gap: 32px; }
  .story-copy h2 { font-size: 40px; }
  .trust-band-inner > * { min-height: 88px; border-right: 0; }
  .metric { border-right: 0; border-bottom: 1px solid var(--color-line); }
  .metric:last-child { border-bottom: 0; }
  .feature-matrix { display: block; overflow-x: auto; }
  .field-full { grid-column: auto; }
  .request-card { padding: 24px; }
  .cta-inner, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-main, .footer-corporate { grid-template-columns: 1fr; }
  .footer-main .footer-col:last-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 1ms !important; animation-iteration-count: 1 !important; transition-duration: 1ms !important; }
  .hero-reveal > *, .hero-copy, .hero-actions, .trust-line, .product-stage, .reveal { opacity: 1; transform: none; }
  .bento-surface,
  .reveal.bento-surface:not(.is-visible) { transform: none; }
}

@media (hover: none), (pointer: coarse) {
  .bento-surface,
  .bento-surface.is-tilting { --bento-rx: 0deg; --bento-ry: 0deg; --bento-lift: 0px; }
}

body.motion-paused .page-hero-visual *,
body.motion-paused .page-hero-visual *::before,
body.motion-paused .page-hero-visual *::after,
body.motion-paused .scene-tab::after {
  animation-play-state: paused !important;
}
body.motion-paused .product-frame,
body.motion-paused .bento-surface {
  transition-duration: 1ms !important;
}
