:root {
  color-scheme: light;
  --ink: #121816;
  --muted: #58635f;
  --bg: #f7f5ef;
  --panel: #ffffff;
  --line: rgba(18, 37, 30, 0.14);
  --blue: #0c7356;
  --blue-bright: #08795a;
  --mint: #62e2b2;
  --mint-deep: #247f65;
  --orange: #ff9a3d;
  --mint-ink: #087052;
  --orange-ink: #b65312;
  --paper: #f7f5ef;
  --paper-alt: #eef3ef;
  --card: #ffffff;
  --text-soft: #55615d;
  --light-border: rgba(18, 37, 30, 0.14);
  --soft-shadow: 0 24px 70px rgba(28, 49, 40, 0.1);
}

* { box-sizing: border-box; }

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", "SF Pro Display", "Segoe UI", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: #07101e;
  background: #fff;
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: flex;
  width: min(100% - 48px, 1280px);
  height: 88px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.22em;
}

.brand-mark {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(98, 226, 178, 0.58);
  border-radius: 50%;
  color: var(--mint);
  box-shadow: 0 0 24px rgba(98, 226, 178, 0.12);
  font-size: 12px;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #aeb7c6;
  font-size: 14px;
}

.site-nav a { transition: color 180ms ease; }
.site-nav a:hover { color: #fff; }

.site-nav .nav-cta {
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
}

.hero {
  position: relative;
  min-height: 980px;
  overflow: hidden;
  padding: 182px 32px 78px;
  isolation: isolate;
  background:
    radial-gradient(circle at 34% 18%, rgba(53, 190, 142, 0.16), transparent 31%),
    radial-gradient(circle at 73% 10%, rgba(255, 154, 61, 0.08), transparent 25%),
    linear-gradient(180deg, #070a10 0%, #05070b 72%);
}

.hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(110, 145, 220, 0.14);
  border-radius: 50%;
}

.orbit-one {
  top: 20px;
  left: 50%;
  width: 920px;
  height: 920px;
  transform: translateX(-50%);
}

.orbit-two {
  top: 146px;
  left: 50%;
  width: 660px;
  height: 660px;
  transform: translateX(-50%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 10px;
  padding: 7px 13px;
  border: 1px solid rgba(98, 226, 178, 0.23);
  border-radius: 999px;
  color: #b6ecd8;
  background: rgba(13, 20, 32, 0.72);
  font-size: 12px;
  font-weight: 620;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(98, 226, 178, 0.12), 0 0 18px rgba(98, 226, 178, 0.9);
}

.hero h1 {
  max-width: 930px;
  margin: 28px auto 0;
  font-size: clamp(50px, 6.5vw, 92px);
  font-weight: 560;
  letter-spacing: -0.055em;
  line-height: 0.99;
  text-wrap: balance;
}

.hero h1 span {
  color: #8b9d9a;
  background: linear-gradient(100deg, #7f928e 0%, #82d7ba 55%, #ffc38c 105%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  max-width: 720px;
  margin: 29px auto 0;
  color: #aab3c3;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 35px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 14px 21px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 650;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  color: #07140f;
  background: linear-gradient(115deg, #89eac6, #d9fff0 72%);
  box-shadow: 0 12px 42px rgba(30, 169, 119, 0.2), 0 12px 40px rgba(0, 0, 0, 0.34);
}

.button-primary span { font-size: 17px; }

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.035);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.07);
}

.trust-list {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 24px 0 0;
  padding: 0;
  color: #7f8b9e;
  font-size: 12px;
  list-style: none;
}

.trust-list li::before {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 9px 2px 0;
  border-radius: 50%;
  background: var(--mint-deep);
  content: "";
}

.product-stage {
  position: relative;
  z-index: 5;
  width: min(1160px, 100%);
  margin: 86px auto 0;
  perspective: 1500px;
}

.product-glow {
  position: absolute;
  z-index: -1;
  top: -80px;
  left: 12%;
  width: 76%;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(52, 188, 139, 0.22), rgba(72, 114, 220, 0.18), rgba(255, 154, 61, 0.12));
  filter: blur(90px);
}

.app-window {
  overflow: hidden;
  border: 1px solid rgba(160, 183, 230, 0.19);
  border-radius: 19px;
  background: #0a0e15;
  box-shadow: 0 55px 120px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  transform: rotateX(2deg);
}

.window-bar {
  display: grid;
  height: 48px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: #0f141d;
  color: #778398;
  font-size: 11px;
}

.window-dots { display: flex; gap: 6px; }

.window-dots span {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.window-title { color: #9da8b9; }
.window-live { justify-self: end; }

.window-live i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 6px;
  border-radius: 50%;
  background: #4c7fe9;
}

.app-layout {
  display: grid;
  min-height: 430px;
  grid-template-columns: 58px minmax(300px, 0.9fr) minmax(390px, 1.1fr);
}

.app-sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 17px;
  padding: 18px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  background: #080c12;
}

.sidebar-logo,
.sidebar-avatar {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  font-size: 9px;
  font-weight: 700;
}

.sidebar-logo { margin-bottom: 10px; color: #091220; background: #d8e2f7; }
.sidebar-avatar { color: #aebbd1; background: #192131; }

.sidebar-item {
  width: 17px;
  height: 17px;
  border: 1px solid #343f51;
  border-radius: 5px;
}

.sidebar-item.active {
  border-color: #749bf0;
  background: rgba(81, 128, 230, 0.25);
  box-shadow: 0 0 14px rgba(86, 134, 239, 0.2);
}

.sidebar-spacer { flex: 1; }

.meeting-pane {
  min-width: 0;
  padding: 42px 35px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  background: #0b1018;
}

.pane-kicker,
.card-label {
  color: #68758a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.meeting-pane h2 {
  margin: 9px 0 14px;
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 590;
  letter-spacing: -0.03em;
}

.participant-row {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.participant-row > span {
  display: grid;
  width: 26px;
  height: 26px;
  margin-left: -4px;
  place-items: center;
  border: 2px solid #0b1018;
  border-radius: 50%;
  color: #b6c2d3;
  background: #1b2433;
  font-size: 8px;
}

.participant-row > span:first-child { margin-left: 0; }
.participant-row small { margin-left: 8px; color: #657187; font-size: 10px; }
.transcript { display: grid; gap: 22px; }

.transcript > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
}

.transcript b { color: #4f5b6e; font-size: 9px; font-weight: 600; }

.transcript p {
  margin: 0;
  color: #9aa5b6;
  font-size: 11px;
  line-height: 1.7;
}

.transcript-fade { opacity: 0.38; }

.summary-pane {
  display: grid;
  align-content: start;
  gap: 11px;
  padding: 34px;
  background: #0d131d;
}

.summary-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 5px;
}

.summary-head span { color: #71809a; font-size: 10px; }
.summary-head h3 { margin: 5px 0 0; font-size: 20px; font-weight: 580; }

.ready-badge {
  padding: 6px 9px;
  border: 1px solid rgba(100, 148, 248, 0.24);
  border-radius: 999px;
  color: #8db0fb !important;
  background: rgba(68, 118, 222, 0.09);
}

.decision-card,
.task-card,
.agent-card {
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.024);
}

.decision-card {
  padding: 17px;
  border-color: rgba(98, 142, 235, 0.19);
  background: linear-gradient(145deg, rgba(54, 98, 188, 0.13), rgba(255, 255, 255, 0.018));
}

.decision-card p,
.task-card p,
.agent-card p {
  margin: 6px 0 0;
  color: #ced6e3;
  font-size: 12px;
  line-height: 1.5;
}

.source-link { margin-top: 13px; color: #6389dc; font-size: 9px; }

.task-card,
.agent-card {
  display: grid;
  grid-template-columns: 27px 1fr;
  gap: 10px;
  padding: 14px;
}

.task-check,
.agent-icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 8px;
  color: #83a7f5;
  background: rgba(71, 118, 220, 0.11);
  font-size: 10px;
}

.task-card small { color: #6d798c; font-size: 9px; }
.agent-card { border-color: rgba(105, 141, 210, 0.16); }

.floating-note {
  position: absolute;
  z-index: 5;
  display: grid;
  gap: 5px;
  min-width: 170px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  background: rgba(17, 24, 36, 0.94);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(16px);
}

.floating-note span {
  color: #68758a;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-note b { font-size: 10px; font-weight: 560; }
.note-left { bottom: 54px; left: -45px; }
.note-right { right: -28px; bottom: 91px; }

.command-menu-shot {
  position: absolute;
  z-index: 7;
  right: -32px;
  bottom: -52px;
  width: 196px;
  margin: 0;
  transform: rotate(1.6deg);
}

.command-menu-shot img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 17px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.62), 0 0 38px rgba(98, 226, 178, 0.08);
}

.command-menu-shot figcaption {
  display: inline-flex;
  margin: 10px 0 0 4px;
  padding: 7px 10px;
  border: 1px solid rgba(98, 226, 178, 0.19);
  border-radius: 999px;
  color: #9fb9b0;
  background: rgba(8, 13, 16, 0.85);
  font-size: 9px;
  white-space: nowrap;
}

.proof-section {
  display: grid;
  width: min(100% - 64px, 1280px);
  grid-template-columns: 0.8fr 2.2fr;
  gap: 60px;
  align-items: end;
  margin: 0 auto;
  padding: 88px 0 96px;
  border-top: 1px solid var(--line);
}

.proof-intro span {
  color: #67758b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-intro p {
  max-width: 280px;
  margin: 13px 0 0;
  color: #b9c3d2;
  font-size: 17px;
  line-height: 1.5;
}

.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }

.proof-item {
  min-height: 128px;
  padding: 0 22px;
  border-left: 1px solid var(--line);
}

.proof-item strong {
  display: block;
  color: #d8fff0;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 520;
  letter-spacing: -0.05em;
}

.proof-item:nth-child(even) strong { color: #ffc58e; }

.proof-item span {
  display: block;
  max-width: 150px;
  margin-top: 13px;
  color: #78869a;
  font-size: 12px;
  line-height: 1.5;
}

.section-shell {
  width: min(100% - 64px, 1280px);
  margin-inline: auto;
}

.showcase-section {
  padding-top: 126px;
  padding-bottom: 148px;
}

.showcase-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  gap: 90px;
  align-items: end;
}

.showcase-heading h2 {
  max-width: 770px;
  margin: 0;
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 1.02;
  text-wrap: balance;
}

.showcase-heading > p {
  margin: 0;
  color: #8f9cac;
  font-size: 17px;
  line-height: 1.68;
}

.mint-index { color: var(--mint); }

.device-stage {
  position: relative;
  min-height: 725px;
  margin-top: 78px;
  padding: 70px 34px 0;
  border: 1px solid rgba(98, 226, 178, 0.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at 27% 24%, rgba(66, 198, 149, 0.18), transparent 30%),
    radial-gradient(circle at 78% 72%, rgba(255, 154, 61, 0.11), transparent 29%),
    linear-gradient(145deg, #0d1517 0%, #070b10 68%);
  isolation: isolate;
  overflow: hidden;
}

.device-stage::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  content: "";
}

.device-aura {
  position: absolute;
  z-index: -1;
  top: 160px;
  left: 18%;
  width: 64%;
  height: 340px;
  border-radius: 50%;
  background: rgba(75, 221, 167, 0.18);
  filter: blur(100px);
}

.macbook {
  position: relative;
  z-index: 2;
  width: min(930px, 82%);
  margin: 0 auto;
  filter: drop-shadow(0 56px 52px rgba(0, 0, 0, 0.58));
}

.macbook-lid {
  position: relative;
  padding: 13px 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px 22px 8px 8px;
  background: linear-gradient(140deg, #8b9299, #2f343a 12%, #11151a 86%, #5c636a);
  box-shadow: 0 0 0 1px #050607 inset, 0 2px 0 rgba(255, 255, 255, 0.2) inset;
}

.macbook-camera {
  position: absolute;
  z-index: 3;
  top: 5px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #050608;
  box-shadow: 0 0 0 1px rgba(85, 124, 107, 0.36);
  transform: translateX(-50%);
}

.macbook-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 12px 12px 3px 3px;
  background: #171d1b;
}

.macbook-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.privacy-glass {
  position: absolute;
  right: 4.5%;
  bottom: 4%;
  width: 57%;
  height: 74%;
  padding: 26px;
  border: 1px solid rgba(98, 226, 178, 0.24);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(13, 27, 23, 0.78), rgba(15, 19, 18, 0.64)),
    rgba(17, 24, 22, 0.5);
  backdrop-filter: blur(10px);
}

.product-overlay {
  display: grid;
  align-content: end;
  gap: 10px;
  color: #eff8f4;
}

.overlay-kicker {
  color: var(--mint);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-overlay strong {
  max-width: 410px;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 540;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}

.product-overlay p {
  max-width: 400px;
  margin: 0;
  color: rgba(222, 235, 229, 0.7);
  font-size: 11px;
  line-height: 1.55;
}

.macbook-base {
  position: relative;
  width: 108%;
  height: 24px;
  margin-left: -4%;
  border-radius: 3px 3px 18px 18px;
  background: linear-gradient(180deg, #d3d6d8 0%, #73797f 16%, #24292e 42%, #9ca1a5 87%, #42474c 100%);
  box-shadow: 0 13px 19px rgba(0, 0, 0, 0.45);
}

.macbook-base i {
  position: absolute;
  top: 0;
  left: 50%;
  width: 15%;
  height: 7px;
  border-radius: 0 0 8px 8px;
  background: #4a4f54;
  transform: translateX(-50%);
}

.showcase-callout {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 7px;
  width: 205px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(12, 18, 20, 0.88);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.showcase-callout small {
  color: #73847f;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-callout strong {
  color: #d9e7e1;
  font-size: 12px;
  font-weight: 580;
  line-height: 1.45;
}

.callout-record { top: 155px; left: 18px; }
.callout-ready { right: 26px; bottom: 76px; border-color: rgba(255, 154, 61, 0.22); }

.callout-dot {
  position: absolute;
  top: 17px;
  right: 17px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 7px rgba(98, 226, 178, 0.08), 0 0 18px rgba(98, 226, 178, 0.78);
}

.screen-gallery {
  display: grid;
  grid-template-columns: 1.34fr 0.66fr;
  gap: 14px;
  margin-top: 14px;
}

.screen-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: #0a0f14;
}

.screen-media {
  position: relative;
  overflow: hidden;
  height: 410px;
  border-bottom: 1px solid var(--line);
  background: #151d1a;
}

.screen-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.screen-card:hover .screen-media img { transform: scale(1.015); }
.screen-home img { object-position: center top; }
.screen-notes img { object-position: 42% top; }

.screen-mask {
  position: absolute;
  padding: 26px;
  border: 1px solid rgba(98, 226, 178, 0.2);
  background: linear-gradient(145deg, rgba(12, 25, 21, 0.82), rgba(16, 20, 19, 0.72));
  backdrop-filter: blur(10px);
}

.mask-home {
  inset: 20% 4.5% 4%;
  border-radius: 13px;
}

.mask-notes {
  inset: 31% 4% 8%;
  border-radius: 14px;
  border-color: rgba(255, 154, 61, 0.22);
  background: linear-gradient(145deg, rgba(32, 23, 16, 0.82), rgba(17, 20, 19, 0.72));
}

.mask-notes .overlay-kicker { color: var(--orange); }

.compact-overlay strong { max-width: 570px; font-size: clamp(22px, 2.5vw, 34px); }

.overlay-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 5px;
}

.overlay-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(98, 226, 178, 0.2);
  border-radius: 999px;
  color: #b6ddcf;
  background: rgba(98, 226, 178, 0.07);
  font-size: 9px;
}

.screen-card figcaption {
  display: grid;
  gap: 10px;
  min-height: 118px;
  padding: 25px 27px;
}

.screen-card figcaption span {
  color: var(--mint);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.screen-card:nth-child(2) figcaption span { color: var(--orange); }

.screen-card figcaption strong {
  color: #c9d2d0;
  font-size: 17px;
  font-weight: 540;
  line-height: 1.35;
}

.section-heading {
  max-width: 750px;
}

.section-index {
  margin-bottom: 20px;
  color: #6f7e95;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-heading h2,
.security-copy h2,
.audience-copy h2,
.pilot-copy h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 520;
  letter-spacing: -0.052em;
  line-height: 1.04;
  text-wrap: balance;
}

.section-heading > p,
.security-copy > p,
.audience-copy > p,
.pilot-copy > p {
  max-width: 640px;
  margin: 24px 0 0;
  color: #8e9aad;
  font-size: 18px;
  line-height: 1.65;
}

.problem-section {
  position: relative;
  padding-top: 126px;
  padding-bottom: 142px;
}

.problem-section::before {
  position: absolute;
  z-index: -1;
  top: 170px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255, 154, 61, 0.08);
  filter: blur(120px);
  content: "";
}

.problem-section .section-index { color: var(--orange); }

.problem-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
  margin-top: 64px;
}

.problem-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #090d14;
}

.problem-card::before {
  position: absolute;
  top: 0;
  right: 24px;
  left: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(98, 226, 178, 0.58), transparent);
  content: "";
}

.problem-card:nth-child(3)::before {
  background: linear-gradient(90deg, transparent, rgba(255, 154, 61, 0.62), transparent);
}

.problem-card h3 {
  max-width: 470px;
  margin: 18px 0 0;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 540;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.problem-card > p {
  max-width: 520px;
  margin: 15px 0 0;
  color: #7d899c;
  font-size: 14px;
  line-height: 1.6;
}

.problem-number {
  color: var(--mint);
  font: 600 11px ui-monospace, monospace;
}

.featured-problem {
  grid-row: span 3;
  min-height: 654px;
  padding: 48px;
  background:
    radial-gradient(circle at 20% 90%, rgba(50, 185, 136, 0.2), transparent 43%),
    radial-gradient(circle at 84% 8%, rgba(255, 154, 61, 0.12), transparent 32%),
    #0b1018;
  border-color: rgba(98, 226, 178, 0.18);
}

.problem-value {
  display: block;
  color: #dce6fa;
  background: linear-gradient(110deg, #e7fff6, #73ddb7 62%, #ffc083 112%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(62px, 8vw, 112px);
  font-weight: 510;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.featured-problem h3 {
  max-width: 540px;
  margin-top: 30px;
  font-size: clamp(27px, 3.2vw, 45px);
}

.search-visual {
  position: absolute;
  right: 46px;
  bottom: 46px;
  left: 46px;
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border: 1px solid rgba(98, 226, 178, 0.23);
  border-radius: 14px;
  color: #92a0b6;
  background: rgba(4, 7, 12, 0.5);
  font-size: 13px;
}

.search-visual i {
  width: 23px;
  height: 23px;
  border: 1px solid var(--mint-deep);
  border-radius: 50%;
}

.search-visual i::after {
  display: block;
  width: 7px;
  height: 1px;
  margin: 19px 0 0 17px;
  background: var(--mint-deep);
  transform: rotate(45deg);
  content: "";
}

.living-section {
  padding: 136px 0 148px;
  border-block: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 7% 18%, rgba(98, 226, 178, 0.08), transparent 25%),
    radial-gradient(circle at 92% 68%, rgba(255, 154, 61, 0.07), transparent 24%),
    #080b11;
}

.living-section .section-index { color: var(--mint); }

.wide-heading {
  display: grid;
  max-width: none;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  align-items: end;
}

.wide-heading .section-index {
  grid-column: 1 / -1;
  margin-bottom: -44px;
}

.wide-heading > p {
  margin: 0;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 72px;
}

.compare-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.archive-card {
  color: #b3bdcc;
  background: #0b0f16;
}

.ativra-card {
  background:
    radial-gradient(circle at 70% 80%, rgba(67, 204, 154, 0.22), transparent 40%),
    radial-gradient(circle at 96% 0%, rgba(255, 154, 61, 0.09), transparent 28%),
    #0d1718;
  border-color: rgba(98, 226, 178, 0.25);
}

.compare-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6e7b8f;
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.compare-top small {
  font-size: 9px;
  letter-spacing: 0.05em;
}

.compare-top small i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 5px 1px 0;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 9px rgba(98, 226, 178, 0.9);
}

.compare-card h3 {
  max-width: 450px;
  margin: 44px 0 0;
  font-size: clamp(29px, 3.4vw, 49px);
  font-weight: 520;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.compare-card ul {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  color: #8a97aa;
  font-size: 13px;
  list-style: none;
}

.compare-card li::before {
  margin-right: 10px;
  color: #56657c;
  content: "—";
}

.ativra-card li::before { color: var(--mint); }

.archive-lines {
  position: absolute;
  right: 38px;
  bottom: 44px;
  left: 38px;
  display: grid;
  gap: 13px;
  opacity: 0.35;
}

.archive-lines i {
  display: block;
  height: 8px;
  border-radius: 9px;
  background: #293140;
}

.archive-lines i:nth-child(2) { width: 76%; }
.archive-lines i:nth-child(3) { width: 91%; }
.archive-lines i:nth-child(4) { width: 57%; }

.memory-map {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 190px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 30px 30px;
}

.memory-map::before,
.memory-map::after {
  position: absolute;
  height: 1px;
  background: rgba(98, 226, 178, 0.34);
  content: "";
  transform-origin: left;
}

.memory-map::before { top: 94px; left: 37%; width: 30%; transform: rotate(-23deg); }
.memory-map::after { top: 94px; left: 37%; width: 33%; transform: rotate(21deg); }

.map-node {
  position: absolute;
  z-index: 1;
  display: grid;
  min-height: 32px;
  place-items: center;
  padding: 0 12px;
  border: 1px solid rgba(98, 226, 178, 0.2);
  border-radius: 9px;
  color: #a8b8d6;
  background: #12201e;
  font-size: 9px;
}

.node-main { top: 76px; left: 29%; border-color: rgba(98, 226, 178, 0.46); color: #e1f7ef; }
.node-one { top: 27px; left: 68%; }
.node-two { right: 7%; bottom: 28px; border-color: rgba(255, 154, 61, 0.35); color: #ffd0a4; }
.node-three { bottom: 20px; left: 9%; }

.workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 74px;
  border-block: 1px solid var(--line);
}

.workflow article {
  position: relative;
  min-height: 230px;
  padding: 36px 30px;
  border-left: 1px solid var(--line);
}

.workflow article:first-child { border-left: 0; }

.workflow article::after {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 14px rgba(98, 226, 178, 0.45);
  content: "";
}

.workflow article:first-child::after { left: 0; }
.workflow article:nth-child(even)::after { background: var(--orange); box-shadow: 0 0 14px rgba(255, 154, 61, 0.4); }
.workflow article > span { color: var(--mint-deep); font: 600 10px ui-monospace, monospace; }
.workflow article:nth-child(even) > span { color: var(--orange); }
.workflow h3 { margin: 44px 0 0; font-size: 23px; font-weight: 560; }
.workflow p { margin: 13px 0 0; color: #7d899b; font-size: 13px; line-height: 1.6; }

.capabilities-section {
  position: relative;
  padding-top: 138px;
  padding-bottom: 150px;
}

.capabilities-section::after {
  position: absolute;
  z-index: -1;
  right: 5%;
  bottom: 10%;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(98, 226, 178, 0.06);
  filter: blur(110px);
  content: "";
}

.capabilities-section .section-index { color: var(--orange); }

.capability-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  margin-top: 64px;
}

.capability-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #090d14;
}

.capability-card::before {
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(98, 226, 178, 0.58), transparent);
  content: "";
}

.capability-card:nth-child(even)::before {
  background: linear-gradient(90deg, transparent, rgba(255, 154, 61, 0.58), transparent);
}

.capability-card h3 {
  max-width: 500px;
  margin: 22px 0 0;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 520;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.capability-card > p {
  max-width: 560px;
  margin: 17px 0 0;
  color: #8290a3;
  font-size: 14px;
  line-height: 1.65;
}

.capability-label {
  color: var(--mint);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.capability-card:nth-child(even) .capability-label { color: var(--orange); }

.capability-large { grid-column: span 7; min-height: 520px; }
.prep-card { grid-column: span 5; min-height: 520px; }
.sync-card { grid-column: span 5; }
.source-card { grid-column: span 3; }
.agent-feature-card { grid-column: span 4; }

.query-box,
.answer-box {
  position: absolute;
  right: 31px;
  left: 31px;
  border: 1px solid rgba(98, 226, 178, 0.18);
  border-radius: 13px;
}

.query-box {
  bottom: 126px;
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  color: #a7b3c5;
  background: #0f1a19;
  font-size: 12px;
}

.query-box b { color: #5e6c80; font: 600 9px ui-monospace, monospace; }

.answer-box {
  bottom: 24px;
  min-height: 90px;
  padding: 15px 17px;
  background: linear-gradient(120deg, rgba(48, 175, 128, 0.13), rgba(255, 154, 61, 0.035));
}

.answer-box small { color: var(--mint); font-size: 9px; }
.answer-box p { margin: 8px 0 0; color: #bbc6d6; font-size: 12px; }

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

.prep-card li {
  display: flex;
  min-height: 59px;
  align-items: center;
  gap: 14px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 12px;
  color: #97a3b4;
  font-size: 12px;
}

.prep-card li span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 8px;
  color: #aff2d8;
  background: rgba(98, 226, 178, 0.12);
  font-size: 10px;
}

.sync-flow {
  position: absolute;
  right: 30px;
  bottom: 38px;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sync-flow span {
  display: grid;
  min-width: 75px;
  min-height: 43px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  color: #a8b4c4;
  background: #111722;
  font-size: 11px;
}

.sync-flow span:first-child { border-color: rgba(98, 226, 178, 0.3); color: #c8f2e2; background: rgba(98, 226, 178, 0.07); }
.sync-flow i { flex: 1; height: 1px; margin-inline: 7px; background: linear-gradient(90deg, rgba(98, 226, 178, 0.32), rgba(255, 154, 61, 0.24)); }

.source-chip {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  border-color: rgba(255, 154, 61, 0.16);
  color: #c08d61;
  background: #17130f;
  font-size: 10px;
}

.agent-pulse {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 12px;
  color: #8291a7;
  font-size: 10px;
}

.agent-pulse i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 8px rgba(98, 226, 178, 0.08), 0 0 16px rgba(98, 226, 178, 0.8);
}

.thesis-section {
  position: relative;
  overflow: hidden;
  padding: 128px 0 134px;
  border-block: 1px solid rgba(255, 154, 61, 0.16);
  background:
    radial-gradient(circle at 88% 78%, rgba(255, 154, 61, 0.17), transparent 28%),
    radial-gradient(circle at 8% 20%, rgba(98, 226, 178, 0.1), transparent 26%),
    #101215;
}

.thesis-section::after {
  position: absolute;
  right: -120px;
  bottom: -260px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 154, 61, 0.11);
  border-radius: 50%;
  content: "";
}

.thesis-shell {
  position: relative;
  z-index: 1;
}

.thesis-line {
  display: block;
  width: 64px;
  height: 5px;
  margin-bottom: 42px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 24px rgba(255, 154, 61, 0.35);
}

.thesis-shell p {
  max-width: 1110px;
  margin: 0;
  color: #f0f2ef;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.08;
  text-wrap: balance;
}

.thesis-shell strong {
  display: block;
  margin-top: 52px;
  color: var(--orange);
  font-size: clamp(20px, 2.2vw, 29px);
  font-weight: 520;
}

.security-section {
  padding: 140px 0 0;
  overflow: hidden;
  color: #101621;
  background:
    radial-gradient(circle at 3% 18%, rgba(98, 226, 178, 0.2), transparent 24%),
    radial-gradient(circle at 96% 82%, rgba(255, 154, 61, 0.12), transparent 23%),
    #e9edf3;
}

.security-shell {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 90px;
}

.dark-index { color: #68758a; }

.security-copy h2 { color: #0a101a; }

.security-copy > p { color: #566274; }

.security-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.security-tags span {
  padding: 9px 12px;
  border: 1px solid rgba(12, 20, 31, 0.12);
  border-radius: 999px;
  color: #3f4a5b;
  font-size: 10px;
  font-weight: 650;
}

.security-tags span:first-child {
  border-color: rgba(36, 127, 101, 0.28);
  color: #17684f;
  background: rgba(98, 226, 178, 0.12);
}

.security-tags span:nth-child(2) {
  border-color: rgba(180, 91, 22, 0.22);
  color: #8c4b18;
  background: rgba(255, 154, 61, 0.11);
}

.security-stack {
  border-top: 1px solid rgba(16, 22, 33, 0.13);
}

.security-stack article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 29px 0;
  border-bottom: 1px solid rgba(16, 22, 33, 0.13);
}

.security-stack article > span { color: #8490a0; font: 600 10px ui-monospace, monospace; }
.security-stack h3 { margin: 0; font-size: 20px; font-weight: 590; }
.security-stack p { margin: 9px 0 0; color: #647082; font-size: 13px; line-height: 1.6; }

.security-note {
  grid-column: 1 / -1;
  margin-top: 65px;
  padding: 38px 0 46px;
  border-top: 1px solid rgba(16, 22, 33, 0.13);
  color: #344052;
  font-size: clamp(20px, 2.7vw, 34px);
  font-weight: 520;
  letter-spacing: -0.03em;
  text-align: center;
}

.integrations-section {
  padding-top: 136px;
  padding-bottom: 146px;
}

.integrations-section .section-index { color: var(--mint); }

.horizontal-heading {
  display: grid;
  max-width: none;
  grid-template-columns: 1fr 0.55fr;
  gap: 90px;
  align-items: end;
}

.horizontal-heading > p { margin: 0; }

.integration-block {
  margin-top: 64px;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 50%, rgba(98, 226, 178, 0.055), transparent 28%),
    radial-gradient(circle at 82% 55%, rgba(255, 154, 61, 0.04), transparent 25%);
}

.integration-row {
  display: flex;
  min-height: 118px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.integration-row:last-child { border-bottom: 0; }

.integration-row strong {
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #aeb9c9;
  background: rgba(255, 255, 255, 0.025);
  font-size: 13px;
  font-weight: 540;
}

.live-integrations strong {
  border-color: rgba(98, 226, 178, 0.2);
  color: #c9eadf;
  background: rgba(98, 226, 178, 0.045);
}
.live-integrations strong:nth-of-type(even) { border-color: rgba(255, 154, 61, 0.2); color: #e5c19f; background: rgba(255, 154, 61, 0.04); }
.row-label { width: 180px; color: #647188; font-size: 10px; text-transform: uppercase; letter-spacing: 0.09em; }
.live-integrations .row-label { color: var(--mint); }
.roadmap-integrations .row-label { color: var(--orange); }
.roadmap-integrations { flex-wrap: wrap; padding-block: 20px; }
.roadmap-integrations strong { color: #667389; background: transparent; }

.audience-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 100px;
  padding-bottom: 150px;
}

.audience-section .section-index { color: var(--orange); }

.role-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.role-list span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #8592a5;
  font-size: 11px;
}

.role-list span:nth-child(odd) { border-color: rgba(98, 226, 178, 0.16); color: #8fb9aa; background: rgba(98, 226, 178, 0.035); }
.role-list span:nth-child(even) { border-color: rgba(255, 154, 61, 0.14); color: #a98b70; background: rgba(255, 154, 61, 0.025); }

.adoption-path {
  display: grid;
  gap: 10px;
}

.adoption-path article {
  display: grid;
  min-height: 150px;
  grid-template-columns: 45px 0.65fr 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px 27px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #090d14;
}

.adoption-path article:nth-child(2) {
  border-color: rgba(255, 154, 61, 0.15);
  background: linear-gradient(120deg, rgba(255, 154, 61, 0.06), #090d14 72%);
}

.adoption-path article:nth-child(3) {
  border-color: rgba(98, 226, 178, 0.14);
  background: linear-gradient(120deg, rgba(98, 226, 178, 0.055), #090d14 72%);
}

.adoption-path article.path-active {
  border-color: rgba(98, 226, 178, 0.25);
  background: linear-gradient(120deg, rgba(98, 226, 178, 0.12), #090d14 70%);
}

.adoption-path article > span { color: var(--mint); font: 600 10px ui-monospace, monospace; }
.adoption-path article:nth-child(2) > span { color: var(--orange); }
.adoption-path h3 { margin: 0; font-size: 20px; font-weight: 560; }
.adoption-path p { margin: 0; color: #79869a; font-size: 12px; line-height: 1.55; }

.pilot-section {
  position: relative;
  overflow: hidden;
  padding: 145px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 27% 40%, rgba(54, 193, 142, 0.18), transparent 34%),
    radial-gradient(circle at 82% 72%, rgba(255, 154, 61, 0.11), transparent 28%),
    #080b11;
}

.pilot-orbit {
  position: absolute;
  top: -280px;
  left: -120px;
  width: 820px;
  height: 820px;
  border: 1px solid rgba(98, 226, 178, 0.13);
  border-radius: 50%;
}

.pilot-orbit::after {
  position: absolute;
  inset: 150px;
  border: 1px solid rgba(255, 154, 61, 0.1);
  border-radius: 50%;
  content: "";
}

.pilot-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 100px;
  align-items: center;
}

.pilot-action { margin-top: 35px; }

.pilot-action p {
  max-width: 430px;
  margin: 12px 0 0;
  color: #66758a;
  font-size: 10px;
  line-height: 1.5;
}

.pilot-button {
  border: 0;
  color: #07140f;
  background: linear-gradient(115deg, #89eac6, #d9fff0 72%);
  box-shadow: 0 14px 38px rgba(36, 183, 130, 0.18);
  cursor: pointer;
}
.pilot-button span { font-size: 15px; }

.pilot-card {
  padding: 35px;
  border: 1px solid rgba(98, 226, 178, 0.2);
  border-radius: 22px;
  background:
    linear-gradient(150deg, rgba(98, 226, 178, 0.055), rgba(255, 154, 61, 0.025) 62%),
    rgba(15, 22, 27, 0.87);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.32);
}

.pilot-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  color: #738096;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pilot-card-head b { color: var(--mint); font-weight: 650; }
.pilot-card ol { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }

.pilot-card li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 13px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.pilot-card li:last-child { border-bottom: 0; padding-bottom: 0; }
.pilot-card li > span { color: var(--mint); font: 600 9px ui-monospace, monospace; }
.pilot-card li:nth-child(even) > span { color: var(--orange); }
.pilot-card li p { margin: 0; color: #738197; font-size: 11px; line-height: 1.55; }
.pilot-card li b { display: block; margin-bottom: 5px; color: #c3ccda; font-size: 13px; font-weight: 560; }

.faq-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
  padding-top: 140px;
  padding-bottom: 140px;
}

.faq-heading h2 { font-size: clamp(38px, 4.5vw, 58px); }
.faq-heading .section-index { color: var(--mint); }
.faq-list { border-top: 1px solid var(--line); }

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #c1cad8;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--orange); font-size: 22px; font-weight: 300; transition: transform 180ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }

.faq-list details p {
  max-width: 720px;
  margin: -8px 0 27px;
  color: #7e8a9d;
  font-size: 14px;
  line-height: 1.65;
}

.site-footer {
  display: grid;
  width: min(100% - 64px, 1280px);
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  align-items: center;
  margin: 0 auto;
  padding: 42px 0;
  border-top: 1px solid var(--line);
  color: #68758a;
  font-size: 11px;
}

.footer-brand { display: flex; align-items: center; gap: 11px; color: #c2cad5; letter-spacing: 0.17em; font-size: 11px; }
.footer-brand .brand-mark { width: 27px; height: 27px; font-size: 10px; letter-spacing: 0; }
.site-footer > p { margin: 0; text-align: center; }
.footer-meta { display: flex; gap: 20px; }

/* Premium light theme */
.site-header {
  border-bottom-color: var(--light-border);
}

.brand { color: #101714; }

.brand-mark {
  border-color: rgba(8, 112, 82, 0.42);
  color: var(--mint-ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 30px rgba(20, 75, 55, 0.09);
}

.site-nav { color: #4f5b57; }
.site-nav a:hover { color: #0b1511; }

.site-nav .nav-cta {
  border-color: rgba(14, 34, 27, 0.26);
  color: #101714;
  background: rgba(255, 255, 255, 0.62);
}

.hero {
  background:
    radial-gradient(circle at 30% 18%, rgba(98, 226, 178, 0.29), transparent 32%),
    radial-gradient(circle at 76% 12%, rgba(255, 154, 61, 0.2), transparent 26%),
    linear-gradient(180deg, #fbfaf6 0%, #f4f7f2 72%, #f7f5ef 100%);
}

.hero-grid {
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(22, 58, 44, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 58, 44, 0.07) 1px, transparent 1px);
}

.hero-orbit { border-color: rgba(16, 103, 76, 0.15); }

.eyebrow {
  border-color: rgba(8, 112, 82, 0.23);
  color: #135f49;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 12px 36px rgba(20, 68, 51, 0.07);
}

.hero h1 { color: #101613; }

.hero h1 span {
  background: linear-gradient(100deg, #1d4034 0%, #087052 56%, #b65312 108%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead { color: #46534e; }

.button-primary {
  color: #ffffff;
  background: #0b7658;
  box-shadow: 0 16px 42px rgba(11, 118, 88, 0.23);
}

.button-primary:hover { background: #075f46; }

.button-secondary {
  border-color: rgba(15, 37, 29, 0.22);
  color: #17201d;
  background: rgba(255, 255, 255, 0.78);
}

.button-secondary:hover {
  border-color: rgba(15, 37, 29, 0.4);
  background: #ffffff;
}

.trust-list { color: #56625e; }
.trust-list li::before { background: var(--mint-ink); }

.product-glow {
  background: linear-gradient(90deg, rgba(55, 197, 145, 0.3), rgba(63, 126, 183, 0.14), rgba(255, 154, 61, 0.2));
}

.meeting-pane h2,
.summary-head h3,
.floating-note b { color: #f4f7fb; }

.proof-section { border-top-color: var(--light-border); }
.proof-intro span { color: var(--mint-ink); }
.proof-intro p { color: #35423d; }
.proof-item { border-left-color: var(--light-border); }
.proof-item strong { color: var(--mint-ink); }
.proof-item:nth-child(even) strong { color: var(--orange-ink); }
.proof-item span { color: #55615d; }

.showcase-heading h2 { color: #111815; }
.showcase-heading > p { color: #4e5b56; }
.mint-index { color: var(--mint-ink); }

.device-stage {
  border-color: rgba(9, 112, 82, 0.2);
  background:
    radial-gradient(circle at 25% 22%, rgba(98, 226, 178, 0.28), transparent 31%),
    radial-gradient(circle at 80% 70%, rgba(255, 154, 61, 0.2), transparent 28%),
    linear-gradient(145deg, #eef7f1 0%, #fffaf3 100%);
  box-shadow: var(--soft-shadow);
}

.device-stage::before {
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(18, 61, 45, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 61, 45, 0.06) 1px, transparent 1px);
}

.device-aura { background: rgba(68, 210, 157, 0.24); }

.showcase-callout {
  border-color: rgba(14, 42, 32, 0.16);
  color: #15201c;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 55px rgba(37, 62, 52, 0.15);
}

.showcase-callout small { color: #68746f; }
.showcase-callout strong { color: #14201c; }
.callout-ready { border-color: rgba(182, 83, 18, 0.25); }

.screen-card {
  border-color: var(--light-border);
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(30, 55, 45, 0.08);
}

.screen-card figcaption { background: #ffffff; }
.screen-card figcaption span { color: var(--mint-ink); }
.screen-card:nth-child(2) figcaption span { color: var(--orange-ink); }
.screen-card figcaption strong { color: #1b2622; }

.section-index { color: #62706a; }

.problem-section .section-index { color: var(--orange-ink); }

.problem-card {
  border-color: var(--light-border);
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(31, 58, 47, 0.07);
}

.problem-card h3 { color: #17211d; }
.problem-card > p { color: #56625e; }
.problem-number { color: var(--mint-ink); }

.featured-problem {
  border-color: rgba(8, 112, 82, 0.22);
  background:
    radial-gradient(circle at 18% 88%, rgba(98, 226, 178, 0.29), transparent 43%),
    radial-gradient(circle at 84% 8%, rgba(255, 154, 61, 0.2), transparent 32%),
    #fbfdfb;
}

.problem-value {
  background: linear-gradient(110deg, #103a2e, #087052 62%, #b65312 112%);
  background-clip: text;
  -webkit-background-clip: text;
}

.search-visual {
  border-color: rgba(8, 112, 82, 0.25);
  color: #3e4d47;
  background: rgba(255, 255, 255, 0.82);
}

.living-section {
  border-block-color: var(--light-border);
  background:
    radial-gradient(circle at 7% 18%, rgba(98, 226, 178, 0.17), transparent 25%),
    radial-gradient(circle at 92% 68%, rgba(255, 154, 61, 0.13), transparent 24%),
    var(--paper-alt);
}

.living-section .section-index { color: var(--mint-ink); }
.wide-heading h2 { color: #121a17; }
.wide-heading > p { color: #4d5a55; }

.compare-card {
  border-color: var(--light-border);
  color: #1b2521;
  box-shadow: 0 18px 45px rgba(25, 51, 41, 0.07);
}

.archive-card { color: #26312d; background: rgba(255, 255, 255, 0.76); }

.ativra-card {
  border-color: rgba(8, 112, 82, 0.25);
  background:
    radial-gradient(circle at 70% 80%, rgba(98, 226, 178, 0.3), transparent 40%),
    radial-gradient(circle at 96% 0%, rgba(255, 154, 61, 0.17), transparent 28%),
    #f7fcf9;
}

.compare-top { color: #5b6863; }
.compare-card h3 { color: #14201b; }
.compare-card ul { color: #4e5b56; }
.compare-card li::before { color: #7b8782; }
.ativra-card li::before { color: var(--mint-ink); }

.archive-lines i { background: #dbe2de; }

.memory-map {
  border-top-color: rgba(19, 50, 39, 0.1);
  background-image:
    linear-gradient(rgba(19, 50, 39, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 50, 39, 0.06) 1px, transparent 1px);
}

.map-node {
  border-color: rgba(8, 112, 82, 0.23);
  color: #285244;
  background: rgba(255, 255, 255, 0.88);
}

.node-main { color: #133b2e; }
.node-two { color: #87400f; }

.workflow { border-block-color: var(--light-border); }
.workflow article { border-left-color: var(--light-border); }
.workflow article > span { color: var(--mint-ink); }
.workflow h3 { color: #18221e; }
.workflow p { color: #56625e; }

.capabilities-section .section-index { color: var(--orange-ink); }

.capability-card {
  border-color: var(--light-border);
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(31, 58, 47, 0.07);
}

.capability-card h3 { color: #17211d; }
.capability-card > p { color: #53605b; }
.capability-label { color: var(--mint-ink); }
.capability-card:nth-child(even) .capability-label { color: var(--orange-ink); }

.query-box {
  border-color: rgba(8, 112, 82, 0.2);
  color: #34433d;
  background: #f1f8f4;
}

.answer-box {
  border-color: rgba(8, 112, 82, 0.18);
  background: linear-gradient(120deg, rgba(98, 226, 178, 0.16), rgba(255, 154, 61, 0.08));
}

.answer-box small { color: var(--mint-ink); }
.answer-box p { color: #35433e; }

.prep-card li {
  border-color: rgba(18, 37, 30, 0.12);
  color: #46534e;
  background: #fbfcfb;
}

.prep-card li span { color: var(--mint-ink); background: rgba(98, 226, 178, 0.18); }

.sync-flow span {
  border-color: rgba(18, 37, 30, 0.13);
  color: #46534e;
  background: #f8faf8;
}

.sync-flow span:first-child {
  border-color: rgba(8, 112, 82, 0.28);
  color: #0b6048;
  background: rgba(98, 226, 178, 0.16);
}

.source-chip {
  border-color: rgba(182, 83, 18, 0.2);
  color: #8e4513;
  background: #fff5eb;
}

.agent-pulse { color: #58655f; }

.thesis-section {
  border-block-color: rgba(182, 83, 18, 0.18);
  background:
    radial-gradient(circle at 88% 78%, rgba(255, 154, 61, 0.23), transparent 29%),
    radial-gradient(circle at 8% 20%, rgba(98, 226, 178, 0.2), transparent 27%),
    #fff7ed;
}

.thesis-section::after { border-color: rgba(182, 83, 18, 0.15); }

.thesis-shell p { color: #171b18; }
.thesis-shell strong { color: var(--orange-ink); }

.security-section {
  color: #111916;
  background:
    radial-gradient(circle at 3% 18%, rgba(98, 226, 178, 0.24), transparent 24%),
    radial-gradient(circle at 96% 82%, rgba(255, 154, 61, 0.16), transparent 23%),
    #f3f5f1;
}

.dark-index { color: var(--mint-ink); }
.security-copy h2 { color: #111916; }
.security-copy > p { color: #4c5954; }
.security-stack { border-top-color: var(--light-border); }
.security-stack article { border-bottom-color: var(--light-border); }
.security-stack article > span { color: var(--mint-ink); }
.security-stack article:nth-child(even) > span { color: var(--orange-ink); }
.security-stack h3 { color: #18221e; }
.security-stack p { color: #56625e; }
.security-note { border-top-color: var(--light-border); color: #293631; }

.integrations-section .section-index { color: var(--mint-ink); }
.horizontal-heading h2 { color: #121a17; }
.horizontal-heading > p { color: #4e5a56; }

.integration-block {
  border-block-color: var(--light-border);
  background:
    radial-gradient(circle at 20% 50%, rgba(98, 226, 178, 0.13), transparent 28%),
    radial-gradient(circle at 82% 55%, rgba(255, 154, 61, 0.1), transparent 25%);
}

.integration-row { border-bottom-color: var(--light-border); }

.integration-row strong {
  border-color: rgba(18, 37, 30, 0.13);
  color: #35423d;
  background: rgba(255, 255, 255, 0.82);
}

.live-integrations strong {
  border-color: rgba(8, 112, 82, 0.22);
  color: #145d48;
  background: rgba(98, 226, 178, 0.15);
}

.live-integrations strong:nth-of-type(even) {
  border-color: rgba(182, 83, 18, 0.2);
  color: #87400f;
  background: rgba(255, 154, 61, 0.13);
}

.live-integrations .row-label { color: var(--mint-ink); }
.roadmap-integrations .row-label { color: var(--orange-ink); }
.roadmap-integrations strong { color: #58645f; background: rgba(255, 255, 255, 0.5); }

.google-access {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) 1fr;
  gap: 64px;
  margin-top: 24px;
  padding: 34px 36px;
  border: 1px solid var(--light-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.google-access-label {
  margin: 0 0 10px;
  color: var(--mint-ink);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.google-access h3 {
  margin: 0;
  color: #18221e;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 520;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.google-access-details {
  display: grid;
  gap: 14px;
}

.google-access-details p {
  margin: 0;
  color: #4e5a56;
  font-size: 14px;
  line-height: 1.65;
}

.google-access-details strong { color: #202b27; }

.google-access-details a {
  color: #5145b8;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.audience-section .section-index { color: var(--orange-ink); }
.audience-copy h2 { color: #121a17; }
.audience-copy > p { color: #4e5b56; }

.role-list span {
  border-color: var(--light-border);
  color: #42504a;
  background: rgba(255, 255, 255, 0.7);
}

.role-list span:nth-child(odd) {
  border-color: rgba(8, 112, 82, 0.19);
  color: #1c674f;
  background: rgba(98, 226, 178, 0.12);
}

.role-list span:nth-child(even) {
  border-color: rgba(182, 83, 18, 0.17);
  color: #8c4817;
  background: rgba(255, 154, 61, 0.1);
}

.adoption-path article {
  border-color: var(--light-border);
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(31, 58, 47, 0.06);
}

.adoption-path article.path-active {
  border-color: rgba(8, 112, 82, 0.25);
  background: linear-gradient(120deg, rgba(98, 226, 178, 0.2), #ffffff 70%);
}

.adoption-path article:nth-child(2) {
  border-color: rgba(182, 83, 18, 0.18);
  background: linear-gradient(120deg, rgba(255, 154, 61, 0.13), #ffffff 72%);
}

.adoption-path article:nth-child(3) {
  border-color: rgba(8, 112, 82, 0.16);
  background: linear-gradient(120deg, rgba(98, 226, 178, 0.12), #ffffff 72%);
}

.adoption-path article > span { color: var(--mint-ink); }
.adoption-path article:nth-child(2) > span { color: var(--orange-ink); }
.adoption-path h3 { color: #17211d; }
.adoption-path p { color: #56625e; }

.pilot-section {
  border-block-color: var(--light-border);
  background:
    radial-gradient(circle at 26% 42%, rgba(98, 226, 178, 0.27), transparent 35%),
    radial-gradient(circle at 82% 72%, rgba(255, 154, 61, 0.2), transparent 29%),
    #f2f7f3;
}

.pilot-orbit { border-color: rgba(8, 112, 82, 0.16); }
.pilot-orbit::after { border-color: rgba(182, 83, 18, 0.14); }
.pilot-copy .section-index { color: var(--mint-ink); }
.pilot-copy h2 { color: #111916; }
.pilot-copy > p { color: #4b5853; }
.pilot-action p { color: #596660; }

.pilot-button {
  color: #ffffff;
  background: #0b7658;
  box-shadow: 0 15px 38px rgba(11, 118, 88, 0.22);
}

.pilot-button:hover { background: #075f46; }

.pilot-card {
  border-color: rgba(8, 112, 82, 0.2);
  background:
    linear-gradient(150deg, rgba(98, 226, 178, 0.13), rgba(255, 154, 61, 0.07) 62%),
    rgba(255, 255, 255, 0.94);
  box-shadow: var(--soft-shadow);
}

.pilot-card-head { border-bottom-color: var(--light-border); color: #5e6b65; }
.pilot-card-head b { color: var(--mint-ink); }
.pilot-card li { border-bottom-color: var(--light-border); }
.pilot-card li > span { color: var(--mint-ink); }
.pilot-card li:nth-child(even) > span { color: var(--orange-ink); }
.pilot-card li p { color: #596660; }
.pilot-card li b { color: #27332e; }

.faq-heading .section-index { color: var(--mint-ink); }
.faq-heading h2 { color: #121a17; }
.faq-list { border-top-color: var(--light-border); }
.faq-list details { border-bottom-color: var(--light-border); }
.faq-list summary { color: #26322d; }
.faq-list summary span { color: var(--orange-ink); }
.faq-list details p { color: #56625e; }

.site-footer {
  border-top-color: var(--light-border);
  color: #596660;
}

.footer-brand { color: #1a2521; }

/* Moodboard direction: warm editorial base with one focused lavender system */
:root {
  --ink: #17151f;
  --muted: #5f5b69;
  --bg: #fbfaf7;
  --panel: #ffffff;
  --paper: #fbfaf7;
  --paper-alt: #f0eef8;
  --card: #ffffff;
  --blue: #5145b8;
  --blue-bright: #5145b8;
  --mint: #62e2b2;
  --mint-deep: #5145b8;
  --mint-ink: #5145b8;
  --orange: #7564d8;
  --orange-ink: #5145b8;
  --line: #dedbe8;
  --light-border: #dedbe8;
  --soft-shadow: 0 22px 58px rgba(39, 33, 70, 0.1);
}

html,
body,
main { background: #fbfaf7; }

.site-header {
  border-bottom-color: #e3e0e9;
  background: rgba(251, 250, 247, 0.96);
}

.brand-mark {
  border-color: #2b2646;
  color: #ffffff;
  background: #2b2646;
  box-shadow: none;
}

.button-primary,
.nav-cta { background: #2b2646; }
.site-nav .nav-cta {
  border-color: #2b2646;
  color: #ffffff;
  background: #2b2646;
}
.button-primary:hover,
.nav-cta:hover { background: #5145b8; }

.hero { background: #fbfaf7; }
.hero-orbit,
.hero-grid,
.product-glow,
.device-aura,
.pilot-orbit { display: none; }

.eyebrow {
  border-color: #d8d1f1;
  color: #5145b8;
  background: #f0eef8;
  box-shadow: none;
}

.hero h1 span {
  color: #5145b8;
  background: none;
  -webkit-text-fill-color: currentColor;
}
.status-dot { background: #7564d8; box-shadow: none; }
.button-primary { box-shadow: 0 14px 34px rgba(43, 38, 70, 0.18); }
.button-secondary { border-color: #cbc6d8; background: transparent; }
.button-secondary:hover { border-color: #5145b8; background: #f0eef8; }
.trust-list li::before { background: #7564d8; }

.product-stage {
  width: min(1240px, 100%);
  padding: 42px;
  border: 1px solid #ded8f1;
  border-radius: 34px;
  background: #e9e5f6;
}
.app-window { background: #101410; box-shadow: 0 40px 80px rgba(34, 29, 55, 0.22); transform: none; }
.decision-card { background: #18221d; }
.task-card { background: #151d19; }
.agent-card { background: #1a211d; }
.command-menu-shot { right: 10px; bottom: -28px; }
.floating-note { border-color: rgba(255,255,255,0.14); }

.proof-section,
.showcase-section,
.capabilities-section,
.integrations-section,
.faq-section { background: #fbfaf7; }
.proof-item strong,
.proof-item:nth-child(even) strong { color: #5145b8; }
.proof-intro span,
.mint-index,
.section-index,
.dark-index,
.capability-label,
.live-integrations .row-label,
.pilot-copy .section-index,
.faq-heading .section-index { color: #5145b8; }

.device-stage {
  border-color: #d9d3ed;
  background: #e7e2f5;
}
.device-stage::before { display: none; }
.macbook-lid { background: #2f3135; }
.macbook-base { background: #777980; }
.privacy-glass,
.screen-mask { background: rgba(13, 17, 15, 0.9); }
.showcase-callout { border-color: #ddd8ec; background: #ffffff; }
.callout-ready { border-color: #d2c9ef; }
.callout-dot { background: #7564d8; box-shadow: 0 0 0 7px rgba(117,100,216,0.1); }

.screen-card { border-color: #dedbe8; background: #ffffff; }
.screen-card:nth-child(2) figcaption { background: #2b2646; }
.screen-card:nth-child(2) figcaption strong { color: #ffffff; }
.screen-card:nth-child(2) figcaption span { color: #cfc7f7; }

.living-section { background: #f0eef8; }
.archive-card { background: #ffffff; }
.ativra-card { border-color: #2b2646; color: #ffffff; background: #2b2646; }
.ativra-card .compare-top,
.ativra-card ul { color: #d8d3ea; }
.ativra-card h3 { color: #ffffff; }
.ativra-card li::before { color: #a99cf0; }
.ativra-card .compare-top small { color: #cfc7f7; }
.memory-map { background-color: #2b2646; }
.ativra-card .map-node { border-color: #665c91; color: #dcd7f0; background: #373052; }
.ativra-card .node-main { border-color: #8e80e6; color: #ffffff; background: #5145b8; }
.ativra-card .node-two { color: #ffffff; }

.capability-card { border-color: #dedbe8; background: #ffffff; }
.capability-large { border-color: #d7d0ef; background: #ece8f8; }
.query-box,
.answer-box { border-color: #d0c8ed; background: #ffffff; }
.prep-card li { background: #f7f6f9; }
.prep-card li span { color: #5145b8; background: #ece8f8; }
.sync-card { border-color: #2b2646; color: #ffffff; background: #2b2646; }
.sync-card h3 { color: #ffffff; }
.sync-card .capability-label { color: #cfc7f7; }
.sync-card .sync-flow span { border-color: #665c91; color: #ffffff; background: #373052; }
.sync-card .sync-flow span:first-child { border-color: #8e80e6; color: #ffffff; background: #5145b8; }
.sync-flow i { background: #8e80e6; }
.source-chip { border-color: #d0c8ed; color: #5145b8; background: #ece8f8; }

.security-section { background: #fbfaf7; }
.security-tags span,
.security-tags span:first-child,
.security-tags span:nth-child(2) { border-color: #d7d0ef; color: #5145b8; background: #ece8f8; }
.security-stack article > span,
.security-stack article:nth-child(even) > span { color: #5145b8; }

.integration-block { background: #fbfaf7; }
.integration-row strong { border-color: #dedbe8; background: #ffffff; }
.live-integrations strong,
.live-integrations strong:nth-of-type(even) { border-color: #d7d0ef; color: #5145b8; background: #ece8f8; }
.roadmap-integrations strong { color: #696572; background: #f4f3f5; }

.pilot-section { color: #ffffff; background: #2b2646; }
.pilot-copy h2 { color: #ffffff; }
.pilot-copy > p,
.pilot-action p { color: #c9c4d8; }
.pilot-action p a {
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}
.pilot-copy .section-index { color: #bdb2f4; }
.pilot-button { color: #2b2646; background: #ffffff; box-shadow: none; }
.pilot-button:hover { color: #ffffff; background: #7564d8; }
.pilot-card { border-color: #514a6a; background: #373052; box-shadow: none; }
.pilot-card-head { border-bottom-color: #514a6a; color: #c9c4d8; }
.pilot-card-head b,
.pilot-card li > span,
.pilot-card li:nth-child(even) > span { color: #bdb2f4; }
.pilot-card li { border-bottom-color: #514a6a; }
.pilot-card li b { color: #ffffff; }
.pilot-card li p { color: #c9c4d8; }

.faq-section { background: #fbfaf7; }
.faq-list summary span { color: #5145b8; }

.problem-value { color: #5145b8; background: none; -webkit-text-fill-color: currentColor; }
.thesis-section { background: #ece8f8; }
.adoption-path article,
.adoption-path article.path-active,
.adoption-path article:nth-child(2),
.adoption-path article:nth-child(3) { background: #ffffff; }

.footer-meta a {
  color: #5145b8;
  font-weight: 650;
}

/* Legal pages */
.legal-page {
  min-height: 100vh;
  background: #fbfaf7;
}

.legal-page .site-header {
  position: relative;
  left: auto;
  margin: 0 auto;
  transform: none;
}

.legal-page .site-nav a[aria-current="page"] {
  color: #5145b8;
}

.legal-document {
  width: min(calc(100% - 48px), 760px);
  margin: 0 auto;
  padding: 96px 0 120px;
}

.legal-kicker {
  margin: 0 0 14px;
  color: #6658d3;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-document h1 {
  max-width: none;
  margin: 0;
  color: #1f1e23;
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 430;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.legal-effective {
  margin: 22px 0 0;
  color: #77727d;
  font-size: 14px;
}

.legal-lead {
  margin: 44px 0 0;
  color: #35323b;
  font-size: clamp(18px, 2.2vw, 21px);
  line-height: 1.62;
}

.legal-document section {
  margin-top: 48px;
}

.legal-document h2 {
  margin: 0 0 14px;
  color: #252229;
  font-size: 23px;
  font-weight: 620;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.legal-document p,
.legal-document li {
  color: #514d56;
  font-size: 16px;
  line-height: 1.75;
}

.legal-document section p {
  margin: 0;
}

.legal-document section p + p {
  margin-top: 14px;
}

.legal-document ul {
  margin: 0;
  padding-left: 22px;
}

.legal-document li + li {
  margin-top: 10px;
}

.legal-document strong {
  color: #35323b;
  font-weight: 680;
}

.legal-document a {
  color: #5145b8;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-page .footer-meta {
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .site-nav a:not(.nav-cta) { display: none; }
  .hero { padding-inline: 24px; }
  .app-layout { grid-template-columns: 50px 1fr 1.15fr; }
  .meeting-pane,
  .summary-pane { padding: 26px 22px; }
  .proof-section { grid-template-columns: 1fr; gap: 40px; }
  .wide-heading,
  .showcase-heading,
  .horizontal-heading,
  .security-shell,
  .audience-section,
  .pilot-shell,
  .faq-section {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .wide-heading .section-index { grid-column: auto; margin-bottom: -36px; }
  .wide-heading > p,
  .showcase-heading > p,
  .horizontal-heading > p { margin-top: 0; }
  .showcase-heading { gap: 38px; }
  .device-stage { min-height: 620px; padding-top: 78px; }
  .macbook { width: 91%; }
  .callout-record { top: 26px; left: 25px; }
  .callout-ready { right: 24px; bottom: 44px; }
  .screen-media { height: 330px; }
  .workflow { grid-template-columns: 1fr 1fr; }
  .workflow article:nth-child(3) { border-top: 1px solid var(--line); border-left: 0; }
  .workflow article:nth-child(4) { border-top: 1px solid var(--line); }
  .capability-large,
  .prep-card { grid-column: span 12; }
  .sync-card,
  .source-card,
  .agent-feature-card { grid-column: span 6; }
  .security-copy { max-width: 720px; }
  .security-note { margin-top: 20px; }
  .integration-row { flex-wrap: wrap; padding-block: 24px; }
  .row-label { width: 100%; }
  .audience-section { gap: 64px; }
  .pilot-shell { gap: 70px; }
  .faq-section { gap: 55px; }
}

@media (max-width: 720px) {
  .site-header { width: calc(100% - 32px); }
  .site-nav { gap: 0; }
  .hero { min-height: auto; padding: 146px 16px 60px; }
  .hero h1 { font-size: clamp(42px, 13vw, 60px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .trust-list { align-items: center; flex-wrap: wrap; gap: 9px 16px; }
  .product-stage { margin-top: 62px; padding: 12px; border-radius: 22px; }
  .command-menu-shot { right: 5px; bottom: -52px; width: 132px; }
  .command-menu-shot figcaption { display: none; }
  .app-window { border-radius: 14px; }
  .window-bar { grid-template-columns: 1fr 1fr; }
  .window-title { display: none; }
  .app-layout { grid-template-columns: 42px 1fr; }
  .meeting-pane { display: none; }
  .summary-pane { min-width: 0; padding: 22px 16px 26px; }
  .floating-note { display: none; }
  .proof-section { width: calc(100% - 32px); padding-block: 64px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-item { min-height: 120px; padding: 18px 16px; border-top: 1px solid var(--line); }
  .section-shell { width: calc(100% - 32px); }
  .showcase-section { padding-top: 90px; padding-bottom: 100px; }
  .showcase-heading { gap: 28px; }
  .showcase-heading h2 { font-size: 42px; }
  .showcase-heading > p { font-size: 15px; }
  .device-stage { min-height: 400px; margin-top: 50px; padding: 42px 12px 0; border-radius: 22px; }
  .macbook { width: 100%; }
  .macbook-lid { padding: 8px 8px 10px; border-radius: 14px 14px 5px 5px; }
  .macbook-screen { border-radius: 8px 8px 2px 2px; }
  .privacy-glass { right: 4%; bottom: 6%; height: 70%; padding: 10px; border-radius: 8px; }
  .privacy-glass .overlay-kicker { display: none; }
  .privacy-glass strong { font-size: 12px; line-height: 1.1; }
  .privacy-glass p { font-size: 8px; line-height: 1.35; }
  .macbook-base { height: 15px; }
  .showcase-callout { display: none; }
  .screen-gallery { grid-template-columns: 1fr; }
  .screen-media { height: 265px; }
  .screen-mask { padding: 18px; }
  .product-overlay { gap: 7px; }
  .product-overlay strong,
  .compact-overlay strong { font-size: 21px; }
  .product-overlay p { font-size: 10px; }
  .overlay-tags { gap: 5px; }
  .overlay-tags span { padding: 6px 8px; font-size: 8px; }
  .screen-card figcaption { min-height: 108px; padding: 22px; }
  .thesis-section { padding: 90px 0 96px; }
  .thesis-line { width: 48px; margin-bottom: 32px; }
  .thesis-shell p { font-size: 38px; }
  .thesis-shell strong { margin-top: 34px; }
  .section-heading h2,
  .security-copy h2,
  .audience-copy h2,
  .pilot-copy h2 { font-size: 39px; }
  .section-heading > p,
  .security-copy > p,
  .audience-copy > p,
  .pilot-copy > p { font-size: 16px; }
  .problem-section,
  .capabilities-section { padding-top: 96px; padding-bottom: 102px; }
  .problem-grid { grid-template-columns: 1fr; margin-top: 44px; }
  .featured-problem { grid-row: auto; min-height: 530px; padding: 30px 24px; }
  .problem-card { padding: 27px 24px; }
  .search-visual { right: 24px; bottom: 28px; left: 24px; }
  .living-section { padding-block: 98px 105px; }
  .wide-heading { gap: 45px; }
  .wide-heading .section-index { margin-bottom: -26px; }
  .comparison-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .compare-card { min-height: 495px; padding: 27px 24px; }
  .compare-card h3 { margin-top: 34px; }
  .workflow { grid-template-columns: 1fr; margin-top: 48px; }
  .workflow article { min-height: 180px; border-top: 1px solid var(--line); border-left: 0; }
  .workflow article:first-child { border-top: 0; }
  .workflow article:nth-child(4) { border-top: 1px solid var(--line); }
  .capability-grid { margin-top: 44px; }
  .capability-large,
  .prep-card,
  .sync-card,
  .source-card,
  .agent-feature-card { grid-column: span 12; min-height: 410px; }
  .capability-card { padding: 26px 23px; }
  .capability-large { min-height: 510px; }
  .query-box,
  .answer-box { right: 23px; left: 23px; }
  .prep-card { min-height: 500px; }
  .sync-flow { right: 22px; left: 22px; }
  .sync-flow span { min-width: 62px; }
  .source-chip,
  .agent-pulse { right: 22px; left: 22px; }
  .security-section { padding-top: 98px; }
  .security-shell { gap: 58px; }
  .security-note { padding-bottom: 38px; font-size: 22px; text-align: left; }
  .integrations-section { padding-top: 98px; padding-bottom: 105px; }
  .horizontal-heading { gap: 34px; }
  .integration-block { margin-top: 46px; }
  .integration-row { gap: 8px; }
  .integration-row strong { padding: 13px 14px; font-size: 11px; }
  .google-access { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
  .audience-section { gap: 58px; padding-bottom: 106px; }
  .adoption-path article { min-height: 175px; grid-template-columns: 34px 1fr; gap: 13px; padding: 23px 20px; }
  .adoption-path article p { grid-column: 2; }
  .pilot-section { padding-block: 100px; }
  .pilot-shell { gap: 58px; }
  .pilot-button { width: 100%; }
  .pilot-card { padding: 27px 22px; }
  .faq-section { gap: 42px; padding-top: 98px; padding-bottom: 100px; }
  .faq-list summary { min-height: 90px; font-size: 14px; }
  .site-footer { width: calc(100% - 32px); grid-template-columns: 1fr; gap: 18px; text-align: left; }
  .site-footer > p { text-align: left; }
  .footer-meta { flex-direction: column; gap: 8px; }
  .legal-document {
    width: min(calc(100% - 36px), 760px);
    padding: 72px 0 88px;
  }
  .legal-lead { margin-top: 36px; }
  .legal-document section { margin-top: 40px; }
}

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