:root {
    --bg: #0A0A0F;
    --bg-2: #111118;
    --bg-3: #18181f;
    --border: rgba(255,255,255,0.08);
    --border-hover: rgba(249,115,22,0.4);
    --orange: #F97316;
    --orange-dim: #EA6C0E;
    --orange-glow: rgba(249,115,22,0.15);
    --orange-glow-strong: rgba(249,115,22,0.25);
    --text: #F0EEE8;
    --text-2: #A09E98;
    --text-3: #6B6966;
    --white: #ffffff;
    --radius: 10px;
    --radius-lg: 16px;
    --font-head: 'Bricolage Grotesque', sans-serif;
    --font-body: 'DM Sans', sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    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.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
  }

  /* ── LAYOUT ── */
  .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

  /* ── NAV ── */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    background: rgba(10,10,15,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  .nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .nav-logo {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .nav-logo span { color: var(--orange); }
  .nav-logo > span { color: inherit; }
  .nav-logo-icon {
    width: 28px; height: 28px;
    background: var(--orange);
    border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
  }
  .nav-links { display: flex; align-items: center; gap: 4px; }
  .nav-links a {
    color: var(--text-2);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 7px;
    transition: color 0.15s, background 0.15s;
  }
  .nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.06); }
  .nav-right { display: flex; align-items: center; gap: 12px; }
  .lang-toggle {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-2);
    font-family: var(--font-body);
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 7px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s;
  }
  .lang-toggle:hover { border-color: var(--border-hover); color: var(--orange); }
  .btn-nav {
    background: var(--orange);
    color: #000;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
  }
  .btn-nav:hover { background: var(--orange-dim); transform: translateY(-1px); }
  .nav-back {
    color: var(--text-2);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.15s;
  }
  .nav-back:hover { color: var(--text); }

  /* ── HERO ── */
  .hero {
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -100px; left: 50%; transform: translateX(-50%);
    width: 700px; height: 500px;
    background: radial-gradient(ellipse at center, rgba(249,115,22,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(249,115,22,0.1);
    border: 1px solid rgba(249,115,22,0.25);
    color: var(--orange);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 28px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }
  .hero-badge::before { content: '●'; font-size: 8px; animation: pulse 2s ease-in-out infinite; }
  @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

  h1 {
    font-family: var(--font-head);
    font-size: clamp(42px, 7vw, 76px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 22px;
  }
  h1 .accent { color: var(--orange); }
  .hero-sub {
    font-size: 19px;
    color: var(--text-2);
    max-width: 560px;
    margin: 0 auto 44px;
    font-weight: 300;
    line-height: 1.65;
  }

  /* ── WAITLIST FORM ── */
  .waitlist-form {
    display: flex;
    gap: 10px;
    max-width: 480px;
    margin: 0 auto 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .waitlist-form input {
    flex: 1;
    min-width: 220px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    padding: 12px 16px;
    border-radius: 9px;
    outline: none;
    transition: border-color 0.2s;
  }
  .waitlist-form input:focus { border-color: var(--orange); }
  .waitlist-form input::placeholder { color: var(--text-3); }
  .btn-primary {
    background: var(--orange);
    color: #000;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    padding: 12px 22px;
    border-radius: 9px;
    border: none;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s, box-shadow 0.2s;
    white-space: nowrap;
  }
  .btn-primary:hover { background: var(--orange-dim); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(249,115,22,0.3); }
  .form-note { font-size: 12px; color: var(--text-3); }
  .form-success {
    display: none;
    color: var(--orange);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 0;
  }

  /* ── SOCIAL PROOF ── */
  .hero-proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
  }
  .proof-item { text-align: center; }
  .proof-num {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
  }
  .proof-label { font-size: 12px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
  .proof-divider { width: 1px; height: 40px; background: var(--border); }

  /* ── SECTION HEADERS ── */
  .section { padding: 80px 0; }
  .section-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
  }
  h2 {
    font-family: var(--font-head);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--white);
    margin-bottom: 16px;
  }
  .section-sub {
    font-size: 17px;
    color: var(--text-2);
    max-width: 520px;
    line-height: 1.65;
    font-weight: 300;
  }

  /* ── FEATURE BLOCKS ── */
  .feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 72px 0;
    border-top: 1px solid var(--border);
  }
  .feature-block.reverse { direction: rtl; }
  .feature-block.reverse > * { direction: ltr; }
  .feature-tag {
    display: inline-block;
    background: var(--orange-glow);
    border: 1px solid rgba(249,115,22,0.2);
    color: var(--orange);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 5px;
    margin-bottom: 20px;
  }
  .feature-content h3 {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 16px;
  }
  .feature-content p {
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 300;
  }
  .feature-link {
    color: var(--orange);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
  }
  .feature-link:hover { gap: 10px; }
  .feature-visual {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .feature-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--orange-glow) 0%, transparent 60%);
    opacity: 0.5;
  }

  /* ── MOCK TERMINAL ── */
  .mock-terminal {
    background: #0D0D12;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    font-family: 'DM Mono', 'Fira Code', monospace;
    font-size: 13px;
    width: 100%;
  }
  .mock-terminal-bar {
    background: #1A1A22;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .dot { width: 10px; height: 10px; border-radius: 50%; }
  .dot-r { background: #FF5F57; }
  .dot-y { background: #FFBD2E; }
  .dot-g { background: #28C840; }
  .mock-terminal-body { padding: 20px; }
  .term-line { padding: 2px 0; color: var(--text-2); }
  .term-line .prompt { color: var(--orange); }
  .term-line .success { color: #4ADE80; }
  .term-line .path { color: #67E8F9; }
  .term-line .dim { color: var(--text-3); }

  /* ── MOCK DASHBOARD ── */
  .mock-dashboard {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
  }
  .mock-dash-header {
    background: var(--bg-3);
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-3);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .mock-dash-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
  .route-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
  }
  .route-path { color: var(--orange); font-family: monospace; font-weight: 600; min-width: 80px; }
  .route-arrow { color: var(--text-3); }
  .route-dest { color: var(--text-2); flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .route-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .badge-active { background: rgba(74,222,128,0.1); color: #4ADE80; border: 1px solid rgba(74,222,128,0.2); }
  .badge-ssl { background: rgba(249,115,22,0.1); color: var(--orange); border: 1px solid rgba(249,115,22,0.2); }

  /* ── GRID SECTION ── */
  .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    position: relative;
  }
  .card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(249,115,22,0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .card:hover { border-color: var(--border-hover); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
  .card:hover::before { opacity: 1; }
  .card-icon {
    width: 40px; height: 40px;
    background: var(--orange-glow);
    border: 1px solid rgba(249,115,22,0.2);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    margin-bottom: 16px;
  }
  .card h4 {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }
  .card p { font-size: 14px; color: var(--text-2); line-height: 1.65; font-weight: 300; }

  /* ── HOW IT WORKS ── */
  .steps { display: flex; flex-direction: column; gap: 0; max-width: 680px; margin: 48px auto 0; }
  .step { display: flex; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }
  .step-num {
    width: 36px; height: 36px; flex-shrink: 0;
    background: var(--orange-glow);
    border: 1px solid rgba(249,115,22,0.3);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 15px;
    color: var(--orange);
  }
  .step-body h4 {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
  }
  .step-body p { font-size: 15px; color: var(--text-2); line-height: 1.65; font-weight: 300; }

  /* ── FAQ ── */
  .faq-list { max-width: 720px; margin: 48px auto 0; }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.15s;
  }
  .faq-q:hover { color: var(--orange); }
  .faq-icon { font-size: 20px; color: var(--text-3); transition: transform 0.25s, color 0.15s; flex-shrink: 0; }
  .faq-q.open { color: var(--orange); }
  .faq-q.open .faq-icon { transform: rotate(45deg); color: var(--orange); }
  .faq-a {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s;
    font-weight: 300;
  }
  .faq-a.open { max-height: 200px; padding-bottom: 20px; }

  /* ── CTA BANNER ── */
  .cta-banner {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 80px 0;
  }
  .cta-banner::before {
    content: '';
    position: absolute;
    top: -100px; left: 50%; transform: translateX(-50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(249,115,22,0.1) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-banner h2 { margin-bottom: 16px; }
  .cta-banner p { color: var(--text-2); font-size: 17px; margin-bottom: 36px; font-weight: 300; }

  /* ── FOOTER ── */
  footer { border-top: 1px solid var(--border); padding: 32px 24px; }
  .footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
  .footer-logo { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--white); text-decoration: none; display: flex; align-items: center; gap: 6px; }
  .footer-logo span { color: var(--orange); }
  .footer-logo > span { color: inherit; }
  .footer-links { display: flex; flex-wrap: wrap; gap: 12px 20px; }
  .footer-links a { color: var(--text-3); font-size: 13px; text-decoration: none; transition: color 0.15s; }
  .footer-links a:hover { color: var(--text-2); }
  .footer-copy { color: var(--text-3); font-size: 13px; }

  /* ── HAMBURGER ── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
  }
  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-2);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── MOBILE MENU ── */
  .nav-mobile-menu {
    display: none;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 8px 24px 16px;
  }
  .nav-mobile-menu.open { display: block; }
  .mobile-nav-links { display: flex; flex-direction: column; }
  .mobile-nav-link {
    color: var(--text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.15s;
  }
  .mobile-nav-link:hover { color: var(--orange); }
  .mobile-nav-bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 12px;
  }
  .mobile-nav-legal { display: flex; gap: 20px; flex-wrap: wrap; }
  .mobile-nav-legal-link {
    color: var(--text-3);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.15s;
  }
  .mobile-nav-legal-link:hover { color: var(--text-2); }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .feature-block { grid-template-columns: 1fr; gap: 32px; }
    .feature-block.reverse { direction: ltr; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    .hero { padding: 64px 0 48px; }
    .cta-banner { padding: 40px 24px; }
    .hero-proof { gap: 16px; }
    .proof-divider { display: none; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .nav-back { display: none; }
    .nav-sep { display: none; }
    .nav-right .lang-toggle { display: none; }
  }
  @media (max-width: 640px) {
    .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  }
  @media (min-width: 769px) {
    .nav-hamburger { display: none !important; }
    .nav-mobile-menu { display: none !important; }
  }