:root {
  /* Quiet canvas + ember accent — airy, product-marketing feel */
  --bg:           #f5f5f7;
  --bg2:          #ebebef;
  --ink:          #1d1d1f;
  --surface:      #ffffff;
  --surface-hi:   #fbfbfd;
  --border:       rgba(29, 29, 31, 0.08);
  --border-hi:    rgba(245, 82, 28, 0.4);
  --text:         #1d1d1f;
  --muted:        #6e6e73;
  --accent:       #f5521c;
  --accent-hover: #e04614;
  --accent-deep:  #c03010;
  --accent-soft:  rgba(245, 82, 28, 0.1);
  --ember:        #f5521c;
  --teal:         #0d9488;
  --brand:        #f5521c;
  --brand-soft:   rgba(245, 82, 28, 0.1);
  --violet:       #0d9488;
  --violet-light: #14b8a6;
  --indigo:       #f5521c;
  --indigo-light: #ff7a45;
  --emerald:      #059669;
  --emerald-light:#34d399;
  --amber:        #d97706;
  --amber-light:  #fbbf24;
  --rose:         #e11d48;
  --sky:          #0284c7;
  --radius:       22px;
  --radius-sm:    14px;
  --radius-xs:    10px;
  --font-brand:   "Fraunces", "Plus Jakarta Sans", Georgia, serif;
  --font-display: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --shadow-sm:    0 1px 2px rgba(29, 29, 31, 0.04);
  --shadow-md:    0 12px 40px -16px rgba(29, 29, 31, 0.12);
  --shadow-lg:    0 32px 64px -24px rgba(29, 29, 31, 0.18);
  --measure:      38rem;
  --content:      1120px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; overflow-x:hidden; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -0.011em;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html.fonts-loaded body { font-family: var(--font-body); }
main { overflow-x: clip; max-width: 100%; position: relative; z-index: 2; }
code {
  font-family: var(--font-mono);
  background: var(--accent-soft);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.82em;
  color: var(--accent-deep);
}

/* Soft atmosphere — barely-there wash, no busy grid */
.bg-orbs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(140px); opacity: 0.4; }
.orb-1 { width: 560px; height: 560px; background: rgba(245, 82, 28, 0.12); top: -26%; left: 50%; transform: translateX(-65%); }
.orb-2 { width: 360px; height: 360px; background: rgba(13, 148, 136, 0.05); top: 18%; right: -6%; }
.orb-3 { display: none; }
.orb-4 { display: none; }
.grid-overlay { display: none; }

.logo { flex-shrink: 0; display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 40px; width: auto; display: block; }
.header-nav { display: flex; align-items: center; gap: 26px; }
.header-nav a {
  color: var(--muted); text-decoration: none; font-size: 0.8rem; font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--text); }
.header-right { display: flex; align-items: center; gap: 12px; }
.header-badge {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 12px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border);
  font-size: 0.76rem; color: var(--muted); font-weight: 600;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border: none; border-radius: 980px;
  background: var(--accent); color: #fff;
  font-family: inherit; font-size: 1rem; font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer; text-decoration: none;
  box-shadow: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: scale(1.02);
}
.btn-primary:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.btn-sm { padding: 10px 18px; font-size: 0.92rem; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 980px;
  border: none; background: transparent;
  color: var(--accent-deep); font-family: inherit; font-size: 1rem; font-weight: 600;
  text-decoration: none; transition: opacity 0.2s;
}
.btn-ghost:hover { opacity: 0.72; background: transparent; border-color: transparent; }
.btn-glow { box-shadow: none; }

.hl-gradient {
  color: var(--accent-deep);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.reveal { opacity: 1; transform: none; }
html.js-reveal .reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
html.js-reveal .reveal.visible { opacity: 1; transform: translateY(0); }
html.no-reveal .reveal { opacity: 1 !important; transform: none !important; }

.section-label {
  font-size: 0.78rem; font-weight: 600; letter-spacing: -0.01em;
  text-transform: none; color: var(--accent-deep); margin-bottom: 10px;
}
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4.6vw, 3.25rem);
  font-weight: 600; letter-spacing: -0.04em; line-height: 1.08;
  margin: 0 auto 18px; color: var(--text);
  max-width: 14em;
}
.section-copy {
  color: var(--muted); font-size: 1.125rem; max-width: var(--measure);
  margin: 0 auto 48px; line-height: 1.5; text-align: center;
  font-weight: 400;
}
.section-copy strong { color: var(--text); font-weight: 600; }

/* Forms */
.access-form { max-width: 520px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.af-row { display: flex; gap: 10px; }
.af-field { position: relative; flex: 1; }
.af-field svg {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--muted); opacity: 0.7; pointer-events: none;
}
.af-field input {
  width: 100%; padding: 13px 14px 13px 42px;
  border-radius: 14px; border: 1px solid var(--border);
  background: var(--surface); color: var(--text);
  font-family: inherit; font-size: 0.9rem; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none; appearance: none;
}
.af-field input:focus {
  border-color: rgba(245, 82, 28, 0.55);
  box-shadow: 0 0 0 3px rgba(245, 82, 28, 0.14);
}
.af-field input::placeholder { color: #98a0a8; }
.af-honeypot {
  position: absolute !important; left: -9999px !important;
  height: 0 !important; width: 0 !important; opacity: 0 !important;
  pointer-events: none !important;
}
.access-form .btn-primary { width: 100%; justify-content: center; padding: 14px 22px; margin-top: 4px; }
.form-note { color: var(--muted); font-size: 0.78rem; margin-top: 14px; text-align: center; }

@media (max-width: 640px) {
  .af-row { flex-direction: column; }
}
