:root {
  --bg: #080f1a;
  --surface: #0c1a2e;
  --surface-2: #111e33;
  --accent: #f5a623;
  --accent-dim: rgba(245, 166, 35, 0.15);
  --text: #e8e4d9;
  --text-muted: #8a9bbf;
  --border: rgba(138, 155, 191, 0.12);
  --success: #4ade80;
  --warn: #f59e0b;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* NAV */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(8, 15, 26, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.nav-logo .accent { color: var(--accent); }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* HERO */
.hero {
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-shape {
  position: absolute;
  top: -120px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-left { max-width: 520px; }
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}
.hero-stats {
  display: flex;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 100px;
  line-height: 1.3;
}

/* DASHBOARD MOCKUP */
.dashboard-mockup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  font-size: 13px;
}
.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.dash-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.dash-badge {
  background: var(--accent-dim);
  color: var(--accent);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}
.dash-section { margin-bottom: 18px; }
.dash-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.deadline-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.deadline-date {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  min-width: 52px;
}
.deadline-title { color: var(--text); font-weight: 500; font-size: 13px; }
.deadline-countdown { color: var(--text-muted); font-size: 12px; margin-top: 2px; }

.form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.form-row:last-child { border-bottom: none; }
.form-name { color: var(--text); font-size: 13px; }
.form-status { font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 12px; }
.form-status.complete { background: rgba(74,222,128,0.15); color: var(--success); }
.form-status.progress { background: rgba(245,166,35,0.15); color: var(--accent); }
.form-status.pending { background: rgba(138,155,191,0.1); color: var(--text-muted); }

.doc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}
.doc-icon {
  font-size: 9px;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 3px 5px;
  border-radius: 4px;
  min-width: 44px;
  text-align: center;
}
.doc-name { color: var(--text); font-size: 12px; flex: 1; }
.doc-check { color: var(--success); font-size: 14px; }
.doc-warn { color: var(--warn); font-size: 14px; font-weight: 700; }

/* PROOF */
.proof {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 24px;
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 48px;
  align-items: center;
}
.proof-item { }
.proof-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 10px;
}
.proof-attr { font-size: 12px; color: var(--text-muted); }
.proof-big {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.proof-label { font-size: 14px; color: var(--text-muted); line-height: 1.4; }
.proof-divider { width: 1px; height: 80px; background: var(--border); }

/* FEATURES */
.features { padding: 100px 24px; max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: rgba(245,166,35,0.3);
  transform: translateY(-2px);
}
.feature-icon {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* FORMS SECTION */
.forms-section { background: var(--surface); border-top: 1px solid var(--border); padding: 100px 24px; }
.forms-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.forms-desc { color: var(--text-muted); font-size: 16px; line-height: 1.7; margin: 20px 0 32px; }
.form-list-detailed { display: flex; flex-direction: column; gap: 12px; }
.form-detail { display: flex; align-items: baseline; gap: 16px; }
.form-code {
  font-size: 12px;
  font-weight: 700;
  font-family: 'DM Mono', monospace;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 2px 8px;
  border-radius: 6px;
  min-width: 52px;
  text-align: center;
}
.form-desc { font-size: 14px; color: var(--text-muted); }

.form-preview-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.fpc-header {
  background: var(--surface);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.fpc-label { font-size: 13px; font-weight: 600; color: var(--text); }
.fpc-status { font-size: 12px; font-weight: 600; color: var(--success); }
.fpc-body { padding: 24px; }
.fpc-field { margin-bottom: 20px; }
.fpc-field label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 4px; display: block; }
.fpc-val { font-size: 20px; font-weight: 600; color: var(--text); font-family: var(--font-display); }
.fpc-warn {
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
}
.warn-icon {
  width: 20px; height: 20px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.fpc-cta { font-size: 13px; color: var(--accent); font-weight: 600; margin-top: 14px; cursor: pointer; }

/* SECURITY */
.security-section { padding: 100px 24px; max-width: 1100px; margin: 0 auto; }
.security-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.security-visual { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.shield-icon { opacity: 0.9; }
.security-badge {
  background: var(--accent-dim);
  border: 1px solid rgba(245,166,35,0.25);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
}
.security-desc { color: var(--text-muted); font-size: 16px; line-height: 1.7; margin: 20px 0 32px; }
.security-specs { display: flex; flex-direction: column; gap: 16px; }
.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.spec-label { color: var(--text-muted); font-weight: 500; }
.spec-val { color: var(--text); font-weight: 500; text-align: right; }

/* CLOSING */
.closing { padding: 100px 24px; }
.closing-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.closing-rule { width: 80px; height: 2px; background: var(--accent); margin: 0 auto 48px; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.closing-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 60px;
}
.closing-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--border);
}
.cs-item { display: flex; flex-direction: column; align-items: center; }
.cs-val {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.cs-desc { font-size: 13px; color: var(--text-muted); max-width: 160px; text-align: center; line-height: 1.4; }

/* FOOTER */
.footer { background: var(--surface); border-top: 1px solid var(--border); padding: 60px 24px 32px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 48px; }
.footer-logo { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--text); margin-bottom: 12px; display: block; }
.footer-logo .accent { color: var(--accent); }
.footer-tagline { font-size: 14px; color: var(--text-muted); max-width: 280px; }
.footer-links { display: flex; gap: 60px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; }
.footer-bottom span { font-size: 12px; color: var(--text-muted); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .proof-inner { grid-template-columns: 1fr; gap: 32px; }
  .proof-divider { width: 100%; height: 1px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .forms-inner { grid-template-columns: 1fr; }
  .security-inner { grid-template-columns: 1fr; }
  .closing-stats { flex-direction: column; gap: 40px; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .nav-links { display: none; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-links { gap: 32px; }
}