/* ----------------------------------------------------
   Airclerk — vanilla HTML/CSS/JS clone
   Breakpoints: desktop ≥1200px, tablet 810–1199.98px, mobile ≤809.98px
---------------------------------------------------- */

/* --- Fonts --- */
@font-face {
  font-family: "Suisse Intl";
  src: url("fonts/SuisseIntl-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Intl";
  src: url("fonts/SuisseIntl-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rhymes Display";
  src: url("fonts/RhymesDisplay-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Clash Grotesk";
  src: url("fonts/ClashGrotesk.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Suisse Intl", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: rgb(8, 9, 10);
  background: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: transparent; cursor: pointer; color: inherit; }
ul, ol { padding-left: 1.2em; margin: 0.5em 0; }
p { margin: 0; }

:root {
  --black: rgb(8, 9, 10);
  --near-black: rgb(15, 15, 15);
  --offwhite: rgb(247, 247, 247);
  --hero-bg: rgb(238, 238, 238);
  --gray-text: rgb(102, 102, 102);
  --gray-soft: rgb(139, 139, 139);
  --gray-2: rgb(90, 90, 90);
  --card-bg: rgb(20, 20, 20);
  --card-border: rgb(38, 38, 38);
  --top-bar-bg: rgb(15, 15, 15);
  --top-bar-text: rgb(201, 201, 201);
  --rule: rgba(255, 255, 255, 0.08);
  --rule-light: rgba(0, 0, 0, 0.08);
  --max-w: 1200px;
  --gutter-d: 80px;
  --gutter-t: 56px;
  --gutter-m: 24px;
}

/* --- Layout helpers --- */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter-d);
}
@media (max-width: 1199.98px) { .container { padding-inline: var(--gutter-t); } }
@media (max-width: 809.98px)  { .container { padding-inline: var(--gutter-m); } }

/* ====================================================
   Top announcement bar
==================================================== */
.top-bar {
  background: var(--top-bar-bg);
  color: var(--top-bar-text);
  font-size: 14px;
  letter-spacing: -0.04em;
  text-align: center;
  padding: 14px 16px;
  position: sticky;
  top: 0;
  z-index: 60;
}
.top-bar a { color: inherit; }
.top-bar a:hover { color: #fff; }

/* ====================================================
   Header
==================================================== */
.site-header {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 49px;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  padding-inline: 120px;
  max-width: 1440px;
  margin: 0 auto;
  gap: 32px;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}
@media (min-width: 1200px) { .header-inner { height: 64px; } }
@media (max-width: 1199.98px) { .header-inner { padding-inline: 56px; height: 80px; } }
@media (max-width: 809.98px)  { .header-inner { padding-inline: 20px; height: 64px; } }

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Clash Grotesk", "Suisse Intl", sans-serif;
  font-size: 26.79px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: var(--black);
}
.logo .logo-mark {
  width: 22px;
  height: 23px;
  flex-shrink: 0;
}
.footer-brand .logo .logo-mark { color: #fff; }
@media (max-width: 809.98px) { .logo { font-size: 26.79px; } .logo .logo-mark { width: 22px; height: 23px; } }

.nav-center {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-link {
  font-size: 14px;
  letter-spacing: -0.04em;
  line-height: 2em;
  color: var(--gray-text);
  transition: color .18s ease;
}
.nav-link:hover { color: var(--black); }

.nav-mobile-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 8px;
}
.nav-mobile-toggle:hover { background: rgba(0,0,0,0.04); }
.nav-mobile-toggle .bar {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--black);
  position: relative;
}
.nav-mobile-toggle .bar::before,
.nav-mobile-toggle .bar::after {
  content: "";
  position: absolute; left: 0;
  width: 18px; height: 1.5px;
  background: var(--black);
}
.nav-mobile-toggle .bar::before { top: -6px; }
.nav-mobile-toggle .bar::after { top: 6px; }

@media (max-width: 1199.98px) {
  .nav-center { display: none !important; }
  .header-right > .nav-cta,
  .header-inner > .nav-cta { display: none !important; }
  .nav-mobile-toggle { display: inline-flex !important; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  padding: 8px 24px;
  border-radius: 0;
  transition: transform .15s ease, opacity .15s ease, background .15s ease;
}
.btn-dark {
  background: var(--black);
  color: #fff;
}
.btn-dark:hover { background: #1a1b1c; transform: translateY(-1px); }
@media (max-width: 809.98px) {
  .btn { padding: 8px 18px; }
}

.btn-ghost {
  background: transparent;
  color: var(--black);
  border: 1px solid rgba(0,0,0,0.15);
}
.btn-ghost:hover { background: rgba(0,0,0,0.04); }

/* ====================================================
   Hero
==================================================== */
.hero {
  background: var(--hero-bg);
  padding: 162px 0 115px;
  text-align: center;
}
@media (max-width: 1199.98px) { .hero { padding: 96px 0 112px; } }
@media (max-width: 809.98px)  { .hero { padding: 78px 0 98px; } }

.hero-eyebrow {
  font-size: 14px;
  letter-spacing: -0.02em;
  line-height: 120%;
  color: var(--gray-2);
  margin-bottom: 28px;
}
.hero h1 {
  font-family: "Rhymes Display", "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 400;
  font-size: 82px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--black);
  margin: 0 auto 28px;
  max-width: 1000px;
}
.hero-h1-mobile { display: none; }
@media (max-width: 1199.98px) { .hero h1 { font-size: 64px; } }
@media (max-width: 809.98px) {
  .hero-h1-desktop { display: none; }
  .hero-h1-mobile { display: block; }
  .hero h1 { font-size: 40px; line-height: 105%; max-width: 100%; }
}

.hero-sub {
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 100%;
  color: rgb(92, 92, 92);
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: nowrap;
  justify-content: center;
  margin: 0 auto 36px;
  white-space: nowrap;
}
.hero-sub-text { white-space: nowrap; }
.hero-cycler {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
  text-align: left;
  font-family: "Suisse Intl", sans-serif;
  font-weight: 500;
  color: var(--black);
}
/* Phantom word establishes the cycler's natural width and baseline */
.cycler-phantom {
  visibility: hidden;
  display: inline-block;
  font-family: inherit;
  font-weight: inherit;
  white-space: nowrap;
}
/* Clipping window for the rotating words. Sized larger than 1em so
   descenders ("g", "p") are visible; positioned to share the phantom's
   baseline so the visible word sits on the same line as the surrounding text. */
.cycler-words {
  position: absolute;
  left: 0;
  top: -0.18em;
  bottom: -0.22em;
  right: 0;
  overflow: hidden;
}
.cycler-words .word {
  position: absolute;
  left: 0;
  top: 0.18em;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(110%);
  transition: transform .55s cubic-bezier(.6,.05,.2,1), opacity .35s ease;
}
.cycler-words .word.is-active {
  opacity: 1;
  transform: translateY(0);
}
.cycler-words .word.is-leaving {
  opacity: 0;
  transform: translateY(-110%);
}
@media (max-width: 1199.98px) { .hero-sub { font-size: 24px; } .hero-cycler { min-width: 180px; } }
@media (max-width: 809.98px) {
  .hero-sub { font-size: 18px; gap: 6px; flex-wrap: wrap; white-space: normal; }
  .hero-sub-text { display: inline; white-space: normal; }
  .hero-cycler { min-width: 120px; text-align: left; height: 1.2em; }
}

.hero-cta { margin-top: 8px; display: inline-flex; }
.hero .hero-cta-wrap { display: flex; justify-content: center; }

/* ====================================================
   "Renewals stall" + benefit cards (dark)
==================================================== */
.section-dark {
  background: #000;
  color: var(--offwhite);
}

.intro {
  max-width: 1200px;
  padding-inline: 0;
  padding-block: 120px 60px;
}
@media (max-width: 1199.98px) { .intro { padding: 96px 56px 48px; } }
@media (max-width: 809.98px)  { .intro { padding: 72px 20px 36px; } }

.intro-grid {
  display: grid;
  grid-template-columns: 464fr 332fr 404fr;
  gap: 0;
  align-items: start;
}
.intro-grid > h2 { grid-column: 1; }
.intro-grid > p { grid-column: 3; }
@media (max-width: 1199.98px) {
  .intro-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .intro-grid > h2 { grid-column: 1; }
  .intro-grid > p { grid-column: 2; }
}
@media (max-width: 809.98px) {
  .intro-grid { grid-template-columns: 1fr; gap: 18px; }
  .intro-grid > h2, .intro-grid > p { grid-column: 1; }
}

.intro h2 {
  font-family: "Rhymes Display", serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: var(--offwhite);
  margin: 0;
  max-width: none;
}
@media (max-width: 1199.98px) { .intro h2 { font-size: 40px; } }
@media (max-width: 809.98px)  { .intro h2 { font-size: 28px; line-height: 120%; } }

.intro p {
  font-size: 16px;
  line-height: 120%;
  color: rgb(170, 170, 170);
  max-width: none;
  letter-spacing: -0.01em;
}

.benefits {
  max-width: 1200px;
  padding-inline: 0;
  padding-block: 24px 96px;
}
@media (max-width: 1199.98px) { .benefits { padding: 24px 56px 96px; } }
@media (max-width: 809.98px) { .benefits { padding: 24px 20px 26px; } }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1199.98px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; } }
@media (max-width: 809.98px)  { .benefits-grid { grid-template-columns: 1fr; gap: 12px; } }

.benefit-card {
  background: rgb(15, 16, 17);
  border: 1px solid rgb(38, 38, 38);
  border-radius: 0;
  padding: 24px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.benefit-card .card-icon {
  width: 24px;
  height: 24px;
  color: rgb(144, 144, 144);
  display: block;
}
.benefit-card-body { display: flex; flex-direction: column; gap: 10px; }
.benefit-card h3 {
  font-family: "Suisse Intl", sans-serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.04em;
  text-transform: capitalize;
  margin: 0;
  color: var(--offwhite);
}
@media (max-width: 809.98px) { .benefit-card h3 { font-size: 20px; } }
.benefit-card p {
  font-size: 14px;
  line-height: 150%;
  color: rgb(155, 155, 155);
  letter-spacing: -0.01em;
  margin: 0;
}

/* ====================================================
   Product steps
==================================================== */
.products {
  padding: 0;
  background: #000;
}
.product-step {
  display: grid;
  grid-template-columns: 480px 720px;
  align-items: center;
  padding: 50px 0;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.product-step .product-text { padding-left: 0; padding-right: 30px; max-width: 600px; justify-self: start; }
.product-step .product-panel { justify-self: end; padding-right: 0; }
.product-step.image-left { grid-template-columns: 720px 480px; }
.product-step.image-left .product-text { order: 2; padding-left: 110px; padding-right: 0; justify-self: end; }
.product-step.image-left .product-panel { order: 1; justify-self: start; padding-right: 0; padding-left: 0; }
@media (max-width: 1199.98px) {
  .product-step,
  .product-step.image-left { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .product-step .product-text,
  .product-step.image-left .product-text { padding-left: 56px; padding-right: 24px; }
  .product-step.image-left .product-text { padding-left: 24px; padding-right: 56px; }
  .product-step .product-panel { padding-right: 56px; }
  .product-step.image-left .product-panel { padding-left: 56px; }
}
@media (max-width: 809.98px) {
  .product-step,
  .product-step.image-left {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 0;
  }
  .product-step .product-text,
  .product-step.image-left .product-text {
    order: 1; padding: 0 var(--gutter-m);
  }
  .product-step .product-panel,
  .product-step.image-left .product-panel {
    order: 2; justify-self: stretch; width: auto; margin-inline: 20px; padding: 0;
  }
}

.product-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-soft);
  margin-bottom: 18px;
}
.product-text h3 {
  font-family: "Rhymes Display", serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: var(--offwhite);
  margin: 0 0 18px;
  max-width: 384px;
}
@media (max-width: 1199.98px) { .product-text h3 { font-size: 28px; max-width: 320px; } }
@media (max-width: 809.98px)  { .product-text h3 { font-size: 28px; line-height: 120%; max-width: none; } }
.product-text p {
  font-size: 16px;
  line-height: 120%;
  color: rgb(170, 170, 170);
  max-width: 440px;
  letter-spacing: -0.01em;
}
.product-panel {
  width: 100%;
  max-width: 760px;
  height: 434px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-panel.bg-trigger { background: rgb(219, 231, 221); }
.product-panel.bg-prepare { background: rgb(202, 217, 231); }
.product-panel.bg-engage { background: rgb(229, 215, 209); }
.product-panel.bg-approve { background: rgb(235, 238, 233); }
.product-panel img {
  display: block;
  height: 434px;
  width: auto;
  max-width: none;
}
@media (max-width: 1199.98px) {
  .product-panel { height: 380px; }
  .product-panel img { height: 380px; }
}
@media (max-width: 809.98px) {
  .product-panel { height: auto; max-width: 100%; padding: 24px; }
  .product-panel img { width: 100%; max-width: 480px; height: auto; }
}

/* ====================================================
   AI Notepad landing page
==================================================== */
.ai-page {
  background: #000;
  color: var(--offwhite);
}

.ai-hero {
  background: var(--hero-bg);
  padding: 134px 0 105px;
  text-align: center;
  color: var(--black);
}
@media (max-width: 1199.98px) { .ai-hero { padding: 96px 0 100px; } }
@media (max-width: 809.98px) { .ai-hero { padding: 72px 0 86px; } }

.ai-hero .container {
  max-width: 1120px;
}

.ai-hero-kicker {
  font-size: 14px;
  letter-spacing: -0.02em;
  line-height: 120%;
  color: var(--gray-2);
  margin-bottom: 26px;
}

.ai-hero h1 {
  font-family: "Rhymes Display", "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 400;
  font-size: 76px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--black);
  margin: 0 auto 28px;
  max-width: 980px;
}
@media (max-width: 1199.98px) { .ai-hero h1 { font-size: 60px; } }
@media (max-width: 809.98px) { .ai-hero h1 { font-size: 40px; line-height: 105%; } }

.ai-hero-copy {
  font-size: 22px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: rgb(92, 92, 92);
  max-width: 820px;
  margin: 0 auto 34px;
}
@media (max-width: 809.98px) { .ai-hero-copy { font-size: 18px; } }

.ai-hero-line {
  font-size: 32px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: rgb(92, 92, 92);
  margin: 0 auto 34px;
  max-width: 720px;
}
.ai-hero-line strong {
  color: var(--black);
  font-weight: 500;
}
@media (max-width: 1199.98px) { .ai-hero-line { font-size: 25px; } }
@media (max-width: 809.98px) { .ai-hero-line { font-size: 20px; max-width: 340px; } }

.meeting-types {
  max-width: 1200px;
  padding-inline: 0;
  padding-block: 20px 104px;
}
@media (max-width: 1199.98px) { .meeting-types { padding: 18px 56px 96px; } }
@media (max-width: 809.98px) { .meeting-types { padding: 18px 20px 70px; } }

.meeting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1199.98px) { .meeting-grid { gap: 12px; } }
@media (max-width: 809.98px) { .meeting-grid { grid-template-columns: 1fr; } }

.meeting-card {
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgb(38, 38, 38);
  background: rgb(15, 16, 17);
  display: flex;
  align-items: flex-end;
}
.meeting-card span {
  font-size: 24px;
  line-height: 112%;
  letter-spacing: -0.04em;
  color: var(--offwhite);
}
@media (max-width: 809.98px) {
  .meeting-card { min-height: 92px; }
  .meeting-card span { font-size: 20px; }
}

.ai-products {
  padding: 16px 0 74px;
  background: #000;
}
@media (max-width: 809.98px) { .ai-products { padding-bottom: 50px; } }

.artifact-panel {
  width: 100%;
  max-width: 760px;
  min-height: 434px;
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-step .artifact-panel { justify-self: end; }
.product-step.image-left .artifact-panel {
  order: 1;
  justify-self: start;
}
@media (max-width: 1199.98px) {
  .artifact-panel { min-height: 380px; padding: 30px; }
}
@media (max-width: 809.98px) {
  .artifact-panel { min-height: auto; padding: 22px; }
  .product-step .artifact-panel,
  .product-step.image-left .artifact-panel {
    order: 2;
    justify-self: stretch;
    width: auto;
    margin-inline: 20px;
  }
}

.artifact-panel.transcript { background: rgb(219, 231, 221); }
.artifact-panel.followup { background: rgb(202, 217, 231); }
.artifact-panel.actions { background: rgb(229, 215, 209); }
.artifact-panel.compliance { background: rgb(235, 238, 233); }
.artifact-panel.file { background: rgb(226, 222, 214); }

.artifact-ui {
  width: min(100%, 520px);
  background: rgba(255,255,255,0.92);
  color: var(--black);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 26px 70px rgba(0,0,0,0.12);
  padding: 22px;
}

.artifact-ui-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.artifact-ui-title {
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(42, 42, 42);
}

.artifact-ui-pill {
  font-size: 11px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgb(77, 77, 77);
  background: rgba(0,0,0,0.06);
  padding: 7px 9px;
}

.artifact-lines {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.artifact-line {
  height: 10px;
  background: rgba(0,0,0,0.1);
}
.artifact-line.short { width: 55%; }
.artifact-line.medium { width: 76%; }
.artifact-line.long { width: 100%; }

.artifact-note {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 16px;
  display: grid;
  gap: 10px;
}

.artifact-note-row {
  display: grid;
  grid-template-columns: 16px 1fr;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: rgb(65, 65, 65);
}

.artifact-dot {
  width: 16px;
  height: 16px;
  background: var(--black);
}

.artifact-task {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 13px;
  line-height: 130%;
  color: rgb(58, 58, 58);
}
.artifact-task:first-child { border-top: 0; }

.artifact-check {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(0,0,0,0.22);
  background: rgba(0,0,0,0.04);
}

.artifact-owner {
  font-size: 11px;
  color: rgb(110, 110, 110);
}

.why-meet {
  background: #000;
  color: var(--offwhite);
  padding: 104px 0 116px;
}
@media (max-width: 809.98px) { .why-meet { padding: 70px 0 80px; } }

.why-meet .intro {
  padding-block: 0;
}
@media (max-width: 1199.98px) { .why-meet .intro { padding: 0 56px; } }
@media (max-width: 809.98px) { .why-meet .intro { padding: 0 20px; } }

.why-meet .intro-grid {
  margin-bottom: 54px;
}

.why-cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-inline: 0;
}
@media (max-width: 1199.98px) { .why-cards { padding-inline: 56px; gap: 12px; } }
@media (max-width: 809.98px) { .why-cards { grid-template-columns: 1fr; padding-inline: 20px; } }

.why-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgb(38, 38, 38);
  background: rgb(15, 16, 17);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.why-card h3 {
  font-size: 25px;
  line-height: 112%;
  letter-spacing: -0.04em;
  font-weight: 400;
  margin: 0;
  color: var(--offwhite);
}
.why-card p {
  color: rgb(155, 155, 155);
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.01em;
}

.final-cta-lines {
  color: rgb(67, 67, 67);
  font-size: 20px;
  line-height: 135%;
  letter-spacing: -0.02em;
  margin: -14px 0 34px;
}
@media (max-width: 809.98px) {
  .final-cta-lines {
    font-size: 17px;
    text-align: center;
  }
}

/* ====================================================
   FAQ
==================================================== */
.faq {
  background: #000;
  padding: 96px 0 120px;
}
@media (max-width: 809.98px) { .faq { padding: 64px 0 80px; } }
.faq .container {
  max-width: 1360px;
  padding-inline: 0;
}
@media (max-width: 1199.98px) { .faq .container { padding-inline: 56px; } }
@media (max-width: 809.98px) { .faq .container { padding-inline: 20px; } }

.faq-eyebrow {
  text-align: center;
  font-size: 14px;
  letter-spacing: -0.04em;
  color: var(--gray-soft);
  text-transform: capitalize;
  margin-bottom: 14px;
}
.faq h2 {
  font-family: "Rhymes Display", serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--offwhite);
  margin: 0 auto 56px;
}
@media (max-width: 1199.98px) { .faq h2 { font-size: 36px; } }
@media (max-width: 809.98px)  { .faq h2 { font-size: 28px; margin-bottom: 32px; } }

.faq-list {
  max-width: none;
  margin: 0;
}
.faq-item {
  border-bottom: 0.5px solid rgb(77, 77, 77);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 28px 0;
  font-family: "Suisse Intl", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--offwhite);
  font-feature-settings: 'cv01', 'cv09', 'cv11', 'cv05', 'ss03';
}
@media (max-width: 809.98px) { .faq-question { padding: 22px 0; } }

.faq-question .chev {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: rgb(102, 102, 102);
  transition: transform .25s ease;
}
.faq-item.is-open .faq-question .chev { transform: rotate(180deg); }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.faq-answer-inner {
  overflow: hidden;
  color: rgb(170, 170, 170);
  font-size: 15px;
  line-height: 160%;
  letter-spacing: -0.01em;
}
.faq-answer-inner > div { padding: 0 0 22px; max-width: 65ch; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }

/* ====================================================
   Final CTA
==================================================== */
.final-cta {
  position: relative;
  background-color: rgb(238, 238, 238);
  background-image: url("images/gsQ1KftADNBTo00jjAlktcZoag.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: left;
  padding: 120px 0 140px;
  overflow: hidden;
}
@media (max-width: 809.98px) { .final-cta { padding: 80px 0 100px; } }

.final-cta::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -50%;
  width: 1500px;
  height: 1500px;
  transform: translateX(-50%);
  background-image: url("images/EWs61iuzUTyodzFXmAUj2Vw7pik.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 809.98px) {
  .final-cta::before { width: 800px; height: 800px; bottom: -40%; }
}
.final-cta-content { position: relative; z-index: 1; padding-inline: 120px; max-width: 1440px; margin: 0 auto; }
@media (min-width: 1200px) { .final-cta-content { padding-inline: 170px; } }
@media (max-width: 1199.98px) { .final-cta-content { padding-inline: 56px; } }
@media (max-width: 809.98px)  { .final-cta-content { padding-inline: 24px; } }
.final-cta h2 {
  font-family: "Rhymes Display", serif;
  font-weight: 400;
  font-size: 48px;
  letter-spacing: -0.02em;
  line-height: 120%;
  color: var(--black);
  margin: 0 0 32px;
  max-width: none;
}
@media (max-width: 1199.98px) { .final-cta h2 { font-size: 40px; } }
@media (max-width: 809.98px)  {
  .final-cta { text-align: center; }
  .final-cta-content { display: flex; flex-direction: column; align-items: center; }
  .final-cta h2 { font-size: 32px; line-height: 120%; max-width: 284px; }
}

/* ====================================================
   Footer
==================================================== */
.site-footer {
  background: var(--near-black);
  color: rgb(170, 170, 170);
  padding: 60px 0 40px;
  border-top: 1px solid var(--rule);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 170px 197px;
  gap: 48px;
  align-items: start;
  max-width: 1440px;
  padding-inline: 120px;
  margin: 0 auto;
}
.footer-col-cta { display: none; }
.footer-tagline-mobile,
.footer-copy-mobile { display: none; }
@media (max-width: 1199.98px) { .footer-grid { padding-inline: 56px; } }
@media (max-width: 809.98px)  {
  .footer-grid { grid-template-columns: 1fr; gap: 31px; padding-inline: 20px; }
  .footer-col-brand { grid-column: 1 / -1; }
  .footer-col-cta { display: none; }
  .footer-col-brand { order: 0; }
  .footer-col:not(.footer-col-brand):not(.footer-col-cta) { order: 2; }
  .footer-copy-mobile { display: block; order: 3; }
  .footer-tagline-desktop,
  .footer-copy-desktop { display: none; }
  .footer-tagline-mobile { display: block; }
}

.footer-brand .logo { color: #fff; }
.footer-tagline {
  margin-top: 10px;
  font-size: 14px;
  line-height: 120%;
  color: rgb(158, 158, 158);
  max-width: 28ch;
}
.footer-copy {
  margin-top: 28px;
  font-size: 13px;
  color: rgb(110, 110, 110);
}
@media (max-width: 809.98px) {
  .footer-copy-mobile {
    margin-top: 0;
    font-size: 12px;
    line-height: 120%;
  }
}
.footer-col h4 {
  font-family: "Suisse Intl", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  margin: 0 0 22px;
  color: rgb(237, 237, 237);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin: 0 0 17px; }
.footer-col a {
  font-size: 14px;
  line-height: 120%;
  color: rgb(92, 92, 92);
  transition: color .15s ease;
}
.footer-col a:hover { color: #fff; }

/* ====================================================
   Mobile menu (overlay)
==================================================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 100;
  padding: 24px;
  transform: translateX(100%);
  transition: transform .25s ease;
  display: flex;
  flex-direction: column;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu .close {
  align-self: flex-end;
  width: 40px; height: 40px;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.mobile-menu nav a { font-size: 22px; color: var(--black); }
.mobile-menu .btn { margin-top: 24px; align-self: flex-start; }

/* ====================================================
   Sub-pages (legal / sign-up)
==================================================== */
.subpage {
  background: #fff;
  color: var(--black);
  min-height: 100vh;
}
.subpage .site-header { border-bottom: 1px solid rgba(0,0,0,0.06); }
.subpage main { padding: 64px 0 96px; }
.legal-page h1 {
  font-family: "Rhymes Display", serif;
  font-weight: 400;
  font-size: 48px;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
@media (max-width: 809.98px) { .legal-page h1 { font-size: 32px; } }
.legal-page .updated { color: var(--gray-text); font-size: 14px; margin-bottom: 32px; }
.legal-page h2 {
  font-family: "Suisse Intl", sans-serif;
  font-weight: 500;
  font-size: 22px;
  margin: 36px 0 12px;
  letter-spacing: -0.01em;
}
.legal-page h3 {
  font-family: "Suisse Intl", sans-serif;
  font-weight: 500;
  font-size: 17px;
  margin: 24px 0 8px;
}
.legal-page p, .legal-page li {
  font-size: 16px;
  line-height: 165%;
  color: rgb(60, 60, 60);
  letter-spacing: -0.005em;
}
.legal-page ul { padding-left: 22px; }
.legal-page ul li { margin: 6px 0; }
.legal-page .container { max-width: 820px; }

/* Sign-up form */
.signup-page main {
  padding: 60px 0;
}
.signup-page .container { max-width: 520px; }
.signup-page h1 {
  font-family: "Rhymes Display", serif;
  font-weight: 400;
  font-size: 40px;
  text-align: center;
  margin: 0 0 32px;
  letter-spacing: -0.02em;
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: var(--gray-text);
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.15);
  font: inherit;
  background: #fff;
  color: var(--black);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(0,0,0,0.3);
  outline-offset: -1px;
}
.form-row textarea {
  min-height: 112px;
  resize: vertical;
}
.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.turnstile-wrap {
  min-height: 65px;
  display: flex;
  justify-content: center;
  margin: 20px 0 4px;
}
.turnstile-wrap:empty {
  display: none;
}
.form-status {
  min-height: 20px;
  margin: 12px 0 0;
  text-align: center;
  font-size: 14px;
  line-height: 140%;
  color: var(--gray-text);
}
.form-status[data-state="success"] { color: rgb(25, 98, 55); }
.form-status[data-state="error"] { color: rgb(154, 45, 45); }
.form-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.form-actions .btn:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  transform: none;
}
.form-actions .btn { width: 100%; padding: 14px 22px; font-size: 15px; }
.form-back {
  display: inline-block;
  margin-top: 24px;
  font-size: 14px;
  color: var(--gray-text);
}
.form-back:hover { color: var(--black); }
