:root {
  --bg: #061f2a;
  --bg-deep: #03161e;
  --bg-2: #082b34;
  --bg-3: #0b3f43;
  --navy: #203ca7;
  --teal: #32e0d0;
  --teal-2: #12bdb0;
  --white: #f7fffe;
  --ink: #08151e;
  --muted: #b9d4d6;
  --muted-2: #7da2a7;
  --line: rgba(247,255,254,.14);
  --line-strong: rgba(247,255,254,.25);
  --glass: rgba(247,255,254,.075);
  --shadow: 0 28px 86px rgba(0,0,0,.32);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-xl: 36px;
  --max: 1210px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--bg-deep);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--teal);
  color: var(--ink);
  border-radius: 999px;
  font-weight: 900;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 70px);
  background: rgba(3, 22, 30, .76);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand { width: min(292px, 48vw); display: inline-flex; }
.brand img { width: 100%; height: auto; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: clamp(14px, 2.1vw, 28px); font-size: 14px; font-weight: 850; color: #dff8f7; }
.site-nav a { opacity: .88; }
.site-nav a:hover, .site-nav a:focus-visible { opacity: 1; color: var(--teal); }
.nav-cta { color: var(--ink) !important; background: var(--teal); padding: 10px 17px; border-radius: 999px; box-shadow: 0 12px 34px rgba(50,224,208,.18); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 12px; background: rgba(255,255,255,.08); }
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--white); border-radius: 99px; }

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 100svh;
  padding: 132px clamp(18px, 4vw, 70px) 56px;
  background:
    radial-gradient(circle at 78% 32%, rgba(50,224,208,.21), transparent 27%),
    radial-gradient(circle at 15% 15%, rgba(32,60,167,.34), transparent 38%),
    var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(3,22,30,.98), rgba(3,22,30,.88) 44%, rgba(3,22,30,.58)),
    url("./assets/bg-techsavvy-clean.jpg");
  background-size: cover;
  background-position: center;
  opacity: .92;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(0deg, var(--bg-deep), transparent);
}
.hero-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, .85fr);
  gap: clamp(40px, 5vw, 76px);
  align-items: center;
}
.eyebrow, .mini-label, .plan-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 13px;
  color: var(--ink);
  background: var(--teal);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .03em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
h3 { margin-bottom: 10px; font-size: clamp(21px, 2.1vw, 28px); line-height: 1.13; letter-spacing: -.025em; }
p { color: var(--muted); }
.hero-copy {
  max-width: 720px;
  margin-bottom: 28px;
  color: #d3eded;
  font-size: clamp(18px, 2.2vw, 24px);
}
.hero-actions, .cta-row { display: flex; flex-wrap: wrap; gap: 13px; align-items: center; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 950;
  text-align: center;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary { color: var(--ink); background: var(--teal); box-shadow: 0 18px 40px rgba(50,224,208,.20); }
.button.secondary { color: var(--white); border-color: var(--line-strong); background: rgba(255,255,255,.08); }
.button.ghost { color: var(--teal); border-color: rgba(50,224,208,.36); background: rgba(50,224,208,.08); }
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 34px 0 0;
}
.hero-metrics div {
  min-height: 156px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.075);
  backdrop-filter: blur(10px);
}
.hero-metrics dt { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; color: var(--teal); font-size: 28px; font-weight: 1000; letter-spacing: -.04em; }
.metric-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(50,224,208,.38);
  border-radius: 14px;
  color: var(--teal);
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.24), transparent 36%), rgba(50,224,208,.12);
  box-shadow: 0 12px 28px rgba(50,224,208,.14);
}
.metric-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-metrics dd { margin: 0; color: #cfe8e8; font-size: 14px; font-weight: 700; }
.hero-product { position: relative; }
.video-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-xl);
  background: rgba(4,24,32,.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.video-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: #d9f6f5;
  font-size: 13px;
  font-weight: 900;
}
.video-topline a { color: var(--teal); }
.video-card video, .video-stage video { width: 100%; aspect-ratio: 16/9; background: #000; }
.floating-proof {
  position: absolute;
  max-width: 250px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px;
  background: rgba(247,255,254,.92);
  color: var(--ink);
  box-shadow: 0 20px 56px rgba(0,0,0,.24);
}
.floating-proof strong { display: block; margin-bottom: 2px; font-size: 16px; }
.floating-proof span { display: block; color: #315158; font-size: 13px; font-weight: 700; }
.proof-a { left: -26px; bottom: -30px; }
.proof-b { right: -24px; top: -26px; }

.outcome-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.outcome-strip span {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 18px;
  background: #062733;
  color: #e8ffff;
  font-weight: 950;
  text-align: center;
}

.section { padding: clamp(76px, 9vw, 126px) clamp(18px, 4vw, 70px); }
.section > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section-heading { margin-bottom: 36px; }
.section-heading.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(330px, .78fr); gap: clamp(28px, 5vw, 70px); align-items: end; }
.section-heading.center { text-align: center; }
.section-heading.center .eyebrow { margin-left: auto; margin-right: auto; }
.section-heading.narrow { max-width: 900px; }
.section-heading p { font-size: clamp(17px, 2vw, 22px); }
.problem-section { background: var(--bg-deep); }
.pain-grid, .role-grid, .feature-grid, .plan-grid, .faq-grid {
  display: grid;
  gap: 18px;
}
.pain-grid { grid-template-columns: repeat(4, 1fr); }
.pain-grid article, .role-grid article, .feature-card, .plan-card, details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: 0 18px 56px rgba(0,0,0,.14);
}
.pain-grid article { padding: 26px; }
.pain-grid span { display: inline-flex; margin-bottom: 24px; color: var(--teal); font-size: 32px; font-weight: 1000; }
.pain-grid p, .role-grid p, .feature-card p, .plan-card p, details p { margin-bottom: 0; }
.solution-section { background: linear-gradient(150deg, rgba(32,60,167,.18), rgba(50,224,208,.08)), var(--bg-2); }
.role-grid { grid-template-columns: repeat(3, 1fr); }
.role-grid article { padding: 30px; background: rgba(247,255,254,.08); }
.role-icon { display: inline-flex; margin-bottom: 24px; padding: 9px 12px; border: 1px solid rgba(50,224,208,.32); border-radius: 999px; color: var(--teal); font-size: 13px; font-weight: 950; text-transform: uppercase; }
.video-section {
  padding: clamp(76px, 9vw, 126px) clamp(18px, 4vw, 70px);
  background: linear-gradient(145deg, rgba(32,60,167,.32), rgba(50,224,208,.12)), var(--bg);
}
.video-section > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.video-stage { overflow: hidden; border: 1px solid var(--line-strong); border-radius: var(--radius-xl); background: #000; box-shadow: var(--shadow); }
.demo-section { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.demo-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 24%, rgba(50,224,208,.22), transparent 34%),
    rgba(247,255,254,.07);
  box-shadow: var(--shadow);
}
.demo-card h3 { margin-bottom: 8px; }
.demo-card p { max-width: 760px; margin-bottom: 0; }
.features-section { background: var(--bg-deep); }
.feature-grid { grid-template-columns: repeat(3, 1fr); }
.feature-card { min-height: 288px; padding: 28px; position: relative; overflow: hidden; }
.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -58% auto;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(50,224,208,.10);
}
.feature-card span { display: inline-flex; margin-bottom: 20px; color: var(--teal); font-size: 13px; font-weight: 950; text-transform: uppercase; letter-spacing: .03em; }
.feature-ai { background: linear-gradient(150deg, rgba(50,224,208,.16), rgba(32,60,167,.14)); }
.proof-section { display: grid; grid-template-columns: minmax(0, .9fr) minmax(360px, .6fr); gap: clamp(32px, 6vw, 80px); align-items: center; background: var(--bg-2); }
.proof-section > * { max-width: none; margin-left: 0; margin-right: 0; }
.proof-stack { display: grid; gap: 16px; }
.proof-stack div { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.075); }
.proof-stack strong { display: block; margin-bottom: 8px; color: var(--teal); font-size: 30px; letter-spacing: -.04em; }
.proof-stack span { color: var(--muted); }
.screenshots-section { background: var(--bg-deep); }
.highlight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.highlight-card {
  display: grid;
  padding: 0;
  overflow: hidden;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(247,255,254,.07);
  box-shadow: 0 18px 56px rgba(0,0,0,.16);
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.highlight-card:hover, .highlight-card:focus-visible { transform: translateY(-3px); border-color: rgba(50,224,208,.48); background: rgba(247,255,254,.10); }
.screen-wrap { display: block; padding: 10px; background: rgba(255,255,255,.045); border-bottom: 1px solid var(--line); }
.screen-wrap img { width: 100%; aspect-ratio: 16/10.55; object-fit: cover; border-radius: 14px; }
.highlight-body { display: grid; gap: 8px; padding: 22px; }
.highlight-body .mini-label { margin-bottom: 6px; padding: 6px 10px; font-size: 11px; }
.highlight-body strong { font-size: 20px; line-height: 1.2; }
.highlight-body span:not(.mini-label) { color: var(--muted); }
.highlight-body em { margin-top: 6px; color: var(--teal); font-style: normal; font-weight: 950; }
.launch-section { background: linear-gradient(180deg, var(--bg-deep), #062833); }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 0 auto; padding: 0; list-style: none; }
.timeline li { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.07); }
.timeline span { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 24px; color: var(--ink); background: var(--teal); border-radius: 50%; font-weight: 1000; }
.managed-section { background: var(--bg-2); }
.managed-card { display: grid; grid-template-columns: minmax(0, .9fr) minmax(340px, .62fr); gap: clamp(28px, 5vw, 70px); align-items: center; padding: clamp(32px, 5vw, 56px); border: 1px solid var(--line-strong); border-radius: var(--radius-xl); background: radial-gradient(circle at top right, rgba(50,224,208,.20), transparent 34%), rgba(247,255,254,.07); box-shadow: var(--shadow); }
.check-list { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 34px; color: #d8eeee; font-weight: 750; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 4px; width: 19px; height: 19px; border-radius: 50%; background: var(--teal); box-shadow: inset 0 0 0 5px rgba(8,21,30,.35); }
.plans-section { background: var(--bg-deep); }
.plan-grid { grid-template-columns: repeat(3, 1fr); }
.plan-card { display: grid; align-content: start; padding: 30px; }
.plan-card.featured { color: var(--ink); background: var(--white); }
.plan-card.featured p, .plan-card.featured li { color: #3c545a; }
.plan-price { color: inherit; font-size: clamp(27px, 3vw, 38px); font-weight: 1000; letter-spacing: -.04em; }
.plan-card ul { display: grid; gap: 9px; min-height: 142px; margin: 20px 0 26px; padding-left: 20px; color: var(--muted); }
.plan-card .button { align-self: end; }
.faq-section { background: var(--bg-2); }
.faq-grid { grid-template-columns: repeat(2, 1fr); }
details { padding: 22px 24px; }
summary { color: var(--white); font-size: 18px; font-weight: 950; cursor: pointer; }
details p { padding-top: 12px; }
.contact-section { display: grid; grid-template-columns: minmax(0, .86fr) minmax(380px, .72fr); gap: clamp(30px, 6vw, 76px); align-items: start; padding: clamp(76px, 9vw, 126px) clamp(18px, 4vw, 70px); background: radial-gradient(circle at 18% 10%, rgba(50,224,208,.17), transparent 32%), var(--bg-deep); }
.contact-section > * { max-width: none; }
.contact-copy, .contact-form { width: min(100%, 680px); }
.contact-copy { justify-self: end; }
.contact-form { justify-self: start; display: grid; gap: 15px; padding: 28px; border: 1px solid var(--line-strong); border-radius: var(--radius); background: rgba(247,255,254,.07); box-shadow: var(--shadow); }
.contact-methods { display: grid; gap: 10px; margin-top: 30px; }
.contact-logo { width: min(280px, 76vw); height: auto; margin-bottom: 4px; }
.contact-methods a, .contact-methods span { color: #dffafa; font-weight: 900; }
.contact-form label { display: grid; gap: 8px; color: #e8ffff; font-weight: 900; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: 13px 14px; color: var(--white); border: 1px solid rgba(255,255,255,.22); border-radius: 13px; background: rgba(0,0,0,.20); }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: 3px solid rgba(50,224,208,.30); border-color: rgba(50,224,208,.8); }
.contact-form select option { color: var(--ink); }
.contact-form textarea { resize: vertical; }
.form-note { margin: 0; font-size: 13px; color: var(--muted-2); }
.form-status {
  margin: 0;
  padding: 13px 15px;
  border: 1px solid rgba(50,224,208,.42);
  border-radius: 13px;
  color: #eafffb;
  background: rgba(50,224,208,.12);
  font-size: 14px;
  font-weight: 850;
}
.form-status.is-error {
  border-color: rgba(255,117,117,.48);
  color: #ffe9e9;
  background: rgba(255,117,117,.12);
}
.contact-form.is-sending .button[type="submit"] {
  cursor: wait;
  opacity: .74;
}
.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; gap: 22px; align-items: center; padding: 26px clamp(18px, 4vw, 70px); color: var(--muted); background: #031219; border-top: 1px solid var(--line); }
.site-footer div { display: flex; align-items: center; gap: 12px; font-weight: 900; color: var(--white); }
.site-footer img { width: 32px; height: 32px; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; font-size: 14px; font-weight: 850; }
.site-footer > span { justify-self: end; }
.lightbox { width: min(1180px, calc(100vw - 30px)); max-height: calc(100svh - 30px); padding: 0; color: var(--white); border: 1px solid rgba(255,255,255,.24); border-radius: var(--radius-xl); background: var(--bg-deep); box-shadow: var(--shadow); }
.lightbox::backdrop { background: rgba(0,0,0,.72); backdrop-filter: blur(5px); }
.lightbox-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .55fr); gap: 0; }
.lightbox-image-wrap { display: grid; place-items: center; min-height: 420px; padding: 18px; background: #071b24; }
.lightbox-image-wrap img { width: 100%; max-height: calc(100svh - 86px); object-fit: contain; border-radius: 16px; }
.lightbox-copy { padding: clamp(24px, 4vw, 40px); border-left: 1px solid var(--line); }
.lightbox-close { position: absolute; right: 14px; top: 12px; z-index: 2; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: rgba(0,0,0,.34); font-size: 28px; line-height: 1; cursor: pointer; }
.demo-dialog {
  width: min(1500px, calc(100vw - 22px));
  max-height: calc(100svh - 22px);
  padding: 0;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 24px;
  background: #03161e;
  box-shadow: var(--shadow);
}
.demo-dialog::backdrop { background: rgba(0,0,0,.78); backdrop-filter: blur(6px); }
.demo-shell { display: grid; gap: 0; min-height: min(860px, calc(100svh - 22px)); }
.demo-head {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 24px clamp(22px, 4vw, 42px);
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 80% 18%, rgba(50,224,208,.17), transparent 34%), rgba(247,255,254,.055);
}
.demo-head .eyebrow { margin-bottom: 10px; }
.demo-head h2 { margin-bottom: 0; font-size: clamp(25px, 3vw, 42px); }
.demo-layout {
  display: grid;
  grid-template-columns: 252px minmax(0, 1fr) 310px;
  min-height: 0;
}
.demo-steps {
  display: grid;
  align-content: start;
  gap: 8px;
  max-height: calc(100svh - 160px);
  overflow: auto;
  padding: 18px;
  border-right: 1px solid var(--line);
  background: rgba(247,255,254,.045);
}
.demo-step {
  display: grid;
  gap: 3px;
  width: 100%;
  padding: 11px 12px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: #dff8f7;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.demo-step:hover, .demo-step:focus-visible { border-color: rgba(50,224,208,.34); background: rgba(50,224,208,.08); }
.demo-step.is-active { color: var(--white); border-color: rgba(50,224,208,.58); background: rgba(50,224,208,.16); }
.demo-step strong { font-size: 14px; line-height: 1.15; }
.demo-step span { color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.demo-mobile-list { display: none; }
.demo-screen {
  display: grid;
  gap: 14px;
  place-items: center;
  min-height: 0;
  margin: 0;
  padding: clamp(14px, 2vw, 24px);
  background:
    linear-gradient(135deg, rgba(3,22,30,.42), rgba(8,43,52,.84)),
    #041820;
}
.demo-image-frame {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
}
.demo-screen img {
  width: 100%;
  max-height: calc(100svh - 190px);
  object-fit: contain;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0,0,0,.38);
}
.demo-image-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 58px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  color: var(--white);
  background: rgba(3,22,30,.72);
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
}
.demo-image-nav:hover, .demo-image-nav:focus-visible { border-color: rgba(50,224,208,.58); color: var(--teal); }
.demo-image-nav:disabled { cursor: not-allowed; opacity: .34; }
.demo-image-nav-prev { left: 12px; }
.demo-image-nav-next { right: 12px; }
.demo-image-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  color: #dff8f7;
  font-size: 13px;
  font-weight: 900;
}
.demo-dots { display: flex; gap: 7px; align-items: center; }
.demo-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  cursor: pointer;
}
.demo-dot.is-active { border-color: var(--teal); background: var(--teal); }
.demo-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(22px, 3vw, 34px);
  border-left: 1px solid var(--line);
  background: rgba(247,255,254,.055);
}
.demo-copy h3 { margin: 0; }
.demo-copy p { margin: 0; }

@media (max-width: 1120px) {
  .hero-inner, .section-heading.split, .proof-section, .managed-card, .contact-section { grid-template-columns: 1fr; }
  .hero-product, .contact-copy, .contact-form { justify-self: stretch; width: 100%; }
  .proof-a, .proof-b { display: none; }
  .pain-grid, .timeline { grid-template-columns: repeat(2, 1fr); }
  .highlight-grid, .feature-grid, .plan-grid { grid-template-columns: repeat(2, 1fr); }
  .outcome-strip { grid-template-columns: repeat(3, 1fr); }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .site-footer div, .site-footer > span { justify-self: center; }
  .demo-card { grid-template-columns: 1fr; }
  .demo-card .button { justify-self: start; }
  .demo-layout { grid-template-columns: 1fr; }
  .demo-steps { display: flex; gap: 8px; max-height: none; overflow-x: auto; padding: 14px; border-right: 0; border-bottom: 1px solid var(--line); }
  .demo-step { min-width: 178px; }
  .demo-copy { border-left: 0; border-top: 1px solid var(--line); }
  .demo-screen img { max-height: 62svh; }
}
@media (max-width: 760px) {
  .site-header { padding: 12px 16px; }
  .brand { width: min(220px, 60vw); }
  .nav-toggle { display: block; }
  .site-nav { position: absolute; top: 100%; left: 0; right: 0; display: none; padding: 18px; background: rgba(3,22,30,.98); border-bottom: 1px solid var(--line); }
  .site-nav.is-open { display: grid; }
  .nav-cta { width: fit-content; }
  .hero { padding-top: 104px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-actions, .cta-row { display: grid; }
  .button { width: 100%; }
  .hero-metrics, .pain-grid, .role-grid, .feature-grid, .highlight-grid, .timeline, .plan-grid, .faq-grid, .outcome-strip { grid-template-columns: 1fr; }
  .hero-metrics div { min-height: auto; }
  .video-card, .video-stage, .managed-card, .lightbox { border-radius: 20px; }
  .section { padding-left: 16px; padding-right: 16px; }
  h1 { font-size: clamp(31px, 10vw, 46px); }
  h2 { font-size: clamp(31px, 10vw, 46px); }
  .lightbox-grid { grid-template-columns: 1fr; }
  .lightbox-copy { border-left: 0; border-top: 1px solid var(--line); }
  .lightbox-image-wrap { min-height: 220px; padding-top: 56px; }
  .demo-dialog { width: 100vw; max-height: 100svh; overflow-y: auto; border-radius: 0; }
  .demo-shell { min-height: auto; }
  .demo-head { padding: 18px 16px 16px; }
  .demo-head h2 { padding-right: 48px; }
  .demo-steps, .demo-screen, .demo-copy { display: none; }
  .demo-mobile-list {
    display: grid;
    gap: 18px;
    padding: 16px;
    background: linear-gradient(180deg, rgba(247,255,254,.04), rgba(3,22,30,.28));
  }
  .demo-mobile-section {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(247,255,254,.065);
  }
  .demo-mobile-section h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.15;
  }
  .demo-mobile-section p { margin: 0; }
  .demo-mobile-shot {
    display: grid;
    gap: 8px;
  }
  .demo-mobile-shot img {
    width: 100%;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 12px;
    box-shadow: 0 14px 36px rgba(0,0,0,.24);
  }
  .demo-mobile-shot span {
    color: #dff8f7;
    font-size: 12px;
    font-weight: 850;
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
