:root {
  --red: #a41e22;
  --red-dark: #7d1518;
  --red-soft: #f5e9e9;
  --ink: #111111;
  --ink-soft: #3a3a3a;
  --gray: #6b6b6b;
  --line: #e6e2dd;
  --paper: #ffffff;
  --paper-warm: #f8f6f3;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(17, 17, 17, .08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
section { padding: 84px 0; }
section.warm { background: var(--paper-warm); }

/* ---------- header ---------- */
.topbar { background: var(--ink); color: #fff; font-size: 14px; letter-spacing: .02em; }
.topbar .wrap {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 7px; padding-bottom: 7px; gap: 12px;
}
.topbar a { color: #fff; text-decoration: none; font-weight: 600; }
.topbar a:hover { color: #f0b9ba; }
.topbar .tag { color: #bdbdbd; }

header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
header.site .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px; gap: 20px;
}
.logo img { height: 42px; width: auto; }
nav.main { display: flex; align-items: center; gap: 26px; }
nav.main a {
  text-decoration: none; font-weight: 600; font-size: 15px; color: var(--ink-soft);
  padding: 6px 0; border-bottom: 2px solid transparent; white-space: nowrap;
}
nav.main a:hover, nav.main a.active { color: var(--red); border-bottom-color: var(--red); }

.btn {
  display: inline-block; text-decoration: none; font-weight: 700;
  padding: 13px 28px; border-radius: 999px; font-size: 15px; border: 0; cursor: pointer;
  font-family: inherit;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 6px 18px rgba(164,30,34,.32); }
.btn-red:hover { background: var(--red-dark); }
.btn-ghost { border: 2px solid var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: #f1eeea; }
.btn-outline-white { border: 2px solid rgba(255,255,255,.6); color: #fff; }
.btn-outline-white:hover { background: #fff; color: var(--ink); }

.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 3px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

/* ---------- hero ---------- */
.hero {
  background: linear-gradient(160deg, #141414 0%, #242424 52%, #3d1113 100%);
  color: #fff; padding: 84px 0 92px; position: relative; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; right: -200px; top: -160px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(164,30,34,.4), transparent 65%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.kicker {
  display: inline-block; font-size: 12.5px; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: #f0b9ba; margin-bottom: 18px;
}
.hero h1 { font-size: 51px; line-height: 1.1; letter-spacing: -.02em; font-weight: 800; }
.hero h1 em { font-style: normal; color: #e8898c; }
.hero .lead { font-size: 18.5px; color: #ddd8d4; margin-top: 20px; max-width: 560px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 38px; font-size: 14px; color: #cfc9c5; }
.hero-badges span { display: flex; align-items: center; gap: 8px; }
.hero-badges svg { width: 17px; height: 17px; stroke: #e8898c; fill: none; stroke-width: 2.4; }

/* transcript demo card */
.demo {
  background: #fff; color: var(--ink); border-radius: 18px; overflow: hidden;
  box-shadow: 0 26px 60px rgba(0,0,0,.42);
}
.demo-head {
  background: var(--paper-warm); border-bottom: 1px solid var(--line);
  padding: 13px 18px; display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; color: var(--gray);
}
.demo-head .dot { width: 10px; height: 10px; border-radius: 50%; background: #ddd6d0; }
.demo-head .dot:first-child { background: var(--red); }
.demo-body { padding: 20px 20px 24px; }
.demo-row { display: flex; gap: 13px; align-items: flex-start; padding: 13px 0; }
.demo-row + .demo-row { border-top: 1px dashed var(--line); }
.demo-ico {
  flex: 0 0 34px; height: 34px; border-radius: 9px; background: var(--red-soft);
  display: grid; place-items: center;
}
.demo-ico svg { width: 17px; height: 17px; stroke: var(--red); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.demo-label { font-size: 11.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--gray); }
.demo-text { font-size: 14.5px; color: var(--ink-soft); margin-top: 3px; }
.demo-text strong { color: var(--ink); }
.wave { display: flex; align-items: flex-end; gap: 3px; height: 22px; margin-top: 6px; }
.wave i { width: 3px; background: var(--red); border-radius: 2px; opacity: .8; animation: bob 1.1s ease-in-out infinite; }
@keyframes bob { 0%,100% { height: 5px; } 50% { height: 20px; } }
.demo-foot {
  background: var(--ink); color: #ddd; font-size: 12.5px; padding: 11px 20px;
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.demo-foot b { color: #fff; }
@media (prefers-reduced-motion: reduce) { .wave i { animation: none; height: 12px; } }

/* ---------- generic sections ---------- */
.section-head { max-width: 700px; margin-bottom: 46px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.rule { width: 52px; height: 4px; background: var(--red); border-radius: 3px; margin-bottom: 20px; }
.section-head.center .rule { margin-left: auto; margin-right: auto; }
h2 { font-size: 35px; line-height: 1.18; letter-spacing: -.015em; font-weight: 800; }
.section-head p { color: var(--gray); font-size: 17.5px; margin-top: 14px; }

.grid { display: grid; gap: 26px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow);
}
.card h3 { font-size: 21px; margin-bottom: 10px; font-weight: 800; }
.card p { color: var(--gray); font-size: 15.5px; }
.card .icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--red-soft);
  display: grid; place-items: center; margin-bottom: 18px;
}
.card .icon svg { width: 24px; height: 24px; stroke: var(--red); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card ul { list-style: none; margin-top: 16px; }
.card ul li { position: relative; padding-left: 26px; margin-bottom: 11px; color: var(--ink-soft); font-size: 15.5px; }
.card ul li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px;
  border-radius: 50%; background: var(--red);
}
.card .more { display: inline-block; margin-top: 18px; color: var(--red); font-weight: 700; text-decoration: none; font-size: 15px; }
.card .more:hover { text-decoration: underline; }

/* numbered steps */
.steps { counter-reset: s; }
.step { position: relative; padding-left: 62px; }
.step::before {
  counter-increment: s; content: counter(s);
  position: absolute; left: 0; top: 0; width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink); color: #fff; display: grid; place-items: center;
  font-weight: 800; font-size: 17px;
}
.step h3 { font-size: 19px; font-weight: 800; margin-bottom: 7px; }
.step p { color: var(--gray); font-size: 15.5px; }

/* stat strip */
.stats { background: var(--ink); color: #fff; padding: 54px 0; }
.stats .grid { text-align: center; }
.stats .n { font-size: 40px; font-weight: 800; color: #e8898c; letter-spacing: -.02em; }
.stats .l { font-size: 14px; color: #bdb8b4; margin-top: 4px; }

/* ---------- pricing ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); background: #fff; }
table.rates { width: 100%; border-collapse: collapse; min-width: 780px; }
table.rates th, table.rates td { padding: 16px 18px; text-align: left; font-size: 15.5px; }
table.rates thead th {
  background: var(--ink); color: #fff; font-size: 12.5px; letter-spacing: .09em;
  text-transform: uppercase; font-weight: 800; white-space: nowrap;
}
table.rates tbody tr + tr { border-top: 1px solid var(--line); }
table.rates tbody tr:hover { background: var(--paper-warm); }
table.rates td.plan { font-weight: 800; }
table.rates td.price { font-weight: 800; color: var(--red); white-space: nowrap; }
table.rates td.ideal { color: var(--gray); font-style: italic; white-space: nowrap; }
.plan-tag {
  display: inline-block; margin-left: 9px; font-size: 10.5px; font-weight: 800; letter-spacing: .09em;
  text-transform: uppercase; background: var(--red); color: #fff; padding: 3px 9px; border-radius: 999px;
  vertical-align: middle;
}
.notes { margin-top: 30px; background: var(--paper-warm); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 30px; }
.notes h3 { font-size: 17px; font-weight: 800; margin-bottom: 14px; }
.notes ul { list-style: none; }
.notes li { position: relative; padding-left: 24px; margin-bottom: 10px; color: var(--ink-soft); font-size: 15.5px; }
.notes li::before { content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.notes li:last-child { margin-bottom: 0; }

/* ---------- faq ---------- */
.faq-list { max-width: 820px; }
details.faq {
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  margin-bottom: 14px; box-shadow: 0 4px 14px rgba(17,17,17,.04);
}
details.faq summary {
  cursor: pointer; list-style: none; padding: 21px 56px 21px 24px; position: relative;
  font-weight: 800; font-size: 17.5px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+"; position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
  color: var(--red); font-size: 25px; font-weight: 700; line-height: 1;
}
details.faq[open] summary::after { content: "\2013"; }
details.faq[open] summary { color: var(--red); }
details.faq .a { padding: 0 24px 22px; color: var(--gray); font-size: 16px; }
details.faq .a p + p { margin-top: 12px; }
details.faq .a a { color: var(--red); font-weight: 700; }

/* ---------- forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 34px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 7px; }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 15.5px; color: var(--ink); background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--red); outline-offset: 1px; border-color: var(--red); }
.field textarea { min-height: 108px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 13.5px; color: var(--gray); margin-top: 16px; }
.trial-points { list-style: none; }
.trial-points li { position: relative; padding-left: 34px; margin-bottom: 20px; }
.trial-points li h3 { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.trial-points li p { color: var(--gray); font-size: 15.5px; }
.trial-points li svg {
  position: absolute; left: 0; top: 3px; width: 21px; height: 21px;
  stroke: var(--red); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}

/* ---------- page header (interior) ---------- */
.page-head {
  background: linear-gradient(150deg, #141414 0%, #262626 60%, #3d1113 100%);
  color: #fff; padding: 62px 0 66px; position: relative; overflow: hidden;
}
.page-head::after {
  content: ""; position: absolute; right: -160px; top: -180px; width: 480px; height: 480px;
  border-radius: 50%; background: radial-gradient(circle, rgba(164,30,34,.36), transparent 65%);
}
.page-head .wrap { position: relative; z-index: 2; }
.page-head h1 { font-size: 42px; line-height: 1.12; letter-spacing: -.02em; font-weight: 800; }
.page-head p { color: #ddd8d4; font-size: 18px; margin-top: 14px; max-width: 640px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--red); color: #fff; padding: 62px 0; text-align: center; }
.cta-band h2 { font-size: 32px; }
.cta-band p { font-size: 18px; margin-top: 12px; color: #f7dcdd; }
.cta-band .cta-row { justify-content: center; }

/* ---------- prose (privacy) ---------- */
.prose { max-width: 780px; }
.prose h2 { font-size: 25px; margin-top: 40px; margin-bottom: 12px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink-soft); margin-bottom: 14px; font-size: 16.5px; }
.prose ul { margin: 0 0 16px 22px; color: var(--ink-soft); font-size: 16.5px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--red); font-weight: 700; }

/* ---------- footer ---------- */
footer.site { background: var(--ink); color: #b9b4b0; padding: 56px 0 26px; font-size: 15px; }
footer.site .cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.wordmark { font-size: 27px; font-weight: 800; letter-spacing: -.02em; color: #fff; }
.wordmark em { font-style: italic; color: #e8898c; }
footer.site p { margin-top: 14px; max-width: 340px; }
footer.site h4 { color: #fff; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
footer.site ul { list-style: none; }
footer.site li { margin-bottom: 10px; }
footer.site a { color: #b9b4b0; text-decoration: none; }
footer.site a:hover { color: #fff; }
footer.site .big { color: #fff; font-weight: 800; font-size: 19px; }
.legal { border-top: 1px solid #2c2c2c; margin-top: 42px; padding-top: 22px; font-size: 13.5px; color: #86817d; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .hero h1 { font-size: 40px; }
  .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); }
  footer.site .cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  section { padding: 62px 0; }
  header.site .wrap { flex-wrap: wrap; }
  .menu-toggle { display: block; order: 3; }
  .header-cta { display: none; }
  nav.main {
    display: none; order: 4; width: 100%; flex-direction: column; align-items: flex-start;
    gap: 0; padding-top: 8px; border-top: 1px solid var(--line); margin-top: 10px;
  }
  nav.main.open { display: flex; }
  nav.main a { width: 100%; padding: 13px 0; border-bottom: 1px solid var(--line); }
  nav.main a:hover, nav.main a.active { border-bottom-color: var(--line); }
  .topbar .wrap { flex-direction: column; align-items: flex-start; gap: 2px; font-size: 13px; }
  .hero { padding: 56px 0 66px; }
  .hero h1 { font-size: 32px; }
  .hero .lead { font-size: 17px; }
  .page-head h1 { font-size: 31px; }
  h2 { font-size: 27px; }
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .stats { padding: 40px 0; }
  .stats .grid { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
  .stats .n { font-size: 30px; }
  .stats .l { font-size: 13px; line-height: 1.4; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .cta-row .btn { width: 100%; text-align: center; }
  footer.site .cols { grid-template-columns: 1fr; gap: 32px; }
  footer.site p { max-width: none; }
  .form-card { padding: 24px; }
  .card { padding: 24px; }

  /* rate table becomes stacked cards on phones */
  .table-wrap { overflow: visible; border: 0; border-radius: 0; box-shadow: none; background: transparent; }
  table.rates { min-width: 0; }
  table.rates thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  table.rates tbody tr {
    display: block; background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); box-shadow: var(--shadow); padding: 6px 20px 14px; margin-bottom: 16px;
  }
  table.rates tbody tr + tr { border-top: 1px solid var(--line); }
  table.rates tbody tr:hover { background: #fff; }
  table.rates td {
    display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
    padding: 11px 0; text-align: right;
  }
  table.rates td + td { border-top: 1px dashed var(--line); }
  table.rates td::before {
    content: attr(data-label); font-size: 12.5px; font-weight: 800; letter-spacing: .07em;
    text-transform: uppercase; color: var(--gray); text-align: left; flex: 0 1 auto;
  }
  table.rates td.plan { display: block; text-align: left; font-size: 22px; padding: 14px 0 12px; }
  table.rates td.plan::before { display: none; }
  table.rates td.price { font-size: 19px; }
  .plan-tag { margin-left: 10px; }
}
