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

  :root {
    --orange:    #E8600A;
    --orange-l:  #F0883A;
    --cream:     #FBF5EC;
    --cream-2:   #F0E8D8;
    --brown:     #2B3A4A;
    --brown-mid: #4A5568;
    --brown-l:   #718096;
    --white:     #FFFFFF;
    --red:       #C44000;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--brown);
    overflow-x: hidden;
  }

  /* ── NAV ─────────────────────────────────────────────────────────────────── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 48px;
    background: rgba(251,245,236,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(232,96,10,0.12);
  }
  .nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 19px; letter-spacing: -0.02em;
    color: var(--brown); text-decoration: none;
  }
  .nav-logo-mark {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--orange); display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 800; color: white;
  }
  .nav-links { display: flex; gap: 32px; align-items: center; }
  .nav-links a { color: var(--brown-mid); text-decoration: none; font-size: 14px; font-weight: 500; letter-spacing: -0.01em; transition: color 0.2s; }
  .nav-links a:hover { color: var(--orange); }
  .nav-cta {
    background: var(--orange); color: white; border: none; cursor: pointer;
    padding: 10px 22px; border-radius: 8px; font-size: 14px; font-weight: 600;
    font-family: 'Inter', sans-serif; transition: all 0.2s; text-decoration: none;
  }
  .nav-cta:hover { background: #c44f00; transform: translateY(-1px); }

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

  /* Grain texture overlay */
  .hero::before {
    content: ''; position: absolute; 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.04'/%3E%3C/svg%3E");
    pointer-events: none; opacity: 0.4;
  }

  /* Big decorative circles */
  .hero-orb {
    position: absolute; border-radius: 50%;
    background: radial-gradient(circle, rgba(232,96,10,0.18) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-orb-1 { width: 600px; height: 600px; top: -200px; right: -150px; }
  .hero-orb-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--white); border: 1px solid rgba(232,96,10,0.25);
    padding: 6px 14px 6px 8px; border-radius: 999px;
    font-size: 12px; font-weight: 600; color: var(--orange); letter-spacing: 0.01em;
    margin-bottom: 32px; animation: fadeUp 0.6s ease both;
  }
  .hero-badge-dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
    animation: pulse 2s ease infinite;
  }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }

  h1 {
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
    font-size: clamp(48px, 8vw, 96px); line-height: 1.0; letter-spacing: -0.02em;
    color: var(--brown); max-width: 900px; margin: 0 auto 28px;
    animation: fadeUp 0.7s 0.1s ease both;
  }
  h1 em { font-style: normal; color: var(--orange); }

  .hero-sub {
    font-size: clamp(16px, 2.5vw, 18px); font-weight: 400; color: var(--brown-mid);
    max-width: 560px; margin: 0 auto 48px; line-height: 1.6;
    animation: fadeUp 0.7s 0.2s ease both;
  }

  .hero-ctas {
    display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
    animation: fadeUp 0.7s 0.3s ease both;
  }
  .btn-primary {
    background: var(--orange); color: white; border: none; cursor: pointer;
    padding: 16px 32px; border-radius: 10px; font-size: 16px; font-weight: 600;
    font-family: 'Inter', sans-serif; transition: all 0.2s; text-decoration: none; display: inline-block;
  }
  .btn-primary:hover { background: #c44f00; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,96,10,0.3); }
  .btn-secondary {
    background: transparent; color: var(--brown); border: 1.5px solid rgba(43,58,74,0.2);
    padding: 16px 32px; border-radius: 10px; font-size: 16px; font-weight: 500;
    font-family: 'Inter', sans-serif; cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block;
  }
  .btn-secondary:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

  .hero-stats {
    display: flex; gap: 48px; justify-content: center; margin-top: 72px;
    animation: fadeUp 0.7s 0.45s ease both;
    flex-wrap: wrap;
  }
  .hero-stat { text-align: center; }
  .hero-stat-val {
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 36px;
    color: var(--orange); letter-spacing: -0.02em;
  }
  .hero-stat-label { font-size: 13px; color: var(--brown-l); margin-top: 4px; font-weight: 400; }

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

  /* ── MARQUEE TICKER ──────────────────────────────────────────────────────── */
  .ticker-wrap {
    overflow: hidden; border-top: 1px solid rgba(43,58,74,0.08);
    border-bottom: 1px solid rgba(43,58,74,0.08);
    padding: 14px 0; background: var(--brown); position: relative;
  }
  .ticker {
    display: flex; gap: 60px; white-space: nowrap;
    animation: ticker 30s linear infinite;
  }
  .ticker-item {
    font-family: 'JetBrains Mono', monospace; font-size: 13px;
    color: rgba(255,255,255,0.5); font-weight: 400; letter-spacing: 0.04em;
    flex-shrink: 0;
  }
  .ticker-item span { color: var(--orange-l); }
  @keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ── SECTION BASE ────────────────────────────────────────────────────────── */
  section { padding: 96px 24px; }
  .container { max-width: 1100px; margin: 0 auto; }
  .section-label {
    font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.1em;
    color: var(--orange); text-transform: uppercase; margin-bottom: 16px;
  }
  h2 {
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: clamp(32px,5vw,52px);
    letter-spacing: -0.02em; color: var(--brown); line-height: 1.08; margin-bottom: 20px;
  }
  .section-intro { font-size: 18px; color: var(--brown-mid); max-width: 580px; line-height: 1.6; font-weight: 300; }

  /* ── PROBLEM SECTION ─────────────────────────────────────────────────────── */
  .problem { background: var(--brown); color: var(--cream); }
  .problem h2 { color: var(--cream); }
  .problem .section-label { color: var(--orange-l); }
  .problem .section-intro { color: rgba(251,245,236,0.6); }

  .market-quote {
    margin-top: 36px;
    padding: 20px 28px;
    border-left: 3px solid var(--orange);
    background: rgba(232,96,10,0.07);
    border-radius: 0 8px 8px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 600; font-style: italic;
    color: var(--cream); letter-spacing: -0.01em; line-height: 1.45;
  }

  .problem-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2px; margin-top: 56px; border: 1px solid rgba(255,255,255,0.06);
  }
  .problem-card {
    padding: 36px 28px; background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    transition: background 0.2s;
  }
  .problem-card:hover { background: rgba(232,96,10,0.06); }
  .problem-stat {
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 44px;
    color: var(--orange); letter-spacing: -0.02em; line-height: 1; margin-bottom: 8px;
  }
  .problem-card h3 { font-size: 15px; font-weight: 600; color: var(--cream); margin-bottom: 12px; }
  .problem-card p { font-size: 14px; color: rgba(251,245,236,0.5); line-height: 1.6; font-weight: 300; }

  /* ── HOW IT WORKS ────────────────────────────────────────────────────────── */
  .how { background: var(--cream-2); }

  .steps { margin-top: 64px; display: flex; flex-direction: column; gap: 0; }
  .step {
    display: grid; grid-template-columns: 80px 1fr;
    gap: 0 32px; padding: 36px 0;
    border-bottom: 1px solid rgba(43,58,74,0.08);
    align-items: start;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .step.visible { opacity: 1; transform: translateY(0); }
  .step-num {
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 48px;
    color: rgba(232,96,10,0.15); letter-spacing: -0.02em; line-height: 1;
    padding-top: 4px;
  }
  .step-content h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 20px; margin-bottom: 10px; letter-spacing: -0.01em; }
  .step-content p { color: var(--brown-mid); line-height: 1.65; font-weight: 300; max-width: 580px; }
  .step-tag {
    display: inline-block; margin-top: 14px;
    background: var(--white); border: 1px solid rgba(232,96,10,0.2);
    color: var(--orange); font-size: 12px; font-weight: 600;
    padding: 4px 12px; border-radius: 999px; font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.04em;
  }

  /* ── WHO IS THIS FOR ─────────────────────────────────────────────────────── */
  .who { background: var(--cream); }
  .who-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 20px; margin-top: 56px;
  }
  .who-card {
    background: var(--white); border: 1px solid rgba(43,58,74,0.08);
    border-radius: 16px; padding: 32px 28px;
    transition: all 0.25s; cursor: default;
  }
  .who-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(232,96,10,0.1); }
  .who-icon { font-size: 32px; margin-bottom: 18px; }
  .who-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 17px; margin-bottom: 10px; letter-spacing: -0.01em; }
  .who-card p { font-size: 14px; color: var(--brown-mid); line-height: 1.6; font-weight: 300; }
  .who-card ul { margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
  .who-card li {
    font-size: 13px; color: var(--brown-mid); list-style: none;
    display: flex; align-items: flex-start; gap: 8px;
  }
  .who-card li::before { content: '▸'; color: var(--orange); font-size: 10px; margin-top: 3px; flex-shrink: 0; }

  /* ── FORM SECTION ────────────────────────────────────────────────────────── */
  .join { background: var(--brown); color: var(--cream); text-align: center; padding: 96px 24px; }
  .join h2 { color: var(--cream); max-width: 640px; margin: 16px auto 16px; letter-spacing: -0.02em; }
  .join .section-label { color: var(--orange-l); }
  .join-sub { color: rgba(251,245,236,0.55); font-size: 18px; font-weight: 300; max-width: 480px; margin: 0 auto 48px; line-height: 1.6; }

  .join-form {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px; padding: 40px; max-width: 560px; margin: 0 auto;
  }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
  @media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-group label { font-size: 12px; font-weight: 600; color: rgba(251,245,236,0.5); letter-spacing: 0.06em; text-transform: uppercase; font-family: 'JetBrains Mono', monospace; }
  .form-group input, .form-group select {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px; padding: 12px 14px; color: var(--cream);
    font-size: 14px; font-family: 'Inter', sans-serif; font-weight: 400;
    transition: border-color 0.2s; outline: none; width: 100%;
  }
  .form-group select option { background: #2B3A4A; color: var(--cream); }
  .form-group input::placeholder { color: rgba(251,245,236,0.25); }
  .form-group input:focus, .form-group select:focus { border-color: var(--orange); }

  .form-full { margin-bottom: 14px; }

  /* Form sections */
  .form-section {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 24px;
    margin-bottom: 8px;
    padding-bottom: 8px;
  }
  .form-section:first-child { border-top: none; padding-top: 0; }
  .form-section-header {
    display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
  }
  .form-section-num {
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    font-weight: 600; color: var(--orange); letter-spacing: 0.06em;
  }
  .form-section-title {
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px;
    font-weight: 700; color: var(--cream); letter-spacing: -0.01em;
  }

  .role-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 8px; }
  .role-btn {
    border: 1.5px solid rgba(255,255,255,0.1); border-radius: 8px;
    padding: 12px 10px; cursor: pointer; background: transparent;
    color: rgba(251,245,236,0.6); font-size: 13px; font-family: 'Inter', sans-serif;
    transition: all 0.18s; text-align: center;
  }
  .role-btn:hover { border-color: var(--orange-l); color: var(--cream); }
  .role-btn.selected { border-color: var(--orange); background: rgba(232,96,10,0.12); color: var(--cream); }
  .role-btn-icon { font-size: 20px; display: block; margin-bottom: 6px; }
  .role-btn-full { grid-column: 1 / -1; text-align: center; }

  /* Inline validation */
  .error-msg { display: none; font-size: 11px; color: #ff8a80; margin-top: 4px; font-weight: 500; }
  .error-msg.show { display: block; }
  .role-error-msg { text-align: center; margin-bottom: 4px; }
  .form-group input.field-error,
  .form-group select.field-error { border-color: #ff8a80; }

  /* NIL level conditional dropdown */
  .nil-level-wrap {
    display: none; margin-top: 12px;
    animation: fadeUp 0.25s ease both;
  }
  .nil-level-wrap.visible { display: block; }

  /* Submit loading state */
  .form-submit.loading { opacity: 0.65; cursor: not-allowed; pointer-events: none; }

  .form-submit {
    width: 100%; background: var(--orange); color: white; border: none; cursor: pointer;
    padding: 16px; border-radius: 10px; font-size: 16px; font-weight: 600;
    font-family: 'Inter', sans-serif; transition: all 0.2s; margin-top: 8px;
  }
  .form-submit:hover { background: #c44f00; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(232,96,10,0.35); }

  .form-fine { margin-top: 14px; font-size: 12px; color: rgba(251,245,236,0.3); text-align: center; }

  /* Success state */
  .success-state {
    display: none; text-align: center; padding: 24px;
  }
  .success-icon { font-size: 48px; margin-bottom: 16px; }
  .success-state h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 24px; color: var(--cream); margin-bottom: 8px; }
  .success-state p { color: rgba(251,245,236,0.55); font-size: 15px; }

  /* ── FOOTER ──────────────────────────────────────────────────────────────── */
  footer {
    background: var(--brown); border-top: 1px solid rgba(255,255,255,0.06);
    padding: 32px 48px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  }
  footer p { font-size: 13px; color: rgba(251,245,236,0.3); }
  .footer-logo {
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 16px;
    color: rgba(251,245,236,0.4); letter-spacing: -0.02em;
  }

  /* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
  @media (max-width: 768px) {
    nav { padding: 16px 20px; }
    .nav-links { display: none; }
    section { padding: 64px 20px; }
    .hero { padding: 100px 20px 64px; }
    .hero-stats { gap: 32px; }
    footer { padding: 24px 20px; }
  }
