/* Seat Fill — stone-dark + amber
   Cues from kyle-site-v2 surfaces/motion; amber brand (not RR-green / Fraunces). */

:root {
  --bg: #1C1917;
  --bg-elev: #292524;
  --bg-alt: #231F1D;
  --bg-deep: #141110;
  --border: #44403C;
  --border-strong: #57534E;
  --steel: #78716C;
  --text: #FAF8F5;
  --text-sec: #D6D3D1;
  --text-muted: #A8A29E;
  --accent: #E39A12;
  --accent-hot: #F0AD2A;
  --accent-deep: #D97706;
  --accent-dim: rgba(227, 154, 18, 0.14);
  --accent-glow: rgba(227, 154, 18, 0.10);
  --accent-border: rgba(227, 154, 18, 0.40);
  --yes: #3d9a6a;
  --yes-bg: rgba(61, 154, 106, 0.09);
  --no: #c45c4a;
  --no-bg: rgba(196, 92, 74, 0.09);
  --grid: rgba(255, 255, 255, 0.02);
  --nav-bg: rgba(28, 25, 23, 0.92);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", monospace;
  --radius: 10px;
  --radius-pill: 9999px;
  --wrap: 1040px;
  --header-h: 60px;
  --space-section: clamp(3.25rem, 6vw, 4.5rem);
  --space-block: 1.75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  animation: pageFadeIn 350ms ease both;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #1C1917;
  padding: 0.5rem 1rem;
  z-index: 100;
  font-weight: 600;
  border-radius: 0.5rem;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.wrap {
  width: min(100% - 2rem, var(--wrap));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration: none;
  z-index: 2;
  line-height: 0;
}

.logo:hover {
  text-decoration: none;
  color: var(--text);
  opacity: 0.92;
}

.logo-img {
  display: block;
  height: 36px;
  width: auto;
  max-width: min(200px, 48vw);
}

.logo-mark {
  width: 11px;
  height: 11px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--accent-dim);
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.nav-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--bg-elev);
  cursor: pointer;
  z-index: 2;
}

.nav-toggle-btn:hover {
  border-color: var(--steel);
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  position: relative;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.nav-toggle:checked + .nav-toggle-btn .nav-toggle-bars {
  background: transparent;
}

.nav-toggle:checked + .nav-toggle-btn .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle:checked + .nav-toggle-btn .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.header-nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
}

.header-nav a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.header-nav a:hover {
  color: var(--text);
}

.header-nav .btn {
  margin-left: 0.25rem;
}

@media (max-width: 767px) {
  .nav-toggle:checked ~ .header-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: calc(var(--header-h) + 1px);
    left: 50%;
    transform: translateX(-50%);
    width: min(100vw - 2rem, var(--wrap));
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem;
    gap: 0.15rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  }

  .header-nav a {
    padding: 0.7rem 0.85rem;
    border-radius: 8px;
    font-size: 0.95rem;
  }

  .header-nav a:hover {
    background: rgba(255, 255, 255, 0.04);
  }

  .header-nav .btn {
    margin: 0.35rem 0 0;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .nav-toggle-btn {
    display: none;
  }

  .header-nav {
    display: flex;
  }
}

/* Buttons — pill like v2, amber fill / amber ghost */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease,
    transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  text-decoration: none;
}

.btn-sm {
  padding: 0.42rem 0.95rem;
  font-size: 0.84rem;
}

.btn-lg {
  padding: 0.9rem 1.55rem;
  font-size: 1.05rem;
}

.btn-primary {
  background: var(--accent);
  color: #1C1917;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hot);
  border-color: var(--accent-hot);
  color: #1C1917;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(227, 154, 18, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--accent-border);
}

.btn-ghost:hover {
  border-color: rgba(227, 154, 18, 0.7);
  background: var(--accent-dim);
  color: var(--text);
  transform: translateY(-1px);
}

/* Hero — noise + amber ambient glows + optional grid */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.75rem, 5vw, 4rem) 0 2.75rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.hero.grid-lines {
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-noise::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(64px);
  z-index: 0;
}

.hero-glow-a {
  top: 10%;
  left: 50%;
  transform: translateX(-55%);
  width: min(600px, 90vw);
  height: min(600px, 90vw);
  background: rgba(227, 154, 18, 0.08);
}

.hero-glow-b {
  top: 28%;
  right: -8rem;
  width: min(400px, 70vw);
  height: min(400px, 70vw);
  background: rgba(217, 119, 6, 0.07);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.85rem;
}

.hero h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(2.35rem, 5.8vw, 3.5rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--text);
}

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

.tagline {
  margin: 0 0 1.1rem;
  font-size: clamp(1.1rem, 2.4vw, 1.3rem);
  font-weight: 500;
  color: var(--text-sec);
  line-height: 1.35;
}

.lede {
  margin: 0 0 1.6rem;
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 36rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.75rem;
}

.proof-strip {
  list-style: none;
  margin: 0;
  padding: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.75rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.92rem;
}

.proof-strip strong {
  color: var(--text);
  font-weight: 600;
}

/* Sections */
.section {
  padding: var(--space-section) 0;
}

.section-alt {
  background: var(--bg-alt);
  border-block: 1px solid var(--border);
}

.section-head {
  max-width: 620px;
  margin-bottom: var(--space-block);
}

.section-head h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.55rem, 3.2vw, 2.05rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.022em;
  color: var(--text);
}

.section-lede {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

/* Fit split */
.split {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 700px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.3rem;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-border);
  box-shadow: 0 8px 32px rgba(227, 154, 18, 0.10);
}

.card h3 {
  margin: 0 0 0.9rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.card-yes {
  border-color: rgba(61, 154, 106, 0.32);
  background: linear-gradient(175deg, var(--yes-bg), var(--bg-elev) 55%);
}

.card-yes:hover {
  border-color: rgba(61, 154, 106, 0.5);
  box-shadow: 0 8px 32px rgba(61, 154, 106, 0.10);
}

.card-no {
  border-color: rgba(196, 92, 74, 0.32);
  background: linear-gradient(175deg, var(--no-bg), var(--bg-elev) 55%);
}

.card-no:hover {
  border-color: rgba(196, 92, 74, 0.5);
  box-shadow: 0 8px 32px rgba(196, 92, 74, 0.10);
}

.card-no em {
  font-style: normal;
  color: var(--no);
}

.check-list,
.x-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li,
.x-list li {
  position: relative;
  padding: 0.38rem 0 0.38rem 1.55rem;
  color: var(--text-sec);
  border-bottom: 1px solid var(--border);
  font-size: 0.98rem;
}

.check-list li:last-child,
.x-list li:last-child {
  border-bottom: none;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--yes);
  font-weight: 700;
}

.x-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: var(--no);
  font-weight: 700;
}

.card-note {
  margin: 0.9rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.step {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.step:hover {
  transform: translateY(-3px);
  border-color: var(--accent-border);
  box-shadow: 0 8px 32px rgba(227, 154, 18, 0.10);
}

.step-num {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.step h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.5;
}

/* Fee */
.fee-panel {
  display: grid;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elev);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.fee-panel:hover {
  transform: translateY(-2px);
  border-color: var(--accent-border);
  box-shadow: 0 8px 32px rgba(227, 154, 18, 0.10);
}

@media (min-width: 720px) {
  .fee-panel {
    grid-template-columns: 1fr 1.25fr;
  }
}

.fee-hero {
  padding: 1.85rem 1.6rem;
  background:
    linear-gradient(155deg, var(--accent-dim), transparent 50%),
    var(--bg-elev);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 720px) {
  .fee-hero {
    border-bottom: none;
    border-right: 1px solid var(--border);
  }
}

.fee-label {
  margin: 0 0 0.45rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.fee-amount {
  margin: 0;
  font-size: clamp(2.6rem, 5.5vw, 3.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent);
}

.fee-sub {
  margin: 0.7rem 0 0;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text-sec);
}

.fee-terms {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fee-terms li {
  padding: 1.05rem 1.4rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.fee-terms li:last-child {
  border-bottom: none;
}

.fee-terms strong {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text);
}

.fee-terms span {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  max-width: 720px;
}

.faq-item {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.faq-item:hover {
  border-color: var(--accent-border);
  box-shadow: 0 4px 20px rgba(227, 154, 18, 0.06);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.2rem;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text);
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--mono);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-item p {
  margin: 0;
  padding: 0 1.2rem 1.1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px solid transparent;
}

.faq-item[open] summary {
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.faq-item[open] p {
  padding-top: 0.95rem;
}

/* CTA */
.cta-section {
  background:
    radial-gradient(ellipse 65% 70% at 50% 110%, var(--accent-glow), transparent 50%),
    var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta-inner {
  max-width: 540px;
}

.cta-section .eyebrow {
  margin-bottom: 0.65rem;
}

.cta-section h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.65rem, 3.8vw, 2.15rem);
  letter-spacing: -0.022em;
  line-height: 1.15;
  color: var(--text);
}

.cta-section .section-lede {
  margin-bottom: 1.6rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 1.15rem;
}

.cta-fine {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--mono);
  letter-spacing: 0.02em;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.75rem 0 2.15rem;
  background: var(--bg-deep);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

@media (min-width: 600px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer-brand {
  margin: 0 0 0.2rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.footer-tag {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-meta {
  font-size: 0.88rem;
}

.footer-meta p {
  margin: 0 0 0.3rem;
}

.footer-meta a {
  color: var(--text-muted);
}

.footer-meta a:hover {
  color: var(--accent);
}

.legal {
  margin-top: 0.7rem !important;
  color: var(--steel);
  font-size: 0.75rem;
  letter-spacing: 0.01em;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
.reveal[data-delay="4"] { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  body {
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .card:hover,
  .step:hover,
  .fee-panel:hover,
  .btn-primary:hover,
  .btn-ghost:hover {
    transform: none;
  }
}

body.reduced-motion .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
