* { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --bg: #0a0a14;
    --bg2: #14141e;
    --bg3: #1e1e30;
    --text: #e8e8f0;
    --text2: #aaa;
    --text3: #66668a;
    --gold: #ffd166;
    --gold2: #f7b733;
    --cyan: #6ee7f7;
    --green: #4fffb0;
    --pink: #ff66c4;
  }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Syne', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
  }
  a { color: var(--cyan); text-decoration: none; }
  a:hover { color: var(--gold); }

  /* ===== NAV ===== */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(10, 10, 20, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    z-index: 100;
    padding: 14px 0;
  }
  nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  nav .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 16px;
  }
  nav .brand-icon {
    width: 28px; height: 28px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    border-radius: 6px;
    padding: 5px;
  }
  nav .brand-icon svg { width: 100%; height: 100%; }
  nav .brand .pro { color: var(--gold); }
  nav .links { display: flex; gap: 28px; align-items: center; }
  nav .links a {
    color: var(--text2);
    font-size: 13px;
    font-weight: 500;
  }
  nav .cta {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #000 !important;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
  }
  nav .cta:hover { color: #000 !important; transform: translateY(-1px); }

  @media (max-width: 640px) {
    nav .links a:not(.cta) { display: none; }
  }

  /* ===== HERO ===== */
  .hero {
    padding: 140px 24px 100px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: 40px; left: 50%;
    width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(255, 209, 102, 0.08) 0%, transparent 60%);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
  }
  .hero > * { position: relative; z-index: 1; }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(110, 231, 247, 0.08);
    border: 1px solid rgba(110, 231, 247, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: var(--cyan);
    letter-spacing: 1.5px;
    margin-bottom: 28px;
    text-transform: uppercase;
  }
  .hero h1 {
    font-size: clamp(40px, 6.5vw, 82px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -1.5px;
    margin-bottom: 28px;
  }
  .hero h1 .accent { color: var(--gold); }
  .hero h1 .serif {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
    color: var(--text2);
  }
  .hero-sub {
    font-size: clamp(16px, 1.8vw, 20px);
    color: var(--text2);
    line-height: 1.5;
    max-width: 640px;
    margin: 0 auto 40px;
  }
  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #000 !important;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 16px;
    transition: transform 0.15s;
  }
  .hero-cta:hover { transform: translateY(-2px); color: #000 !important; }
  .hero-cta svg { width: 20px; height: 20px; }
  .hero-meta {
    margin-top: 22px;
    font-size: 13px;
    color: var(--text3);
    font-family: 'Space Mono', monospace;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-meta span::before {
    content: '✓ ';
    color: var(--green);
  }

  /* ===== SECTIONS ===== */
  section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .section-tag {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  h2.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
    max-width: 720px;
  }
  h2.section-title .accent { color: var(--gold); }
  h2.section-title .serif {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
  }
  .section-sub {
    font-size: 16px;
    color: var(--text2);
    max-width: 560px;
    margin-bottom: 50px;
    line-height: 1.6;
  }

  /* ===== FEATURES ===== */
  .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  .feature {
    background: var(--bg2);
    border: 1px solid var(--bg3);
    border-radius: 16px;
    padding: 28px 26px;
    transition: border-color 0.15s, transform 0.15s;
  }
  .feature:hover {
    border-color: rgba(255, 209, 102, 0.3);
    transform: translateY(-3px);
  }
  .feature-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
  }
  .feature-icon.c1 { background: rgba(110, 231, 247, 0.1); color: var(--cyan); }
  .feature-icon.c2 { background: rgba(255, 209, 102, 0.1); color: var(--gold); }
  .feature-icon.c3 { background: rgba(79, 255, 176, 0.1); color: var(--green); }
  .feature-icon.c4 { background: rgba(255, 102, 196, 0.1); color: var(--pink); }
  .feature h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .feature p {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.6;
  }
  .feature .tag {
    display: inline-block;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 10px;
    font-weight: 700;
  }
  .feature .tag.free {
    background: rgba(79, 255, 176, 0.1);
    color: var(--green);
  }
  .feature .tag.pro {
    background: rgba(255, 209, 102, 0.1);
    color: var(--gold);
  }

  /* ===== PRICING ===== */
  .pricing-section {
    background: var(--bg2);
    border-top: 1px solid var(--bg3);
    border-bottom: 1px solid var(--bg3);
    padding: 80px 24px;
    margin: 60px 0;
    width: 100%;
    max-width: none;
  }
  .pricing-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  .pricing-inner .section-tag {
    display: block;
    margin-bottom: 14px;
  }
  .pricing-inner .section-title {
    max-width: none;
    margin: 0 auto 20px;
    display: block;
  }
  .pricing-inner .section-sub {
    max-width: 560px;
    margin: 0 auto 50px;
  }
  .plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 400px));
    gap: 24px;
    justify-content: center;
    margin-top: 40px;
  }
  .plan {
    background: var(--bg);
    border: 1px solid var(--bg3);
    border-radius: 20px;
    padding: 36px 32px;
    text-align: left;
    position: relative;
  }
  .plan.pro {
    border-color: rgba(255, 209, 102, 0.4);
    background: linear-gradient(180deg, rgba(255, 209, 102, 0.04), var(--bg));
  }
  .plan-badge {
    position: absolute;
    top: -12px; right: 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #000;
    padding: 4px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    font-family: 'Space Mono', monospace;
    letter-spacing: 1px;
  }
  .plan h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
  }
  .plan h3.pro { color: var(--gold); }
  .plan-sub {
    font-size: 13px;
    color: var(--text3);
    font-family: 'Space Mono', monospace;
    margin-bottom: 20px;
  }
  .plan-price {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 2px;
  }
  .plan-price small {
    font-size: 16px;
    font-weight: 500;
    color: var(--text2);
    margin-left: 4px;
  }
  .plan-yearly {
    font-size: 12px;
    color: var(--text3);
    font-family: 'Space Mono', monospace;
    margin-bottom: 28px;
  }
  .plan ul {
    list-style: none;
    margin-bottom: 28px;
  }
  .plan ul li {
    padding: 7px 0;
    font-size: 14px;
    color: var(--text);
  }
  .plan ul li::before {
    content: '✓ ';
    color: var(--green);
    font-weight: 700;
    margin-right: 6px;
  }
  .plan ul li.disabled {
    color: var(--text3);
  }
  .plan ul li.disabled::before {
    content: '— ';
    color: var(--text3);
  }
  .plan-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid var(--bg3);
    background: transparent;
    color: var(--text);
  }
  .plan-cta:hover { border-color: var(--cyan); color: var(--cyan); }
  .plan.pro .plan-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #000 !important;
    border: none;
  }
  .plan.pro .plan-cta:hover { color: #000 !important; transform: translateY(-1px); }

  /* ===== LANGUAGES ===== */
  .langs {
    text-align: center;
    padding: 60px 24px;
  }
  .langs .section-title {
    max-width: none;
    margin: 0 auto 20px;
  }
  .langs-grid {
    display: flex;
    justify-content: center;
    gap: 14px 28px;
    flex-wrap: wrap;
    margin-top: 24px;
  }
  .langs-grid span {
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    color: var(--text2);
    padding: 8px 16px;
    background: var(--bg2);
    border: 1px solid var(--bg3);
    border-radius: 20px;
  }

  /* ===== CTA BANNER ===== */
  .cta-banner {
    background: linear-gradient(135deg, rgba(255, 209, 102, 0.08), rgba(110, 231, 247, 0.04));
    border: 1px solid rgba(255, 209, 102, 0.2);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    margin: 0 24px 80px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-banner h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
  }
  .cta-banner p {
    color: var(--text2);
    font-size: 16px;
    margin-bottom: 24px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }

  /* ===== FOOTER ===== */
  footer {
    background: #050508;
    border-top: 1px solid var(--bg3);
    padding: 60px 24px 40px;
  }
  footer .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
  }
  @media (max-width: 700px) {
    footer .footer-inner { grid-template-columns: 1fr 1fr; }
  }
  footer h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text3);
    margin-bottom: 18px;
    font-family: 'Space Mono', monospace;
  }
  footer ul {
    list-style: none;
  }
  footer ul li {
    padding: 5px 0;
  }
  footer ul li a {
    font-size: 13px;
    color: var(--text2);
  }
  footer .brand-block p {
    font-size: 13px;
    color: var(--text3);
    line-height: 1.7;
    max-width: 320px;
    margin-top: 14px;
  }
  footer .copy {
    border-top: 1px solid var(--bg3);
    margin-top: 50px;
    padding-top: 24px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 12px;
    color: var(--text3);
    font-family: 'Space Mono', monospace;
  }
/* ──── Language switcher ──── */
.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--bg3);
  border-radius: 8px;
  padding: 6px 12px;
  color: var(--text2);
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s;
}
.lang-btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.lang-btn .lang-icon { font-size: 12px; }
.lang-btn .lang-current { letter-spacing: 1px; }
.lang-btn .lang-caret { font-size: 10px; opacity: 0.7; }

.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--bg);
  border: 1px solid var(--bg3);
  border-radius: 10px;
  padding: 6px;
  min-width: 160px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  display: none;
  flex-direction: column;
  z-index: 1000;
}
.lang-switcher.open .lang-menu { display: flex; }

.lang-item {
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none !important;
  transition: background 0.1s;
}
.lang-item:hover {
  background: var(--bg2);
  color: var(--cyan);
}
.lang-item.active {
  color: var(--gold);
  background: rgba(255, 209, 102, 0.06);
}

/* RTL adjustments */
[dir="rtl"] .lang-menu { right: auto; left: 0; }
[dir="rtl"] .hero-meta span::before { content: '✓ '; }
