/* ==========================================================================
   FiDonce — editorial brand system
   ========================================================================== */

/* Reset --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, picture, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; background: transparent; border: none; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* Tokens -------------------------------------------------------------------- */
:root {
  --black: #000;
  --white: #fff;
  --orange: #f7931d;
  --ink-60: rgba(0,0,0,.6);
  --ink-30: rgba(0,0,0,.3);
  --ink-12: rgba(0,0,0,.12);
  --paper: #f6f5f1;

  --f-display: "futura-pt", "Futura", "Helvetica Neue", Arial, sans-serif;
  --f-body: "futura-pt", "Futura", "Helvetica Neue", Arial, sans-serif;

  /* fluid type — clamp(min, preferred, max) */
  --t-display: clamp(3.5rem, 11vw, 9rem);
  --t-h1: clamp(2.5rem, 6vw, 4.5rem);
  --t-h2: clamp(1.75rem, 3.4vw, 2.75rem);
  --t-h3: clamp(1.125rem, 1.6vw, 1.375rem);
  --t-body: 1rem;
  --t-lg: 1.125rem;
  --t-eyebrow: 0.75rem;

  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-6: 48px;
  --s-8: 64px;
  --s-12: 96px;
  --s-16: 128px;
  --s-20: 160px;

  --gutter: clamp(20px, 4vw, 56px);
  --maxw: 1400px;
}

/* Base ---------------------------------------------------------------------- */
html, body {
  background: var(--white);
  color: var(--black);
  font-family: var(--f-body);
  font-weight: 400;
  font-size: var(--t-body);
  line-height: 1.5;
}

::selection { background: var(--orange); color: var(--black); }

.display, h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.92;
  text-transform: uppercase;
}

.display {
  font-size: var(--t-display);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.035em;
}

h1 { font-size: var(--t-h1); }
h2 { font-size: var(--t-h2); }
h3 { font-size: var(--t-h3); letter-spacing: -0.01em; }

p { line-height: 1.55; }
.lede { font-size: var(--t-lg); line-height: 1.45; max-width: 56ch; }

/* Eyebrow / labels ---------------------------------------------------------- */
.eyebrow {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: var(--t-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
}
.eyebrow.no-rule::before { display: none; }

/* Layout -------------------------------------------------------------------- */
.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(var(--s-12), 12vw, var(--s-20));
}
.section--tight { padding-block: clamp(var(--s-8), 8vw, var(--s-12)); }

.section--dark { background: var(--black); color: var(--white); }
.section--paper { background: var(--paper); }

.rule {
  height: 1px;
  background: currentColor;
  opacity: .15;
  border: 0;
}
.rule--orange { background: var(--orange); opacity: 1; height: 2px; }

.accent { color: var(--orange); }

/* Nav ----------------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--ink-12);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
  padding-block: var(--s-3);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.nav__brand img { height: 28px; width: auto; }
.nav__links {
  display: flex;
  gap: var(--s-4);
  align-items: center;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.nav__links a {
  position: relative;
  padding-block: var(--s-1);
  transition: color .15s;
}
.nav__links a:hover { color: var(--orange); }
.nav__links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  inset: auto 0 -2px 0;
  height: 2px;
  background: var(--black);
}
.nav__cta {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 14px 22px;
  background: var(--black);
  color: var(--white);
  transition: background .15s, color .15s;
}
.nav__cta:hover { background: var(--orange); color: var(--black); }

@media (max-width: 760px) {
  .nav__inner { flex-wrap: wrap; row-gap: var(--s-2); }
  .nav__links { gap: var(--s-3); flex-wrap: wrap; font-size: 0.75rem; }
  .nav__cta { padding: 12px 16px; font-size: 0.75rem; }
}

/* Marquee / live band ------------------------------------------------------- */
.live-band {
  background: var(--black);
  color: var(--white);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-block: 12px;
  overflow: hidden;
  white-space: nowrap;
}
.live-band__inner {
  display: inline-flex;
  gap: var(--s-6);
  padding-inline: var(--gutter);
  animation: marquee 40s linear infinite;
}
.live-band__dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  margin-right: var(--s-2);
  vertical-align: middle;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}

/* Buttons ------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 18px 28px;
  border: 2px solid currentColor;
  transition: background .15s, color .15s, border-color .15s, transform .15s;
}
.btn--primary {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
}
.btn--primary:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.btn--solid {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn--solid:hover { background: var(--orange); color: var(--black); border-color: var(--orange); }
.btn--ghost {
  background: transparent;
  color: currentColor;
}
.btn--ghost:hover { background: currentColor; color: var(--white); }
.section--dark .btn--ghost:hover { color: var(--black); }

.btn--lg { padding: 22px 36px; font-size: 0.9375rem; }
.btn .arrow { display: inline-block; transition: transform .2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* Inline link CTA */
.inline-cta {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-bottom: 2px solid currentColor;
  padding-bottom: 4px;
  transition: color .15s, border-color .15s;
}
.inline-cta:hover { color: var(--orange); border-color: var(--orange); }

/* Hero ---------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 86vh;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.78;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,.45) 0%,
    rgba(0,0,0,.15) 35%,
    rgba(0,0,0,.55) 78%,
    rgba(0,0,0,.92) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: var(--s-8) var(--gutter) var(--s-12);
  display: grid;
  gap: var(--s-6);
}
.hero__eyebrow { color: var(--white); }
.hero__headline {
  max-width: 16ch;
}
.hero__meta {
  display: flex;
  gap: var(--s-6) var(--s-8);
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: var(--s-4);
}
.hero__lede { max-width: 44ch; opacity: .82; }
.hero__ctas { display: flex; gap: var(--s-2); flex-wrap: wrap; }

/* Stat band ----------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-12);
  border-bottom: 1px solid var(--ink-12);
}
.stat {
  padding: var(--s-6) var(--s-3);
  border-right: 1px solid var(--ink-12);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.stat__num .accent { color: var(--orange); }
.stat__label {
  margin-top: var(--s-2);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-60);
}
@media (max-width: 760px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--ink-12); }
}

/* 4-over-3 stats band: 4 cells on row 1, 3 cells (wider) on row 2 */
.stats--four-three { grid-template-columns: repeat(12, 1fr); }
.stats--four-three .stat { grid-column: span 3; }
.stats--four-three .stat:nth-child(n+5) { grid-column: span 4; }
.stats--four-three .stat:nth-child(-n+4) { border-bottom: 1px solid var(--ink-12); }
.stats--four-three .stat:nth-child(4) { border-right: none; }
.stats--four-three .stat-mvp { color: var(--orange); font-weight: 600; }
@media (max-width: 760px) {
  .stats--four-three { grid-template-columns: 1fr; }
  .stats--four-three .stat,
  .stats--four-three .stat:nth-child(n+5) { grid-column: span 1; }
  .stats--four-three .stat {
    border-right: none;
    border-bottom: 1px solid var(--ink-12);
  }
  .stats--four-three .stat:last-child { border-bottom: none; }
}

/* Photo split / editorial 60-40 -------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-8);
  align-items: center;
}
.split--reverse { grid-template-columns: 1fr 1.1fr; }
.split--reverse .split__media { order: 2; }
.split__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink-12);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__caption {
  position: absolute;
  left: var(--s-3);
  bottom: var(--s-3);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--white);
  background: rgba(0,0,0,.65);
  padding: 8px 12px;
}
.split__body { display: grid; gap: var(--s-3); }
.split__body .pull {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  line-height: 1.35;
  border-left: 3px solid var(--orange);
  padding-left: var(--s-3);
}
@media (max-width: 880px) {
  .split, .split--reverse { grid-template-columns: 1fr; gap: var(--s-4); }
  .split--reverse .split__media { order: 0; }
}

/* Section heading band ------------------------------------------------------ */
.section-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-6);
  align-items: end;
  margin-bottom: var(--s-8);
}
.section-heading h2 { max-width: 18ch; }
.section-heading .lede { justify-self: end; max-width: 38ch; color: var(--ink-60); }
@media (max-width: 760px) {
  .section-heading { grid-template-columns: 1fr; gap: var(--s-3); }
  .section-heading .lede { justify-self: start; }
}

/* Alumni rail --------------------------------------------------------------- */
.alumni {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-3);
}
.alumni__card { display: grid; gap: var(--s-2); }
.alumni__photo {
  aspect-ratio: 3 / 4;
  background: var(--ink-12);
  position: relative;
  perspective: 1000px;
  cursor: pointer;
}
.alumni__photo:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.alumni__flip {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}
.alumni__photo:hover .alumni__flip,
.alumni__photo:focus-within .alumni__flip,
.alumni__photo:focus .alumni__flip { transform: rotateY(180deg); }
.alumni__face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.alumni__face--front img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.6); }
.alumni__photo:hover .alumni__face--front img { filter: grayscale(0); }
.alumni__face--back {
  transform: rotateY(180deg);
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s-1);
  padding: var(--s-3);
  text-align: center;
}
.alumni__bio-line {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,.65);
}
.alumni__bio-feat {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  color: var(--orange);
}
@media (prefers-reduced-motion: reduce) {
  .alumni__flip { transition: none; }
}
.alumni__photo--placeholder {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 700;
  font-size: 2rem; color: var(--ink-30); background: var(--paper);
}
.alumni__name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.alumni__detail {
  font-size: 0.75rem;
  color: var(--ink-60);
  font-style: italic;
}
@media (max-width: 1100px) { .alumni { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .alumni { grid-template-columns: repeat(2, 1fr); } }

/* Touch devices: no hover, so drop the 3D flip and lay the card out as a
   clean vertical stack — image, name, bio. */
@media (hover: none) {
  .alumni__photo,
  .alumni__flip,
  .alumni__face { display: contents; }

  .alumni__photo { cursor: default; }

  .alumni__card { display: flex; flex-direction: column; gap: var(--s-1); }

  .alumni__face--front img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    filter: grayscale(0);
    order: 1;
  }
  .alumni__name { order: 2; margin-top: var(--s-1); }
  .alumni__detail { display: none; }       /* bio carries the headline on mobile */
  .alumni__bio-line {
    order: 3;
    color: var(--ink-60);
    letter-spacing: 0.04em;
  }
  .alumni__bio-feat { order: 4; font-size: 0.9375rem; }
}

/* Process / how-it-works ---------------------------------------------------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-12);
  border-bottom: 1px solid var(--ink-12);
}
.process__step {
  padding: var(--s-6) var(--s-3) var(--s-6) 0;
  border-right: 1px solid var(--ink-12);
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: var(--s-3);
}
.process__step:last-child { border-right: none; }
.process__step--dark .process__step,
.section--dark .process__step {
  border-color: rgba(255,255,255,.18);
}
.process__num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--orange);
}
.process__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.process__body {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--ink-60);
  max-width: 32ch;
}
.section--dark .process { border-color: rgba(255,255,255,.18); }
.section--dark .process__step { border-color: rgba(255,255,255,.18); }
.section--dark .process__body { color: rgba(255,255,255,.65); }

@media (max-width: 880px) {
  .process { grid-template-columns: repeat(2, 1fr); }
  .process__step:nth-child(2) { border-right: none; }
  .process__step:nth-child(1),
  .process__step:nth-child(2) { border-bottom: 1px solid var(--ink-12); }
  .section--dark .process__step:nth-child(1),
  .section--dark .process__step:nth-child(2) { border-bottom-color: rgba(255,255,255,.18); }
}
@media (max-width: 520px) {
  .process { grid-template-columns: 1fr; }
  .process__step { border-right: none; border-bottom: 1px solid var(--ink-12); }
  .process__step:last-child { border-bottom: none; }
}

/* Editorial slab (full-bleed numbered section) ----------------------------- */
.slab {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.slab__media { position: relative; min-height: 480px; }
.slab__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.slab__body {
  padding: var(--s-12) var(--gutter);
  display: grid;
  align-content: center;
  gap: var(--s-4);
}
.slab__num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.9;
  color: var(--orange);
}
.slab__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  max-width: 14ch;
}
.slab__detail-list {
  display: grid;
  gap: var(--s-2);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.slab__detail-list li {
  display: flex; gap: var(--s-3); align-items: baseline;
  padding-block: 10px;
  border-bottom: 1px solid currentColor;
  border-color: rgba(255,255,255,.18);
}
.slab--light .slab__detail-list li { border-color: var(--ink-12); }
.slab__detail-list li::before {
  content: "→";
  color: var(--orange);
  font-weight: 700;
}
.slab--dark { background: var(--black); color: var(--white); }
.slab--light { background: var(--white); color: var(--black); }
.slab--reverse .slab__media { order: 2; }

@media (max-width: 880px) {
  .slab, .slab--reverse { grid-template-columns: 1fr; min-height: 0; }
  .slab--reverse .slab__media { order: 0; }
  .slab__media { min-height: 60vh; }
  .slab__body { padding: var(--s-8) var(--gutter); }
}

/* Footer -------------------------------------------------------------------- */
.footer {
  background: var(--black);
  color: var(--white);
  padding-block: var(--s-12);
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: end;
  padding-bottom: var(--s-8);
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.footer__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.footer__bottom {
  margin-top: var(--s-6);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-4);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,.6);
}
.footer__contacts {
  display: grid;
  gap: var(--s-2);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer__contacts a:hover { color: var(--orange); }
@media (max-width: 760px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* Form ---------------------------------------------------------------------- */
.form-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.form-page__media {
  position: relative;
  background: var(--black);
  overflow: hidden;
}
.form-page__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.4) contrast(1.05);
}
.form-page__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.4), rgba(0,0,0,.7));
}
.form-page__media-overlay {
  position: absolute;
  z-index: 1;
  inset: auto var(--gutter) var(--s-8) var(--gutter);
  color: var(--white);
  display: grid;
  gap: var(--s-3);
}
.form-page__media-overlay h2 { max-width: 12ch; }
.form-page__body {
  padding: var(--s-8) var(--gutter);
  display: grid;
  align-content: start;
  gap: var(--s-6);
  max-width: 720px;
}
@media (max-width: 980px) {
  .form-page { grid-template-columns: 1fr; }
  .form-page__media { min-height: 50vh; }
}

.steps { display: grid; gap: var(--s-2); }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-3);
  align-items: center;
  padding: var(--s-3) 0;
  border-top: 1px solid var(--ink-12);
  opacity: 0.35;
}
.step:last-child { border-bottom: 1px solid var(--ink-12); }
.step--active { opacity: 1; }
.step--active .step__num { background: var(--orange); color: var(--black); }
.step__num {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--black);
  color: var(--white);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.875rem;
}
.step__label {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.step__sub {
  font-size: 0.6875rem;
  color: var(--ink-60);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 2px;
}

.field { display: grid; gap: var(--s-2); }
.field label,
.field__label {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-60);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border-bottom: 2px solid var(--black);
  padding: 12px 0;
  font-size: 1.0625rem;
  font-family: var(--f-body);
  background: transparent;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.field-row { display: grid; gap: var(--s-3); grid-template-columns: 1fr 1fr; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }

.choice-grid { display: grid; gap: var(--s-2); grid-template-columns: repeat(3, 1fr); }
.choice {
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  border: 2px solid var(--black);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.choice input { display: none; }
.choice:hover { background: var(--black); color: var(--white); }
.choice--active { background: var(--black); color: var(--white); }

.check-list { display: grid; gap: 10px; }
.check-row {
  display: flex; align-items: center; gap: var(--s-3);
  padding: 14px 16px;
  border: 1px solid var(--ink-12);
  cursor: pointer;
  transition: border-color .15s, background .15s;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.check-row:hover { border-color: var(--black); }
.check-row input { width: 18px; height: 18px; accent-color: var(--orange); }

/* Utility ------------------------------------------------------------------- */
.flex-between { display: flex; justify-content: space-between; align-items: center; gap: var(--s-3); flex-wrap: wrap; }
.cluster { display: flex; gap: var(--s-3); flex-wrap: wrap; align-items: center; }
.stack-3 > * + * { margin-top: var(--s-3); }
.stack-4 > * + * { margin-top: var(--s-4); }
.stack-6 > * + * { margin-top: var(--s-6); }
.text-muted { color: var(--ink-60); }
.text-center { text-align: center; }
.italic { font-style: italic; }
.no-wrap { white-space: nowrap; }

/* Get-started dialog + choice cards ---------------------------------------- */
.dialog {
  border: none;
  padding: 0;
  background: transparent;
  max-width: 980px;
  width: calc(100% - 32px);
  margin: auto;
}
.dialog::backdrop {
  background: rgba(0, 0, 0, 0.7);
}
.dialog__panel {
  background: var(--white);
  border: 1px solid var(--ink-12);
  padding: clamp(32px, 5vw, 56px);
  position: relative;
}
.dialog__close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: var(--f-display);
  font-size: 28px;
  line-height: 1;
  padding: 8px 12px;
  color: var(--ink-60);
  transition: color 0.15s;
}
.dialog__close:hover { color: var(--black); }
.dialog__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.dialog__sub {
  margin-top: 12px;
  color: var(--ink-60);
  font-size: 0.9375rem;
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.choice-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--ink-12);
  background: var(--paper);
  transition: transform 0.15s, border-color 0.15s, background 0.15s;
}
.choice-card:hover {
  border-color: var(--black);
  transform: translateY(-2px);
}
.choice-card--dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.choice-card--dark:hover {
  border-color: var(--orange);
}
.choice-card__eyebrow {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-60);
}
.choice-card--dark .choice-card__eyebrow { color: rgba(255, 255, 255, 0.55); }
.choice-card__title {
  margin-top: 16px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.choice-card__body {
  margin-top: 12px;
  margin-bottom: 32px;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--ink-60);
}
.choice-card--dark .choice-card__body { color: rgba(255, 255, 255, 0.75); }
.choice-card__cta {
  margin-top: auto;
  align-self: flex-start;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
}
@media (max-width: 720px) {
  .choice-grid { grid-template-columns: 1fr; }
}
