/* ============================================================
   cqOS — The Experience Operating System
   Teaser landing page. Recreated from the Creative Quotient
   design system (Outfit / Hanken Grotesk / IBM Plex Mono,
   ink #141414 on paper #FAFAF8, dark #0B0B0C grounds).
   ============================================================ */

:root {
  --ink: #141414;
  --paper: #FAFAF8;
  --black: #0B0B0C;
  --night: #141414;

  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; background: var(--black); }

body {
  font-family: var(--font-body);
  color: var(--ink);
  width: 100%;
  overflow-x: clip; /* clip (not hidden) — avoids nested vertical scroll container */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: #141414; color: #FAFAF8; }

img { display: block; }

/* ---------- Keyframes ---------- */
@keyframes pillCycle {
  0%   { opacity: 0;  transform: translate(0, 0) scale(.96); }
  14%  { opacity: .5; transform: translate(0, 0) scale(1); }
  62%  { opacity: .5; transform: translate(0, 0) scale(1); }
  100% { opacity: 0;  transform: translate(var(--dx, 0), var(--dy, 0)) scale(.8); }
}
@keyframes reveal {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes cueWheel {
  0%   { transform: translateY(0); opacity: 0; }
  18%  { opacity: 1; }
  70%  { transform: translateY(7px); opacity: 0; }
  100% { transform: translateY(7px); opacity: 0; }
}

/* ---------- Reveal-on-scroll utilities ---------- */
.rv {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(0.16, 1, 0.3, 1),
              transform .7s cubic-bezier(0.16, 1, 0.3, 1);
}
.rv.in { opacity: 1; transform: none; }

.udraw { position: relative; }
.udraw::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 3px;
  width: 100%;
  background: #FAFAF8;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .8s cubic-bezier(0.16, 1, 0.3, 1) .35s;
}
.udraw.in::after { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .udraw::after { transform: scaleX(1); transition: none; }
}

/* ---------- Shared interactive elements ---------- */
.cqcta {
  transition: transform .2s cubic-bezier(0.16, 1, 0.3, 1), opacity .2s;
  cursor: pointer;
  border: none;
}
.cqcta:hover { opacity: .86; }
.cqcta:active { transform: scale(.97); }

.cqlink { transition: opacity .2s; cursor: pointer; }
.cqlink:hover { opacity: .6; }

.cqcard { transition: border-color .2s, transform .2s cubic-bezier(0.16, 1, 0.3, 1); }
.cqcard:hover { border-color: #141414; transform: translateY(-3px); }

/* Eyebrow / mono label */
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-inner { max-width: 1320px; margin: 0 auto; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.hero__sprawl {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.pill {
  position: absolute;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: #CFCEC9;
  background: #1A1A1C;
  border-radius: 8px;
  padding: 8px 15px;
}
/* Tools-converge mode: pills drift inward and dissolve, on loop. */
.hero.anim-tools .pill {
  animation: pillCycle 3.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
/* Calm fade & static modes: no floating tool sprawl. */
.hero.anim-calm .pill,
.hero.anim-static .pill { display: none; }

/* Staggered hero text reveal */
.hero .reveal {
  opacity: 0;
  animation: reveal .95s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero.anim-static .reveal { animation: none; opacity: 1; transform: none; }

.hero__nav {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 34px clamp(24px, 6vw, 96px);
}
.hero__nav-logo { height: 26px; width: auto; object-fit: contain; }
.hero__nav-right {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 38px);
}
.hero__coming {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6E6C68;
}
.hero__nav-cta {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FAFAF8;
  background: transparent;
  border: none;
  border-bottom: 1px solid #2E2E2C;
  padding: 0 0 4px;
}

.hero__center {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px clamp(24px, 6vw, 96px) 96px;
}
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: clamp(11px, 1.1vw, 14px);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8C8A83;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(46px, 8.2vw, 116px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 28px 0 0 0;
  color: #FAFAF8;
  text-wrap: balance;
}
.hero__lede {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.5;
  color: #9A988F;
  margin: 34px 0 0 0;
  max-width: 46ch;
  text-wrap: balance;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 46px;
}
.btn-primary {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #141414;
  background: #FAFAF8;
  border-radius: 999px;
  padding: 16px 30px;
}
.hero__ghost {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #CFCEC9;
  text-decoration: none;
  padding: 16px 4px;
}

.hero__cue {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  z-index: 2;
  display: flex;
  justify-content: center;
}
.hero__cue-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #56544F;
}
.hero__cue-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero__cue-wheel {
  animation: cueWheel 1.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

/* ============================================================
   THESIS  (paper)
   ============================================================ */
.thesis {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(80px, 12vw, 168px) clamp(24px, 6vw, 120px);
}
.thesis__eyebrow { color: #141414; }
.thesis__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 7.2vw, 108px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 30px 0 0 0;
  max-width: 16ch;
  text-wrap: balance;
}
.thesis__lede {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 3.2vw, 46px);
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin: 36px 0 0 0;
  max-width: 34ch;
  text-wrap: balance;
}
.thesis__lede .ink { color: #141414; }
.thesis__lede .muted { color: #86847E; }

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(40px, 6vw, 96px);
  margin-top: clamp(56px, 8vw, 104px);
  border-top: 1px solid #E8E8E3;
  padding-top: 40px;
}
.stat { display: flex; flex-direction: column; gap: 8px; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat__label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #86847E;
}

/* ============================================================
   THE SYSTEM  (paper)
   ============================================================ */
.system {
  background: var(--paper);
  color: var(--ink);
  padding: 0 clamp(24px, 6vw, 120px) clamp(80px, 12vw, 168px);
}
.system__eyebrow { color: #141414; }
.system__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 5.6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 28px 0 0 0;
  max-width: 22ch;
  text-wrap: balance;
}
.system__lede {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.9vw, 26px);
  line-height: 1.5;
  color: #6B6B66;
  margin: 26px 0 0 0;
  max-width: 60ch;
}
.stack {
  margin-top: clamp(48px, 6vw, 80px);
  border: 2px solid #141414;
  border-radius: 24px;
  padding: clamp(26px, 3vw, 44px);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.stack__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.stack__brand {
  font-family: var(--font-mono);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #141414;
}
.stack__meta {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #A8A6A0;
}
.stack__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}
.module {
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.03em;
  border-radius: 10px;
  padding: 18px 14px;
  text-align: center;
}
/* Core modules — filled chips */
.module--core {
  color: #56544F;
  background: #ECEBE4;
  border: 1.5px solid #DDDCD4;
}
/* Outline modules */
.module--line {
  color: #2E2E2C;
  border: 1.5px solid #D2D0CA;
}

/* Module toggle list */
.modules {
  margin-top: clamp(48px, 6vw, 80px);
  border: 1.5px solid #D2D0CA;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}
.modules__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1.5px solid #E8E8E3;
}
.modules__row:last-child { border-bottom: none; }
.mod {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(18px, 2.4vw, 28px) clamp(20px, 2.6vw, 32px);
  border-right: 1.5px solid #E8E8E3;
}
.mod:last-child { border-right: none; }
.mod__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mod__name {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 700;
  color: #141414;
  line-height: 1.2;
}
.mod__subs {
  font-family: var(--font-body);
  font-size: clamp(12px, 1vw, 14px);
  color: #A8A6A0;
  line-height: 1.3;
}
/* Toggle pill */
.mod__toggle {
  flex: none;
  display: inline-block;
  width: 44px;
  height: 26px;
  border-radius: 999px;
  position: relative;
  transition: background .2s;
}
.mod__toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #fff;
  transition: left .2s;
}
.mod--core .mod__toggle {
  background: #D2D0CA;
}
.mod--core .mod__toggle::after { left: 21px; }
.mod--on .mod__toggle {
  background: #141414;
}
.mod--on .mod__toggle::after { left: 21px; }

@media (max-width: 680px) {
  .modules__row { grid-template-columns: 1fr; }
  .mod { border-right: none; border-bottom: 1.5px solid #E8E8E3; }
  .mod:last-child { border-bottom: none; }
}

/* ============================================================
   INTELLIGENCE  (dark)
   ============================================================ */
.intel {
  background: var(--night);
  color: var(--paper);
  padding: clamp(80px, 12vw, 168px) clamp(24px, 6vw, 120px);
}
.intel__eyebrow { color: #FAFAF8; opacity: 0.55; }
.intel__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 86px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 28px 0 0 0;
  max-width: 18ch;
  text-wrap: balance;
}
.intel__lede {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.9vw, 26px);
  line-height: 1.5;
  color: #9A988F;
  margin: 28px 0 0 0;
  max-width: 54ch;
}
.intel__cards {
  margin-top: clamp(48px, 7vw, 96px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 2.4vw, 32px);
}
.intel-card {
  border: 1px solid #2E2E2C;
  border-radius: 20px;
  padding: clamp(28px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.intel-card__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6E6C68;
}
.intel-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
  color: #FAFAF8;
}
.intel-card__body {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  color: #9A988F;
  margin: 0;
}

/* ============================================================
   DIFFERENTIATOR  (dark)
   ============================================================ */
.diff {
  background: var(--night);
  color: var(--paper);
  border-top: 1px solid #242422;
  padding: clamp(80px, 12vw, 168px) clamp(24px, 6vw, 120px);
}
.diff__eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FAFAF8;
  opacity: 0.55;
}
.diff__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 5.8vw, 82px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 28px 0 0 0;
  max-width: 20ch;
  text-wrap: balance;
}
.diff__title .udraw { padding-bottom: 4px; }
.diff__lede {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.9vw, 26px);
  line-height: 1.5;
  color: #9A988F;
  margin: 28px 0 0 0;
  max-width: 60ch;
}
.diff__rows {
  margin-top: clamp(48px, 7vw, 96px);
  display: flex;
  flex-direction: column;
}
.qrow {
  display: flex;
  align-items: baseline;
  gap: clamp(20px, 4vw, 48px);
  border-top: 1px solid #2E2E2C;
  padding: clamp(20px, 2.4vw, 32px) 0;
}
.qrow--last { border-bottom: 1px solid #2E2E2C; }
.qrow__code {
  font-family: var(--font-mono);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #6E6C68;
  width: clamp(56px, 7vw, 100px);
  flex: none;
}
.qrow__name {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 400;
  color: #9A988F;
  flex: 1;
  letter-spacing: -0.01em;
}
.qrow__note {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.6vw, 24px);
  color: #6E6C68;
  text-align: right;
}
/* CQ row — the differentiator, emphasised */
.qrow--cq .qrow__code { color: #FAFAF8; }
.qrow--cq .qrow__name { color: #FAFAF8; font-weight: 600; }
.qrow--cq .qrow__note { color: #FAFAF8; font-weight: 600; }

/* ============================================================
   BUILT BY CQ  (paper)
   ============================================================ */
.cq {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(80px, 12vw, 168px) clamp(24px, 6vw, 120px);
}
.cq__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.cq__eyebrow { color: #141414; }
.cq__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 5.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 28px 0 0 0;
  max-width: 16ch;
  text-wrap: balance;
}
.cq__body {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.9vw, 26px);
  line-height: 1.5;
  color: #6B6B66;
  margin: 26px 0 0 0;
  max-width: 54ch;
}
.cq__inline-link {
  font-weight: 600;
  color: #141414;
  text-decoration: none;
  border-bottom: 1px solid #C7C3BA;
}
.cq__card-wrap { display: flex; justify-content: center; }
.cq__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  border: 1px solid #E2E2DE;
  border-radius: 24px;
  padding: clamp(40px, 5vw, 72px);
  background: #fff;
  width: 100%;
  max-width: 420px;
  text-decoration: none;
}
.cq__monogram {
  height: clamp(64px, 9vw, 110px);
  width: auto;
  object-fit: contain;
}
.cq__card-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #86847E;
  text-align: center;
}

/* ============================================================
   CLOSING  (near-black)
   ============================================================ */
.closing {
  background: var(--black);
  color: var(--paper);
  padding: clamp(96px, 13vw, 180px) clamp(24px, 6vw, 120px) 0;
}
.closing__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.closing__eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8C8A83;
}
.closing__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6.4vw, 92px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 28px 0 0 0;
  text-wrap: balance;
}
.closing__body {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.9vw, 25px);
  line-height: 1.5;
  color: #9A988F;
  margin: 30px 0 0 0;
  max-width: 44ch;
  text-wrap: balance;
}
.closing__cta {
  margin-top: 46px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #141414;
  background: #FAFAF8;
  border-radius: 999px;
  padding: 18px 36px;
}
.footer {
  width: 100%;
  margin-top: clamp(80px, 11vw, 140px);
  border-top: 1px solid #2E2E2C;
  padding: 36px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__logo { height: 22px; width: auto; object-fit: contain; }
.footer__links {
  display: flex;
  gap: clamp(20px, 4vw, 48px);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6E6C68;
}
.footer__links a { color: #6E6C68; text-decoration: none; }

/* ============================================================
   EARLY-ACCESS MODAL
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(11, 11, 12, 0.62);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  animation: reveal .28s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal[hidden] { display: none; }
.modal__panel {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  background: var(--paper);
  border-radius: 22px;
  padding: clamp(30px, 4vw, 48px);
  animation: reveal .42s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal__close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid #E2E2DE;
  border-radius: 999px;
  cursor: pointer;
  color: #86847E;
}
.modal__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #86847E;
}
.modal__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 16px 0 0 0;
  color: #141414;
}
.modal__intro {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: #6B6B66;
  margin: 12px 0 0 0;
}
.form { margin-top: 30px; display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #86847E;
}
.field__label .opt { color: #C7C3BA; }
.field__row { display: flex; gap: 20px; flex-wrap: wrap; }
.field--half { flex: 1; min-width: 160px; }
.field input,
.field select {
  border: none;
  border-bottom: 1px solid #D2D0CA;
  background: transparent;
  font-family: var(--font-body);
  font-size: 17px;
  color: #141414;
  padding: 8px 0;
  outline: none;
}
.field input:focus,
.field select:focus { border-bottom-color: #141414; }
.select-wrap { position: relative; }
.select-wrap select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  padding: 8px 26px 8px 0;
  cursor: pointer;
}
.select-wrap__chevron {
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.form__submit {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FAFAF8;
  background: #141414;
  border-radius: 999px;
  padding: 16px;
}
.form__fine {
  font-family: var(--font-body);
  font-size: 13px;
  color: #A8A6A0;
  text-align: center;
}
/* Honeypot — visually hidden, off-screen, kept focus/AT-invisible. */
.hp {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.form__error {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.4;
  color: #B4231F;
  text-align: center;
}
.form__error[hidden] { display: none; }
.form__submit[disabled] { opacity: .6; cursor: progress; }

/* Success state */
.success {
  padding: 18px 0 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: reveal .4s cubic-bezier(0.16, 1, 0.3, 1);
}
.success[hidden] { display: none; }
.success__badge {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: #141414;
  display: flex;
  align-items: center;
  justify-content: center;
}
.success__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 26px 0 0 0;
  color: #141414;
}
.success__body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  color: #6B6B66;
  margin: 14px 0 0 0;
  max-width: 34ch;
}
.success__body strong { font-weight: 600; color: #141414; }
.success__close {
  margin-top: 30px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #141414;
  background: transparent;
  border: 1px solid #D2D0CA;
  border-radius: 999px;
  padding: 14px 28px;
}
