:root {
  --bg: #0e0e1a;
  --bg-card: #14141f;
  --bg-card-hover: #1a1a28;
  --fg: #f0ede6;
  --fg-muted: #9a9690;
  --accent: #f4a62a;
  --accent-dim: rgba(244, 166, 42, 0.12);
  --accent-glow: rgba(244, 166, 42, 0.06);
  --rust: #c4522a;
  --border: rgba(240, 237, 230, 0.07);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  background: rgba(14, 14, 26, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 32px; height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 13px;
  color: var(--bg);
  font-weight: 400;
}

.nav-name {
  font-family: 'DM Serif Display', serif;
  font-size: 16px;
  letter-spacing: 0.01em;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244, 166, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 166, 42, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 60% 50%, black 0%, transparent 70%);
}

.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  right: 0; top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(ellipse, rgba(244, 166, 42, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  margin-bottom: 24px;
}

.eyebrow-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(244, 166, 42, 0.2);
}

.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-headline em {
  color: var(--accent);
  font-style: italic;
}

.hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 480px;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  z-index: 1;
}

.report-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(244,166,42,0.06);
  max-width: 440px;
  margin: 0 auto;
}

.report-card-header {
  background: linear-gradient(135deg, #1c1c2e 0%, #16162a 100%);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.report-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.report-status {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(244, 166, 42, 0.15);
  color: var(--accent);
  border: 1px solid rgba(244, 166, 42, 0.2);
}

.report-card-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.report-section {}

.report-section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.report-section-val {
  font-size: 14px;
  color: var(--fg);
  font-weight: 500;
}

.report-card-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  background: rgba(244, 166, 42, 0.04);
}

.report-progress {}

.progress-bar {
  height: 4px;
  background: rgba(244, 166, 42, 0.15);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #e8830a);
  border-radius: 4px;
  transition: width 1.5s ease;
}

.progress-label {
  font-size: 11px;
  color: var(--fg-muted);
}

/* FLOATING BADGES */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 12px;
  color: var(--fg-muted);
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  animation: float 6s ease-in-out infinite;
}

.badge-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(244, 166, 42, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--accent);
  border: none;
}

.badge-1 { bottom: -20px; left: -30px; animation-delay: 0s; }
.badge-2 { top: -20px; right: -20px; animation-delay: 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* PROBLEM */
.problem {
  padding: 80px 48px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.problem-stat {
  flex: 1;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 56px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-unit {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.stat-desc {
  display: block;
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.problem-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  flex-shrink: 0;
}

.problem-hook {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--fg);
  font-style: italic;
  line-height: 1.4;
}

/* FEATURES */
.features {
  padding: 100px 48px;
}

.features-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.features-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.15;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.3s, background 0.3s;
}

.feature-card:hover {
  border-color: rgba(244, 166, 42, 0.25);
  background: var(--bg-card-hover);
}

.feature-icon {
  margin-bottom: 18px;
}

.feature-title {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-muted);
}

/* HOW / COMPLIANCE */
.how {
  padding: 100px 48px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.how-left {}

.how-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
  margin: 16px 0 20px;
}

.how-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.compliance-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.compliance-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.compliance-mark {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(244, 166, 42, 0.15);
  color: var(--accent);
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* WORKFLOW VISUAL */
.workflow-visual {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 40px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  max-width: 320px;
  margin: 0 auto;
}

.workflow-step {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  position: relative;
}

.workflow-num {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--accent);
  width: 48px;
  flex-shrink: 0;
}

.workflow-label {
  font-size: 15px;
  color: var(--fg);
  font-weight: 500;
}

.workflow-connector {
  position: absolute;
  left: 24px;
  top: calc(20px + 48px);
  width: 2px;
  height: 20px;
  background: linear-gradient(to bottom, rgba(244,166,42,0.4), rgba(244,166,42,0.1));
}

/* CLOSING */
.closing {
  padding: 120px 48px;
  text-align: center;
}

.closing-inner {
  max-width: 760px;
  margin: 0 auto;
}

.closing-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 28px;
}

.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.closing-vision {
  font-family: 'DM Serif Display', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--accent);
}

/* FOOTER */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  width: 28px; height: 28px;
  background: var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 11px;
  color: var(--bg);
}

.footer-name {
  font-family: 'DM Serif Display', serif;
  font-size: 15px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}

/* INTAKE SECTION */
.intake-section {
  padding: 100px 48px;
  background: var(--bg);
  position: relative;
}

.intake-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.intake-header {
  text-align: center;
  margin-bottom: 56px;
}

.intake-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.15;
  margin: 16px 0 12px;
}

.intake-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.65;
}

.intake-form-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

/* FORM */
.intake-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.form-group input,
.form-group select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239a9690' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(244, 166, 42, 0.4);
}

.form-group input::placeholder {
  color: rgba(154, 150, 144, 0.6);
}

.form-group select option {
  background: var(--bg-card);
  color: var(--fg);
}

.optional-tag {
  font-size: 11px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(154, 150, 144, 0.6);
  margin-left: 8px;
}

/* QUOTE BLOCK */
.quote-block {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  min-height: 80px;
}

.quote-placeholder {
  padding: 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: var(--accent-glow);
}

.quote-dots {
  display: flex;
  gap: 6px;
}

.quote-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fg-muted);
  opacity: 0.4;
}

.quote-placeholder p {
  font-size: 13px;
  color: var(--fg-muted);
}

.quote-result {
  padding: 28px;
  background: var(--accent-dim);
  border-top: 1px solid rgba(244, 166, 42, 0.15);
}

.quote-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.quote-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.quote-complexity {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(244, 166, 42, 0.15);
  color: var(--accent);
  border: 1px solid rgba(244, 166, 42, 0.2);
}

.quote-price {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.quote-note {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  background: #e8830a;
  transform: translateY(-1px);
}

.cta-btn svg {
  transition: transform 0.2s;
}

.cta-btn:hover svg {
  transform: translateX(3px);
}

.form-disclaimer {
  font-size: 11px;
  color: rgba(154, 150, 144, 0.5);
  text-align: center;
  line-height: 1.5;
}

/* ASIDE */
.intake-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 96px;
}

.aside-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
}

.aside-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.aside-card > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.aside-card strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}

.aside-card span {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.aside-price-hint {
  background: var(--bg-card);
  border: 1px solid rgba(244, 166, 42, 0.2);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hint-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.hint-range {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--accent);
}

.hint-note {
  font-size: 12px;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 32px 60px;
    gap: 48px;
  }
  .hero-visual { order: -1; }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .problem-inner {
    flex-direction: column;
    gap: 32px;
  }
  .problem-divider { display: none; }
  .how {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 32px;
  }
  .closing { padding: 80px 32px; }
  .footer { padding: 32px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .nav { padding: 16px 24px; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .eyebrow-tag, .report-status { display: none; }
}