*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black: #0a0a08; --cream: #f5f0e8; --warm: #e8e0d0;
  --gold: #c9a84c; --gold-light: #e8c97a; --muted: #8a7f6e;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --mono: 'DM Mono', monospace;
}
html { scroll-behavior: smooth; }
body { font-family: var(--serif); background: var(--black); color: var(--cream); overflow-x: hidden; }
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 48px;
  background: linear-gradient(to bottom, rgba(10,10,8,0.97), transparent);
}
.nav-logo { font-family: var(--mono); font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.3s; }
.nav-links a:hover { color: var(--cream); }
.nav-right { display: flex; gap: 16px; align-items: center; }
.nav-lang {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); background: rgba(10,10,8,0.72); border: 1px solid rgba(201,168,76,0.3);
  padding: 9px 34px 9px 14px; min-width: 132px; border-radius: 0; cursor: pointer;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%;
  background-size: 5px 5px, 5px 5px; background-repeat: no-repeat;
}
.nav-lang:hover, .nav-lang:focus { color: var(--cream); border-color: var(--gold); outline: none; }
.nav-lang option { background: var(--black); color: var(--cream); }
.nav-cta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--black); background: var(--gold); padding: 10px 24px; text-decoration: none; transition: background 0.3s; }
.nav-cta:hover { background: var(--gold-light); }
.hero {
  min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 140px 48px 80px; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 40%, rgba(201,168,76,0.08) 0%, transparent 70%),
              radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 60%), var(--black);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(var(--cream) 1px, transparent 1px), linear-gradient(90deg, var(--cream) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 32px; position: relative; display: flex; align-items: center; gap: 16px; animation: fadeUp 0.8s ease forwards; }
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
.hero-headline { font-size: clamp(56px, 8vw, 110px); font-weight: 300; line-height: 0.95; letter-spacing: 0; position: relative; max-width: 900px; animation: fadeUp 0.8s 0.15s ease both; }
.hero-headline em { font-style: italic; color: var(--gold); }
.hero-sub { margin-top: 40px; font-family: var(--mono); font-size: 13px; color: var(--muted); line-height: 1.8; max-width: 460px; position: relative; animation: fadeUp 0.8s 0.3s ease both; }
.hero-actions { margin-top: 48px; display: flex; gap: 24px; align-items: center; position: relative; animation: fadeUp 0.8s 0.45s ease both; }
.btn-primary { font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; background: var(--gold); color: var(--black); padding: 16px 36px; text-decoration: none; transition: all 0.3s; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost { font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.3s; }
.btn-ghost:hover { color: var(--cream); }
.hero-counter { position: absolute; right: 48px; bottom: 80px; display: flex; flex-direction: column; gap: 32px; text-align: right; animation: fadeUp 0.8s 0.6s ease both; }
.counter-item .num { font-size: 40px; font-weight: 300; color: var(--gold); line-height: 1; }
.counter-item .label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase; margin-top: 4px; }
section { padding: 120px 48px; }
.section-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 16px; margin-bottom: 64px; }
.section-label::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.how { background: #0d0d0b; border-top: 1px solid rgba(201,168,76,0.15); border-bottom: 1px solid rgba(201,168,76,0.15); }
.how-title { font-size: clamp(38px, 5vw, 64px); font-weight: 300; line-height: 1.1; max-width: 680px; margin-bottom: 80px; }
.how-title em { font-style: italic; color: var(--gold); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201,168,76,0.1); }
.step { background: #0d0d0b; padding: 48px 40px; transition: background 0.3s; }
.step:hover { background: #131310; }
.step-num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 28px; }
.step-title { font-size: 26px; font-weight: 300; line-height: 1.2; margin-bottom: 16px; }
.step-desc { font-family: var(--mono); font-size: 12px; color: var(--muted); line-height: 1.8; }
.packages-title { font-size: clamp(38px, 5vw, 64px); font-weight: 300; max-width: 560px; margin-bottom: 80px; line-height: 1.1; }
.packages-title em { font-style: italic; color: var(--gold); }
.packages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(201,168,76,0.1); }
.pkg { background: var(--black); padding: 48px 36px; display: flex; flex-direction: column; transition: background 0.3s; position: relative; }
.pkg:hover { background: #0f0f0d; }
.pkg.featured { background: #111109; border: 1px solid rgba(201,168,76,0.3); margin: -1px; }
.pkg-badge { font-family: var(--mono); font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; background: var(--gold); color: var(--black); padding: 4px 12px; display: inline-block; margin-bottom: 24px; align-self: flex-start; }
.pkg-name { font-family: var(--mono); font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.pkg-price { font-size: 48px; font-weight: 300; line-height: 1; margin-bottom: 4px; }
.pkg-price span { font-family: var(--mono); font-size: 14px; color: var(--muted); }
.pkg-monthly { font-family: var(--mono); font-size: 11px; color: var(--gold); margin-bottom: 40px; margin-top: 6px; }
.pkg-features { list-style: none; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.pkg-features li { font-family: var(--mono); font-size: 11px; color: var(--muted); line-height: 1.5; display: flex; align-items: flex-start; gap: 10px; }
.pkg-features li::before { content: '-'; color: var(--gold); flex-shrink: 0; }
.pkg-cta { margin-top: 40px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream); text-decoration: none; border: 1px solid rgba(201,168,76,0.3); padding: 14px 24px; text-align: center; transition: all 0.3s; display: block; }
.pkg-cta:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.pkg.featured .pkg-cta { background: var(--gold); color: var(--black); border-color: var(--gold); }
.pkg.featured .pkg-cta:hover { background: var(--gold-light); }
.demo-strip { background: var(--gold); color: var(--black); padding: 80px 48px; display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.demo-strip-text h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 300; line-height: 1.15; max-width: 520px; }
.demo-strip-text h2 em { font-style: italic; }
.demo-strip-text p { font-family: var(--mono); font-size: 12px; margin-top: 16px; opacity: 0.7; max-width: 420px; line-height: 1.8; }
.btn-dark { font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; background: var(--black); color: var(--cream); padding: 18px 40px; text-decoration: none; white-space: nowrap; transition: all 0.3s; flex-shrink: 0; }
.btn-dark:hover { background: #1a1a16; transform: translateY(-2px); }
footer { padding: 60px 48px; border-top: 1px solid rgba(201,168,76,0.1); display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-family: var(--mono); font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
.footer-copy { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.1em; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-family: var(--mono); font-size: 10px; color: var(--muted); text-decoration: none; letter-spacing: 0.1em; transition: color 0.3s; }
.footer-links a:hover { color: var(--cream); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); }
@media (max-width: 1100px) {
  .packages-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .nav-right { gap: 10px; }
  .nav-lang { min-width: 96px; max-width: 38vw; }
  .nav-cta { padding: 10px 14px; font-size: 10px; letter-spacing: 0.1em; }
  .hero { padding: 128px 24px 60px; }
  .hero-counter { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  section { padding: 80px 24px; }
  .steps, .packages-grid { grid-template-columns: 1fr; }
  .demo-strip { flex-direction: column; align-items: flex-start; }
  footer { flex-direction: column; gap: 16px; text-align: center; }
}
