/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #faf8f3;
  --bg-alt: #f0ece4;
  --bg-dark: #1a1a1a;
  --fg: #1a1a1a;
  --fg-muted: #6b6b6b;
  --fg-light: #faf8f3;
  --accent: #c9952a;
  --accent-light: #e8c97a;
  --border: rgba(26, 26, 26, 0.12);
  --green: #1c3d2e;
  --radius: 4px;
}

html { font-size: 16px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Nav ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 243, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  padding: 140px 32px 100px;
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ─── Orbit Visual ─────────────────────────────────────────── */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.orbit-visual {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
}

.orbit-ring-1 { width: 260px; height: 260px; }
.orbit-ring-2 { width: 320px; height: 320px; border-color: rgba(201, 149, 42, 0.2); }
.orbit-ring-3 { width: 380px; height: 380px; border-color: rgba(201, 149, 42, 0.1); }

.orbit-core {
  position: relative;
  z-index: 2;
}

.orbit-core svg { width: 80px; height: 80px; }

.orbit-label {
  position: absolute;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  font-weight: 500;
  white-space: nowrap;
}

.ol-top { top: 18px; left: 50%; transform: translateX(-50%); }
.ol-right { right: 28px; top: 50%; transform: translateY(-50%); }
.ol-bottom { bottom: 18px; left: 50%; transform: translateX(-50%); }
.ol-left { left: 28px; top: 50%; transform: translateY(-50%); }

/* ─── Section Shared ────────────────────────────────────────── */
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 14px;
}

.section-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 48px;
}

/* ─── Tracks ────────────────────────────────────────────────── */
.tracks {
  padding: 100px 32px;
  background: var(--bg-alt);
}

.tracks-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.track {
  background: var(--bg);
  padding: 36px 32px;
  border: 1px solid var(--border);
}

.track-icon {
  width: 40px;
  height: 40px;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.track h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

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

/* ─── Different ────────────────────────────────────────────── */
.different {
  padding: 100px 32px;
}

.different-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.diff-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.diff-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.diff-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--fg);
  line-height: 1.5;
}

.diff-check { flex-shrink: 0; margin-top: 1px; }

.quote-block {
  background: var(--green);
  color: var(--fg-light);
  padding: 48px;
  border-radius: var(--radius);
  margin-top: 60px;
}

.quote-text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.quote-context {
  font-size: 0.85rem;
  opacity: 0.6;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ─── Formats ───────────────────────────────────────────────── */
.formats {
  padding: 100px 32px;
  background: var(--bg-alt);
}

.formats-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.format {
  background: var(--bg);
  padding: 40px 36px;
  border: 1px solid var(--border);
}

.format-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 20px;
}

.format h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.format p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.format-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent);
  font-weight: 500;
}

/* ─── Closing ──────────────────────────────────────────────── */
.closing {
  padding: 120px 32px;
  text-align: center;
}

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

.closing-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.closing-cta {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: var(--green);
  line-height: 1.6;
}

/* ─── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  color: var(--fg-light);
  padding: 80px 32px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(250,248,243,0.5);
  line-height: 1.7;
  max-width: 320px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-col p {
  font-size: 0.82rem;
  color: rgba(250,248,243,0.55);
  margin-bottom: 10px;
  cursor: default;
}

.footer-col-head {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250,248,243,0.35);
  margin-bottom: 16px !important;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(250,248,243,0.3);
  text-align: center;
  letter-spacing: 0.03em;
}

/* ─── Value Props ───────────────────────────────────────────── */
.value-props {
  padding: 100px 32px;
  background: var(--bg-alt);
}

.value-props-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.prop {
  background: var(--bg);
  padding: 40px 36px;
  border: 1px solid var(--border);
}

.prop-icon {
  width: 40px;
  height: 40px;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.prop h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

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

/* ─── Social Proof ───────────────────────────────────────────── */
.social-proof {
  padding: 100px 32px;
}

.social-proof-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.proof-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 36px 32px;
  border-radius: var(--radius);
}

.proof-tag {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 6px;
}

.proof-size {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.proof-pain {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.proof-result {
  background: var(--bg-alt);
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
}

.result-num {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.result-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ─── Form Section ───────────────────────────────────────────── */
.form-section {
  padding: 100px 32px;
  background: var(--bg-alt);
}

.form-inner {
  max-width: 680px;
  margin: 0 auto;
}

.form-intro {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  margin-top: -32px;
}

.preinscription-form {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 48px;
  border-radius: var(--radius);
}

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

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.form-field label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.field-label-block {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field select {
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--fg);
  border-radius: var(--radius);
  transition: border-color 0.15s;
  -webkit-appearance: none;
  appearance: none;
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--accent);
}

.form-field input::placeholder {
  color: #b0b0a8;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--fg);
  cursor: pointer;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.15s, background 0.15s;
  user-select: none;
}

.checkbox-label:hover {
  border-color: var(--accent);
  background: var(--bg-alt);
}

.checkbox-label input[type="checkbox"] {
  accent-color: var(--green);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--fg);
  cursor: pointer;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.15s;
  user-select: none;
}

.radio-label:hover {
  border-color: var(--accent);
}

.radio-label input[type="radio"] {
  accent-color: var(--green);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.form-message {
  font-size: 0.85rem;
  margin-bottom: 16px;
  min-height: 20px;
}

.preinscription-form button[type="submit"] {
  width: 100%;
  padding: 16px;
  background: var(--green);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s, opacity 0.15s;
  letter-spacing: 0.01em;
}

.preinscription-form button[type="submit"]:hover {
  background: #152e22;
}

.preinscription-form button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-align: center;
  margin-top: 16px;
}

.form-success {
  background: var(--bg);
  border: 1px solid var(--green);
  padding: 60px 48px;
  text-align: center;
  border-radius: var(--radius);
}

.success-icon {
  margin-bottom: 20px;
}

.form-success h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.form-success p {
  font-size: 0.95rem;
  color: var(--fg-muted);
}

/* ─── Closing CTA ───────────────────────────────────────────── */
.cta-scroll {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s;
  letter-spacing: 0.01em;
}

.cta-scroll:hover {
  background: #152e22;
}

/* ─── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner,
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .props-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .orbit-visual {
    width: 280px;
    height: 280px;
  }

  .orbit-ring-1 { width: 190px; height: 190px; }
  .orbit-ring-2 { width: 240px; height: 240px; }
  .orbit-ring-3 { width: 280px; height: 280px; }
}

@media (max-width: 600px) {
  .hero { padding: 120px 20px 80px; }
  .value-props, .social-proof, .form-section { padding: 72px 20px; }
  .closing { padding: 80px 20px; }

  .form-row { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: repeat(2, 1fr); }
  .preinscription-form { padding: 32px 24px; }

  .hero-stats { gap: 20px; }
  .footer-links { grid-template-columns: 1fr; gap: 28px; }
}