/* ============================================================
   JUSTICE CODE AI
   Product-launch SaaS · Indigo + Coral · Light-primary
   ============================================================ */

:root {
  --bg: #FAFAFB;
  --bg-white: #FFFFFF;
  --bg-soft: #F3F4F6;
  --bg-dark: #0F172A;
  --bg-dark-2: #1E293B;

  --primary: #4F46E5;
  --primary-hover: #4338CA;
  --primary-soft: #EEF2FF;
  --primary-glow: rgba(79, 70, 229, 0.28);

  --accent: #F97316;
  --accent-hover: #EA580C;
  --accent-soft: #FFF7ED;

  --ink: #0F172A;
  --ink-soft: #334155;
  --ink-inverse: #F1F5F9;
  --muted: #64748B;
  --muted-inverse: #94A3B8;
  --line: #E2E8F0;
  --line-strong: #CBD5E1;
  --line-dark: #1E293B;

  --grad-primary: linear-gradient(135deg, #4F46E5 0%, #7C3AED 60%, #EC4899 100%);
  --grad-warm: linear-gradient(135deg, #F97316 0%, #FB7185 100%);
  --grad-hero: radial-gradient(ellipse 60% 45% at 15% 20%, rgba(79, 70, 229, 0.14) 0%, transparent 65%),
               radial-gradient(ellipse 55% 45% at 90% 80%, rgba(249, 115, 22, 0.12) 0%, transparent 60%);

  --font-display: "Bricolage Grotesque", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  --max: 1240px;
  --pad-x: clamp(20px, 3.5vw, 48px);
  --section-pad: clamp(72px, 10vw, 132px);

  --transition: 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius: 12px;
  --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--bg); }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }
strong { font-weight: 600; color: var(--ink); }

::selection { background: var(--primary); color: white; }

/* ============ TYPOGRAPHY ============ */
.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 18ch;
}

.h-lg {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 22ch;
}

.h-md {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 26ch;
}

.h-inverse { color: white; }

.hero-lede, .lede {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
  font-weight: 400;
}
.lede-inverse { color: var(--muted-inverse); }

.grad-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.grad-text-alt {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
  padding: 6px 12px;
  background: var(--primary-soft);
  border-radius: 100px;
}
.eyebrow-inverse { background: rgba(255,255,255,0.1); color: white; }

/* ============ LAYOUT ============ */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.section-head { margin-bottom: clamp(40px, 5vw, 72px); max-width: 900px; }
.section-head .lede { margin-top: 20px; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 251, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 0.5px solid var(--line);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-mark { width: 30px; height: 30px; border-radius: 6px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.brand-accent { color: var(--accent); }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.primary-nav a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.primary-nav a:hover {
  color: var(--primary);
  background: var(--primary-soft);
}

.header-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.nav-toggle span {
  display: block; width: 20px; height: 1.5px;
  background: var(--ink); transition: var(--transition);
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: white;
  background: var(--primary);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 1px 2px rgba(79, 70, 229, 0.2);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--primary-glow);
}
.btn-primary svg { transition: transform var(--transition); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-full { width: 100%; padding: 14px 24px; font-size: 15px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  transition: all var(--transition);
}
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-soft); }

/* ============ HERO ============ */
.hero {
  padding-top: clamp(48px, 6vw, 88px);
  padding-bottom: clamp(48px, 6vw, 96px);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}
.hero-orb-1 {
  top: -10%; left: -5%;
  width: 45%; height: 60%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.35) 0%, transparent 70%);
}
.hero-orb-2 {
  bottom: -10%; right: -5%;
  width: 40%; height: 60%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.28) 0%, transparent 70%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}
.hero-content { max-width: 620px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 10px;
  border: 0.5px solid var(--line-strong);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.hero-lede { margin-top: 24px; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 0.5px solid var(--line);
}
.trust-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============ HERO MOCKUP ============ */
.hero-mockup {
  position: relative;
}
.mockup-window {
  background: var(--bg-white);
  border: 0.5px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 24px 48px -12px rgba(15, 23, 42, 0.14),
    0 8px 24px -4px rgba(79, 70, 229, 0.06);
  transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.mockup-window:hover { transform: perspective(1200px) rotateY(-1deg) rotateX(1deg); }

.mockup-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--bg-soft);
  border-bottom: 0.5px solid var(--line);
}
.chrome-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--line-strong);
}
.chrome-dot:nth-child(1) { background: #FB7185; }
.chrome-dot:nth-child(2) { background: #FCD34D; }
.chrome-dot:nth-child(3) { background: #86EFAC; }
.chrome-url {
  margin-left: 12px;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--muted);
}

.mockup-body {
  display: grid;
  grid-template-columns: 128px 1fr 130px;
  min-height: 340px;
}

.mockup-sidebar {
  border-right: 0.5px solid var(--line);
  padding: 14px 10px;
  background: #FCFCFD;
}
.sidebar-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 8px;
  margin-bottom: 6px;
}
.doc-list { display: flex; flex-direction: column; gap: 2px; }
.doc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  font-size: 12px;
  color: var(--ink-soft);
  border-radius: 5px;
  cursor: pointer;
  transition: background var(--transition);
}
.doc-item.active {
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 600;
}
.doc-new {
  margin-top: 12px;
  padding: 6px 8px;
  font-size: 11.5px;
  color: var(--muted);
  text-align: left;
  width: 100%;
  border-radius: 5px;
}

.mockup-chat {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  background: white;
}
.chat-msg {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.chat-msg-user { justify-content: flex-end; }
.msg-avatar {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: var(--grad-primary);
  color: white;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.msg-body {
  background: #F1F5F9;
  padding: 8px 12px;
  border-radius: 10px;
  max-width: 80%;
}
.chat-msg-user .msg-body {
  background: var(--primary);
  color: white;
}
.msg-body p {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 3px;
}
.msg-body p:last-child { margin-bottom: 0; }
.chat-msg-user .msg-body p { color: white; }
.msg-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  background: var(--accent-soft);
  color: var(--accent-hover);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  margin-top: 4px;
}
.dots { display: inline-flex; gap: 2px; }
.dots span {
  width: 3px; height: 3px;
  background: currentColor;
  border-radius: 50%;
  animation: dot-bounce 1.4s ease-in-out infinite;
}
.dots span:nth-child(2) { animation-delay: 0.2s; }
.dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dot-bounce {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-2px); }
}

.mockup-preview {
  border-left: 0.5px solid var(--line);
  padding: 14px 10px;
  background: #FCFCFD;
}
.preview-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 4px;
  margin-bottom: 10px;
}
.preview-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: white;
  border: 0.5px solid var(--line);
  border-radius: 6px;
  margin-bottom: 12px;
}
.pl {
  height: 4px;
  background: var(--line);
  border-radius: 100px;
}
.pl-s { width: 40%; }
.pl-m { width: 65%; }
.pl-l { width: 85%; }
.pl-h { width: 55%; height: 5px; background: var(--ink-soft); }
.pl-highlight { background: var(--primary); }

.preview-clauses {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.clause-chip {
  font-size: 9.5px;
  padding: 4px 7px;
  background: white;
  border: 0.5px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  font-weight: 500;
}
.clause-chip.active {
  background: var(--primary-soft);
  color: var(--primary);
  border-color: var(--primary);
  font-weight: 600;
}

/* ============ SECTION: WHY ============ */
.section-why {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
  background: var(--bg);
  border-top: 0.5px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: clamp(56px, 7vw, 88px);
}
.stat-card {
  background: var(--bg-white);
  border: 0.5px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0.15);
  transform-origin: left;
  transition: transform var(--transition);
}
.stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px -12px var(--primary-glow);
}
.stat-card:hover::before { transform: scaleX(1); }

.stat-value {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-unit {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 14px;
  font-weight: 500;
}
.stat-source {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.5;
  padding-top: 12px;
  border-top: 0.5px solid var(--line);
}

.argument {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.argument h3 { margin: 0 auto 24px; }
.argument p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}
.argument-emphasis {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px) !important;
  line-height: 1.35;
  color: var(--ink);
  margin-top: 32px !important;
  padding: 28px 32px;
  background: var(--bg-white);
  border: 0.5px solid var(--line);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius);
  text-align: left;
}
.argument-emphasis em {
  font-style: italic;
  color: var(--primary);
}

/* ============ SECTION: PRODUCT ============ */
.section-product {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
  background: var(--bg-white);
  border-top: 0.5px solid var(--line);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.feature-card {
  padding: clamp(28px, 3.5vw, 40px);
  background: var(--bg);
  border: 0.5px solid var(--line);
  border-radius: var(--radius);
  transition: transform var(--transition), border-color var(--transition);
}
.feature-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 20px;
}
.feature-icon-1 { background: var(--grad-primary); }
.feature-icon-2 { background: var(--grad-warm); }
.feature-icon-3 { background: linear-gradient(135deg, #06B6D4 0%, #3B82F6 100%); }
.feature-icon-4 { background: linear-gradient(135deg, #10B981 0%, #059669 100%); }
.feature-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ============ SECTION: HOW ============ */
.section-how {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
  background: var(--bg);
  border-top: 0.5px solid var(--line);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.step {
  padding: clamp(28px, 3.5vw, 40px);
  background: var(--bg-white);
  border: 0.5px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.step:hover { transform: translateY(-2px); border-color: var(--primary); }
.step-num {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
.step-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}
.step p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ============ SECTION: TEAM ============ */
.section-team {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
  background: var(--bg-white);
  border-top: 0.5px solid var(--line);
}
.team-inner { max-width: 800px; }
.team-copy .h-md { margin: 16px 0 24px; }
.team-copy p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.team-copy p a {
  color: var(--primary);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 1px;
  transition: border-color var(--transition);
}
.team-copy p a:hover { border-bottom-color: var(--primary); }
.team-cta { margin-top: 28px; }
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 2px;
}
.cta-link:hover { color: var(--primary-hover); }
.cta-link svg { transition: transform var(--transition); }
.cta-link:hover svg { transform: translateX(3px); }

/* ============ SECTION: WAITLIST ============ */
.section-waitlist {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
  background: var(--bg);
  border-top: 0.5px solid var(--line);
}
.waitlist-card {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
  position: relative;
  overflow: hidden;
}
.waitlist-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.25) 0%, transparent 60%);
  pointer-events: none;
}
.waitlist-card::after {
  content: '';
  position: absolute;
  bottom: -50%; left: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.16) 0%, transparent 60%);
  pointer-events: none;
}
.waitlist-copy { position: relative; z-index: 1; }
.waitlist-copy p { margin-top: 20px; }
.waitlist-form { position: relative; z-index: 1; }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted-inverse);
  margin-bottom: 6px;
}
.field label .opt {
  font-weight: 400;
  color: var(--muted);
  margin-left: 4px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: white;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  border-radius: 8px;
}
.field textarea { resize: vertical; min-height: 80px; font-family: var(--font-body); }
.field select {
  appearance: none;
  padding-right: 32px;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--primary);
  background: rgba(79, 70, 229, 0.08);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255, 255, 255, 0.4); }
.fine {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted-inverse);
}
.waitlist-success {
  margin-top: 16px;
  padding: 16px 20px;
  border: 1px solid var(--accent);
  background: rgba(249, 115, 22, 0.1);
  color: white;
  border-radius: 8px;
}
.waitlist-success strong {
  font-family: var(--font-display);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  color: white;
}
.waitlist-success p {
  font-size: 13.5px;
  color: var(--muted-inverse);
  margin: 0;
  line-height: 1.5;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--bg-dark);
  color: var(--muted-inverse);
  padding: clamp(40px, 5vw, 60px) 0 clamp(28px, 3vw, 40px);
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: white;
}
.footer-brand .brand-accent { color: var(--accent); }
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: var(--muted-inverse);
  text-align: center;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  font-size: 12px;
  color: var(--muted-inverse);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .primary-nav a { padding: 8px 10px; font-size: 13px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-mockup { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .waitlist-card { grid-template-columns: 1fr; }
  .primary-nav a:not(:first-child) { display: none; }
  .primary-nav a:first-child { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .footer-brand, .footer-links { justify-content: center; }
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr; }
  .primary-nav { display: none; }
  .header-actions { display: none; }
  .nav-toggle { display: flex; }
  .argument-emphasis { padding: 20px 24px; }
}
