    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --brand:       #ce492a;
      --brand-light: #e8614a;
      --brand-dark:  #a33820;
      --bg:          #080808;
      --surface:     rgba(255,255,255,0.04);
      --border:      rgba(255,255,255,0.08);
      --text:        #f0ede8;
      --muted:       rgba(240,237,232,0.5);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Space Grotesk', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ─── GRAIN OVERLAY ─── */
    body::before {
      content: '';
      position: fixed; inset: 0; z-index: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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.04'/%3E%3C/svg%3E");
      background-size: 200px;
      pointer-events: none;
    }

    /* ─── ORBS ─── */
    .orbs {
      position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
    }
    .orb {
      position: absolute; border-radius: 50%;
      filter: blur(120px); opacity: 0.18;
      animation: drift 20s ease-in-out infinite alternate;
    }
    .orb-1 { width: 600px; height: 600px; background: var(--brand); top: -200px; left: -100px; animation-delay: 0s; }
    .orb-2 { width: 400px; height: 400px; background: #7c2f1a; bottom: -100px; right: -100px; animation-delay: -7s; }
    .orb-3 { width: 300px; height: 300px; background: #ff8c6b; top: 50%; left: 60%; animation-delay: -14s; }

    @keyframes drift {
      0%   { transform: translate(0, 0) scale(1); }
      100% { transform: translate(40px, 30px) scale(1.1); }
    }

    
    /* ─── HERO ─── */
    .hero {
      position: relative; z-index: 1;
      min-height: 100vh;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center;
      padding: 120px 24px 80px;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(206,73,42,0.12);
      border: 1px solid rgba(206,73,42,0.3);
      border-radius: 100px;
      padding: 6px 16px;
      font-size: 12px; font-weight: 600;
      letter-spacing: 2px; text-transform: uppercase;
      color: var(--brand-light);
      margin-bottom: 32px;
      opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
    }
    .hero-badge::before {
      content: ''; width: 6px; height: 6px;
      background: var(--brand); border-radius: 50%;
      animation: pulse 2s ease infinite;
    }
    @keyframes pulse {
      0%,100% { opacity:1; transform:scale(1); }
      50% { opacity:0.4; transform:scale(0.7); }
    }
    .hero h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(64px, 10vw, 140px);
      line-height: 0.9;
      letter-spacing: 2px;
      opacity: 0; animation: fadeUp 0.9s 0.4s forwards;
    }
    .hero h1 em {
      font-style: normal;
      -webkit-text-stroke: 1.5px var(--brand);
      color: transparent;
    }
    .hero-sub {
      margin-top: 28px;
      max-width: 560px;
      font-size: 18px; font-weight: 300; line-height: 1.7;
      color: var(--muted);
      opacity: 0; animation: fadeUp 0.9s 0.6s forwards;
    }
    .hero-actions {
      margin-top: 48px;
      display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
      opacity: 0; animation: fadeUp 0.9s 0.8s forwards;
    }
    .btnBecomeOrg {
      background: var(--brand);
      color: #fff; border: none; border-radius: 10px;
      padding: 16px 36px;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 16px; font-weight: 700;
      cursor: pointer; letter-spacing: 0.3px;
      transition: all 0.25s;
      text-decoration: none; display: inline-block;
    }
    .btnBecomeOrg:hover { background: var(--brand-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(206,73,42,0.35); }
    .btn-ghost {
      background: transparent;
      color: var(--text); border: 1px solid var(--border); border-radius: 10px;
      padding: 16px 36px;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 16px; font-weight: 600;
      cursor: pointer;
      transition: all 0.25s;
      text-decoration: none; display: inline-block;
    }
    .btn-ghost:hover { border-color: rgba(255,255,255,0.25); background: var(--surface); }

    .hero-scroll {
      margin-top: 60px;
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: var(--muted); font-size: 11px; letter-spacing: 2px;
      text-transform: uppercase;
      opacity: 0; animation: fadeUp 1s 1.2s forwards;
    }
    .scroll-line {
      width: 1px; height: 48px;
      background: linear-gradient(to bottom, var(--brand), transparent);
      animation: lineDown 2s ease-in-out infinite;
    }
    @keyframes lineDown {
      0% { transform: scaleY(0); transform-origin: top; }
      50% { transform: scaleY(1); transform-origin: top; }
      51% { transform: scaleY(1); transform-origin: bottom; }
      100% { transform: scaleY(0); transform-origin: bottom; }
    }

    @keyframes fadeUp {
      from { opacity:0; transform: translateY(30px); }
      to   { opacity:1; transform: translateY(0); }
    }

    /* ─── SECTION WRAPPER ─── */
    section {
      position: relative; z-index: 1;
      padding: 100px 24px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .section-label {
      font-size: 11px; font-weight: 700; letter-spacing: 3px;
      text-transform: uppercase; color: var(--brand);
      margin-bottom: 16px;
    }
    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(40px, 6vw, 72px);
      line-height: 1;
      letter-spacing: 1px;
    }
    .section-title em { font-style: normal; color: var(--brand); }
    .section-body {
      margin-top: 20px;
      font-size: 17px; font-weight: 300; line-height: 1.8;
      color: var(--muted); max-width: 600px;
    }

    /* ─── CONCEPT ─── */
    .concept-grid {
      margin-top: 60px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
    }
    .concept-card {
      background: var(--surface);
      border: 1px solid var(--border);
      padding: 48px 40px;
      transition: background 0.3s;
    }
    .concept-card:hover { background: rgba(255,255,255,0.07); }
    .concept-card:first-child { border-radius: 20px 0 0 0; }
    .concept-card:nth-child(2) { border-radius: 0 20px 0 0; }
    .concept-card:nth-child(3) { border-radius: 0 0 0 20px; }
    .concept-card:last-child { border-radius: 0 0 20px 0; }
    .concept-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 64px; color: rgba(206,73,42,0.15);
      line-height: 1; margin-bottom: 16px;
    }
    .concept-card h3 {
      font-size: 20px; font-weight: 700; margin-bottom: 12px;
    }
    .concept-card p {
      font-size: 15px; font-weight: 300; line-height: 1.7; color: var(--muted);
    }

    /* ─── BENEFITS ─── */
    .benefits-section { background: rgba(206,73,42,0.04); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .benefits-inner { max-width: 1200px; margin: 0 auto; padding: 100px 24px; }
    .benefits-grid {
      margin-top: 64px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .benefit-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 36px 28px;
      transition: all 0.3s;
      position: relative; overflow: hidden;
    }
    .benefit-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, var(--brand), transparent);
      opacity: 0; transition: opacity 0.3s;
    }
    .benefit-card:hover { transform: translateY(-4px); border-color: rgba(206,73,42,0.3); }
    .benefit-card:hover::before { opacity: 1; }
    .benefit-icon {
      width: 48px; height: 48px; border-radius: 12px;
      background: rgba(206,73,42,0.12);
      border: 1px solid rgba(206,73,42,0.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 22px; margin-bottom: 20px;
    }
    .benefit-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
    .benefit-card p { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--muted); }

    /* ─── STATS ─── */
    .stats-row {
      margin-top: 80px;
      display: flex; gap: 0;
      border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
    }
    .stat-item {
      flex: 1; padding: 40px 32px; text-align: center;
      border-right: 1px solid var(--border);
      position: relative;
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 56px; color: var(--brand); line-height: 1;
    }
    .stat-label {
      margin-top: 8px;
      font-size: 13px; font-weight: 400;
      color: var(--muted); letter-spacing: 0.5px;
    }

    /* ─── HOW IT WORKS ─── */
    .steps {
      margin-top: 64px;
      display: flex; flex-direction: column; gap: 0;
      position: relative;
    }
    .steps::before {
      content: '';
      position: absolute; left: 23px; top: 0; bottom: 0; width: 1px;
      background: linear-gradient(to bottom, var(--brand), transparent);
    }
    .step {
      display: flex; gap: 32px; align-items: flex-start;
      padding: 0 0 48px 0;
      opacity: 0; transform: translateX(-20px);
      transition: all 0.6s ease;
    }
    .step.visible { opacity: 1; transform: translateX(0); }
    .step-dot {
      flex-shrink: 0;
      width: 48px; height: 48px; border-radius: 50%;
      background: var(--bg); border: 2px solid var(--brand);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 20px; color: var(--brand);
      position: relative; z-index: 1;
    }
    .step-content h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; padding-top: 10px; }
    .step-content p { font-size: 15px; font-weight: 300; line-height: 1.7; color: var(--muted); }

    /* ─── TESTIMONIAL ─── */
    .quote-section {
      text-align: center;
      padding: 120px 24px;
      max-width: 900px; margin: 0 auto;
      position: relative; z-index: 1;
    }
    .quote-mark {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 120px; line-height: 0.5;
      color: rgba(206,73,42,0.2);
      margin-bottom: 40px;
    }
    .quote-text {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(22px, 3.5vw, 34px);
      font-weight: 300; line-height: 1.5;
      color: var(--text);
    }
    .quote-text strong { color: var(--brand); font-weight: 700; }
    .quote-author {
      margin-top: 32px;
      font-size: 14px; color: var(--muted);
      letter-spacing: 1px; text-transform: uppercase;
    }

    /* ─── CTA FINAL ─── */
    .cta-section {
      position: relative; z-index: 1;
      margin: 0 24px 80px;
      border-radius: 24px;
      background: linear-gradient(135deg, rgba(206,73,42,0.15), rgba(206,73,42,0.05));
      border: 1px solid rgba(206,73,42,0.2);
      padding: 80px 40px;
      text-align: center;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(206,73,42,0.2), transparent 60%);
    }
    .cta-section > * { position: relative; z-index: 1; }
    .cta-section h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(44px, 7vw, 88px);
      line-height: 0.95; letter-spacing: 1px;
      margin-bottom: 20px;
    }
    .cta-section p {
      font-size: 17px; font-weight: 300; color: var(--muted);
      max-width: 500px; margin: 0 auto 40px; line-height: 1.7;
    }
    .cta-section .btnBecomeOrg { font-size: 17px; padding: 18px 48px; }

    /* ─── FOOTER ───
    footer {
      position: relative; z-index: 1;
      text-align: center; padding: 32px 24px;
      border-top: 1px solid var(--border);
      font-size: 13px; color: var(--muted);
    }
    footer a { color: var(--brand); text-decoration: none; } */

    /* ─── RESPONSIVE ─── */
    @media (max-width: 768px) {
      /* nav { padding: 16px 20px; } */
      .concept-grid { grid-template-columns: 1fr; }
      .concept-card { border-radius: 0 !important; }
      .concept-card:first-child { border-radius: 16px 16px 0 0 !important; }
      .concept-card:last-child { border-radius: 0 0 16px 16px !important; }
      .benefits-grid { grid-template-columns: 1fr; }
      .stats-row { flex-direction: column; }
      .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
      .stat-item:last-child { border-bottom: none; }
    }
    @media (max-width: 600px) {
      .benefits-grid { grid-template-columns: 1fr; }
    }


    
 .mobile-nav a {
      padding: 1rem 0 !important;
      font-size: 1.125rem !important;
      font-weight: 600 !important;
      border-bottom: 1px solid #f4f4f5 !important;
      text-decoration: none;
      color: #0f0f0f;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    }