/* ============================================================
 * LXA — launchx.ia.br
 * Editorial-tech minimalism · refined B2B luxury
 * ============================================================ */

/* === Sections === */
.section {
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
}
.section--alt { background: var(--soot); }
.section--rule { border-top: 1px solid var(--hairline); }

.section__head {
  margin-bottom: clamp(48px, 7vw, 88px);
  max-width: 880px;
}
.section__head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 200;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 28px;
}
.kicker--center { display: inline-flex; justify-content: center; }
.kicker__bar {
  width: 24px;
  height: 1px;
  background: var(--rust);
  display: block;
  flex-shrink: 0;
}

.section__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
}
.section__h2--xl {
  font-size: clamp(2rem, 6.5vw, 4.5rem);
  letter-spacing: -0.045em;
}
.section__h2 em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--rust);
  letter-spacing: -0.005em;
}

.section__lead {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--ash);
  max-width: 640px;
  margin-top: 24px;
  line-height: 1.6;
}
.section__head--center .section__lead { margin-left: auto; margin-right: auto; }
.section__addendum {
  margin-top: clamp(56px, 8vw, 80px);
  font-size: 1rem;
  color: var(--ash);
  max-width: 720px;
  line-height: 1.6;
}
.rust-mark { color: var(--rust); font-family: var(--font-mono); margin-left: 4px; }
.rust { color: var(--rust); }

/* ============================================================
 * NUMLIST — Diagnóstico Real (editorial numbered)
 * ============================================================ */
.numlist {
  list-style: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--hairline);
}
.numlist__item {
  display: grid;
  grid-template-columns: minmax(120px, 200px) 1fr;
  gap: clamp(24px, 6vw, 80px);
  padding: clamp(28px, 4vw, 44px) 0;
  border-bottom: 1px solid var(--hairline);
  transition: background 300ms;
}
.numlist__item:hover { background: rgba(255,255,255,0.015); }
.numlist__num {
  font-family: var(--font-mono);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  color: var(--rust);
  letter-spacing: 0.04em;
  align-self: flex-start;
}
.numlist__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 200;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.numlist__body p {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  color: var(--ash);
  line-height: 1.6;
  max-width: 640px;
}
.numlist__body em {
  font-family: var(--font-editorial);
  font-style: italic;
  color: var(--bone);
  font-size: 1.05em;
}

@media (max-width: 720px) {
  .numlist__item { grid-template-columns: 1fr; gap: 12px; }
}

/* ============================================================
 * BENTO — Cases (2×2 equal)
 * ============================================================ */
.bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.bento__card {
  position: relative;
  background: var(--soot);
  border: 1px solid var(--hairline);
  border-radius: 24px;
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  min-height: 380px;
  overflow: hidden;
  transition: border-color 300ms, transform 300ms;
}
.bento__card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(251,76,3,0.4), transparent 35%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 400ms;
  pointer-events: none;
}
.bento__card:hover { transform: translateY(-2px); }
.bento__card:hover::before { opacity: 1; }

.bento__metric { margin-bottom: 28px; }
.bento__metric--sm { margin-bottom: 24px; }
.bento__metric-pre {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 200;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 12px;
}
.bento__metric-num {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6.5vw, 5.5rem);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: var(--bone);
  display: block;
}
.bento__metric--sm .bento__metric-num { font-size: clamp(2.75rem, 5vw, 4rem); }
.bento__metric-num em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--rust);
  letter-spacing: -0.02em;
  font-size: 0.85em;
}
.bento__metric-suf {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 200;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ash);
  display: block;
  margin-top: 8px;
}

.bento__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bento__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 200;
  letter-spacing: 0.04em;
  color: var(--rust);
  text-transform: lowercase;
}
.bento__body p {
  font-size: 0.9375rem;
  color: var(--ash);
  line-height: 1.55;
}
.bento__brand {
  margin-top: auto;
  margin-left: calc(clamp(28px, 3vw, 40px) * -1);
  margin-right: calc(clamp(28px, 3vw, 40px) * -1);
  margin-bottom: calc(clamp(28px, 3vw, 40px) * -1);
  padding: 24px clamp(28px, 3vw, 40px);
  background: var(--pitch);
  border-top: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  gap: 16px;
}
.bento__brand img {
  height: 56px;
  width: auto;
  max-width: 50%;
  opacity: 0.95;
  object-fit: contain;
}
.bento__brand-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ash);
}
.bento__brand-monogram {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--rust);
  background: var(--rust-soft);
  border: 1px solid rgba(251, 76, 3, 0.3);
}

@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr; gap: 14px; }
  .bento__card { min-height: 320px; }
}

/* ============================================================
 * SPLIT — Problema (asymmetric)
 * ============================================================ */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: flex-start;
}
.split__col-title { position: sticky; top: 100px; }
.split__lead {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--ash);
  margin-top: 28px;
  line-height: 1.6;
  max-width: 480px;
}
.split__lead strong { color: var(--bone); font-weight: 200; }

.problems {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.problems__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--hairline);
}
.problems__item:first-child { padding-top: 0; }
.problems__num {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 200;
  color: var(--rust);
  letter-spacing: 0.06em;
}
.problems__item h3 {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  font-weight: 200;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  line-height: 1.25;
}
.problems__item p {
  font-size: 0.9375rem;
  color: var(--ash);
  line-height: 1.6;
}

.problems__closing {
  margin-top: clamp(56px, 8vw, 96px);
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 200;
  color: var(--bone);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.015em;
  line-height: 1.4;
}
.problems__closing em {
  font-family: var(--font-editorial);
  font-style: italic;
  color: var(--rust);
  font-weight: 400;
}

@media (max-width: 920px) {
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split__col-title { position: static; }
}
@media (max-width: 560px) {
  .problems__item { grid-template-columns: 56px 1fr; gap: 16px; }
}

/* ============================================================
 * CREED — quote editorial
 * ============================================================ */
.creed {
  position: relative;
  padding: clamp(120px, 18vh, 180px) 0;
  overflow: hidden;
  isolation: isolate;
}
.creed__atmos {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(251,76,3,0.12), transparent 70%),
    radial-gradient(circle at 50% 50%, var(--soot) 0%, var(--ink) 70%);
}
.creed__kicker {
  display: block;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 40px;
}
.creed__quote {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 4rem);
  font-weight: 200;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  color: var(--bone);
}
.creed__quote em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--bone);
  letter-spacing: -0.005em;
}
.creed__quote .rust {
  color: var(--rust);
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
}
.creed__rule {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rust), transparent);
  margin: 56px auto 0;
}

/* ============================================================
 * AIRT — AI Revenue Team bento
 * ============================================================ */
.airt {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.airt__card {
  background: var(--soot);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 32px);
  position: relative;
  overflow: hidden;
  transition: border-color 250ms, transform 250ms;
}
.airt__card:hover {
  border-color: var(--hairline-strong);
  transform: translateY(-2px);
}
.airt__card--hero {
  grid-column: span 2;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--char), var(--soot) 60%);
}
.airt__diagram {
  width: 100%;
  max-width: 360px;
  margin: 0 auto 24px;
  padding: 8px;
}
.airt__diagram svg { width: 100%; height: auto; display: block; }
.airt__copy { margin-top: auto; }
.airt__tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--rust);
  margin-bottom: 12px;
  text-transform: lowercase;
}
.airt__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--rust);
  display: block;
  margin-bottom: 16px;
}
.airt__card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  font-weight: 200;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.airt__card--hero h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: -0.02em;
}
.airt__card p {
  font-size: 0.9375rem;
  color: var(--ash);
  line-height: 1.55;
}

@media (max-width: 920px) {
  .airt { grid-template-columns: 1fr 1fr; }
  .airt__card--hero { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 560px) {
  .airt { grid-template-columns: 1fr; }
  .airt__card--hero { grid-column: span 1; }
}

/* ============================================================
 * CTA-LINE — minimal mid CTA
 * ============================================================ */
.cta-line {
  padding: clamp(80px, 12vh, 120px) 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
}
.cta-line::before, .cta-line::after {
  content: '';
  position: absolute;
  height: 1px;
  width: 200px;
  top: 50%;
  background: linear-gradient(90deg, transparent, var(--rust), transparent);
  opacity: 0.6;
}
.cta-line::before { left: 0; }
.cta-line::after { right: 0; }
.cta-line__inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.cta-line__pre {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 24px;
}
.cta-line__h {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 200;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 40px;
}
.cta-line__h em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--rust);
}
.cta-line__btn { margin-bottom: 16px; }
.cta-line__meta {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--slate);
}
.cta-line__meta b { color: var(--rust); font-weight: 200; }

/* ============================================================
 * NUMGRID — credenciais (numbers gigantes)
 * ============================================================ */
.numgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: 28px;
  overflow: hidden;
}
.numgrid__item {
  background: var(--soot);
  padding: clamp(36px, 4vw, 56px) clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 300ms;
}
.numgrid__item:hover { background: var(--char); }
.numgrid__item--accent {
  background: linear-gradient(135deg, rgba(251,76,3,0.06), var(--soot) 60%);
}
.numgrid__pre {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 200;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ash);
}
.numgrid__big {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: var(--bone);
  margin-top: 4px;
  margin-bottom: 4px;
}
.numgrid__item--accent .numgrid__big { color: var(--rust); }
.numgrid__big em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--rust);
  letter-spacing: -0.02em;
  font-size: 0.85em;
}
.numgrid__item--accent .numgrid__big em { color: var(--ember); }
.numgrid__lab {
  font-size: 0.875rem;
  color: var(--ash);
  line-height: 1.5;
}

.numgrid__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: clamp(48px, 6vw, 72px);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ash);
}
.footer-rule {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--hairline-strong);
}

@media (max-width: 920px) { .numgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .numgrid { grid-template-columns: 1fr; } .numgrid__footer { flex-wrap: wrap; gap: 12px; } }

/* ============================================================
 * PARTNERS
 * ============================================================ */
.partners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.partner {
  background: var(--soot);
  border: 1px solid var(--hairline);
  border-radius: 24px;
  padding: clamp(32px, 4vw, 48px);
  text-align: center;
}
.partner img {
  height: 80px;
  width: auto;
  margin: 0 auto 24px;
  object-fit: contain;
}
.partner h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 200;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.partner p {
  font-size: 0.9375rem;
  color: var(--ash);
  line-height: 1.55;
}

@media (max-width: 720px) { .partners { grid-template-columns: 1fr; } }

/* ============================================================
 * MARQUEE — black canvas bleed
 * ============================================================ */
.marquee {
  margin: clamp(48px, 6vw, 72px) 0;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 40px 0;
  background: var(--pitch);
}
.marquee__track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marqueeScroll 50s linear infinite;
  align-items: center;
}
.marquee__track img {
  height: 56px;
  width: auto;
  opacity: 0.7;
  flex-shrink: 0;
  transition: opacity 200ms, filter 200ms;
  object-fit: contain;
}
.marquee__track img:hover { opacity: 1; }
@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ============================================================
 * TESTIS
 * ============================================================ */
.testis {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.testis img {
  width: 100%;
  height: auto;
  aspect-ratio: 5/6;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--hairline);
  filter: saturate(0.9) brightness(0.95);
  transition: filter 300ms, transform 300ms;
}
.testis img:hover {
  filter: saturate(1.1) brightness(1);
  transform: scale(1.02);
}

@media (max-width: 1100px) { .testis { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 720px) { .testis { grid-template-columns: repeat(3, 1fr); gap: 10px; } }
@media (max-width: 480px) { .testis { grid-template-columns: repeat(2, 1fr); gap: 8px; } }

/* ============================================================
 * FINALE — CTA dramatic
 * ============================================================ */
.finale {
  position: relative;
  padding: clamp(120px, 18vh, 200px) 0;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.finale__atmos {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(251,76,3,0.18), transparent 60%),
    radial-gradient(ellipse 40% 60% at 30% 0%, rgba(251,76,3,0.08), transparent 70%),
    radial-gradient(ellipse 40% 60% at 70% 100%, rgba(251,76,3,0.10), transparent 70%);
}
.finale::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}
.finale__pre {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 32px;
}
.finale__h {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 200;
  letter-spacing: -0.03em;
  line-height: 1;
  max-width: 1000px;
  margin: 0 auto;
}
.finale__h em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--bone);
}
.finale__h .rust { color: var(--rust); font-family: var(--font-editorial); font-style: italic; font-weight: 400; }
.finale__sub {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--ash);
  max-width: 600px;
  margin: 32px auto 48px;
  line-height: 1.55;
}
.finale__btn { padding: 20px 36px; font-size: 16px; }
.finale__meta {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--slate);
  margin-top: 20px;
}
.finale__meta b { color: var(--rust); font-weight: 200; }

/* ============================================================
 * FAQ — editorial
 * ============================================================ */
.faq {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--hairline);
}
.faq__row {
  border-bottom: 1px solid var(--hairline);
  padding: 0;
}
.faq__row summary {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  font-weight: 200;
  letter-spacing: -0.015em;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  transition: color 200ms;
  position: relative;
}
.faq__row summary em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
}
.faq__row summary::-webkit-details-marker { display: none; }
.faq__row summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 300;
  color: var(--rust);
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  line-height: 1;
}
.faq__row[open] summary::after {
  content: '−';
}
.faq__row summary:hover { color: var(--rust); }
.faq__body {
  padding: 0 0 32px;
  max-width: 720px;
}
.faq__body p {
  font-size: 0.9375rem;
  color: var(--ash);
  line-height: 1.7;
}
.faq__body p + p { margin-top: 14px; }

/* ============================================================
 * FOOTER
 * ============================================================ */
.foot {
  border-top: 1px solid var(--hairline);
  padding: 56px 0 48px;
  background: var(--pitch);
}
.foot__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}
.foot__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.foot__brand img { height: 24px; width: auto; }
.foot__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--slate);
}
.foot__addr {
  font-family: var(--font-mono);
  font-size: 11px;
  font-style: normal;
  font-weight: 300;
  color: var(--ash);
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: right;
  min-width: 400px;
  flex-shrink: 0;
}
.foot__addr-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 8px;
}
.foot__rule {
  height: 1px;
  background: var(--hairline);
  margin-bottom: 24px;
}
.foot__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.foot__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ash);
}
.foot__sep { color: var(--slate); }
.foot__nav {
  display: flex;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.foot__nav a {
  color: var(--ash);
  transition: color 150ms;
}
.foot__nav a:hover { color: var(--rust); }

@media (max-width: 720px) {
  .foot__top { flex-direction: column; }
  .foot__addr { text-align: left; min-width: 0; max-width: 100%; }
  .foot__row { flex-direction: column; align-items: flex-start; }
  .foot__meta { flex-wrap: wrap; }
}

/* ============================================================
 * MODAL + FORM INLINE
 * ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(6, 6, 10, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: modalFadeIn 220ms ease-out;
  overflow-y: auto;
}
.modal[hidden] { display: none; }
@keyframes modalFadeIn {
  from { opacity: 0; backdrop-filter: blur(0); -webkit-backdrop-filter: blur(0); }
  to   { opacity: 1; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
}
.modal__shell {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: auto;
  animation: modalSlideUp 320ms cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.modal__close {
  position: absolute;
  top: -56px;
  right: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--hairline-strong);
  color: var(--bone);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  display: grid;
  place-items: center;
  transition: background 200ms, border-color 200ms;
}
.modal__close:hover { background: rgba(255,255,255,0.12); border-color: var(--rust); color: var(--rust); }

.form-shell {
  background: linear-gradient(180deg, var(--char), var(--soot) 70%);
  border: 1px solid var(--hairline-strong);
  border-radius: 28px;
  padding: clamp(32px, 5vw, 48px);
  box-shadow: 0 0 80px rgba(251, 76, 3, 0.12), 0 24px 64px rgba(0,0,0,0.55);
  position: relative;
  overflow: hidden;
}
.form-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(251,76,3,0.10), transparent 60%);
  pointer-events: none;
}

.form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  position: relative;
}
.form-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 200;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
}
.form-step-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ash);
}
.form-step-label--arrow {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--rust);
  letter-spacing: 0;
  text-transform: none;
  line-height: 1;
  display: inline-block;
  animation: arrowNudge 1.6s ease-in-out infinite;
}
@keyframes arrowNudge {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(4px); }
}
@media (prefers-reduced-motion: reduce) {
  .form-step-label--arrow { animation: none; }
}

.form-progress-track {
  height: 2px;
  background: var(--hairline);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 32px;
  position: relative;
}
.form-progress {
  height: 100%;
  background: var(--rust);
  border-radius: 999px;
  transition: width 400ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 12px var(--rust-glow);
}

.form-step { display: none; position: relative; }
.form-step.active { display: block; animation: formStepIn 320ms ease-out; }
@keyframes formStepIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-q {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.6vw, 1.75rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--bone);
  margin-bottom: 8px;
}
.form-sub {
  font-size: 14px;
  color: var(--ash);
  margin-bottom: 24px;
  line-height: 1.5;
}

.form-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-opt {
  width: 100%;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 16px 20px;
  color: var(--bone);
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 200;
  text-align: left;
  cursor: pointer;
  transition: background 180ms, border-color 180ms, transform 180ms;
  letter-spacing: -0.005em;
  line-height: 1.4;
}
.form-opt:hover {
  background: rgba(251, 76, 3, 0.04);
  border-color: rgba(251, 76, 3, 0.35);
}
.form-opt.selected {
  background: var(--rust-soft);
  border-color: var(--rust);
  box-shadow: 0 0 0 1px var(--rust) inset;
}

.form-input-wrap { margin-bottom: 12px; }
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--hairline-strong);
  border-radius: 14px;
  padding: 16px 18px;
  color: var(--bone);
  font-family: var(--font-sans);
  font-size: 15px;
  outline: none;
  transition: border-color 180ms, background 180ms;
}
.form-input::placeholder { color: var(--slate); }
.form-input:focus { border-color: var(--rust); background: rgba(251,76,3,0.04); }
.form-input--area { resize: vertical; min-height: 100px; line-height: 1.5; }
.form-input.invalid { border-color: #EF4444; }
.form-input.valid { border-color: rgba(16, 185, 129, 0.6); }
.form-error {
  display: none;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #EF4444;
  letter-spacing: 0.04em;
  margin-top: 8px;
}
.form-error.visible { display: block; }

.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.form-back {
  background: transparent;
  border: 1px solid var(--hairline);
  color: var(--ash);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 14px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 180ms;
  text-transform: uppercase;
}
.form-back:hover { border-color: var(--bone); color: var(--bone); }
.form-next, .form-submit {
  flex: 1;
  background: var(--rust);
  border: 0;
  color: var(--bone);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 200;
  padding: 16px 24px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 180ms, transform 180ms, box-shadow 180ms;
  box-shadow: 0 0 0 0 var(--rust-glow);
}
.form-next:hover, .form-submit:hover {
  background: var(--ember);
  box-shadow: 0 0 40px var(--rust-glow);
  transform: translateY(-1px);
}
.form-next:disabled, .form-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.form-loading, .form-success {
  position: relative;
  text-align: center;
  padding: 48px 0 32px;
}
.form-loading[hidden], .form-success[hidden] { display: none; }
.form-spinner {
  width: 36px;
  height: 36px;
  border: 2px solid var(--hairline-strong);
  border-top-color: var(--rust);
  border-radius: 50%;
  animation: formSpin 0.85s linear infinite;
  margin: 0 auto 20px;
}
@keyframes formSpin { to { transform: rotate(360deg); } }
.form-loading p {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ash);
}
.form-check {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--rust-soft);
  border: 1px solid var(--rust);
  color: var(--rust);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 200;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.form-success p {
  font-size: 14px;
  color: var(--ash);
  max-width: 380px;
  margin: 0 auto;
  line-height: 1.55;
}

@media (max-width: 560px) {
  .modal { padding: 0; align-items: flex-start; }
  .modal__shell { max-width: 100%; height: 100%; min-height: 100vh; }
  .form-shell { border-radius: 0; min-height: 100vh; padding: 28px 20px 40px; }
  .modal__close {
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.45);
  }
  .form-q { font-size: 1.25rem; }
  .form-opt { font-size: 14px; padding: 14px 16px; }
}

/* ============================================================
 * SCROLL-IN ANIMATION
 * Only hide elements once JS confirms it's running (avoid FOUC
 * + no-JS / headless screenshot fallback).
 * ============================================================ */
.js-ready .fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms cubic-bezier(0.4, 0, 0.2, 1), transform 800ms cubic-bezier(0.4, 0, 0.2, 1);
}
.js-ready .fade-up.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .js-ready .fade-up { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
