:root {
  color-scheme: dark;
  --page: #090a0c;
  --surface: #111317;
  --surface-raised: #171a1f;
  --line: #30343b;
  --line-strong: #4b515b;
  --text: #f5f3ef;
  --muted: #b6bbc3;
  --quiet: #858c97;
  --accent: #e11d37;
  --accent-strong: #ff314c;
  --signal: #48d6cb;
  --focus: #72e5dc;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--page);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

a:hover {
  color: #ffffff;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: #ffffff;
  color: #050506;
  transform: translateY(-180%);
}

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

.page-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 8px max(20px, calc((100vw - var(--max-width)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(9, 10, 12, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 760;
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 32px;
  object-fit: cover;
  object-position: center;
}

.site-header nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-header nav a,
.site-footer nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.site-header nav a:hover,
.site-header nav a[aria-current="page"],
.site-footer nav a:hover,
.site-footer nav a[aria-current="page"] {
  color: var(--text);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100svh - 112px));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -2;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(0.72) contrast(1.06);
}

.hero-shade {
  z-index: -1;
  background: rgba(5, 6, 8, 0.72);
  box-shadow: inset 46vw 0 150px rgba(5, 6, 8, 0.88), inset 0 -160px 130px rgba(5, 6, 8, 0.82);
}

.hero-content {
  align-self: center;
  padding-block: 80px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--signal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.6rem, 9vw, 7rem);
  font-weight: 850;
}

.hero-lede {
  max-width: 720px;
  margin: 0;
  color: #f2f0eb;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.48;
}

.hero-status {
  max-width: 680px;
  margin: 20px 0 0;
  color: #d1d5db;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 760;
  text-decoration: none;
}

.button-primary {
  background: var(--accent);
  color: #ffffff;
}

.button-primary:hover {
  background: var(--accent-strong);
}

.button-secondary {
  border-color: #7c828c;
  background: rgba(9, 10, 12, 0.72);
  color: #ffffff;
}

.section-band {
  padding-block: 94px;
  border-bottom: 1px solid var(--line);
}

.section-intro h2,
.section-heading h2,
.privacy-layout h2,
.review-layout h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 790;
}

.section-intro > p:last-child,
.section-heading > p:last-child,
.review-layout > p {
  color: var(--muted);
  font-size: 1.06rem;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(420px, 1.35fr);
  gap: 72px;
  align-items: center;
}

.output-figure {
  margin: 0;
}

.output-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  object-fit: cover;
}

.output-figure figcaption {
  margin-top: 12px;
  color: var(--quiet);
  font-size: 0.84rem;
}

.workflow {
  background: var(--surface);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 54px;
}

.compact-heading {
  max-width: 680px;
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.workflow-list li {
  min-width: 0;
  padding: 28px 24px 20px 0;
  border-bottom: 1px solid var(--line);
}

.workflow-list li + li {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.step-number {
  display: block;
  margin-bottom: 28px;
  color: var(--accent-strong);
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 0.82rem;
}

.workflow-list h3,
.capability-grid h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.workflow-list p,
.capability-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.control-note {
  max-width: 900px;
  margin: 36px 0 0;
  color: var(--muted);
}

.control-note strong {
  color: var(--text);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
}

.capability-grid article {
  min-width: 0;
  padding: 28px 30px 34px 0;
  border-bottom: 1px solid var(--line);
}

.capability-grid article:nth-child(3n + 2),
.capability-grid article:nth-child(3n + 3) {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.privacy-design {
  background: #121719;
}

.privacy-layout,
.review-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(340px, 1.1fr);
  gap: 80px;
  align-items: start;
}

.assurance-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid #47605f;
  list-style: none;
}

.assurance-list li {
  position: relative;
  padding: 18px 8px 18px 28px;
  border-bottom: 1px solid #354443;
  color: #d7dedc;
}

.assurance-list li::before {
  position: absolute;
  top: 25px;
  left: 3px;
  width: 8px;
  height: 8px;
  background: var(--signal);
  content: "";
}

.review-summary {
  background: var(--surface-raised);
}

.review-layout > p {
  margin: 0;
}

.site-footer {
  padding-block: 44px;
  background: #07080a;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px 40px;
  align-items: start;
}

.footer-brand {
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
}

.site-footer p {
  margin: 4px 0 0;
  color: var(--quiet);
  font-size: 0.84rem;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.legal-main {
  background: var(--page);
}

.legal-hero {
  padding-block: 86px 70px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.legal-header-content {
  max-width: 900px;
}

.legal-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(2.7rem, 7vw, 5.4rem);
  font-weight: 830;
}

.legal-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-hero .legal-updated {
  color: var(--signal);
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 0.84rem;
}

.legal-content {
  max-width: 850px;
  padding-block: 66px 94px;
}

.legal-content section {
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
}

.legal-content section:first-child {
  padding-top: 0;
}

.legal-content h2 {
  margin-bottom: 14px;
  font-size: 1.4rem;
}

.legal-content p {
  margin: 0 0 14px;
  color: #c7cbd2;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content a {
  color: #8cebe3;
}

@media (max-width: 860px) {
  .site-header {
    position: relative;
    align-items: flex-start;
    padding-block: 12px;
  }

  .site-header nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 16px;
    max-width: 330px;
  }

  .proof-layout,
  .privacy-layout,
  .review-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .workflow-list li:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

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

  .capability-grid article:nth-child(3n + 2),
  .capability-grid article:nth-child(3n + 3) {
    padding-left: 0;
    border-left: 0;
  }

  .capability-grid article:nth-child(even) {
    padding-left: 26px;
    border-left: 1px solid var(--line);
  }
}

@media (max-width: 600px) {
  .page-shell {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .site-header {
    display: block;
  }

  .brand {
    margin-bottom: 10px;
  }

  .site-header nav {
    justify-content: flex-start;
    max-width: none;
  }

  .hero {
    min-height: 660px;
  }

  .hero-shade {
    background: rgba(5, 6, 8, 0.76);
    box-shadow: inset 0 -180px 110px rgba(5, 6, 8, 0.9);
  }

  .hero-content {
    align-self: end;
    padding-block: 70px 54px;
  }

  .hero h1 {
    font-size: 3.7rem;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .section-band {
    padding-block: 68px;
  }

  .workflow-list,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .workflow-list li,
  .workflow-list li + li,
  .workflow-list li:nth-child(3),
  .capability-grid article,
  .capability-grid article:nth-child(even),
  .capability-grid article:nth-child(3n + 2),
  .capability-grid article:nth-child(3n + 3) {
    padding: 24px 0;
    border-right: 0;
    border-left: 0;
  }

  .step-number {
    margin-bottom: 14px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .copyright {
    grid-column: auto;
  }

  .legal-hero {
    padding-block: 56px 48px;
  }

  .legal-content {
    padding-block: 46px 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
