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

  :root {
    --bg:        #080808;
    --bg2:       #0e0e0e;
    --bg3:       #141414;
    --border:    rgba(255,255,255,0.06);
    --border2:   rgba(255,165,60,0.18);
    --text:      #f0ede8;
    --muted:     #504840;
    --muted2:    #9a8878;

    --bronze:    #c8845a;
    --bronze-g:  linear-gradient(135deg, #c8845a, #8a4a28);
    --bronze-glow: rgba(200,132,90,0.15);

    --silver:    #a0b0c8;
    --silver-g:  linear-gradient(135deg, #c0d0e8, #6878a0);
    --silver-glow: rgba(160,176,200,0.15);

    --gold:      #d4a83a;
    --gold-g:    linear-gradient(135deg, #f0c84a, #a07820);
    --gold-glow: rgba(212,168,58,0.15);

    --accent:    #d4621a;
    --accent-dim: #a84a10;
    --accent-g:  linear-gradient(135deg, #e8721a, #a84010);
    --accent-glow: rgba(212,98,26,0.35);
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Mono', monospace;
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* NOISE 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: 9999;
    opacity: 0.4;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    background: rgba(8,8,8,0.88);
    backdrop-filter: blur(20px);
  }

  .nav-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.5px;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
  }

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

  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    color: var(--muted2);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: color 0.2s;
  }

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

  .nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .btn {
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    padding: 10px 22px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
    border: none;
  }

  .btn-ghost {
    background: transparent;
    border: 1px solid var(--border2);
    color: var(--muted2);
  }
  .btn-ghost:hover {
    border-color: rgba(255,255,255,0.25);
    color: var(--text);
  }

  .btn-primary {
    background: var(--accent-g);
    color: #fff;
    box-shadow: 0 4px 20px rgba(74,124,255,0.3);
  }
  .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(74,124,255,0.45);
  }

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

  .hero-glow {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,98,26,0.10) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -55%);
    pointer-events: none;
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
    pointer-events: none;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid var(--border2);
    border-radius: 100px;
    font-size: 12px;
    color: var(--muted2);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 32px;
    background: rgba(255,255,255,0.02);
  }

  .hero-badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #4aff8a;
    box-shadow: 0 0 8px #4aff8a;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  .hero h1 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(42px, 7vw, 80px);
    line-height: 1.0;
    letter-spacing: -2px;
    margin-bottom: 24px;
    position: relative;
  }

  .hero h1 span {
    background: linear-gradient(135deg, #e8721a, #ff9a4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-sub {
    font-size: 16px;
    color: var(--muted2);
    max-width: 480px;
    margin: 0 auto 48px;
    line-height: 1.7;
    font-family: 'DM Mono', monospace;
    font-weight: 300;
  }

  .hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-large {
    padding: 14px 32px;
    font-size: 14px;
  }

  .hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 80px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
    position: relative;
  }

  .stat-item {
    text-align: center;
  }

  .stat-num {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: -1px;
    color: var(--text);
  }

  .stat-label {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
  }

  /* FEATURES */
  section {
    padding: 100px 48px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 16px;
  }

  .section-sub {
    color: var(--muted2);
    font-size: 15px;
    max-width: 500px;
    line-height: 1.7;
    font-weight: 300;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 56px;
  }

  .feature-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
  }

  .feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212,98,26,0.06), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .feature-card:hover {
    border-color: var(--border2);
    transform: translateY(-2px);
  }

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

  .feature-icon {
    width: 40px; height: 40px;
    border-radius: 8px;
    background: var(--bg3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 20px;
  }

  .feature-title {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
  }

  .feature-desc {
    color: var(--muted2);
    font-size: 13px;
    line-height: 1.7;
    font-weight: 300;
  }

  /* PRICING */
  .pricing-section {
    padding: 100px 48px;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

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

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
  }

  .pricing-card {
    border-radius: 14px;
    padding: 36px;
    border: 1px solid var(--border);
    background: var(--bg);
    position: relative;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
  }

  .pricing-card:hover { transform: translateY(-4px); }

  .pricing-card.featured {
    border-color: rgba(212,168,58,0.4);
    background: linear-gradient(160deg, rgba(212,168,58,0.05), var(--bg));
  }

  .pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-g);
    color: #080a0f;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 14px;
    border-radius: 100px;
  }

  .tier-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
  }

  .tier-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
  }

  .tier-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .bronze .tier-dot { background: var(--bronze); box-shadow: 0 0 10px var(--bronze); }
  .silver .tier-dot { background: var(--silver); box-shadow: 0 0 10px var(--silver); }
  .gold .tier-dot   { background: var(--gold);   box-shadow: 0 0 10px var(--gold); }

  .bronze .tier-name { color: var(--bronze); }
  .silver .tier-name { color: var(--silver); }
  .gold .tier-name   { color: var(--gold); }

  .pricing-price {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 42px;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 6px;
  }

  .pricing-period {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
  }

  .pricing-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 28px;
  }

  .pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    margin-bottom: 32px;
  }

  .pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    color: var(--muted2);
    font-weight: 300;
    line-height: 1.5;
  }

  .pricing-features li .check {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    margin-top: 1px;
  }

  .bronze .check { background: rgba(200,132,90,0.15); color: var(--bronze); }
  .silver .check { background: rgba(160,176,200,0.15); color: var(--silver); }
  .gold .check   { background: rgba(212,168,58,0.15);  color: var(--gold); }

  .btn-bronze {
    background: var(--bronze-g);
    color: #fff;
    box-shadow: 0 4px 20px var(--bronze-glow);
  }
  .btn-bronze:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(200,132,90,0.35);
  }

  .btn-silver {
    background: var(--silver-g);
    color: #080a0f;
    box-shadow: 0 4px 20px var(--silver-glow);
  }
  .btn-silver:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(160,176,200,0.35);
  }

  .btn-gold {
    background: var(--gold-g);
    color: #080a0f;
    box-shadow: 0 4px 20px var(--gold-glow);
  }
  .btn-gold:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(212,168,58,0.35);
  }

  .btn-full { width: 100%; justify-content: center; }

  /* HOW IT WORKS */
  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 56px;
    position: relative;
  }

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

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

  .step-num {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--bg3);
    border: 1px solid var(--border2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
    color: var(--accent);
  }

  .step-title {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
  }

  .step-desc {
    font-size: 12px;
    color: var(--muted2);
    line-height: 1.7;
    font-weight: 300;
  }

  /* FAQ */
  .faq-list {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .faq-item {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg2);
  }

  .faq-q {
    padding: 20px 24px;
    font-family: 'Syne', sans-serif;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
    user-select: none;
  }

  .faq-q:hover { background: var(--bg3); }

  .faq-icon {
    color: var(--muted);
    font-size: 18px;
    transition: transform 0.3s;
    flex-shrink: 0;
  }

  .faq-item.open .faq-icon { transform: rotate(45deg); }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    color: var(--muted2);
    font-size: 13px;
    line-height: 1.8;
    font-weight: 300;
    padding: 0 24px;
  }

  .faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 24px 20px;
  }

  /* CTA BANNER */
  .cta-banner {
    margin: 0 48px 100px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(212,98,26,0.12), rgba(180,60,10,0.08));
    border: 1px solid rgba(212,98,26,0.25);
    padding: 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 1004px;
    margin: 0 auto 100px;
  }

  .cta-banner::before {
    content: '';
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(212,98,26,0.18), transparent 70%);
    pointer-events: none;
  }

  .cta-banner h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(24px, 4vw, 38px);
    letter-spacing: -1px;
    margin-bottom: 16px;
  }

  .cta-banner p {
    color: var(--muted2);
    font-size: 15px;
    margin-bottom: 32px;
    font-weight: 300;
  }

  /* FOOTER */
  footer {
    border-top: 1px solid var(--border);
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--muted);
  }

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

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

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

  .footer-copy {
    font-size: 12px;
    color: var(--muted);
  }

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

  .hero-badge   { animation: fadeUp 0.5s ease 0.1s both; }
  .hero h1      { animation: fadeUp 0.5s ease 0.2s both; }
  .hero-sub     { animation: fadeUp 0.5s ease 0.3s both; }
  .hero-actions { animation: fadeUp 0.5s ease 0.4s both; }
  .hero-stats   { animation: fadeUp 0.5s ease 0.5s both; }

  /* LOGIN / REGISTER MODAL */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(8px);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
  }

  .modal-overlay.active { display: flex; }

  .modal {
    background: var(--bg2);
    border: 1px solid var(--border2);
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    position: relative;
    animation: fadeUp 0.3s ease;
  }

  .modal-close {
    position: absolute;
    top: 16px; right: 16px;
    background: none;
    border: none;
    color: var(--muted);
    font-size: 20px;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s;
    line-height: 1;
  }

  .modal-close:hover { color: var(--text); }

  .modal h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
  }

  .modal-sub {
    color: var(--muted2);
    font-size: 13px;
    margin-bottom: 32px;
    font-weight: 300;
  }

  .form-group {
    margin-bottom: 16px;
  }

  .form-label {
    display: block;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted2);
    margin-bottom: 8px;
  }

  .form-input {
    width: 100%;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text);
    font-family: 'DM Mono', monospace;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
  }

  .form-input:focus { border-color: var(--accent); }
  .form-input::placeholder { color: var(--muted); }

  .form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: var(--muted);
  }

  .form-footer a {
    color: var(--accent);
    text-decoration: none;
  }

  .modal-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 32px;
    background: var(--bg3);
    border-radius: 8px;
    padding: 4px;
  }

  .modal-tab {
    flex: 1;
    padding: 8px;
    text-align: center;
    font-size: 13px;
    cursor: pointer;
    border-radius: 6px;
    color: var(--muted);
    transition: all 0.2s;
    font-family: 'DM Mono', monospace;
  }

  .modal-tab.active {
    background: var(--bg2);
    color: var(--text);
    border: 1px solid var(--border2);
  }

  .tab-content { display: none; }
  .tab-content.active { display: block; }

    .toggle-label { font-size: 13px; color: var(--muted2); font-weight: 300; transition: color 0.2s; }
  .toggle-label.active { color: var(--text); }
  .toggle-switch {
    width: 48px; height: 26px;
    background: var(--bg3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s, border-color 0.3s;
    flex-shrink: 0;
  }
  .toggle-switch.on { background: var(--accent); border-color: var(--accent); }
  .toggle-knob {
    width: 18px; height: 18px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 3px; left: 4px;
    transition: transform 0.3s;
  }
  .toggle-switch.on .toggle-knob { transform: translateX(22px); }
  .promo-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 12px;
    background: rgba(212,98,26,0.12);
    border: 1px solid rgba(212,98,26,0.3);
    border-radius: 100px;
    font-size: 11px; color: var(--accent);
    letter-spacing: 0.5px; font-weight: 500;
    transition: opacity 0.3s;
  }
  .price-original {
    font-size: 14px; color: var(--muted);
    text-decoration: line-through;
    font-family: 'DM Mono', monospace; font-weight: 300;
  }

@media (max-width: 768px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    section { padding: 60px 24px; }
    .hero { padding: 100px 24px 60px; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .steps::before { display: none; }
    .hero-stats { gap: 24px; flex-wrap: wrap; justify-content: center; }
    footer { flex-direction: column; gap: 20px; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .cta-banner { padding: 40px 24px; margin: 0 24px 60px; }
  }
