:root {
  --ink: #1a1a1a;
  --muted: #5f6368;
  --line: #e8eaed;
  --paper: #ffffff;
  --surface: #ffffff;
  --teal: #0b7474;
  --teal-deep: #085858;
  --teal-soft: #e8f3f2;
  --navy: #0b3b5c;
  --fog: #dadce0;
  --shadow: 0 1px 2px rgba(60, 64, 67, 0.08), 0 8px 24px rgba(60, 64, 67, 0.08);
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: #fff;
}

a { color: inherit; text-decoration: none; }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 650;
  letter-spacing: -0.025em;
  margin: 0;
}
p { margin: 0; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 5.5vw;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled,
body:not([data-shell]) .site-header {
  border-bottom-color: var(--line);
}
.logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  z-index: 2;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}
.site-nav > a:hover,
.site-nav .nav-dropdown summary:hover { color: var(--ink); }
.site-nav > a[aria-current="page"] { color: var(--navy); font-weight: 650; }
.site-nav > a.header-cta {
  margin-left: 6px;
  color: #fff;
  font-weight: 650;
}
.site-nav > a.header-cta:hover { color: #fff; }
.header-cta { font-size: 0.9rem; padding: 10px 18px; white-space: nowrap; }
@media (max-width: 1180px) {
  .site-nav { gap: 14px; font-size: 0.9rem; }
  .header-cta { padding: 9px 14px; }
}


.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 220ms ease, opacity 220ms ease;
}
.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.nav-dropdown { position: relative; }
.nav-dropdown summary {
  list-style: none;
  cursor: pointer;
  font-weight: 500;
}
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.55;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 168px;
  padding: 8px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 2px;
}
.nav-dropdown:not([open]) .nav-dropdown-menu { display: none; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 500;
}
.nav-dropdown-menu a:hover {
  color: var(--ink);
  background: #f8f9fa;
}

.cta, .ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 12px 20px;
  font-weight: 650;
  font: inherit;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
button.cta, button.ghost {
  border: 0;
  appearance: none;
}
.cta {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 1px 2px rgba(11, 59, 92, 0.2);
}
.cta:hover { background: #082f49; }
.ghost {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}
.ghost:hover { background: #f8f9fa; border-color: #dadce0; }
.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--teal);
  font-weight: 650;
  border-bottom: 1px solid transparent;
}
.text-link:hover { border-bottom-color: rgba(11, 116, 116, 0.45); }

.site-header-on-hero {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background: transparent;
  border-bottom-color: transparent;
}
.site-header-on-hero .logo,
.site-header-on-hero .site-nav > a:not(.header-cta) {
  color: rgba(255, 255, 255, 0.92);
}
.site-header-on-hero .site-nav > a:not(.header-cta):hover { color: #fff; }
.site-header-on-hero .site-nav > a.header-cta {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.site-header-on-hero .site-nav > a.header-cta:hover {
  background: #f3f7f8;
  color: var(--navy);
}
.site-header-on-hero .nav-toggle {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(8, 36, 54, 0.35);
}
.site-header-on-hero .nav-toggle span { background: #fff; }
.site-header-on-hero.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--line);
  backdrop-filter: blur(12px);
}
.site-header-on-hero.is-scrolled .logo,
.site-header-on-hero.is-scrolled .site-nav > a:not(.header-cta) {
  color: inherit;
}
.site-header-on-hero.is-scrolled .logo { color: var(--navy); }
.site-header-on-hero.is-scrolled .site-nav > a:not(.header-cta) { color: var(--muted); }
.site-header-on-hero.is-scrolled .site-nav > a.header-cta {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 1px 2px rgba(11, 59, 92, 0.2);
}
.site-header-on-hero.is-scrolled .site-nav > a.header-cta:hover {
  background: #082f49;
  color: #fff;
}
.site-header-on-hero.is-scrolled .nav-toggle {
  border-color: var(--line);
  background: #fff;
}
.site-header-on-hero.is-scrolled .nav-toggle span { background: var(--ink); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 40px;
  align-items: end;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 110px 5.5vw 56px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 85% 20%, rgba(11, 116, 116, 0.08), transparent 60%),
    linear-gradient(180deg, #f8fbfb 0%, #ffffff 55%);
}
.hero-sell {
  background: #0b2a38;
  color: #fff;
  align-items: center;
}
.hero-bleed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: 0;
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(6, 28, 42, 0.88) 0%, rgba(6, 28, 42, 0.62) 42%, rgba(6, 28, 42, 0.28) 68%, rgba(6, 28, 42, 0.45) 100%),
    linear-gradient(180deg, rgba(6, 28, 42, 0.35) 0%, transparent 28%, rgba(6, 28, 42, 0.55) 100%);
}
.hero-copy { position: relative; z-index: 2; max-width: 36rem; }
.hero-sell .hero-copy { max-width: 34rem; }
.hero-sell h1 {
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  line-height: 1.12;
  max-width: 16ch;
}
.hero-sell .hero-lede {
  max-width: 38ch;
}
.cta-light {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}
.cta-light:hover { background: #f3f7f8; color: var(--navy); }
.ghost-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.ghost-light:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.brand-mark {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.9;
  color: var(--navy);
  margin-bottom: 18px;
  animation: rise 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 12px;
  animation: rise 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero h1 {
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  max-width: 16ch;
  font-weight: 650;
  color: var(--ink);
  animation: rise 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 70ms;
}
.hero.hero-sell h1 {
  color: #fff;
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  line-height: 1.12;
  text-shadow: 0 1px 18px rgba(6, 28, 42, 0.45);
}
.hero.hero-sell .hero-lede {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 12px rgba(6, 28, 42, 0.35);
}
.hero.hero-sell .brand-mark {
  color: #fff;
  text-shadow: 0 2px 24px rgba(6, 28, 42, 0.4);
}
.hero-lede {
  margin-top: 16px;
  max-width: 38ch;
  color: var(--muted);
  font-size: 1.125rem;
  animation: rise 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 130ms;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
  animation: rise 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 190ms;
}

.hero-stage {
  position: relative;
  z-index: 2;
  min-height: 520px;
  animation: stageIn 1100ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 120ms;
}
.hero-sell .hero-stage {
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.45));
}
.device { margin: 0; }
.device-laptop {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: none;
}
.device-chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.01em;
  font-weight: 500;
}
.device-chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dadce0;
}
.device-chrome span:nth-child(1) { background: #ea4335; }
.device-chrome span:nth-child(2) { background: #fbbc04; }
.device-chrome span:nth-child(3) { background: #34a853; }
.device-chrome p { margin-left: 8px; }
.device-laptop img,
.device-laptop .demo-video {
  width: 100%;
  aspect-ratio: 1440 / 900;
  object-fit: cover;
  object-position: top left;
  background: #f8f9fa;
}

.device-phone {
  position: absolute;
  right: -2%;
  bottom: -4%;
  width: min(32%, 210px);
  border-radius: 28px;
  padding: 10px 8px 8px;
  background: #202124;
  border: 1px solid rgba(32, 33, 36, 0.2);
  box-shadow: 0 16px 40px rgba(60, 64, 67, 0.22);
  animation: floatPhone 7s ease-in-out infinite;
}
.device-notch {
  width: 78px;
  height: 8px;
  margin: 0 auto 8px;
  border-radius: 999px;
  background: #3c4043;
}
.device-phone img,
.device-phone .demo-video {
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 390 / 844;
  object-fit: cover;
  object-position: top center;
}

.demo-screen {
  position: relative;
  overflow: hidden;
  background: #f8f9fa;
}
.demo-video {
  display: block;
  width: 100%;
  height: auto;
}
.shot-frame .demo-video {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
}

/* Hero captions stay quiet under the media, not as stickers */
.hero .device-laptop .demo-screen {
  display: flex;
  flex-direction: column;
  background: #fff;
}
.hero .device-laptop .workflow-progress {
  position: relative;
  order: 1;
  height: 2px;
  background: #e8eaed;
}
.hero .device-laptop .workflow-progress i {
  background: var(--teal);
}
.hero .workflow-chip {
  position: static;
  order: 2;
  display: inline-flex;
  align-items: center;
  margin: 14px 16px 16px;
  max-width: none;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  box-shadow: none;
  backdrop-filter: none;
  animation: none;
  font-size: 0.88rem;
  font-weight: 500;
}
.hero .workflow-chip::before {
  background: var(--teal);
  box-shadow: none;
  animation: none;
}
.hero .device-phone .demo-screen {
  display: flex;
  flex-direction: column;
}
.hero .device-phone .workflow-chip {
  position: static;
  margin: 8px 6px 8px;
  font-size: 0.72rem;
  justify-content: center;
  width: calc(100% - 12px);
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.75);
}

.workflow-chip {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  max-width: calc(100% - 28px);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(32, 33, 36, 0.82);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  backdrop-filter: blur(8px);
  box-shadow: none;
  animation: chipIn 420ms ease both;
}
.workflow-chip-compact {
  left: 8px;
  right: 8px;
  bottom: 10px;
  max-width: none;
  font-size: 0.72rem;
  padding: 6px 8px;
  text-align: center;
}
.workflow-chip::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: #34a853;
  box-shadow: 0 0 0 0 rgba(52, 168, 83, 0.45);
  animation: liveDot 1.6s ease-out infinite;
  vertical-align: 1px;
}
.workflow-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
  z-index: 2;
}
.workflow-progress i {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--teal);
  transition: width 160ms linear;
}

.workflow-beats {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.workflow-beats li {
  position: relative;
  padding: 8px 10px 8px 28px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 220ms ease, background 220ms ease;
}
.workflow-beats li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--fog);
}
.workflow-beats li.is-active {
  color: var(--ink);
  background: rgba(215, 235, 231, 0.55);
  font-weight: 700;
}
.workflow-beats li.is-active::before {
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(12, 107, 107, 0.15);
}
.workflow-beats li.is-done {
  color: var(--ink);
}
.workflow-beats li.is-done::before {
  background: #3ecf9a;
}

.proof-strip {
  padding-top: 40px;
  padding-bottom: 24px;
  background: #fff;
}
.proof-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin-inline: auto;
}
.proof-list li {
  display: grid;
  gap: 8px;
  padding: 8px 4px 8px 0;
  border-top: 2px solid var(--teal);
}
.proof-list strong {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.proof-list span {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.5;
  max-width: 30ch;
}

.story-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
}
.story-split-flip .story-copy { order: 1; }
.story-split-flip .story-photo { order: 2; }
.story-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 0;
}
.story-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.story-copy h2 {
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  margin-bottom: 16px;
  max-width: 16ch;
  letter-spacing: -0.03em;
}
.story-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 40ch;
  margin-bottom: 14px;
}
.audience-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.audience-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-weight: 500;
}
.audience-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.watch-demo {
  background:
    linear-gradient(180deg, #f4f8f8 0%, #ffffff 100%);
}
.watch-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 40px;
  align-items: center;
}
.watch-frame {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b2a38;
  box-shadow: 0 18px 48px rgba(11, 42, 56, 0.16);
}
.watch-screen {
  aspect-ratio: 16 / 10;
}
.watch-screen .demo-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}
.watch-copy .workflow-beats {
  margin-top: 0;
}
.watch-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}
.watch-copy .hero-actions {
  margin-top: 22px;
}

.atmosphere {
  padding-top: 48px;
  padding-bottom: 40px;
}
.atmosphere-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}
.atmosphere-shot {
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 12px;
}
.atmosphere-shot img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}
.atmosphere-wide img { min-height: 360px; }
.atmosphere-shot figcaption {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.finale-visual {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 120px 5.5vw;
  background: #0b2a38;
}
.finale-bleed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  z-index: 0;
}
.finale-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6, 28, 42, 0.72), rgba(6, 28, 42, 0.88));
}
.finale-visual .finale-inner {
  position: relative;
  z-index: 2;
}
.finale-visual h2,
.finale-visual p { color: #fff; }
.finale-visual p { opacity: 0.88; }
.org-kicker-light { color: rgba(180, 230, 220, 0.95); }

.section { padding: 96px 5.5vw; }
.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
  font-weight: 650;
}
.section-head p { color: var(--muted); max-width: 48ch; font-size: 1.125rem; }
.product .section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.product .section-head p {
  margin-left: auto;
  margin-right: auto;
}

.product { padding-top: 40px; }
.shot-block {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 88px;
}
.shot-block:last-child { margin-bottom: 0; }
.shot-flip { grid-template-columns: 1.3fr 0.7fr; }
.shot-flip .shot-copy { order: 2; }
.shot-flip .shot-frame { order: 1; }
.shot-copy h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  margin-bottom: 14px;
}
.shot-copy p {
  color: var(--muted);
  max-width: 34ch;
  font-size: 1.08rem;
}
.shot-frame {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: none;
  background: #fff;
}
.shot-frame img,
.shot-frame .demo-screen {
  width: 100%;
}
.shot-frame img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
}

.security-posture { background: #f7fafb; }
.security-posture .section-head {
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.security-posture .section-head p {
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
}
.security-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  max-width: 1040px;
  margin: 28px auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.security-item {
  padding: 28px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.security-item:nth-child(2n) { border-right: none; }
.security-item:nth-last-child(-n+2) { border-bottom: none; }
.security-item h3 {
  font-size: 1.2rem;
  margin: 0 0 10px;
  color: var(--navy);
}
.security-item p {
  margin: 0;
  color: var(--muted);
  max-width: 36ch;
}
.security-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

@media (max-width: 800px) {
  .security-grid { grid-template-columns: 1fr; }
  .security-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .security-item:last-child { border-bottom: none; }
}

.pricing { background: #f8f9fa; }
.pricing .section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.pricing .section-head p {
  margin-left: auto;
  margin-right: auto;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  max-width: 1040px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 36px 28px;
  border-radius: 0;
  background: transparent;
  border: none;
  border-right: 1px solid var(--line);
  box-shadow: none;
}
.price-card:last-child { border-right: none; }
.price-card h3 {
  font-size: 1.35rem;
  line-height: 1.15;
}
.price-badge {
  position: static;
  display: inline-flex;
  align-self: start;
  width: fit-content;
  margin-bottom: -4px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.price-card .amount {
  font-family: var(--display);
  font-size: 2.6rem;
  line-height: 1;
  margin: 2px 0;
  letter-spacing: -0.03em;
}
.price-card .amount span {
  font-size: 1rem;
  color: var(--muted);
  margin-left: 2px;
}
.price-card ul {
  list-style: none;
  margin: 8px 0 12px;
  padding: 0;
  display: grid;
  gap: 12px;
  flex: 1;
}
.price-card li {
  position: relative;
  padding-left: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
}
.price-card li::before { display: none; }
.price-card .cta,
.price-card .ghost {
  width: 100%;
  margin-top: auto;
}
.price-card .fineprint {
  margin-top: 2px;
  text-align: left;
}
.price-card.is-featured {
  background: transparent;
  border-color: var(--line);
  box-shadow: none;
  transform: none;
}

.trust { padding-top: 48px; background: #fff; }
.trust-frame {
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  text-align: center;
}
.trust-frame h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}
.trust-frame > p {
  color: var(--muted);
  max-width: 48ch;
  margin: 0 auto;
  font-size: 1.125rem;
}
.trust-line {
  margin-top: 28px !important;
  color: var(--ink) !important;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: 0.98rem !important;
  max-width: 56ch !important;
}

.finale {
  text-align: center;
  background: #fff;
}
.finale-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}
.finale h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 14px;
}
.finale p { color: var(--muted); margin-bottom: 8px; font-size: 1.125rem; }
.finale .hero-actions { justify-content: center; }

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  padding: 48px 5.5vw 56px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer-logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.footer-tagline { font-size: 0.9rem; max-width: 28ch; }
.footer-nav {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-col {
  display: grid;
  gap: 8px;
  align-content: start;
}
.footer-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 2px;
}
.footer-col a {
  font-size: 0.92rem;
  font-weight: 500;
}
.footer-col a:hover { color: var(--teal); }

.fineprint {
  margin-top: 8px;
  font-size: 0.86rem;
  color: var(--muted);
}
.page-head-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.page-head-center .page-lede {
  margin-left: auto;
  margin-right: auto;
}
.org-hero {
  padding: 72px 5.5vw 48px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.org-hero-visual {
  position: relative;
  overflow: hidden;
  color: #fff;
  border-bottom: none;
  padding: 96px 5.5vw 72px;
  background: #0b2a38;
}
.org-hero-bleed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
}
.org-hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(110deg, rgba(6, 28, 42, 0.9) 0%, rgba(6, 28, 42, 0.55) 60%, rgba(6, 28, 42, 0.4) 100%);
}
.org-hero-visual .org-hero-inner {
  position: relative;
  z-index: 2;
}
.org-hero-visual .org-kicker {
  color: rgba(180, 230, 220, 0.95);
}
.org-hero-visual h1,
.org-hero-visual .page-lede { color: #fff; }
.org-hero-visual .page-lede { opacity: 0.88; }
.org-hero-visual .org-jump a {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.org-hero-visual .org-jump a:hover {
  background: rgba(255, 255, 255, 0.12);
}
.org-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.org-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.org-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}
.org-hero .page-lede {
  margin-left: auto;
  margin-right: auto;
  max-width: 48ch;
}
.org-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}
.org-jump a {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.92rem;
}
.org-jump a:hover {
  border-color: rgba(12, 107, 107, 0.4);
  background: #fff;
}
.org-section {
  padding-top: 64px;
  padding-bottom: 64px;
}
.org-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.org-split-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 12px;
}
.org-points {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.org-points li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 500;
}
.org-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}
.org-calc {
  display: grid;
  gap: 14px;
}
.org-form {
  width: 100%;
  max-width: none;
}
.org-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.org-result {
  max-width: none;
  margin-top: 0;
  background: linear-gradient(180deg, #123a56, #0c5560);
  color: #eef6f8;
  border: 0;
}
.org-result .org-kicker { color: #7fd3c2; }
.org-result h2 {
  color: #fff;
  margin: 6px 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.org-result p { color: rgba(238, 246, 248, 0.82); }
.org-partners {
  background: linear-gradient(180deg, rgba(12, 107, 107, 0.05), transparent 40%);
  border-top: 1px solid rgba(197, 213, 220, 0.7);
}
.org-partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.org-partner-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(197, 213, 220, 0.95);
  box-shadow: 0 12px 30px rgba(16, 47, 61, 0.06);
}
.org-partner-head h3 {
  font-size: 1.55rem;
  margin-bottom: 8px;
}
.org-partner-head p {
  color: var(--muted);
  max-width: 36ch;
}
.org-partner-card .org-form {
  padding: 0;
  border: 0;
  background: transparent;
}
.org-partner-card .cta { width: 100%; }
.org-status {
  margin-top: 0;
  min-height: 1.4em;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.95rem;
}
.site-nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
}

/* Riverside case study */
body[data-page="riverside"] .site-header {
  background: rgba(236, 244, 243, 0.94);
}
.case-hero-bleed {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0b2430;
}
.case-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 18% 18%;
  transform: scale(1.04);
  animation: caseMediaSettle 1.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.case-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 28, 38, 0.88) 0%, rgba(8, 28, 38, 0.62) 46%, rgba(8, 28, 38, 0.28) 100%),
    linear-gradient(180deg, rgba(8, 28, 38, 0.2) 0%, rgba(8, 28, 38, 0.72) 100%);
}
.case-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 38rem;
  padding: 72px 5.5vw 64px;
  color: #eef6f5;
}
.case-soft-mark {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(199, 230, 224, 0.78);
  margin-bottom: 14px;
  animation: rise 800ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.case-soft-mark-dark {
  color: var(--teal);
  letter-spacing: 0.04em;
}
.case-hero-brand {
  font-size: clamp(2.6rem, 6.2vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: #fff;
  max-width: 12ch;
  margin-bottom: 18px;
  animation: rise 850ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 70ms;
}
.case-hero-copy .hero-lede {
  color: rgba(232, 244, 246, 0.84);
  max-width: 38ch;
  font-size: 1.08rem;
  animation: rise 850ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 130ms;
}
.case-hero-copy .hero-actions {
  animation: rise 850ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 190ms;
}
.case-cta-light {
  background: #fff;
  color: var(--navy);
}
.case-cta-light:hover { background: #e8f2f0; }
.case-ghost-light {
  border-color: rgba(232, 244, 246, 0.42);
  color: #fff;
  background: transparent;
}
.case-ghost-light:hover {
  border-color: rgba(232, 244, 246, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.case-honesty {
  margin: 0;
  padding: 14px 5.5vw;
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid rgba(197, 213, 220, 0.75);
}

.case-chapters-nav {
  position: sticky;
  top: 68px;
  z-index: 15;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  padding: 10px 5.5vw;
  background: rgba(236, 244, 243, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 213, 220, 0.75);
}
.case-chapters-nav a {
  padding: 10px 14px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 2px solid transparent;
}
.case-chapters-nav a.is-active,
.case-chapters-nav a:hover {
  color: var(--ink);
  border-bottom-color: var(--teal);
}

.case-chapter {
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(300px, 1.12fr);
  gap: 48px;
  align-items: start;
  padding: 80px 5.5vw;
  border-bottom: 1px solid rgba(197, 213, 220, 0.55);
}
.case-chapter-flip { grid-template-columns: minmax(300px, 1.12fr) minmax(260px, 0.88fr); }
.case-chapter-flip .case-chapter-copy { order: 2; }
.case-chapter-flip .case-chapter-media { order: 1; }
.case-chapter-copy h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  margin: 8px 0 18px;
  max-width: 15ch;
  color: var(--navy);
}
.case-chapter-copy > p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 40ch;
  margin-bottom: 14px;
}
.case-chapter-media {
  position: sticky;
  top: 118px;
  margin: 0;
  animation: caseReveal 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.case-chapter-media > img,
.case-demo-screen {
  border-radius: 2px;
  box-shadow: 0 18px 44px rgba(16, 47, 61, 0.12);
  overflow: hidden;
}
.case-chapter-media > img,
.case-chapter-media .demo-video,
.case-demo-screen .demo-video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
  display: block;
  background: #eef4f8;
}
.case-demo-screen { background: #0b2a38; }
.case-demo-screen .workflow-progress {
  opacity: 0.55;
}
.case-chapter-media > figcaption {
  padding: 12px 2px 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
}
.case-proof-one { position: relative; top: auto; }

.case-finale {
  text-align: center;
  padding: 96px 5.5vw 100px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(12, 107, 107, 0.1), transparent 52%),
    linear-gradient(180deg, #f3f8f7, #e8f1ef);
}
.case-finale-inner { max-width: 640px; margin: 0 auto; }
.case-finale h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  margin-bottom: 12px;
  color: var(--navy);
}
.case-finale .page-lede {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8px;
}
.case-finale .hero-actions { justify-content: center; }

@keyframes caseMediaSettle {
  from { transform: scale(1.08); opacity: 0.78; }
  to { transform: scale(1.04); opacity: 1; }
}
@keyframes caseReveal {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .case-hero-bleed { min-height: min(78vh, 640px); }
  .case-hero-copy { padding: 48px 5.5vw 44px; }
  .case-hero-brand { max-width: none; }
  .case-chapter,
  .case-chapter-flip {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 56px 5.5vw;
  }
  .case-chapter-flip .case-chapter-copy,
  .case-chapter-flip .case-chapter-media { order: initial; }
  .case-chapter-media { position: relative; top: auto; }
  .case-chapters-nav { top: 64px; }
}

@media (max-width: 960px) {
  .org-split,
  .org-partner-grid,
  .org-form-grid {
    grid-template-columns: 1fr;
  }
  .org-section { padding-top: 48px; padding-bottom: 48px; }
}
.page-head h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}
.page-lede { color: var(--muted); font-size: 1.05rem; max-width: 52ch; }

.panel {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(197, 213, 220, 0.9);
}
.panel-form {
  max-width: 520px;
  padding: 24px;
  display: grid;
  gap: 14px;
}
.panel-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 0.92rem;
}
.panel-form input,
.panel-form textarea {
  font: inherit;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
}
.panel-form textarea { resize: vertical; min-height: 96px; }
.panel-result {
  max-width: 520px;
  padding: 24px;
  margin-top: 16px;
}
.panel-result h2 { font-size: 1.4rem; margin-bottom: 8px; }

.status-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  max-width: 480px;
}
.status-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(197, 213, 220, 0.9);
}
.status-ok { color: var(--teal); font-weight: 700; }

.case-stats {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  display: grid;
  gap: 10px;
  max-width: 520px;
}
.case-stats li {
  padding: 14px 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(197, 213, 220, 0.9);
  color: var(--muted);
}
.case-stats li strong { color: var(--ink); }

.page-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 5.5vw 72px;
}
.legal-page h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}
.legal-page h2 {
  font-size: 1.25rem;
  margin: 28px 0 10px;
}
.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.6;
}
.legal-page ul { padding-left: 20px; display: grid; gap: 8px; }
.legal-page .legal-meta { font-size: 0.92rem; margin-bottom: 24px; }

.trust-hero {
  padding: 48px 5.5vw 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent 70%),
    radial-gradient(ellipse at 70% 0%, rgba(12, 107, 107, 0.1), transparent 50%);
  border-bottom: 1px solid rgba(197, 213, 220, 0.75);
}
.trust-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 28px;
}
.trust-hero h1 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  margin-bottom: 12px;
}
.trust-hero .page-lede {
  margin-left: auto;
  margin-right: auto;
  max-width: 48ch;
}
.trust-hero .legal-meta {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}
.trust-subnav {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0 5.5vw 16px;
}
.trust-subnav a {
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
}
.trust-subnav a:hover,
.trust-subnav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(215, 235, 231, 0.7);
}
.trust-body {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 40px;
}
.trust-status-banner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 24px 26px;
  border-radius: 14px;
  border: 1px solid rgba(197, 213, 220, 0.95);
  background: rgba(255, 255, 255, 0.88);
  margin-bottom: 22px;
}
.trust-status-banner h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin: 4px 0 6px;
}
.trust-status-banner p:last-child { color: var(--muted); }
.trust-status-banner[data-state="ok"] {
  border-color: rgba(12, 107, 107, 0.35);
  background: linear-gradient(180deg, #ffffff, #eaf5f3);
}
.trust-status-banner[data-state="degraded"] {
  border-color: rgba(184, 106, 28, 0.4);
  background: linear-gradient(180deg, #fff, #fff6ec);
}
.trust-status-banner[data-state="down"] {
  border-color: rgba(155, 44, 44, 0.35);
  background: linear-gradient(180deg, #fff, #fceded);
}
.trust-status-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.trust-status-card {
  padding: 18px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(197, 213, 220, 0.95);
}
.trust-status-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.trust-status-value {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.trust-status-meta {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}
.trust-status-card[data-state="ok"] .trust-status-value { color: var(--teal); }
.trust-status-card[data-state="degraded"] .trust-status-value { color: #b86a1c; }
.trust-status-card[data-state="down"] .trust-status-value { color: #9b2c2c; }
.trust-note {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(197, 213, 220, 0.8);
  color: var(--muted);
  max-width: 60ch;
}
.trust-privacy {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}
.trust-toc {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 8px;
  align-content: start;
}
.trust-toc a {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
}
.trust-toc a:hover { color: var(--teal); }
.trust-toc-docs {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(197, 213, 220, 0.8);
  display: grid;
  gap: 8px;
}
.trust-legal section {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(197, 213, 220, 0.65);
}
.trust-legal section:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.trust-legal h2 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.trust-legal p,
.trust-legal li {
  color: var(--muted);
  line-height: 1.65;
  max-width: 62ch;
}
.trust-legal ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}
.trust-legal a {
  color: var(--teal);
  font-weight: 600;
  border-bottom: 1px solid rgba(12, 107, 107, 0.3);
}
.trust-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: start;
}
.trust-split h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin: 6px 0 12px;
}
.trust-health-result {
  margin-top: 20px;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(197, 213, 220, 0.95);
  background: rgba(255, 255, 255, 0.9);
}
.trust-health-result[data-state="ok"] {
  border-color: rgba(12, 107, 107, 0.35);
  background: linear-gradient(180deg, #fff, #eaf5f3);
}
.trust-health-result[data-state="down"] {
  border-color: rgba(155, 44, 44, 0.35);
  background: linear-gradient(180deg, #fff, #fceded);
}
.trust-code {
  margin: 14px 0 0;
  padding: 14px;
  border-radius: 10px;
  background: #102f3d;
  color: #e8f1f8;
  overflow: auto;
  font-size: 0.86rem;
  line-height: 1.5;
}
.trust-endpoint-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.trust-endpoint-list li {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(197, 213, 220, 0.95);
}
.trust-endpoint-list strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.trust-endpoint-list span {
  color: var(--muted);
  font-size: 0.95rem;
}
.trust-body code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9em;
}

@media (max-width: 960px) {
  .trust-status-grid,
  .trust-privacy,
  .trust-split {
    grid-template-columns: 1fr;
  }
  .trust-toc { position: relative; top: auto; }
  .trust-status-banner { flex-direction: column; align-items: flex-start; }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes stageIn {
  from { opacity: 0; transform: translateY(28px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes floatPhone {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes liveDot {
  0% { box-shadow: 0 0 0 0 rgba(62, 207, 154, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(62, 207, 154, 0); }
  100% { box-shadow: 0 0 0 0 rgba(62, 207, 154, 0); }
}
@keyframes chipIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 108px;
  }
  .hero-sell {
    min-height: min(100dvh, 920px);
    align-items: end;
  }
  .hero-stage { min-height: 420px; }
  .device-laptop { transform: none; }
  .device-phone {
    width: min(42%, 190px);
    right: 4%;
    bottom: -4%;
  }
  .proof-list,
  .story-split,
  .story-split-flip,
  .watch-grid,
  .atmosphere-grid {
    grid-template-columns: 1fr;
  }
  .story-split-flip .story-copy,
  .story-split-flip .story-photo { order: initial; }
  .atmosphere-wide img,
  .atmosphere-shot img { min-height: 240px; }
  .shot-block,
  .shot-flip {
    grid-template-columns: 1fr;
  }
  .shot-flip .shot-copy,
  .shot-flip .shot-frame { order: initial; }
  .price-grid { grid-template-columns: 1fr; border-left: none; border-right: none; }
  .price-card { border-right: none; border-bottom: 1px solid var(--line); }
  .price-card:last-child { border-bottom: none; }
  .price-card.is-featured { transform: none; }
}

@media (max-width: 960px) {
  .nav-toggle { display: inline-block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 5.5vw 20px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
  }
  body.nav-open .site-nav { display: flex; }
  .site-nav > a,
  .site-nav .nav-dropdown {
    padding: 12px 0;
    border-bottom: 1px solid rgba(197, 213, 220, 0.55);
  }
  .site-nav > a.header-cta {
    margin: 14px 0 0;
    width: fit-content;
    border-bottom: 0;
  }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 4px 0 0;
  }
  body.nav-open .site-header-on-hero:not(.is-scrolled) .site-nav {
    background: rgba(8, 36, 54, 0.96);
  }
  body.nav-open .site-header-on-hero:not(.is-scrolled) .site-nav > a:not(.header-cta) {
    color: rgba(255, 255, 255, 0.92);
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }
  .price-grid { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
  .footer-nav { gap: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
  .device-laptop { transform: none; }
}

/* Docs / help centre */
.docs-shell {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 0;
  min-height: calc(100vh - 72px);
  align-items: start;
  background: #fff;
}
.docs-rail {
  position: sticky;
  top: 72px;
  max-height: calc(100vh - 72px);
  overflow: auto;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, #f7fbfb, #fff 40%);
}
.docs-rail-inner { padding: 28px 20px 36px; }
.docs-rail-title {
  font-size: 1.55rem;
  margin: 0 0 16px;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.docs-search-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.docs-search {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
  margin-bottom: 18px;
}
.docs-search:focus {
  outline: none;
  border-color: rgba(11, 116, 116, 0.45);
  box-shadow: 0 0 0 3px rgba(11, 116, 116, 0.12);
}
.docs-toc {
  display: grid;
  gap: 4px;
  margin-bottom: 22px;
}
.docs-toc a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
}
.docs-toc a:hover,
.docs-toc a.is-active {
  color: var(--navy);
  background: rgba(11, 116, 116, 0.08);
}
.docs-rail-actions {
  display: grid;
  gap: 8px;
}
.docs-rail-actions .cta,
.docs-rail-actions .ghost {
  width: 100%;
  justify-content: center;
}
.docs-main {
  padding: 36px 5.5vw 88px;
  max-width: 920px;
}
.docs-hero {
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.docs-hero h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin: 8px 0 12px;
  letter-spacing: -0.03em;
}
.docs-hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: 18px;
  align-items: center;
}
.docs-section {
  margin-bottom: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.docs-section:last-child { border-bottom: 0; }
.docs-section h2 {
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  margin: 6px 0 14px;
  letter-spacing: -0.02em;
}
.docs-section h3 {
  font-size: 1.1rem;
  margin: 22px 0 8px;
  color: var(--navy);
}
.docs-steps {
  margin: 12px 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 14px;
}
.docs-steps li { color: var(--ink); }
.docs-steps p {
  margin: 4px 0 0;
  color: var(--muted);
}
.docs-list {
  margin: 10px 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 8px;
  color: var(--muted);
}
.docs-list strong { color: var(--ink); }
.docs-callout {
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 3px solid var(--teal);
  background: var(--teal-soft);
  border-radius: 0 12px 12px 0;
}
.docs-callout p { margin: 0; color: var(--ink); }
.docs-table-wrap {
  overflow: auto;
  margin: 14px 0;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.docs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}
.docs-table th,
.docs-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.docs-table th {
  background: #f7fafb;
  font-weight: 700;
  color: var(--navy);
}
.docs-table tr:last-child td { border-bottom: 0; }
.docs-table code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.86em;
  background: #f1f5f7;
  padding: 2px 6px;
  border-radius: 6px;
}
.docs-faq { display: grid; gap: 10px; margin-top: 16px; }
.docs-faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
}
.docs-faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
}
.docs-faq-item p {
  margin: 10px 0 0;
  color: var(--muted);
}
.docs-faq-links {
  margin-top: 8px !important;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.docs-faq-links a { color: var(--teal); font-weight: 650; }

@media (max-width: 960px) {
  .docs-shell { grid-template-columns: 1fr; }
  .docs-rail {
    position: static;
    max-height: none;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .docs-toc {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .docs-main { padding-top: 24px; }
}
