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

    :root {
      --bg:           #1A1A1A;
      --surface:      #292929;
      --surface2:     #333333;
      --border:       #3D3D3D;
      --accent:       #FF6600;
      --accent-glow:  rgba(255, 102, 0, 0.25);
      --accent-dark:  #CC5200;
      --text:         #FFFFFF;
      --muted:        #CCCCCC;
      --green:        #3ddc84;
      --red:          #ff5c6c;
      --font:         'Inter', 'Segoe UI', system-ui, sans-serif;
      --radius:       12px;
      --radius-lg:    20px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font);
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* ─── Noise Texture Overlay ─────────────────────────────────────── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
    }

    /* ─── Navbar ─────────────────────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 5%;
      background: rgba(26, 26, 26, 0.88);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      font-size: 1.2rem;
      letter-spacing: -0.5px;
    }

    .logo-icon {
      width: 34px; height: 34px;
      background: var(--accent);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 17px;
      color: #fff;
    }

    .logo .logo-name { color: var(--text); }
    .logo .logo-name span { color: var(--accent); }

    .nav-badge {
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--accent);
      background: rgba(255, 102, 0, 0.12);
      border: 1px solid rgba(255, 102, 0, 0.35);
      padding: 4px 10px;
      border-radius: 999px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    /* ─── Hero ───────────────────────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 5% 80px;
      overflow: hidden;
    }

    .hero::after {
      content: '';
      position: absolute;
      top: 10%;
      left: 50%;
      transform: translateX(-50%);
      width: 700px; height: 500px;
      background: radial-gradient(ellipse, rgba(255, 102, 0, 0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: var(--accent);
      background: rgba(255, 102, 0, 0.1);
      border: 1px solid rgba(255, 102, 0, 0.3);
      padding: 6px 16px;
      border-radius: 999px;
      margin-bottom: 28px;
      position: relative; z-index: 1;
    }

    .hero-eyebrow::before { content: '♠'; }

    h1 {
      font-size: clamp(2.4rem, 6vw, 4.2rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -1.5px;
      max-width: 820px;
      margin-bottom: 22px;
      position: relative; z-index: 1;
    }

    h1 .highlight {
      background: linear-gradient(135deg, #FF6600 0%, #FF9933 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-sub {
      font-size: clamp(1rem, 2.2vw, 1.22rem);
      color: var(--muted);
      max-width: 600px;
      margin-bottom: 44px;
      position: relative; z-index: 1;
    }

    /* ─── Email Form ─────────────────────────────────────────────────── */
    .form-wrapper {
      width: 100%;
      max-width: 480px;
      position: relative; z-index: 1;
    }

    .form-row {
      display: flex;
      gap: 10px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 6px 6px 6px 18px;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .form-row:focus-within {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px var(--accent-glow);
    }

    .form-row input {
      flex: 1;
      background: transparent;
      border: none;
      outline: none;
      color: var(--text);
      font-size: 0.96rem;
      font-family: var(--font);
      min-width: 0;
    }

    .form-row input::placeholder { color: var(--muted); }

    .btn-primary {
      background: linear-gradient(135deg, #FF6600 0%, #e85c00 100%);
      color: #fff;
      font-weight: 700;
      font-size: 0.9rem;
      border: none;
      border-radius: 8px;
      padding: 12px 22px;
      cursor: pointer;
      white-space: nowrap;
      transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
      letter-spacing: 0.2px;
    }

    .btn-primary:hover {
      opacity: 0.92;
      transform: translateY(-1px);
      box-shadow: 0 6px 22px rgba(255, 102, 0, 0.45);
    }

    .btn-primary:active { transform: translateY(0); }

    .form-note {
      margin-top: 14px;
      font-size: 0.78rem;
      color: var(--muted);
    }

    .form-note span { color: var(--green); }

    /* ─── Stats Bar ──────────────────────────────────────────────────── */
    .stats-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
      margin-top: 64px;
      padding: 28px 40px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      max-width: 680px;
      position: relative; z-index: 1;
    }

    .stat { text-align: center; }

    .stat-num {
      display: block;
      font-size: 1.7rem;
      font-weight: 800;
      color: var(--accent);
      letter-spacing: -0.5px;
    }

    .stat-label {
      font-size: 0.76rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.8px;
      font-weight: 500;
    }

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

    /* ─── Features Section ───────────────────────────────────────────── */
    .features {
      padding: 100px 5%;
      max-width: 1100px;
      margin: 0 auto;
    }

    .section-label {
      text-align: center;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 14px;
    }

    .section-title {
      text-align: center;
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 800;
      letter-spacing: -0.8px;
      margin-bottom: 14px;
    }

    .section-sub {
      text-align: center;
      color: var(--muted);
      font-size: 1rem;
      max-width: 520px;
      margin: 0 auto 60px;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }

    .feature-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px 32px;
      position: relative;
      overflow: hidden;
      transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s;
    }

    .feature-card:hover {
      border-color: rgba(255, 102, 0, 0.45);
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      opacity: 0;
      transition: opacity 0.25s;
    }

    .feature-card:hover::before { opacity: 1; }

    .feature-icon {
      width: 52px; height: 52px;
      border-radius: var(--radius);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 22px;
    }

    .icon-orange { background: rgba(255, 102, 0, 0.14); }
    .icon-green  { background: rgba(61, 220, 132, 0.12); }
    .icon-red    { background: rgba(255, 92, 108, 0.12); }

    .feature-tag {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 999px;
      margin-bottom: 12px;
    }

    .tag-orange { background: rgba(255,102,0,0.12); color: var(--accent); border: 1px solid rgba(255,102,0,0.3); }
    .tag-green  { background: rgba(61,220,132,0.12); color: var(--green);  border: 1px solid rgba(61,220,132,0.25); }
    .tag-red    { background: rgba(255,92,108,0.12); color: var(--red);    border: 1px solid rgba(255,92,108,0.25); }

    .feature-card h3 {
      font-size: 1.18rem;
      font-weight: 700;
      letter-spacing: -0.3px;
      margin-bottom: 12px;
    }

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

    .feature-detail {
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .detail-row {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.83rem;
      color: var(--muted);
    }

    .detail-row::before {
      content: '✓';
      color: var(--green);
      font-weight: 700;
      flex-shrink: 0;
    }

    /* ─── How It Works ───────────────────────────────────────────────── */
    .how-it-works {
      padding: 80px 5%;
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .how-inner {
      max-width: 900px;
      margin: 0 auto;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 0;
      margin-top: 52px;
      position: relative;
    }

    .steps::before {
      content: '';
      position: absolute;
      top: 28px;
      left: 15%;
      right: 15%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
    }

    .step {
      text-align: center;
      padding: 0 20px;
      position: relative;
    }

    .step-num {
      width: 56px; height: 56px;
      border-radius: 50%;
      background: var(--bg);
      border: 2px solid var(--accent);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--accent);
      margin: 0 auto 20px;
      position: relative; z-index: 1;
    }

    .step h4 {
      font-size: 0.98rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

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

    /* ─── Social Proof ───────────────────────────────────────────────── */
    .social-proof {
      padding: 80px 5%;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .quote-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px 40px;
      position: relative;
    }

    .quote-card::before {
      content: '"';
      position: absolute;
      top: -10px; left: 30px;
      font-size: 5rem;
      color: var(--accent);
      font-family: Georgia, serif;
      line-height: 1;
    }

    .quote-text {
      font-size: 1.05rem;
      color: var(--text);
      line-height: 1.7;
      font-style: italic;
      margin-bottom: 20px;
    }

    .quote-author {
      font-size: 0.85rem;
      color: var(--muted);
    }

    .quote-author strong { color: var(--accent); }

    /* ─── Bottom CTA ─────────────────────────────────────────────────── */
    .bottom-cta {
      padding: 100px 5%;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .bottom-cta::before {
      content: '';
      position: absolute;
      bottom: -20%;
      left: 50%;
      transform: translateX(-50%);
      width: 600px; height: 400px;
      background: radial-gradient(ellipse, rgba(255, 102, 0, 0.09) 0%, transparent 70%);
      pointer-events: none;
    }

    .bottom-cta h2 {
      font-size: clamp(1.8rem, 4vw, 3rem);
      font-weight: 800;
      letter-spacing: -0.8px;
      margin-bottom: 16px;
      position: relative; z-index: 1;
    }

    .bottom-cta p {
      color: var(--muted);
      font-size: 1.05rem;
      max-width: 480px;
      margin: 0 auto 40px;
      position: relative; z-index: 1;
    }

    .bottom-cta .form-wrapper {
      margin: 0 auto;
    }

    /* ─── Footer ─────────────────────────────────────────────────────── */
    footer {
      border-top: 1px solid var(--border);
      padding: 32px 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 800;
      font-size: 0.95rem;
    }

    .footer-logo span { color: var(--accent); }

    footer p {
      color: var(--muted);
      font-size: 0.8rem;
    }

    .footer-links {
      display: flex;
      gap: 24px;
    }

    .footer-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.82rem;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--text); }

    /* ─── Suit pattern background elements ──────────────────────────── */
    .suit-bg {
      position: absolute;
      font-size: 18rem;
      opacity: 0.025;
      user-select: none;
      pointer-events: none;
      line-height: 1;
    }

    /* ─── Success state ──────────────────────────────────────────────── */
    .success-msg {
      display: none;
      align-items: center;
      gap: 8px;
      color: var(--green);
      font-weight: 600;
      font-size: 0.95rem;
      padding: 14px 18px;
      background: rgba(61, 220, 132, 0.08);
      border: 1px solid rgba(61, 220, 132, 0.25);
      border-radius: var(--radius);
    }

    /* ─── Responsive ─────────────────────────────────────────────────── */
    @media (max-width: 640px) {
      .form-row { flex-direction: column; padding: 10px; gap: 8px; }
      .btn-primary { width: 100%; padding: 14px; }
      .stats-bar { gap: 20px; padding: 20px 24px; }
      .stat-divider { display: none; }
      .steps::before { display: none; }
      footer { flex-direction: column; text-align: center; }
    }
/* ─── Landing Page Article Layout ─────────────────────────────── */
.article {
  max-width: 820px;
  margin: 0 auto;
  padding: 140px 5% 80px;
  position: relative;
  z-index: 1;
}

.article .eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 102, 0, 0.1);
  border: 1px solid rgba(255, 102, 0, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.article h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 22px;
  text-align: left;
  max-width: none;
}

.article h1 .highlight,
.article h2 .highlight {
  background: linear-gradient(135deg, #FF6600 0%, #FF9933 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.article .lede {
  font-size: 1.18rem;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.65;
}

.article h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 800;
  margin: 56px 0 18px;
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.article h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 30px 0 10px;
  color: var(--text);
}

.article p {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 1.02rem;
  line-height: 1.7;
}

.article strong { color: var(--text); }

.article ul {
  margin: 0 0 24px 22px;
  color: var(--muted);
}

.article li {
  padding: 4px 0;
  font-size: 1rem;
}

.article a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 102, 0, 0.35);
}

.article a:hover { border-bottom-color: var(--accent); }

.breadcrumbs {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
  border: none;
}

.breadcrumbs a:hover { color: var(--accent); }

.breadcrumbs span { margin: 0 8px; opacity: 0.5; }

.cta-inline {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 40px 0;
}

.cta-inline h3 {
  margin: 0;
  font-size: 1.1rem;
}

.cta-inline p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  flex: 1;
  min-width: 220px;
}

.cta-inline a.btn-primary {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  font-weight: 700;
  color: #fff;
}

.cta-inline a.btn-primary:hover {
  border-bottom-color: transparent;
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq {
  max-width: 820px;
  margin: 60px auto;
  padding: 0 5%;
}

.faq h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 28px;
  text-align: left;
  letter-spacing: -0.5px;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: border-color 0.15s;
}

.faq details[open] { border-color: rgba(255, 102, 0, 0.35); }

.faq summary {
  font-weight: 600;
  color: var(--text);
  font-size: 1.02rem;
  list-style: none;
  outline: none;
  position: relative;
  padding-right: 28px;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 300;
  transition: transform 0.15s;
}

.faq details[open] summary::after { content: '−'; }

.faq details p {
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.65;
  font-size: 0.98rem;
}

/* ─── Related pages ───────────────────────────────────────────── */
.related {
  max-width: 820px;
  margin: 60px auto 0;
  padding: 0 5%;
}

.related h3 {
  font-size: 1.05rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.related-grid a {
  display: block;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: border-color 0.15s, transform 0.15s;
}

.related-grid a:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}
