/* ─── INTAKE FORM STYLES ─── */
:root {
  --bg: #0E1A16;
  --bg-light: #152822;
  --bg-card: #1A3428;
  --surface: #F8F5EF;
  --surface-dim: #E8E4DC;
  --text: #F8F5EF;
  --text-dim: #9BAFA5;
  --text-dark: #1A3C34;
  --accent: #E8913A;
  --accent-glow: rgba(232, 145, 58, 0.2);
  --green-bright: #4ADE80;
  --green-dim: #22C55E;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 560px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* ─── NAV (same as landing page) ─── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(14, 26, 22, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(248, 245, 239, 0.06);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-mark {
  display: inline-block;
  width: 28px; height: 28px;
  background: var(--accent);
  border-radius: 6px;
  position: relative;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 5px;
  border: 2px solid var(--bg);
  border-radius: 3px;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ─── INTAKE PAGE ─── */
.intake-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.5rem 4rem;
}
.intake-container {
  width: 100%;
  max-width: var(--max-width);
}
.intake-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.intake-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.intake-header p {
  color: var(--text-dim);
  font-size: 1rem;
}

/* ─── STEP INDICATOR ─── */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
}
.step-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(248,245,239,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dim);
  transition: all 0.3s ease;
}
.step-dot.active {
  border-color: var(--accent);
  background: rgba(232,145,58,0.15);
  color: var(--accent);
}
.step-line {
  flex: 1;
  max-width: 80px;
  height: 2px;
  background: rgba(248,245,239,0.1);
}

/* ─── FORM ─── */
.intake-form {
  background: var(--bg-light);
  border: 1px solid rgba(248,245,239,0.06);
  border-radius: 16px;
  padding: 2rem;
}
.form-section h2 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.field {
  margin-bottom: 1.25rem;
}
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
}
.field input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1px solid rgba(248,245,239,0.1);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s ease;
}
.field input:focus {
  outline: none;
  border-color: var(--accent);
}
.field input::placeholder {
  color: rgba(155,175,165,0.5);
}

/* ─── BUTTONS ─── */
button.btn-primary {
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 0.5rem;
}
button.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,145,58,0.3);
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
a.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 1.5rem;
  background: transparent;
  border: 1px solid rgba(248,245,239,0.15);
  border-radius: 10px;
  color: var(--text-dim);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}
a.btn-secondary:hover {
  border-color: rgba(248,245,239,0.3);
  color: var(--text);
}

/* ─── TIER CARDS ─── */
.tier-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.tier-card {
  cursor: pointer;
  display: block;
}
.tier-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.tier-inner {
  position: relative;
  padding: 1rem 1.25rem;
  background: var(--bg);
  border: 2px solid rgba(248,245,239,0.08);
  border-radius: 12px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.tier-card:hover .tier-inner {
  border-color: rgba(232,145,58,0.3);
}
.tier-card input:checked + .tier-inner {
  border-color: var(--accent);
  background: rgba(232,145,58,0.06);
}
.tier-card--featured .tier-inner {
  border-color: rgba(232,145,58,0.25);
}
.tier-badge {
  position: absolute;
  top: -10px;
  right: 1rem;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.tier-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.tier-desc {
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ─── SUCCESS / ERROR ─── */
.intake-success, .intake-error {
  text-align: center;
  background: var(--bg-light);
  border: 1px solid rgba(248,245,239,0.06);
  border-radius: 16px;
  padding: 3rem 2rem;
}
.success-icon {
  width: 64px; height: 64px;
  background: rgba(74,222,128,0.15);
  border: 2px solid var(--green-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--green-bright);
  margin: 0 auto 1.5rem;
}
.intake-success h2, .intake-error h2 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}
.intake-success p, .intake-error p {
  color: var(--text-dim);
  margin-bottom: 2rem;
}
.btn-back {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: rgba(248,245,239,0.08);
  border: 1px solid rgba(248,245,239,0.1);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}
.btn-back:hover {
  background: rgba(248,245,239,0.12);
}

/* ─── FOOTER ─── */
.site-footer {
  padding: 2rem;
  border-top: 1px solid rgba(248,245,239,0.06);
  text-align: center;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.footer-copy {
  color: var(--text-dim);
  font-size: 0.82rem;
  margin-bottom: 0.4rem;
}
.footer-fine {
  color: var(--text-dim);
  opacity: 0.5;
  font-size: 0.72rem;
}

@media (max-width: 600px) {
  .intake-form { padding: 1.5rem; }
  .form-actions { flex-direction: column; }
}