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

:root {
  --bg: #09090f;
  --bg-1: #0e0e1a;
  --bg-2: #13131f;
  --surface: #1a1a2e;
  --surface-2: #1f1f38;
  --border: rgba(255,255,255,0.08);
  --border-bright: rgba(255,255,255,0.14);
  --cyan: #00e5c0;
  --cyan-dim: rgba(0,229,192,0.12);
  --cyan-glow: rgba(0,229,192,0.25);
  --cyan-text: #00e5c0;
  --white: #ffffff;
  --muted: rgba(255,255,255,0.55);
  --muted-2: rgba(255,255,255,0.5);
  --text: rgba(255,255,255,0.88);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Figtree', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── GRID OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,192,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,192,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(9,9,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 18;
}

.nav-logo-icon {
  width: 28px; height: 28px;
  background: var(--cyan);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}

.nav-logo-icon svg { width: 16px; height: 16px; }

.nav-logo span { color: var(--cyan); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--cyan);
  color: var(--bg);
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 2rem 60px;
  text-align: center;
  overflow: hidden;
}

/* Radial glow behind hero */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(0,229,192,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,229,192,0.08);
  border: 1px solid rgba(0,229,192,0.25);
  color: var(--cyan-text);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.5s ease both;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 72;
  margin-bottom: 1.25rem;
  max-width: 800px;
  animation: fadeUp 0.55s 0.08s ease both;
}

.hero h1 .accent {
  color: var(--cyan);
  position: relative;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 540px;
  line-height: 1.7;
  animation: fadeUp 0.55s 0.16s ease both;
}

/* ── PROMPT INPUT BOX ── */
.prompt-box {
  width: 100%;
  max-width: 700px;
  animation: fadeUp 0.6s 0.22s ease both;
  margin-bottom: 1.25rem;
}

.prompt-input-wrap {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--border-bright);
  border-radius: 14px;
  padding: 1rem 1.25rem 0.75rem;
  box-shadow: 0 0 0 1px rgba(0,229,192,0.06), 0 8px 40px rgba(0,0,0,0.4);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.prompt-input-wrap:focus-within {
  border-color: rgba(0,229,192,0.4);
  box-shadow: 0 0 0 3px rgba(0,229,192,0.08), 0 8px 40px rgba(0,0,0,0.4);
}

.prompt-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Figtree', sans-serif;
  font-size: 1rem;
  color: var(--white);
  resize: none;
  min-height: 52px;
  line-height: 1.6;
}

.prompt-input::placeholder { color: rgba(255,255,255,0.28); }

.prompt-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.6rem;
}

.prompt-actions-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.prompt-upload-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.prompt-upload-btn:hover { background: rgba(255,255,255,0.1); color: var(--white); }

.prompt-send-btn {
  width: 38px; height: 38px;
  background: var(--cyan);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.prompt-send-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.prompt-send-btn svg { width: 16px; height: 16px; }

.prompt-hint {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: var(--muted-2);
  text-align: left;
  padding: 0 0.25rem;
}

/* Cycling example prompts */
.example-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
  animation: fadeUp 0.6s 0.3s ease both;
}

.example-chip {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.example-chip:hover {
  background: var(--cyan-dim);
  border-color: rgba(0,229,192,0.3);
  color: var(--cyan-text);
}

.hero-micro {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.78rem;
  color: var(--muted-2);
  animation: fadeUp 0.6s 0.38s ease both;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-micro span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-micro span::before {
  content: '✓';
  color: var(--cyan);
  font-size: 0.7rem;
}

/* ── SECTION SHARED ── */
section {
  padding: 90px 2rem;
  position: relative;
  z-index: 1;
}

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

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  font-family: 'Figtree', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cyan-text);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.03em;
  font-variation-settings: 'opsz' 48;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

/* ── VALUE CARDS ── */
#why { background: var(--bg-1); }

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.value-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,229,192,0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.value-card:hover {
  border-color: rgba(0,229,192,0.2);
  transform: translateY(-2px);
}
.value-card:hover::before { opacity: 1; }

.value-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--cyan-dim);
  border: 1px solid rgba(0,229,192,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

.value-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 600;
  font-variation-settings: "opsz" 16;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── HOW IT WORKS ── */
#how { background: var(--bg); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(16.66% + 4px);
  right: calc(16.66% + 4px);
  height: 1px;
  background: linear-gradient(to right, var(--cyan), rgba(0,229,192,0.2));
  z-index: 0;
}

.step { position: relative; z-index: 1; }

.step-num {
  width: 44px; height: 44px;
  background: var(--bg-2);
  border: 1px solid rgba(0,229,192,0.4);
  color: var(--cyan);
  border-radius: 50%;
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 16px rgba(0,229,192,0.15);
}

.step h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  font-variation-settings: "opsz" 16;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

.step-note {
  margin-top: 1rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-left: 2px solid var(--cyan);
  border-radius: 0 8px 8px 0;
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  color: rgba(0,229,192,0.7);
  font-style: italic;
}

.step-features {
  margin-top: 0.75rem;
  list-style: none;
}
.step-features li {
  font-size: 0.855rem;
  color: var(--muted);
  padding: 0.25rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.step-features li::before {
  content: '→';
  color: var(--cyan);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── AI OUTPUT PREVIEW ── */
.output-preview {
  margin-top: 3.5rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.output-preview-header {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.output-dots { display: flex; gap: 6px; }
.output-dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

.output-title {
  font-size: 0.8rem;
  color: var(--muted);
}

.output-badge {
  margin-left: auto;
  background: var(--cyan-dim);
  border: 1px solid rgba(0,229,192,0.25);
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.output-body {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
}

.out-field {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
}

.out-field .out-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted-2);
  margin-bottom: 0.25rem;
}

.out-field .out-val {
  font-size: 0.85rem;
  color: var(--text);
}

.out-field.full { grid-column: span 3; }
.out-field.half { grid-column: span 1; }

.out-field.conditional {
  grid-column: span 3;
  border-color: rgba(0,229,192,0.2);
  background: rgba(0,229,192,0.04);
}

.out-field.conditional .out-label { color: var(--cyan); }

.cond-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.68rem;
  font-weight: 600;
  background: var(--cyan-dim);
  color: var(--cyan);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  margin-bottom: 0.5rem;
}

/* ── BEFORE / AFTER ── */
#before-after { background: var(--bg-1); }

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.ba-col {
  background: var(--bg-2);
  border-radius: 14px;
  padding: 2rem;
  border: 1px solid var(--border);
}

.ba-col.after { border-color: rgba(0,229,192,0.2); }

.ba-col-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ba-col.before .ba-col-label { color: rgba(255,255,255,0.3); }
.ba-col.after .ba-col-label { color: var(--cyan-text); }

.ba-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.ba-item:last-child { border-bottom: none; }
.ba-col.before .ba-item { color: rgba(255,255,255,0.35); }
.ba-col.after .ba-item { color: var(--text); }

.ba-icon { flex-shrink: 0; margin-top: 1px; display: flex; align-items: center; color: inherit; opacity: 0.7; }

/* ── SECURITY ── */
#security { background: var(--bg); }

.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.trust-items {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.trust-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.25rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s;
}
.trust-item:hover { border-color: rgba(0,229,192,0.2); }

.trust-item-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--cyan-dim);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.trust-item h4 {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.trust-item p {
  font-size: 0.82rem;
  color: var(--muted);
}

.security-visual {
  background: var(--bg-2);
  border: 1px solid rgba(0,229,192,0.2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.security-visual::before {
  content: '';
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 300px;
  background: radial-gradient(ellipse at center, rgba(0,229,192,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.shield-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--cyan);
}

.security-visual h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.security-visual p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.included-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.included-badge {
  background: var(--cyan-dim);
  border: 1px solid rgba(0,229,192,0.2);
  color: var(--cyan-text);
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ── PRICING ── */
#pricing { background: var(--bg-1); }

.pricing-card {
  max-width: 520px;
  margin: 2.5rem auto 0;
  background: var(--bg-2);
  border: 1px solid rgba(0,229,192,0.25);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0,229,192,0.06);
}

.pricing-header {
  padding: 2.25rem 2.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.pricing-header::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%; transform: translateX(-50%);
  width: 300px; height: 200px;
  background: radial-gradient(ellipse, rgba(0,229,192,0.1), transparent 70%);
  pointer-events: none;
}

.pricing-header .price-plan {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}

.price-big {
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  font-weight: 700;
  font-variation-settings: 'opsz' 72;
  line-height: 1;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.price-big .price-sym { font-size: 1.75rem; vertical-align: top; padding-top: 0.6rem; display: inline-block; color: var(--cyan); }
.price-big .price-period { font-size: 1.25rem; color: var(--muted); }

.price-subtitle {
  color: var(--muted);
  font-size: 0.875rem;
}

.pricing-body {
  padding: 2rem 2.5rem;
}

.pricing-include {
  font-weight: 600;
  font-size: 0.72rem;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.pricing-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.pricing-list li:last-child { border-bottom: none; }

.pricing-list li::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.no-charge-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.no-charge-block .nc-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  white-space: nowrap;
}

.nc-items { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.nc-tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.78rem;
  padding: 0.25rem 0.65rem;
  color: var(--muted);
}

.pricing-cta {
  display: block;
  text-align: center;
  background: var(--cyan);
  color: var(--bg);
  padding: 0.95rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.975rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.pricing-cta:hover { opacity: 0.88; transform: translateY(-1px); }

.pricing-footnote {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted-2);
  margin-top: 1rem;
}

/* ── WHO ── */
#who { background: var(--bg); }

.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.who-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.who-card:hover { border-color: rgba(0,229,192,0.25); transform: translateY(-2px); }

.who-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: var(--cyan);
}

.who-card p {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}

/* ── FAQ ── */
#faq { background: var(--bg-1); }

.faq-list {
  max-width: 700px;
  margin: 2.5rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.4rem 0;
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 600;
  font-variation-settings: 'opsz' 16;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.faq-a {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── FINAL CTA ── */
#final-cta {
  background: var(--bg);
  text-align: center;
  padding: 100px 2rem;
  position: relative;
  overflow: hidden;
}

#final-cta::before {
  content: '';
  position: absolute;
  bottom: -20%; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(0,229,192,0.08) 0%, transparent 70%);
  pointer-events: none;
}

#final-cta .eyebrow { margin-bottom: 1.25rem; }

#final-cta h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
  font-variation-settings: 'opsz' 72;
}

#final-cta h2 .accent { color: var(--cyan); }

#final-cta > .section-inner > p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.final-prompt {
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.final-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-cyan {
  background: var(--cyan);
  color: var(--bg);
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-cyan:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-ghost {
  border: 1px solid var(--border-bright);
  color: var(--muted);
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }

.final-micro {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--muted-2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.final-micro span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.final-micro span::before {
  content: '✓';
  color: var(--cyan);
}

/* ── FOOTER ── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted-2);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 0.5rem;
  text-align: center;
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
}
.footer-logo span { color: rgba(0,229,192,0.5); }

.footer-links a {
  color: var(--muted-2);
  text-decoration: none;
  margin: 0 0.75rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cyan); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ── RESPONSIVE ── */
/* ── TABLET ── */
@media (max-width: 900px) {
  .value-grid { grid-template-columns: 1fr 1fr; }
  .who-grid   { grid-template-columns: 1fr 1fr; }
  .security-grid { grid-template-columns: 1fr; gap: 2rem; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
}

/* ── MOBILE ── */
@media (max-width: 640px) {
  /* Nav */
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .nav-cta { font-size: 0.8rem; padding: 0.45rem 1rem; }

  /* Hero */
  .hero {
    padding: 48px 1.25rem 40px;
    min-height: auto;
    text-align: center;
  }
  .hero h1 { font-size: 2rem; letter-spacing: -0.03em; }
  .hero-sub { font-size: 0.95rem; margin-left: auto; margin-right: auto; }
  .hero-badge { font-size: 0.72rem; }
  .hero-micro { gap: 0.75rem; font-size: 0.72rem; }
  .example-prompts { gap: 0.4rem; }
  .example-chip { font-size: 0.74rem; padding: 0.3rem 0.75rem; }

  /* Prompt box */
  .prompt-input { font-size: 0.9rem; }
  .prompt-send-btn { width: 34px; height: 34px; }

  /* Sections */
  section { padding: 60px 1.25rem; }
  .section-title { font-size: 1.6rem; }
  .section-sub { font-size: 0.925rem; }

  /* Grids → single column */
  .value-grid { grid-template-columns: 1fr; gap: 1rem; }
  .steps { grid-template-columns: 1fr; gap: 2rem; }
  .ba-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .security-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Output preview */
  .output-body { grid-template-columns: 1fr 1fr; gap: 0.5rem; padding: 1rem; }
  .out-field.full, .out-field.conditional { grid-column: span 2; }
  .out-field.half { grid-column: span 1; }
  .output-preview-header { padding: 0.75rem 1rem; flex-wrap: wrap; gap: 0.5rem; }
  .output-title { font-size: 0.72rem; }

  /* Pricing */
  .pricing-card { border-radius: 14px; }
  .pricing-header { padding: 1.75rem 1.5rem; }
  .pricing-body { padding: 1.5rem; }
  .price-big { font-size: 3rem; }

  /* Who cards */
  .who-card { padding: 1.1rem 0.75rem; }
  .who-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
  .who-card p { font-size: 0.8rem; }

  /* Security visual */
  .security-visual { padding: 1.75rem 1.25rem; }

  /* Final CTA */
  #final-cta { padding: 70px 1.25rem; }
  #final-cta h2 { font-size: 1.9rem; }
  .final-actions { flex-direction: column; align-items: center; }
  .btn-cyan, .btn-ghost { width: 100%; max-width: 320px; text-align: center; }
  .final-micro { gap: 0.75rem; font-size: 0.72rem; }

  /* Footer */
  .footer-inner { flex-direction: column; text-align: center; gap: 0.75rem; }

  /* Steps */
  .step-num { margin-bottom: 1rem; }

  /* BA cols */
  .ba-col { padding: 1.5rem 1.25rem; }
  .ba-item { font-size: 0.85rem; }
}

/* ── SMALL PHONES ── */
@media (max-width: 380px) {
  .hero h1 { font-size: 1.75rem; }
  .who-grid { grid-template-columns: 1fr; }
  .output-body { grid-template-columns: 1fr; }
  .out-field.full, .out-field.conditional, .out-field.half { grid-column: span 1; }
}

/* ── PREVIOUSLY INLINE STYLES — moved to class-based rules ── */

/* Hidden file input (triggered via its <label>) */
.hidden-file-input {
  display: none;
}

/* Hero micro trust bar spacing */
.hero-micro--push {
  margin-top: 1.5rem;
}

/* Security section intro paragraph */
.security-intro-p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

/* Centered section-inner (pricing, faq) */
.section-inner--center {
  text-align: center;
}

/* Centered section-sub (pricing) */
.section-sub--center {
  margin: 0 auto;
}

/* FAQ list text alignment */
.faq-list {
  text-align: left;
}

/* ── MODAL ── */
.fs-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5,5,10,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  display: flex;
}

.fs-modal-overlay--hidden {
  display: none;
}

.fs-modal-card {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  background: #13131f;
  border: 1px solid rgba(0,229,192,0.2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(0,229,192,0.08), 0 24px 60px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  animation: slideUp 0.25s ease;
}

#fs-modal-close {
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  z-index: 2;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
  line-height: 1;
}

#fs-modal-close:hover {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
}

.fs-modal-header {
  padding: 1.75rem 2rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.fs-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0,229,192,0.08);
  border: 1px solid rgba(0,229,192,0.2);
  color: #00e5c0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.875rem;
}

.fs-modal-header h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
  font-variation-settings: 'opsz' 24;
}

.fs-modal-header p {
  font-family: 'Figtree', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

#formsort-iframe {
  flex: 1;
  width: 100%;
  min-height: 400px;
  border: none;
  display: block;
}

.fs-modal-footer {
  padding: 0.75rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  font-family: 'Figtree', sans-serif;
  flex-shrink: 0;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

body.modal-open { overflow: hidden; }
