@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --night:    #0f0e0c;
  --night-2:  #161410;
  --night-3:  #1e1b16;
  --cream:    #f5f0e8;
  --cream-2:  #ede6d8;
  --cream-dim:#c8bfad;
  --gold:     #b89356;
  --gold-l:   #d4b07a;
  --gold-d:   #8c6a2d;
  --line:     rgba(184,147,86,.14);
  --line-soft:rgba(184,147,86,.07);
  --max:      1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', system-ui, sans-serif;
  font-weight: 300;
  background: var(--night);
  color: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.08;
}
h1 { font-size: clamp(3rem, 6.5vw, 5.6rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 400; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .67rem; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: ''; width: 28px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

p { color: var(--cream-dim); line-height: 1.75; }
.small { font-size: .91rem; }
.muted { color: var(--cream-dim); }
.accent { color: var(--gold-l); }
.center { text-align: center; }

.container { width: min(var(--max), calc(100% - 2.5rem)); margin: 0 auto; }
.narrow-intro { max-width: 700px; margin-left: auto; margin-right: auto; }

.section       { padding: 100px 0; }
.section-tight  { padding: 64px 0; }

.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15,14,12,.90);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 74px; gap: 24px;
}
.brand { display: flex; align-items: center; }
.brand img { width: 116px; }
.nav {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.nav a {
  font-size: .8rem; font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--cream-dim); transition: color .2s;
}
.nav a:hover, .nav a.active { color: var(--cream); }
.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line); overflow: hidden; margin-left: .5rem;
}
.lang-switch button {
  appearance: none; border: none; background: transparent;
  color: var(--cream-dim); padding: 7px 12px;
  font-family: 'Jost', sans-serif; font-size: .7rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; cursor: pointer;
  transition: background .2s, color .2s;
}
.lang-switch button.active { background: var(--gold); color: var(--night); }

/* BUTTONS */
.btns { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 26px;
  font-family: 'Jost', sans-serif; font-size: .78rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; transition: .2s ease;
}
.btn-primary { background: var(--gold); color: var(--night); border: 1px solid var(--gold); }
.btn-primary:hover { background: var(--gold-l); border-color: var(--gold-l); }
.btn-secondary { background: transparent; color: var(--cream-dim); border: 1px solid var(--line); }
.btn-secondary:hover { border-color: var(--gold); color: var(--cream); }

/* HERO */
.hero { padding: 88px 0 48px; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 48px; align-items: center;
}
.hero-copy { max-width: 620px; }
.hero-copy h1 { margin-bottom: 1.2rem; }
.hero-logo { width: 60px; margin-bottom: 1.6rem; opacity: .88; }

.phone-stack { position: relative; min-height: 580px; }
.phone {
  position: absolute; width: min(285px, 85%);
  border-radius: 38px; overflow: hidden;
  border: 1px solid rgba(184,147,86,.15);
  box-shadow: 0 32px 80px rgba(0,0,0,.55);
  background: #0a0909;
}
.phone.one { right: 8%; top: 0; transform: rotate(-4deg); }
.phone.two { left: 0%; top: 125px; transform: rotate(7deg); }

.countdown { display: flex; gap: 1.5rem; margin: 1.8rem 0 1.4rem; }
.unit { display: flex; flex-direction: column; align-items: flex-start; }
.unit strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 300; line-height: 1; color: var(--cream);
}
.unit span {
  font-size: .64rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-top: .2rem;
}

.launch-box {
  border: 1px solid var(--line); border-left: 2px solid var(--gold);
  padding: 14px 20px; margin-bottom: 2rem;
  background: rgba(184,147,86,.04);
}
.launch-box strong {
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
  font-weight: 400; color: var(--gold-l); display: block; margin-bottom: .2rem;
}

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 2rem;
}
.stat { background: var(--night); padding: 18px 20px; }
.stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 300; color: var(--gold-l);
  line-height: 1; margin-bottom: .3rem;
}
.stat span { font-size: .78rem; color: var(--cream-dim); }

/* PILLS */
.notice-strip { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.pill {
  display: inline-flex; align-items: center;
  min-height: 32px; padding: 0 16px;
  border: 1px solid var(--line); background: var(--night-2);
  font-size: .74rem; font-weight: 400; letter-spacing: .07em; color: var(--cream-dim);
}

/* CARDS */
.card { background: var(--night-2); border: 1px solid var(--line-soft); padding: 30px; }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .88rem; }

.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.cards-3 .card { border: none; }

/* DEVICE */
.device { border: 1px solid var(--line); border-radius: 26px; padding: 14px; background: var(--night-2); }
.device img { border-radius: 18px; }

.image-wall { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }

/* PRICING */
.pricing { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.pricing-4 { grid-template-columns: repeat(4,1fr); }
.price-card { background: var(--night-2); padding: 34px 26px; display: flex; flex-direction: column; gap: .5rem; }
.price-card.featured { background: var(--night-3); }
.price-card.lifetime { background: linear-gradient(160deg, #1a1710, var(--night-2)); }
.price-card strong { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 400; color: var(--cream); }
.price-card p { font-size: .84rem; }
.price { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; line-height: 1; color: var(--cream); margin: .3rem 0; }

.badge {
  display: inline-block; font-size: .63rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 4px 10px; border: 1px solid; align-self: flex-start; margin-bottom: .3rem;
}
.badge.gold   { border-color: var(--gold); color: var(--gold); }
.badge.silver, .badge.cream { border-color: var(--cream-dim); color: var(--cream-dim); }
.badge.red    { border-color: rgba(180,120,120,.4); color: #c09090; }
.badge.purple { border-color: rgba(140,120,180,.4); color: #b0a8cc; }

.list { display: flex; flex-direction: column; gap: 9px; padding: 0; list-style: none; margin-top: 6px; }
.list li { font-size: .84rem; color: var(--cream-dim); padding-left: 1.2rem; position: relative; }
.list li::before { content: '—'; position: absolute; left: 0; color: var(--gold-d); font-size: .74rem; }

/* NOTE */
.note {
  border: 1px solid var(--line); border-left: 2px solid var(--gold-d);
  background: rgba(184,147,86,.025);
  padding: 18px 22px; font-size: .86rem; color: var(--cream-dim); line-height: 1.65;
}
.note strong { color: var(--cream); font-weight: 500; margin-right: .4rem; }

/* FEATURES */
.feature-list-luxe { display: flex; flex-direction: column; }
.feature-row {
  display: grid; grid-template-columns: 200px 1fr;
  gap: 48px; align-items: start;
  padding: 34px 0; border-bottom: 1px solid var(--line-soft);
}
.feature-row:first-child { border-top: 1px solid var(--line-soft); }
.feature-label {
  font-size: .7rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); padding-top: .5rem;
}
.feature-row h3 { margin-bottom: .45rem; }

/* FAQ */
.faq { display: flex; flex-direction: column; }
.faq details { border-bottom: 1px solid var(--line-soft); }
.faq details:first-child { border-top: 1px solid var(--line-soft); }
.faq summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; cursor: pointer;
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400;
  color: var(--cream); list-style: none; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-size: 1.4rem; font-weight: 300;
  color: var(--gold); flex-shrink: 0; transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: 22px; font-size: .9rem; max-width: 660px; }

/* ABOUT */
.editorial-block {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 64px; align-items: start;
  padding: 40px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
}
.editorial-copy p + p { margin-top: 1rem; }

/* CONTACT */
.contact-box { max-width: 720px; }
.contact-box h1 { margin-bottom: 1rem; }
.contact-box .grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 2rem; }
.contact-box .card { border: none; }
.contact-box .card a { color: var(--gold-l); border-bottom: 1px solid transparent; transition: border-color .2s; }
.contact-box .card a:hover { border-color: var(--gold); }
.contact-box .card h3 { margin-bottom: .5rem; }

/* FOOTER */
.site-footer { border-top: 1px solid var(--line-soft); padding: 50px 0; }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-end; gap: 36px; flex-wrap: wrap; }
.footer-grid > div:first-child img { width: 106px; margin-bottom: 12px; }
.footer-grid > div:first-child p { font-size: .8rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer-links a { font-size: .77rem; letter-spacing: .06em; color: var(--cream-dim); transition: color .2s; }
.footer-links a:hover { color: var(--cream); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid     { grid-template-columns: 1fr; }
  .phone-stack   { display: none; }
  .split         { grid-template-columns: 1fr; gap: 36px; }
  .cards-3       { grid-template-columns: 1fr; }
  .pricing       { grid-template-columns: 1fr 1fr; }
  .pricing-4     { grid-template-columns: 1fr 1fr; }
  .feature-row   { grid-template-columns: 1fr; gap: 10px; }
  .editorial-block { grid-template-columns: 1fr; gap: 32px; }
  .contact-box .grid { grid-template-columns: 1fr; }
  .image-wall    { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.9rem; }
  .section { padding: 60px 0; }
  .pricing   { grid-template-columns: 1fr; }
  .pricing-4 { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .nav { gap: 1.1rem; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  .countdown { gap: .9rem; }
  .unit strong { font-size: 2rem; }
}
