* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #060d16;
  --ink: #eaf2fa;
  --muted: #8fa3b8;
  --red: #e04a38;
  --red-dark: #b93225;
  --cyan: #7fd8f0;
  --line: rgba(255,255,255,.08);
  --card: rgba(255,255,255,.04);
}
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg); color: var(--ink);
  overflow-x: hidden; line-height: 1.6;
}

#scene { position: fixed; inset: 0; z-index: 0; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 20;
  display: flex; align-items: center; gap: 28px;
  padding: 16px clamp(20px, 5vw, 56px);
  background: linear-gradient(rgba(6,13,22,.85), rgba(6,13,22,0));
  backdrop-filter: blur(6px);
}
.logo { font-size: 19px; color: var(--ink); text-decoration: none; letter-spacing: .01em; }
.logo b { color: var(--red); }
.nav-links { display: flex; gap: 24px; margin-left: auto; }
.nav-login { margin-left: auto; }
.nav-links + .nav-login { margin-left: 0; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14.5px; }
.nav-links a:hover { color: #fff; }
@media (max-width: 760px) { .nav-links { display: none; } .logo { margin-right: auto; } }

.btn {
  display: inline-block; text-decoration: none; font-weight: 600; font-size: 14.5px;
  padding: 10px 20px; border-radius: 10px; transition: transform .15s, background .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--red); color: #fff; }
.btn-solid:hover { background: var(--red-dark); }
.btn-ghost { border: 1px solid rgba(255,255,255,.25); color: var(--ink); }
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.btn.big { padding: 14px 28px; font-size: 16px; border-radius: 12px; }

header {
  position: relative; z-index: 10; min-height: 100svh;
  display: flex; align-items: center; justify-content: flex-start;
  padding: 0 clamp(20px, 7vw, 90px);
}
.hero-inner { max-width: 640px; }
h1, .lede { text-shadow: 0 2px 30px rgba(6,13,22,.9); }
@media (max-width: 900px) {
  header { align-items: flex-end; padding-bottom: 9vh; }
}
.eyebrow {
  display: inline-block; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--cyan); border: 1px solid rgba(127,216,240,.3); border-radius: 30px;
  padding: 5px 14px; margin-bottom: 22px; background: rgba(127,216,240,.06);
}
h1 { font-size: clamp(40px, 6.5vw, 76px); line-height: 1.04; letter-spacing: -.02em; font-weight: 800; }
h1 em { font-style: normal; background: linear-gradient(100deg, var(--red), #f39c8a); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lede { color: var(--muted); font-size: clamp(16px, 1.6vw, 19px); margin: 22px 0 32px; max-width: 540px; }
.lede.center { margin-left: auto; margin-right: auto; text-align: center; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); width: 24px; height: 40px; border: 2px solid rgba(255,255,255,.25); border-radius: 14px; }
.scroll-hint span { position: absolute; top: 7px; left: 50%; width: 4px; height: 8px; margin-left: -2px; border-radius: 3px; background: var(--cyan); animation: drop 1.6s infinite; }
@keyframes drop { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

section {
  position: relative; z-index: 10;
  padding: clamp(70px, 10vw, 130px) clamp(20px, 7vw, 90px);
  max-width: 1200px; margin: 0 auto;
}
.section-head { margin-bottom: 44px; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 44px); letter-spacing: -.01em; line-height: 1.15; max-width: 640px; }
#contact .section-head { text-align: center; }
#contact .section-head h2 { margin-left: auto; margin-right: auto; }

.grid.cards3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 18px;
  padding: 28px; backdrop-filter: blur(8px);
}
.card-ico { font-size: 30px; margin-bottom: 14px; }
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15px; }

.steps { list-style: none; counter-reset: step; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.steps li {
  counter-increment: step; background: var(--card); border: 1px solid var(--line);
  border-radius: 18px; padding: 26px; backdrop-filter: blur(8px); position: relative;
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-size: 13px; font-weight: 700; color: var(--cyan); letter-spacing: .1em;
  display: block; margin-bottom: 12px;
}
.steps b { display: block; font-size: 19px; margin-bottom: 8px; }
.steps span { color: var(--muted); font-size: 14.5px; }

.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 54px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split h2 { font-size: clamp(28px, 3.4vw, 42px); margin: 8px 0 16px; }
.split p { color: var(--muted); }
.ticks { list-style: none; margin: 22px 0 28px; display: grid; gap: 10px; }
.ticks li { padding-left: 30px; position: relative; color: var(--ink); font-size: 15.5px; }
.ticks li::before { content: '✓'; position: absolute; left: 0; color: var(--cyan); font-weight: 700; }

.mock {
  background: rgba(10, 20, 33, .85); border: 1px solid var(--line); border-radius: 18px;
  padding: 18px; backdrop-filter: blur(10px); box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.mock-bar { display: flex; gap: 6px; margin-bottom: 14px; }
.mock-bar i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.15); }
.mock-bar i:first-child { background: var(--red); }
.mock-row {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  padding: 12px 10px; border-bottom: 1px solid var(--line); font-size: 14px; color: var(--muted);
}
.mock-row:last-child { border-bottom: none; }
.mock-row b { color: var(--ink); font-variant-numeric: tabular-nums; }
.mock-row b.ok { color: #6fdc9c; }
.mock-row b.warn { color: #f0c674; }

.contact-row { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.loc { color: var(--muted); }
.loc .mail { color: var(--cyan); text-decoration: none; }

/* availability strip */
.avail-strip { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 30px; min-height: 30px; }
.avail-pill {
  font-size: 12.5px; padding: 6px 14px; border-radius: 30px;
  border: 1px solid rgba(111,220,156,.35); color: #9fe8bd; background: rgba(111,220,156,.07);
}
.avail-pill.limited { border-color: rgba(240,198,116,.35); color: #f0d9a4; background: rgba(240,198,116,.07); }
.avail-pill b { color: #fff; font-weight: 600; }

/* variety cards */
.vcard { border-top: 3px solid var(--line); }
.vcard h3 { font-size: 21px; }
.vtag { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--cyan); margin: 6px 0 12px; }
.vmeta { margin-top: 14px; font-size: 13px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 12px; }
.v-red { border-top-color: #e04a38; }
.v-gold { border-top-color: #e8c04a; }
.v-ambri { border-top-color: #e88aa0; }
.v-maharaji { border-top-color: #8ac26a; }
.v-trel { border-top-color: #f08a4a; }
.v-new { border-top-color: #7fd8f0; }

.pack-note {
  margin-top: 26px; padding: 18px 22px; border: 1px dashed rgba(255,255,255,.18);
  border-radius: 14px; color: var(--muted); font-size: 14.5px; background: rgba(255,255,255,.02);
}
.pack-note b { color: var(--ink); }

/* inquiry form */
.inq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 860px; }
@media (max-width: 700px) { .inq-grid { grid-template-columns: 1fr; } }
.inq-grid .wide { grid-column: 1 / -1; }
.f { display: flex; flex-direction: column; gap: 7px; font-size: 13px; color: var(--muted); font-weight: 600; }
.f input, .f select, .f textarea {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: 10px;
  padding: 12px 14px; color: var(--ink); font-size: 15px; font-family: inherit;
}
.f input:focus, .f select:focus, .f textarea:focus { outline: 2px solid rgba(127,216,240,.35); border-color: var(--cyan); }
.f select option { background: #0e1a29; }
.inq-actions { display: flex; align-items: center; gap: 18px; }
.inq-actions button { border: none; cursor: pointer; }
.inq-status { font-size: 14.5px; color: var(--cyan); }
.inq-status.err { color: #f08a7a; }

footer {
  position: relative; z-index: 10; border-top: 1px solid var(--line);
  padding: 30px clamp(20px, 7vw, 90px); display: flex; justify-content: space-between;
  gap: 14px; flex-wrap: wrap; color: var(--muted); font-size: 14px;
  background: rgba(6,13,22,.7); backdrop-filter: blur(8px);
}
.foot-links { display: flex; gap: 10px; align-items: center; }
.foot-links a { color: var(--muted); }
.foot-links a:hover { color: #fff; }

/* WhatsApp floating button */
.wa-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 40;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 26px rgba(37, 211, 102, .45);
  transition: transform .15s ease, box-shadow .15s ease;
}
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 10px 32px rgba(37, 211, 102, .6); }
@media (max-width: 700px) { .wa-fab { right: 14px; bottom: 14px; width: 52px; height: 52px; } }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .8s ease; }
.reveal.shown { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
