/* ============ bynoon — design tokens ============ */
:root {
  --paper: #F5F2EA;
  --ink: #0A0A0A;
  --sun: #FF4D00;
  --live: #00B84A;
  --ink-soft: rgba(10, 10, 10, 0.62);
  --paper-soft: rgba(245, 242, 234, 0.66);
  --line-ink: rgba(10, 10, 10, 0.14);
  --line-paper: rgba(245, 242, 234, 0.18);
  --display: "Anton", "Arial Narrow", sans-serif;
  --body: "Space Grotesk", "Helvetica Neue", sans-serif;
  --mono: "Space Mono", monospace;
  --pad: clamp(20px, 4vw, 64px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.mono { font-family: var(--mono); font-size: 0.78em; letter-spacing: 0.02em; text-transform: lowercase; }

.container { width: min(1240px, 100% - 2 * var(--pad)); margin-inline: auto; }
.container--narrow { width: min(860px, 100% - 2 * var(--pad)); }

::selection { background: var(--sun); color: var(--paper); }

/* ============ shared section styles ============ */
section { padding: clamp(90px, 12vh, 160px) 0; position: relative; }
.section--ink { background: var(--ink); color: var(--paper); }
.section--sun { background: var(--sun); color: var(--ink); }

.section-label {
  color: var(--sun);
  margin-bottom: 1.4rem;
  font-weight: 700;
}
.section--sun .section-label { color: var(--ink); }

.section-title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: lowercase;
  font-size: clamp(56px, 9vw, 150px);
  line-height: 0.92;
  letter-spacing: 0.005em;
  margin-bottom: 1.8rem;
}
.section-title--paper { color: var(--paper); }
.section-title--ink { color: var(--ink); }

.section-sub {
  max-width: 620px;
  font-size: clamp(17px, 1.35vw, 22px);
  color: var(--ink-soft);
  margin-bottom: 3rem;
}
.section-sub--paper { color: var(--paper-soft); }
.section-sub--ink { color: rgba(10, 10, 10, 0.78); }

.sun-text { color: var(--sun); }

.title-disc {
  display: inline-block;
  width: 0.62em; height: 0.62em;
  background: var(--sun);
  border-radius: 50%;
  margin: 0 0.03em;
  transform: translateY(0.02em);
}
.title-disc--sm { width: 0.55em; height: 0.55em; }

/* ============ buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--mono);
  font-size: 15px; font-weight: 700;
  text-transform: lowercase;
  padding: 1em 1.7em;
  border: 2px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
  background: transparent;
  color: var(--ink);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--sun { background: var(--sun); border-color: var(--sun); color: var(--ink); }
.btn--sun:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: var(--sun); border-color: var(--sun); color: var(--ink); }
.btn--ghost { border-color: var(--line-ink); color: var(--ink-soft); }
.btn--ghost:hover { border-color: var(--sun); color: var(--sun); }
.btn--xl { font-size: 18px; padding: 1.2em 2.4em; }
.btn__play { font-size: 0.75em; }

/* ============ progress bar ============ */
.progress-bar {
  position: fixed; top: 0; left: 0; z-index: 200;
  width: 100%; height: 4px;
  background: var(--sun);
  transform: scaleX(0);
  transform-origin: left center;
}

/* ============ nav ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 18px var(--pad);
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}
.nav.is-scrolled {
  background: rgba(245, 242, 234, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line-ink);
  padding-block: 12px;
}
.nav__logo { display: flex; align-items: baseline; gap: 10px; }
.logo-word {
  font-family: var(--display);
  font-size: 30px;
  text-transform: lowercase;
  letter-spacing: 0.01em;
  display: inline-flex; align-items: baseline;
}
.logo-word--sm { font-size: 24px; }
.logo-disc {
  display: inline-block;
  width: 0.52em; height: 0.52em;
  background: var(--sun);
  border-radius: 50%;
  margin: 0 0.05em;
  align-self: center;
  transform: translateY(0.06em);
}
.logo-badge { color: var(--ink-soft); font-size: 11px; }
.nav__links { display: flex; gap: 28px; font-weight: 700; }
.nav__links a { position: relative; padding-bottom: 2px; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--sun);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.2s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta { padding: 0.8em 1.5em; }
@media (max-width: 900px) { .nav__links { display: none; } }

/* ============ hero ============ */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 120px 0 0;
  overflow: hidden;
}
.hero__inner { width: min(1400px, 100% - 2 * var(--pad)); margin-inline: auto; }
.hero__kicker { color: var(--sun); font-weight: 700; margin-bottom: 2vh; }
.hero__wordmark {
  position: relative;
  font-family: var(--display);
  font-weight: 400;
  text-transform: lowercase;
  font-size: clamp(88px, 16.5vw, 290px);
  line-height: 1;
  letter-spacing: 0.005em;
  user-select: none;
  padding-top: 0.62em; /* room for the vertical stretch */
}
.hero__letters {
  position: relative;
  display: inline-block;
  transform: scaleY(1.62);
  transform-origin: bottom left;
}
.hero__oo { position: relative; display: inline-block; }
.hero__o2 { position: relative; z-index: 2; }
.hero__sun {
  position: absolute; z-index: -1;
  width: 1.14em; height: 1.14em;
  background: var(--sun);
  border-radius: 50%;
  left: 50%; top: 46%;
  /* counter the wordmark's vertical stretch so the sun stays a circle */
  transform: translate(-50%, -50%) scaleY(0.617);
}
.hero__inner { position: relative; z-index: 2; }

/* interactive halftone dot fields (canvas) */
.dot-field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.hero__row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
  margin: 5vh 0 7vh;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* rotating pitch lines */
.hero__pitch { max-width: 640px; display: grid; gap: 0.9rem; }
.pitch-line {
  font-size: clamp(26px, 2.8vw, 44px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.pitch-line--sub {
  font-size: clamp(14px, 1.15vw, 18px);
  font-weight: 700;
  color: var(--ink-soft);
}
.rotator {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.rotator__word {
  display: inline-block;
  color: var(--sun);
  white-space: nowrap;
}
.rotator--sub .rotator__word { color: var(--ink); }

/* marquee */
.marquee {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
  padding: 14px 0;
  background: var(--paper);
}
.marquee__track {
  display: flex; width: max-content;
  animation: marquee 30s linear infinite;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 15px;
  text-transform: lowercase;
  white-space: nowrap;
}
.marquee__half { display: inline-block; white-space: nowrap; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ============ vsl ============ */
.vsl__frame {
  position: relative;
  display: block;
  width: 100%;
  border: none;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: var(--ink);
  box-shadow: 0 0 0 2px var(--line-paper);
}
.vsl__frame img { width: 100%; transition: transform 0.5s ease, opacity 0.3s ease; }
.vsl__frame:hover img { transform: scale(1.02); opacity: 0.92; }
.vsl__play {
  position: absolute; inset: 0;
  display: grid; place-items: center;
}
.vsl__play span {
  display: grid; place-items: center;
  width: clamp(84px, 9vw, 128px); height: clamp(84px, 9vw, 128px);
  background: var(--sun);
  color: var(--ink);
  font-size: clamp(26px, 2.6vw, 38px);
  border-radius: 50%;
  padding-left: 6px;
  transition: transform 0.25s ease;
}
.vsl__frame:hover .vsl__play span { transform: scale(1.1); }
.vsl__hint {
  position: absolute; left: 20px; bottom: 16px;
  color: var(--paper);
  background: rgba(10, 10, 10, 0.7);
  padding: 8px 14px;
  border-radius: 999px;
}

/* ============ speed / race ============ */
.speed__race {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.5vw, 32px);
}
@media (max-width: 820px) { .speed__race { grid-template-columns: 1fr; } }
.race-card {
  border: 2px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
  background: #fffdf7;
}
.race-card--us { border-color: var(--sun); box-shadow: 0 12px 40px rgba(255, 77, 0, 0.12); }
.race-card__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px;
  border-bottom: 2px solid var(--line-ink);
  font-weight: 700;
}
.race-card--us .race-card__head { border-color: rgba(255, 77, 0, 0.3); }
.race-timer { font-size: 20px; font-weight: 700; }
.race-timer--sun { color: var(--sun); }
.race-card__body { padding: 24px 20px 28px; display: grid; gap: 14px; }
.race-msg {
  padding: 12px 16px;
  border-radius: 14px;
  max-width: 90%;
  font-size: 0.95em;
}
.race-msg--in { background: rgba(10, 10, 10, 0.06); border-bottom-left-radius: 4px; }
.race-msg--out {
  background: var(--ink); color: var(--paper);
  justify-self: end;
  border-bottom-right-radius: 4px;
  min-height: 2.6em;
}
.race-status { color: var(--ink-soft); }
.race-status--live { color: var(--live); font-weight: 700; }
.live-dot {
  display: inline-block;
  width: 9px; height: 9px;
  background: var(--live);
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse-dot 1.6s ease-in-out infinite;
}
.live-dot--ink { background: var(--ink); }
@keyframes pulse-dot { 50% { opacity: 0.35; } }

/* ============ math ============ */
.math__bars { display: grid; gap: 40px; margin: 4rem 0 6rem; }
.math-bar__label {
  display: flex; justify-content: space-between;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--paper);
}
.math-bar__track {
  height: clamp(44px, 6vw, 72px);
  border: 2px solid var(--line-paper);
  border-radius: 12px;
  overflow: hidden;
}
.math-bar__fill { height: 100%; width: 0; border-radius: 8px 0 0 8px; }
.math-bar__fill--paper { background: var(--paper); }
.math-bar__fill--sun { background: var(--sun); }
.math-bar__note { margin-top: 8px; color: var(--paper-soft); }

/* the fleet — pinned scroll build-out */
.fleet { position: relative; }
.fleet__inner {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 8vh 0;
}
.fleet__count {
  display: flex; align-items: baseline; gap: 20px; flex-wrap: wrap;
  margin-bottom: 3rem;
}
.fleet__num {
  font-family: var(--display);
  font-size: clamp(80px, 11vw, 190px);
  line-height: 0.9;
  color: var(--sun);
  font-variant-numeric: tabular-nums;
  min-width: 4.2ch;
}
.fleet__plus {
  color: var(--sun);
  font-weight: 700;
  font-size: clamp(16px, 1.5vw, 24px);
  opacity: 0;
}
.fleet__unit { color: var(--paper-soft); font-weight: 700; }
.fleet__list { border-top: 1px solid var(--line-paper); }
.fleet-row {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: baseline;
  gap: 16px;
  padding: clamp(10px, 1.4vh, 18px) 0;
  border-bottom: 1px solid var(--line-paper);
}
.fleet-row__id { color: var(--sun); font-weight: 700; }
.fleet-row__name {
  font-family: var(--display);
  font-weight: 400;
  text-transform: lowercase;
  font-size: clamp(20px, 2.2vw, 34px);
  color: var(--paper);
  line-height: 1;
}
.fleet-row__task { color: var(--paper-soft); text-align: right; }
.fleet-row__bar {
  position: absolute;
  left: 0; bottom: -1px;
  width: 100%; height: 2px;
  background: var(--sun);
  transform: scaleX(0);
  transform-origin: left center;
}
.fleet__punch {
  margin-top: 3rem;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 700;
  color: var(--paper);
  max-width: 820px;
  line-height: 1.35;
}
@media (max-width: 900px) {
  .fleet-row { grid-template-columns: 34px 1fr; }
  .fleet-row__task { grid-column: 2; text-align: left; }
}

.math__noon {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  border-top: 1px solid var(--line-paper);
  padding-top: 4rem;
}
@media (max-width: 720px) { .math__noon { grid-template-columns: 1fr; } }
.noon-clock svg { width: 100%; height: auto; }
.noon-clock__face { fill: none; stroke: var(--line-paper); stroke-width: 3; }
.noon-clock__arc { fill: none; stroke: var(--sun); stroke-width: 10; stroke-linecap: round; }
.noon-clock__hand { stroke: var(--paper); stroke-width: 6; stroke-linecap: round; transform-origin: 100px 100px; }
.noon-clock__pin { fill: var(--sun); }
.math__noon-title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: lowercase;
  font-size: clamp(30px, 3.4vw, 52px);
  color: var(--paper);
  margin-bottom: 0.6rem;
}
.math__noon-copy p { color: var(--paper-soft); max-width: 560px; font-size: 1.05em; }
.math__noon-copy em { color: var(--sun); font-style: normal; font-weight: 700; }

/* ============ demos ============ */
.demo { margin-top: clamp(60px, 9vh, 120px); }
.demo__head { max-width: 720px; margin-bottom: 2.4rem; }
.demo__title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: lowercase;
  font-size: clamp(30px, 3.6vw, 54px);
  line-height: 1;
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.demo__num {
  font-size: 13px;
  background: var(--ink); color: var(--paper);
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.08em;
}
.demo__desc { color: var(--ink-soft); margin-bottom: 1.2rem; }
.demo__stage {
  display: grid;
  grid-template-columns: minmax(230px, 340px) 1fr;
  gap: clamp(20px, 3vw, 44px);
  align-items: stretch;
}
.demo__stage--single { grid-template-columns: 1fr; }
@media (max-width: 900px) { .demo__stage { grid-template-columns: 1fr; } }

/* flow column */
.demo__flow { display: flex; flex-direction: column; }
.fnode {
  display: flex; align-items: center; gap: 14px;
  border: 2px solid var(--line-ink);
  border-radius: 14px;
  padding: 14px 18px;
  background: #fffdf7;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.fnode.is-active {
  border-color: var(--sun);
  box-shadow: 0 8px 26px rgba(255, 77, 0, 0.16);
  transform: translateX(4px);
}
.fnode.is-done { border-color: var(--ink); }
.fnode__icon {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(10, 10, 10, 0.05);
  flex-shrink: 0;
  color: var(--ink);
}
.fnode__icon svg { width: 19px; height: 19px; }
.fnode.is-active .fnode__icon { background: var(--sun); color: var(--paper); }
.fnode__label { font-weight: 700; }
.fline {
  position: relative;
  width: 2px; height: 26px;
  background: var(--line-ink);
  margin-left: 36px;
}
.fpulse {
  position: absolute; left: 50%; top: 0;
  width: 10px; height: 10px;
  background: var(--sun);
  border-radius: 50%;
  transform: translate(-50%, -4px) scale(0);
}

/* device screens shared */
.demo__screen {
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: #fffdf7;
  overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 380px;
}
.phone-screen__head, .inbox-screen__head, .db-screen__head, .sms-screen__head {
  padding: 13px 18px;
  border-bottom: 2px solid var(--line-ink);
  font-weight: 700;
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  background: var(--paper);
}
.sms-screen__foot {
  padding: 12px 18px;
  border-top: 2px solid var(--line-ink);
  background: var(--paper);
  font-weight: 700;
}
.sms-screen__foot b, .inbox-stats b { color: var(--sun); font-size: 1.2em; }

/* phone chat */
.phone-screen__chat, .sms-screen__chat {
  flex: 1;
  padding: 20px;
  display: flex; flex-direction: column; gap: 12px;
  overflow: hidden;
  justify-content: flex-end;
}
.chat-bubble {
  padding: 11px 16px;
  border-radius: 14px;
  max-width: 82%;
  font-size: 0.92em;
  opacity: 0;
  transform: translateY(12px);
}
.chat-bubble--caller { background: rgba(10, 10, 10, 0.06); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-bubble--agent { background: var(--ink); color: var(--paper); align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-bubble--system {
  align-self: center;
  background: transparent;
  border: 1.5px dashed var(--sun);
  color: var(--sun);
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 700;
  border-radius: 999px;
  padding: 7px 16px;
}

/* inbox */
.inbox-list { display: flex; flex-direction: column; }
.inbox-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-ink);
  background: #fffdf7;
  font-size: 0.92em;
}
.inbox-row__from { font-weight: 700; width: 150px; flex-shrink: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.inbox-row__subj { color: var(--ink-soft); flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.inbox-row__tag {
  font-family: var(--mono);
  font-size: 11px; font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.7);
  white-space: nowrap;
}
.tag--spam { background: rgba(10, 10, 10, 0.08); color: var(--ink-soft); }
.tag--replied { background: var(--live); color: #fff; }
.tag--filed { background: rgba(10, 10, 10, 0.85); color: var(--paper); }
.tag--you { background: var(--sun); color: var(--paper); }

/* database */
.db-list { display: flex; flex-direction: column; }
.db-row {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line-ink);
  font-family: var(--mono);
  font-size: 12.5px;
  transition: background 0.25s ease;
}
.db-row.is-active { background: rgba(255, 77, 0, 0.08); }
.db-row__status { font-weight: 700; color: var(--ink-soft); }
.db-row.is-booked .db-row__status { color: var(--live); }

/* ============ services ============ */
.services__note {
  color: var(--sun);
  font-weight: 700;
  margin: -1.4rem 0 2.4rem;
}
.services__list { border-top: 1px solid var(--line-paper); margin-top: 3rem; }
.service-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 24px;
  padding: clamp(18px, 2.4vw, 30px) 0;
  border-bottom: 1px solid var(--line-paper);
  transition: padding-left 0.25s ease;
  cursor: default;
}
.service-row:hover { padding-left: 16px; }
.service-row__name {
  font-family: var(--display);
  font-weight: 400;
  text-transform: lowercase;
  font-size: clamp(26px, 3.6vw, 56px);
  line-height: 1;
  color: var(--paper);
  transition: color 0.2s ease;
}
.service-row:hover .service-row__name { color: var(--sun); }
.service-row__tag { color: var(--paper-soft); text-align: right; flex-shrink: 0; max-width: 40%; }
@media (max-width: 720px) {
  .service-row { flex-direction: column; gap: 6px; }
  .service-row__tag { text-align: left; max-width: none; }
}
.services__kicker {
  margin-top: 3.4rem;
  font-family: var(--display);
  font-weight: 400;
  text-transform: lowercase;
  font-size: clamp(28px, 4vw, 64px);
  color: var(--paper);
  line-height: 1.05;
}

/* ============ process ============ */
.process__steps { display: grid; gap: 0; border-top: 2px solid var(--ink); }
.pstep {
  display: grid;
  grid-template-columns: minmax(90px, 180px) 1fr;
  gap: clamp(16px, 3vw, 60px);
  padding: clamp(30px, 4.5vw, 56px) 0;
  border-bottom: 2px solid var(--ink);
}
@media (max-width: 640px) { .pstep { grid-template-columns: 1fr; gap: 10px; } }
.pstep__num {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.9;
  color: var(--sun);
}
.pstep__body h3 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: lowercase;
  font-size: clamp(26px, 3vw, 44px);
  margin-bottom: 0.7rem;
}
.pstep__body p { color: var(--ink-soft); max-width: 640px; }

/* ============ servers ============ */
.servers__status {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 16px 26px;
  font-weight: 700;
  background: rgba(245, 242, 234, 0.25);
}

/* dot sphere (halftone) */
.dot-sphere { line-height: 0; }
.dot-sphere svg { display: block; }

/* ============ faq ============ */
.faq__list { border-top: 1px solid var(--line-paper); margin-top: 2.5rem; }
.faq-item { border-bottom: 1px solid var(--line-paper); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: clamp(20px, 2.6vw, 30px) 0;
  font-family: var(--body);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 24px);
  color: var(--paper);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--mono);
  font-size: 1.3em;
  color: var(--sun);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--paper-soft); padding: 0 0 26px; max-width: 700px; }

/* ============ cta ============ */
.cta {
  background: var(--sun);
  color: var(--ink);
  overflow: hidden;
  text-align: center;
  padding: clamp(110px, 16vh, 200px) 0;
}
.cta__inner { position: relative; z-index: 2; }
.cta__kicker { font-weight: 700; margin-bottom: 1.6rem; opacity: 0.75; }
.cta__title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: lowercase;
  font-size: clamp(58px, 10vw, 170px);
  line-height: 0.92;
  margin-bottom: 1.6rem;
}
.cta__disc {
  display: inline-block;
  width: 0.62em; height: 0.62em;
  background: var(--paper);
  border-radius: 50%;
  margin: 0 0.03em;
}
.cta__sub { max-width: 560px; margin: 0 auto 2.4rem; font-size: 1.1em; }
.cta__mail { margin-top: 1.4rem; font-weight: 700; }

/* ============ footer ============ */
.footer { background: var(--ink); color: var(--paper); padding: 34px 0; }
.footer__inner {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer .mono { color: var(--paper-soft); }

/* ============ modal ============ */
.modal {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(10, 10, 10, 0.94);
  display: grid; place-items: center;
  padding: var(--pad);
}
.modal[hidden] { display: none; }
.modal__close {
  position: absolute; top: 24px; right: 28px;
  background: none; border: none;
  color: var(--paper);
  font-size: 15px; font-weight: 700;
  cursor: pointer;
}
.modal__frame { width: min(1080px, 100%); aspect-ratio: 16 / 9; }
.modal__frame iframe, .modal__frame video { width: 100%; height: 100%; border: 0; border-radius: 14px; }
.modal__placeholder {
  width: 100%; height: 100%;
  border: 2px dashed rgba(245, 242, 234, 0.3);
  border-radius: 14px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  color: var(--paper-soft);
}

/* ============ reveal defaults (JS animates) ============ */
.reveal { opacity: 0; transform: translateY(30px); }
.no-motion .reveal { opacity: 1; transform: none; }
