/* ==========================================================================
   DAW Media — design system
   ========================================================================== */

:root {
  /* Colour */
  --ink: #0E1116;
  --navy: #161B3F;
  --navy-raised: #20275A;
  --paper: #F4F5F8;
  --surface: #FFFFFF;
  --slate: #4B5263;
  --line: #E1E4EA;
  --accent: #4A3FD4;
  --accent-deep: #3A30B0;
  --accent-soft: #EEEDFC;
  --accent-on-dark: #B9B2FF;
  --live: #1F7A55;
  --live-bright: #2FA86F;
  --on-dark: #F5F6FA;
  --on-dark-muted: #B9BFD3;
  --line-dark: rgba(245, 246, 250, 0.16);
  --error: #B42318;

  /* Type */
  --font-serif: "Newsreader", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-sans: "Instrument Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --text-sm: 0.9375rem;
  --text-base: 1.0625rem;
  --text-lg: 1.1875rem;
  --text-xl: clamp(1.25rem, 1.1rem + 0.5vw, 1.4rem);
  --h3: clamp(1.3rem, 1.15rem + 0.5vw, 1.5rem);
  --h2: clamp(1.9rem, 1.4rem + 2vw, 2.9rem);
  --h1: clamp(2.35rem, 1.5rem + 3.6vw, 4.25rem);
  --h1-page: clamp(2.1rem, 1.5rem + 2.6vw, 3.4rem);

  /* Space (8px scale) */
  --s1: 0.5rem;
  --s2: 1rem;
  --s3: 1.5rem;
  --s4: 2rem;
  --s5: 3rem;
  --s6: 4rem;
  --s7: 6rem;
  --section: clamp(4rem, 2.5rem + 5vw, 6.5rem);

  --radius: 6px;
  --radius-lg: 10px;
  --container: 1200px;
  --gutter: clamp(1.25rem, 0.8rem + 2vw, 2rem);
  --header-h: 72px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (min-width: 900px) {
  body { font-size: 1.125rem; }
}

img, svg { max-width: 100%; }
img { height: auto; display: block; }

h1, h2, h3, h4 { margin: 0; font-weight: 500; }

h1, h2 {
  font-family: var(--font-serif);
  letter-spacing: -0.015em;
  line-height: 1.08;
  text-wrap: balance;
}

h2 { font-size: var(--h2); }

h3 {
  font-family: var(--font-sans);
  font-size: var(--text-lg);
  font-weight: 600;
  line-height: 1.3;
}

p { margin: 0; text-wrap: pretty; }
p + p { margin-top: var(--s2); }

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

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  border-radius: 3px;
}
.dark :focus-visible { outline-color: var(--accent-on-dark); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 100;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.measure { max-width: 38rem; }
.lead { font-size: var(--text-xl); line-height: 1.55; }
.muted { color: var(--slate); }
.dark .muted { color: var(--on-dark-muted); }

/* ---------- Dark contexts ---------- */
.dark {
  background: var(--navy);
  color: var(--on-dark);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font: 600 1rem/1.25 var(--font-sans);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.1s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); text-decoration: none; }
.dark .btn-primary { background: var(--surface); color: var(--ink); }
.dark .btn-primary:hover { background: var(--accent-soft); }

.btn-secondary { background: transparent; border-color: rgba(14, 17, 22, 0.3); color: var(--ink); }
.btn-secondary:hover { border-color: var(--ink); }
.dark .btn-secondary { border-color: rgba(247, 244, 238, 0.35); color: var(--on-dark); }
.dark .btn-secondary:hover { border-color: var(--on-dark); }

.btn-small { min-height: 44px; padding: 0.55rem 1rem; font-size: 0.9375rem; }
.btn[disabled] { opacity: 0.7; cursor: progress; }

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s2) var(--s3);
  margin-top: var(--s4);
}

.text-link {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.25em;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
@supports (backdrop-filter: blur(8px)) {
  .site-header { background: rgba(255, 255, 255, 0.88); backdrop-filter: blur(8px); }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  min-height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
  min-height: 44px;
}
.logo-svg { flex: none; display: block; width: 176px; height: 28px; }
.logo-word {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--s4);
}
.nav-links { display: flex; gap: var(--s3); }
.nav-links a {
  text-decoration: none;
  font-size: 0.9875rem;
  color: var(--slate);
  padding-block: 0.5rem;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.45em;
}

.nav-toggle { display: none; }

@media (max-width: 859px) {
  .js .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    min-height: 44px;
    padding: 0.5rem 0.75rem;
    margin-right: -0.75rem;
    background: none;
    border: 0;
    color: var(--ink);
    font: 500 1rem var(--font-sans);
    cursor: pointer;
  }
  .nav-toggle-bars,
  .nav-toggle-bars::before,
  .nav-toggle-bars::after {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .nav-toggle-bars { position: relative; }
  .nav-toggle-bars::before,
  .nav-toggle-bars::after { content: ""; position: absolute; left: 0; }
  .nav-toggle-bars::before { top: -6px; }
  .nav-toggle-bars::after { top: 6px; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { transform: translateY(-6px) rotate(-45deg); }

  .js .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: var(--s3);
    padding: var(--s2) var(--gutter) var(--s4);
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px -12px rgba(14, 17, 22, 0.18);
  }
  .js .site-nav.is-open { display: flex; }
  .js .nav-links { flex-direction: column; gap: 0; }
  .js .nav-links a {
    font-size: 1.125rem;
    color: var(--ink);
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }
  .js .site-nav .btn { width: 100%; min-height: 52px; font-size: 1rem; }

  /* Without JavaScript: keep the links visible below the logo */
  .no-js .header-inner { flex-wrap: wrap; padding-block: var(--s1); }
  .no-js .site-nav { flex-wrap: wrap; gap: var(--s2); }
}

/* ---------- Sections ---------- */
.section { padding-block: var(--section); }
.section-surface { background: var(--paper); border-block: 1px solid var(--line); }

.section-head { max-width: 44rem; margin-bottom: var(--s5); }
.section-head p { margin-top: var(--s2); color: var(--slate); font-size: var(--text-lg); }

/* ---------- Home hero ---------- */
.hero {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(3rem, 2rem + 4vw, 6rem) clamp(4rem, 2.5rem + 5vw, 7rem);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--s5);
  align-items: center;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: var(--s6); }
}
.hero h1 {
  font-size: var(--h1);
  line-height: 1.03;
  max-width: 17ch;
}
.hero .lead {
  margin-top: var(--s3);
  color: var(--slate);
  max-width: 36rem;
}
.hero .actions { margin-top: var(--s4); }
.hero-note {
  margin-top: var(--s2);
  font-size: var(--text-sm);
  color: var(--slate);
  max-width: 30rem;
}

.assurances {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1) var(--s3);
  margin: var(--s4) 0 0;
  padding: var(--s3) 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
  font-size: var(--text-sm);
  color: var(--ink);
}
.assurances li { display: flex; align-items: center; gap: 0.5rem; }
.assurances li::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5l3 3 7-7' fill='none' stroke='%234A3FD4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* The signal feed: the one memorable element */
.feed {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--s3);
  box-shadow: 0 1px 2px rgba(14, 17, 22, 0.04), 0 16px 32px -20px rgba(22, 27, 63, 0.22);
}
.feed-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
  padding-bottom: var(--s2);
  border-bottom: 1px solid var(--line);
}
.feed-title { font-weight: 600; font-size: 1rem; }
.feed-sub { font-size: 0.875rem; color: var(--slate); margin-top: 2px; }
.feed-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate);
  white-space: nowrap;
}
.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--live-bright);
  box-shadow: 0 0 0 0 rgba(70, 178, 131, 0.5);
}
@media (prefers-reduced-motion: no-preference) {
  .live-dot { animation: pulse 2.6s ease-out infinite; }
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(70, 178, 131, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(70, 178, 131, 0); }
  100% { box-shadow: 0 0 0 0 rgba(70, 178, 131, 0); }
}

.feed-list { list-style: none; margin: 0; padding: 0; }
.feed-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.25rem var(--s2);
  padding-block: var(--s2);
  border-bottom: 1px solid var(--line);
}
.feed-item:last-child { border-bottom: 0; padding-bottom: 0; }
.feed-role { font-weight: 600; color: var(--ink); }
.feed-company { grid-column: 1; font-size: 0.9375rem; color: var(--slate); }
.feed-when {
  grid-column: 2;
  grid-row: 1;
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.feed-caption {
  margin-top: var(--s3);
  font-size: 0.8125rem;
  color: var(--slate);
}

@media (prefers-reduced-motion: no-preference) {
  .js .feed-item {
    opacity: 0;
    transform: translateY(8px);
    animation: feed-in 0.55s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  }
  .js .feed-item:nth-child(1) { animation-delay: 0.35s; }
  .js .feed-item:nth-child(2) { animation-delay: 0.75s; }
  .js .feed-item:nth-child(3) { animation-delay: 1.15s; }
  .js .feed-item:nth-child(4) { animation-delay: 1.55s; }
}
@keyframes feed-in {
  to { opacity: 1; transform: none; }
}

@media (max-width: 480px) {
  .actions .btn { width: 100%; }
  .feed-head { flex-direction: column; align-items: flex-start; gap: var(--s1); }
  .feed-item { grid-template-columns: 1fr; }
  .feed-when { grid-column: 1; grid-row: auto; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding-block: clamp(3rem, 2rem + 3vw, 5rem); background: var(--paper); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: var(--h1-page); max-width: 20ch; }
.page-hero .lead { margin-top: var(--s3); color: var(--slate); max-width: 40rem; }

/* ---------- Problem ---------- */
.problem-grid {
  display: grid;
  gap: var(--s4) var(--s6);
}
@media (min-width: 900px) {
  .problem-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
}
.problem-grid h2 { max-width: 12ch; }
.problem-body p { color: var(--slate); }
.problem-body p:first-child { color: var(--ink); font-size: var(--text-xl); line-height: 1.5; }

.evidence {
  margin: var(--s4) 0;
  padding: 0.25rem 0 0.25rem var(--s3);
  border-left: 3px solid var(--accent);
}
.evidence p { color: var(--ink); font-family: var(--font-serif); font-size: var(--text-xl); line-height: 1.45; }
.evidence cite {
  display: block;
  margin-top: var(--s1);
  font-style: normal;
  font-size: var(--text-sm);
  color: var(--slate);
}

/* ---------- Mechanism ---------- */
.mechanism {
  display: grid;
  gap: var(--s4);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}
@media (min-width: 820px) {
  .mechanism { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s5); }
}
.mechanism li { border-top: 1px solid var(--ink); padding-top: var(--s3); }
.mechanism-word {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 1.6rem + 1.4vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: var(--s2);
}
.mechanism p { color: var(--slate); }

/* ---------- Sample preview ---------- */
.sample-grid {
  display: grid;
  gap: var(--s5);
}
@media (min-width: 1000px) {
  .sample-grid { grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); align-items: start; }
}
.sample-intro p { margin-top: var(--s2); color: var(--slate); }

.sample-table-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.section-surface .sample-table-wrap { background: var(--surface); }

.sample-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  line-height: 1.45;
}
.sample-table caption {
  caption-side: bottom;
  text-align: left;
  padding: var(--s2) var(--s3);
  font-size: 0.8125rem;
  color: var(--slate);
  border-top: 1px solid var(--line);
}
.sample-table th,
.sample-table td {
  text-align: left;
  vertical-align: top;
  padding: var(--s2) var(--s3);
  border-bottom: 1px solid var(--line);
}
.sample-table thead th {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--slate);
  background: var(--paper);
}
.sample-table tbody tr:last-child td { border-bottom: 0; }
.sample-table .co { font-weight: 600; }
@media (min-width: 760px) {
  .sample-table td:first-child { min-width: 10rem; }
  .sample-table td:nth-child(3) { min-width: 11rem; }
}
.sample-table .signal { color: var(--live); font-weight: 500; }
.redacted {
  display: inline-block;
  width: 7.5em;
  height: 0.8em;
  background: var(--line);
  border-radius: 2px;
  vertical-align: middle;
}

@media (max-width: 759px) {
  .sample-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .sample-table,
  .sample-table tbody,
  .sample-table tr,
  .sample-table td { display: block; width: 100%; }
  .sample-table tr { padding: var(--s2) var(--s2); border-bottom: 1px solid var(--line); }
  .sample-table td { border: 0; padding: 0.3rem 0; }
  .sample-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.8125rem;
    color: var(--slate);
    font-weight: 500;
  }
  .sample-table caption { display: block; padding: var(--s2); }
}

/* ---------- Timeline ---------- */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s4);
}
@media (min-width: 900px) {
  .timeline { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--s3); }
}
.timeline li { position: relative; }
.step-marker {
  display: flex;
  align-items: center;
  gap: var(--s2);
  margin-bottom: var(--s2);
}
.step-num {
  flex: none;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  background: var(--surface);
  position: relative;
  z-index: 1;
}
.section-surface .step-num { background: var(--paper); }
.step-when { font-size: var(--text-sm); color: var(--slate); font-weight: 500; }
@media (min-width: 900px) {
  .timeline li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 40px;
    right: calc(-1 * var(--s3));
    height: 1px;
    background: var(--line);
  }
  .step-marker { flex-direction: column; align-items: flex-start; gap: var(--s1); }
}
@media (max-width: 899px) {
  .timeline li { padding-left: 56px; }
  .step-marker { position: absolute; left: 0; top: 0; }
  .step-when { display: none; }
  .timeline li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 20px;
    top: 44px;
    bottom: calc(-1 * var(--s4) + 4px);
    width: 1px;
    background: var(--line);
  }
  .step-when-inline { display: block; }
}
@media (min-width: 900px) {
  .step-when-inline { display: none; }
}
.step-when-inline { font-size: var(--text-sm); color: var(--slate); font-weight: 500; margin-bottom: 0.25rem; }
.timeline h3 { margin-bottom: var(--s1); }
.timeline p { color: var(--slate); font-size: 1rem; }

/* ---------- You / us split ---------- */
.split {
  display: grid;
  gap: var(--s3);
  margin-top: var(--s6);
}
@media (min-width: 820px) {
  .split { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
}
.split-flush { margin-top: 0; }
.split-col {
  border-radius: var(--radius-lg);
  padding: var(--s4);
}
.split-you { background: var(--surface); border: 1px solid var(--line); }
.section-surface .split-you { background: var(--surface); }
.split-us { background: var(--navy); color: var(--on-dark); }
.split-col h3 { font-family: var(--font-serif); font-weight: 500; font-size: var(--h3); margin-bottom: var(--s2); }

.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.ticks li {
  position: relative;
  padding-left: 1.75rem;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5l3 3 7-7' fill='none' stroke='%234A3FD4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.split-us .ticks li::before,
.dark .ticks li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5l3 3 7-7' fill='none' stroke='%23B9B2FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ticks-cols { grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); column-gap: var(--s4); }

/* ---------- Brand safety ---------- */
.safety-grid {
  display: grid;
  gap: var(--s4) var(--s6);
}
@media (min-width: 900px) {
  .safety-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
}
.safety-grid h2 { max-width: 13ch; }
.safety-intro { margin-top: var(--s2); color: var(--slate); }
.safety-list { list-style: none; margin: 0; padding: 0; }
.safety-list li {
  display: grid;
  gap: 0.25rem;
  padding-block: var(--s3);
  border-bottom: 1px solid var(--line);
}
.safety-list li:first-child { padding-top: 0; }
.safety-list li:last-child { border-bottom: 0; }
.safety-list p { color: var(--slate); }

/* ---------- Exclusivity statement ---------- */
.statement {
  display: grid;
  gap: var(--s3) var(--s6);
  align-items: end;
}
@media (min-width: 900px) {
  .statement { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
}
.statement h2 { font-size: clamp(2.2rem, 1.5rem + 3vw, 3.75rem); max-width: 14ch; }
.statement p { color: var(--slate); }

/* ---------- Pricing ---------- */
.price-panel {
  display: grid;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 900px) {
  .price-panel { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
}
.price-main { padding: var(--s4); background: var(--navy); color: var(--on-dark); }
.price-from { font-size: var(--text-sm); color: var(--on-dark-muted); }
.price-figure {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 2.2rem + 3vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: var(--s1);
  font-variant-numeric: lining-nums;
}
.price-figure span { font-family: var(--font-sans); font-size: 1rem; letter-spacing: 0; color: var(--on-dark-muted); margin-left: 0.25rem; }
.price-scope { margin-top: var(--s2); color: var(--on-dark-muted); }
.price-main .btn { margin-top: var(--s4); width: 100%; }
.founding {
  margin-top: var(--s3);
  padding-top: var(--s3);
  border-top: 1px solid var(--line-dark);
  font-size: var(--text-sm);
  color: var(--on-dark-muted);
}
.founding strong { color: var(--on-dark); font-weight: 600; }
.price-detail { padding: var(--s4); display: grid; gap: var(--s4); align-content: start; }
.price-detail h3 { margin-bottom: var(--s2); }
.price-detail .ticks { font-size: 1rem; }
.price-link { margin-top: var(--s3); }

.billing-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s3); }
@media (min-width: 820px) {
  .billing-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.billing-steps li { border-top: 1px solid var(--ink); padding-top: var(--s2); }
.billing-steps .when { font-family: var(--font-serif); font-size: var(--h3); display: block; margin-bottom: var(--s1); }
.billing-steps p { color: var(--slate); font-size: 1rem; }

.option-row {
  display: grid;
  gap: var(--s3);
}
@media (min-width: 820px) {
  .option-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.option-row-spaced { margin-top: var(--s3); }
.option {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--s4);
}
.option h3 { font-family: var(--font-serif); font-weight: 500; font-size: var(--h3); }
.option .option-price { margin-top: var(--s1); font-weight: 600; }
.option p:last-child { margin-top: var(--s2); color: var(--slate); }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; gap: var(--s4) var(--s6); }
@media (min-width: 900px) {
  .faq-grid { grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); }
}
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s2);
  padding-block: var(--s3);
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: var(--text-lg);
  line-height: 1.35;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "";
  flex: none;
  width: 14px;
  height: 14px;
  background:
    linear-gradient(currentColor, currentColor) center / 14px 2px no-repeat,
    linear-gradient(currentColor, currentColor) center / 2px 14px no-repeat;
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding-bottom: var(--s3); color: var(--slate); max-width: 44rem; }

/* ---------- Final CTA ---------- */
.final-cta { padding-block: var(--section); }
.final-cta h2 { max-width: 18ch; }
.final-cta p { margin-top: var(--s2); color: var(--on-dark-muted); font-size: var(--text-lg); }

/* ---------- Prose (how it works, privacy) ---------- */
.prose { max-width: 42rem; }
.prose h2 { font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.1rem); margin-top: var(--s5); margin-bottom: var(--s2); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: var(--s4); margin-bottom: var(--s1); }
.prose p, .prose li { color: var(--slate); }
.prose p + p { margin-top: var(--s2); }
.prose ul { padding-left: 1.25rem; margin: var(--s2) 0; }
.prose li + li { margin-top: 0.4rem; }
.prose a { color: var(--ink); }

.two-col {
  display: grid;
  gap: var(--s4) var(--s6);
}
@media (min-width: 900px) {
  .two-col { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
}
.two-col + .two-col { margin-top: var(--section); padding-top: var(--section); border-top: 1px solid var(--line); }
.two-col h2 { max-width: 14ch; }
.two-col .body p { color: var(--slate); }
.two-col .body p + p { margin-top: var(--s2); }
.two-col .body .ticks { margin-top: var(--s3); }

.week-list { list-style: none; margin: 0; padding: 0; }
.week-list li {
  display: grid;
  gap: var(--s1) var(--s4);
  padding-block: var(--s4);
  border-bottom: 1px solid var(--line);
}
.week-list li:first-child { padding-top: 0; }
@media (min-width: 820px) {
  .week-list li { grid-template-columns: 10rem minmax(0, 1fr); }
}
.week-label { font-family: var(--font-serif); font-size: var(--h3); line-height: 1.2; }
.week-list h3 { margin-bottom: var(--s1); }
.week-list ul { margin: var(--s1) 0 0; padding-left: 1.2rem; color: var(--slate); }
.week-list ul li { display: list-item; padding: 0; border: 0; }
.week-list ul li + li { margin-top: 0.3rem; }

/* ---------- Sample request form ---------- */
.form-layout { display: grid; gap: var(--s5); }
@media (min-width: 1000px) {
  .form-layout { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: var(--s6); align-items: start; }
}
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 0.8rem + 2vw, 2.5rem);
}
.form-grid { display: grid; gap: var(--s3); }
@media (min-width: 640px) {
  .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-grid .full { grid-column: 1 / -1; }
}
.field label { display: block; font-weight: 600; font-size: 0.9875rem; margin-bottom: 0.4rem; }
.field .optional { font-weight: 400; color: var(--slate); }
.field-hint { font-size: 0.875rem; color: var(--slate); margin-top: 0.35rem; }
.field input,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 0.9rem;
  font: 400 1rem/1.4 var(--font-sans);
  color: var(--ink);
  background: var(--surface);
  border: 1px solid #C9C2B5;
  border-radius: var(--radius);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:hover,
.field textarea:hover { border-color: var(--slate); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(74, 63, 212, 0.25);
}
.field input:user-invalid,
.field textarea:user-invalid { border-color: var(--error); }
.field-error { display: none; font-size: 0.875rem; color: var(--error); margin-top: 0.35rem; }
.field input:user-invalid ~ .field-error,
.field textarea:user-invalid ~ .field-error,
.field.has-error .field-error { display: block; }
.field.has-error input,
.field.has-error textarea { border-color: var(--error); }
.form-foot { margin-top: var(--s4); display: grid; gap: var(--s2); }
.form-foot .btn { width: 100%; }
@media (min-width: 640px) {
  .form-foot .btn { width: auto; justify-self: start; }
}
.form-privacy { font-size: 0.875rem; color: var(--slate); }
.hidden-field { display: none; }

.aside-block + .aside-block { margin-top: var(--s5); }
.aside-block h2 { font-size: clamp(1.5rem, 1.3rem + 0.8vw, 1.9rem); margin-bottom: var(--s2); }
.aside-block .ticks { color: var(--ink); }
.steps-small { list-style: none; margin: 0; padding: 0; counter-reset: s; display: grid; gap: var(--s2); }
.steps-small li { counter-increment: s; display: grid; grid-template-columns: 2rem 1fr; gap: var(--s1); color: var(--slate); }
.steps-small li::before {
  content: counter(s);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--ink);
  line-height: 1.4;
}

.mini-sample {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--s3);
  font-size: 0.9375rem;
}
.mini-sample dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 0.5rem var(--s2); }
.mini-sample dt { color: var(--slate); }
.mini-sample dd { margin: 0; font-weight: 500; }
.mini-sample .signal { color: var(--live); }
.mini-sample p { margin-top: var(--s2); font-size: 0.8125rem; color: var(--slate); }

/* ---------- Thank-you and 404 ---------- */
.center-block { max-width: 40rem; }
.center-block .steps-small { margin-top: var(--s4); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--on-dark);
  padding-top: var(--s6);
  border-top: 1px solid var(--line-dark);
}
.site-footer :focus-visible { outline-color: var(--accent-on-dark); }
.footer-inner {
  display: grid;
  gap: var(--s4);
  padding-bottom: var(--s5);
}
@media (min-width: 820px) {
  .footer-inner { grid-template-columns: minmax(0, 5fr) minmax(0, 3fr) minmax(0, 4fr); }
}
.footer-brand p { margin-top: var(--s2); color: var(--on-dark-muted); max-width: 22rem; font-size: 1rem; }
.footer-nav,
.footer-contact { display: grid; gap: 0.25rem; align-content: start; }
.footer-nav a,
.footer-contact a {
  color: var(--on-dark);
  text-decoration: none;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  width: fit-content;
}
.footer-nav a:hover,
.footer-contact a:hover { text-decoration: underline; }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s2);
  padding-block: var(--s3);
  border-top: 1px solid var(--line-dark);
  font-size: 0.875rem;
  color: var(--on-dark-muted);
}
.footer-legal a { color: var(--on-dark-muted); min-height: 32px; display: inline-flex; align-items: center; }

/* ---------- Motion safety ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.aside-note { margin-top: var(--s3); }
.thanks-call { margin-top: var(--s5); }
.thanks-call h3 { font-family: var(--font-sans); font-weight: 600; font-size: var(--text-lg); margin-bottom: var(--s1); }
.site-footer .logo-arc { stroke: var(--accent-on-dark); }

.price-call { margin-top: var(--s2); font-size: var(--text-sm); color: var(--on-dark-muted); text-align: center; }
.price-call a { color: var(--on-dark); }
