:root {
  --bg: #07101d;
  --bg-soft: #0b1728;
  --surface: rgba(17, 31, 51, .72);
  --text: #f6f8fb;
  --muted: #a9b6c9;
  --line: rgba(255,255,255,.11);
  --green: #5ee3a4;
  --green-2: #b8f56c;
  --blue: #67a8ff;
  --shadow: 0 30px 90px rgba(0,0,0,.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, #102642 0, transparent 42%),
    linear-gradient(145deg, #06101d 0%, #07111e 45%, #091522 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
button, input { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #09111b;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.ambient {
  position: fixed;
  z-index: -3;
  width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .17;
  pointer-events: none;
}
.ambient-one { left: -170px; top: 28%; background: var(--blue); animation: driftOne 11s ease-in-out infinite alternate; }
.ambient-two { right: -180px; bottom: 0; background: var(--green); animation: driftTwo 13s ease-in-out infinite alternate; }

.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: .19;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 78%);
}

.site-header,
.site-footer,
.hero {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--green);
  border: 1px solid rgba(94,227,164,.24);
  background: rgba(94,227,164,.07);
  border-radius: 14px;
  box-shadow: inset 0 0 24px rgba(94,227,164,.05);
}
.brand-mark svg { width: 30px; }
.brand-text { font-size: 1.34rem; letter-spacing: -.03em; }
.brand-text strong { font-weight: 800; }
.brand-text span { color: var(--green); font-weight: 700; }

.launch-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
  border-radius: 999px;
  color: #dbe5f2;
  font-size: .83rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}
.launch-pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(94,227,164,.1);
  animation: pulse 1.9s ease-out infinite;
}

.hero {
  min-height: calc(100vh - 174px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
  align-items: center;
  gap: clamp(44px, 8vw, 100px);
  padding: 58px 0 72px;
}

.hero-copy { animation: rise .75s cubic-bezier(.2,.7,.2,1) both; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--green);
  font-size: .83rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
}
.eyebrow span { font-size: .65rem; filter: drop-shadow(0 0 8px rgba(94,227,164,.65)); }

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.15rem, 6.7vw, 6.15rem);
  line-height: .96;
  letter-spacing: -.07em;
  font-weight: 800;
  text-wrap: balance;
}
.gradient-text {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-2) 44%, #d9f6b8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 8px 28px rgba(94,227,164,.08));
}

.lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.17rem);
  line-height: 1.75;
}

.feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 27px;
  color: #cad5e4;
  font-size: .92rem;
}
.feature-row span { display: inline-flex; align-items: center; gap: 8px; }
.feature-row b { color: var(--green); font-size: .84rem; }

.notify-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: 650px;
  margin-top: 33px;
  position: relative;
}
.field-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.field-wrap svg {
  position: absolute;
  left: 17px;
  width: 20px;
  color: #8797aa;
}
.notify-form input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px 0 49px;
  color: #fff;
  border: 1px solid var(--line);
  outline: 0;
  border-radius: 15px;
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.notify-form input::placeholder { color: #75859a; }
.notify-form input:focus {
  border-color: rgba(94,227,164,.52);
  background: rgba(255,255,255,.072);
  box-shadow: 0 0 0 4px rgba(94,227,164,.08);
}
.notify-form button {
  min-height: 56px;
  padding: 0 23px;
  border: 0;
  border-radius: 15px;
  color: #07140e;
  background: linear-gradient(135deg, #76eeb5, #b9f56c);
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(94,227,164,.2);
  transition: transform .2s ease, box-shadow .2s ease;
}
.notify-form button:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(94,227,164,.26); }
.notify-form button:active { transform: translateY(0); }
.form-status {
  grid-column: 1 / -1;
  min-height: 18px;
  margin: 0;
  font-size: .82rem;
  color: var(--green);
}
.form-status.error { color: #ff9f9f; }
.privacy-note { margin: -10px 0 0; color: #718196; font-size: .78rem; }

.visual-stage {
  min-height: 510px;
  display: grid;
  place-items: center;
  position: relative;
  perspective: 1200px;
}
.visual-stage::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94,227,164,.14), rgba(94,227,164,0) 68%);
  filter: blur(3px);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 50%;
  transform: rotateX(68deg) rotateZ(-15deg);
}
.orbit-one { width: 510px; height: 330px; }
.orbit-two { width: 380px; height: 240px; border-style: dashed; animation: rotateOrbit 14s linear infinite; }

.shop-card {
  position: relative;
  z-index: 2;
  width: min(390px, 90%);
  padding: 19px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(21,37,59,.9), rgba(10,21,35,.83));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.075);
  backdrop-filter: blur(18px);
  transform: rotateY(-8deg) rotateX(4deg);
  animation: cardFloat 5.4s ease-in-out infinite;
}
.card-top { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.mini-logo {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(94,227,164,.14);
  color: var(--green);
  font-weight: 900;
}
.top-lines { display: grid; gap: 5px; flex: 1; }
.top-lines i { display: block; height: 5px; border-radius: 99px; background: rgba(255,255,255,.12); width: 62px; }
.top-lines i:last-child { width: 38px; opacity: .65; }
.cart-bubble {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  color: #dbe7f5;
  font-size: .72rem;
  font-weight: 800;
}

.promo-banner {
  min-height: 146px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255,255,255,.18), transparent 26%),
    linear-gradient(135deg, #4ccf91, #8ee75f);
  color: #082416;
}
.promo-banner small { display: block; margin-bottom: 9px; font-weight: 900; font-size: .62rem; letter-spacing: .12em; opacity: .72; }
.promo-banner strong { font-size: 1.53rem; line-height: 1.07; letter-spacing: -.04em; }
.bag-icon {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: rgba(4,35,19,.78);
  background: rgba(255,255,255,.24);
  transform: rotate(8deg);
}
.bag-icon svg { width: 55px; }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 15px; }
.product {
  min-width: 0;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 14px;
  background: rgba(255,255,255,.038);
}
.product-art { height: 70px; border-radius: 9px; margin-bottom: 8px; }
.p1 { background: linear-gradient(145deg, #304761, #5c7b9f); }
.p2 { background: linear-gradient(145deg, #4d3857, #8e5a80); }
.p3 { background: linear-gradient(145deg, #42503c, #759067); }
.p4 { background: linear-gradient(145deg, #544634, #a28155); }
.product i, .product em { display: block; border-radius: 999px; background: rgba(255,255,255,.14); height: 5px; }
.product i { width: 85%; }
.product em { width: 50%; margin-top: 6px; opacity: .7; }

.floating-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 15px;
  background: rgba(8,19,32,.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 45px rgba(0,0,0,.28);
}
.floating-chip > span { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 10px; background: rgba(94,227,164,.11); color: var(--green); }
.floating-chip div { display: grid; }
.floating-chip b { font-size: .8rem; }
.floating-chip small { color: #8392a5; font-size: .68rem; margin-top: 2px; }
.chip-secure { left: -6px; top: 102px; animation: chipFloat 4s ease-in-out infinite; }
.chip-fast { right: -10px; bottom: 86px; animation: chipFloat 4.7s ease-in-out infinite reverse; }

.site-footer {
  min-height: 78px;
  padding: 22px 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255,255,255,.07);
  color: #718196;
  font-size: .78rem;
}
.site-footer p { margin: 0; }
.site-footer nav { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--green); }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(94,227,164,.28); }
  65%,100% { box-shadow: 0 0 0 9px rgba(94,227,164,0); }
}
@keyframes cardFloat {
  0%,100% { transform: rotateY(-8deg) rotateX(4deg) translateY(0); }
  50% { transform: rotateY(-5deg) rotateX(3deg) translateY(-14px); }
}
@keyframes chipFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes rotateOrbit { to { transform: rotateX(68deg) rotateZ(345deg); } }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes driftOne { to { transform: translate(80px,-50px) scale(1.12); } }
@keyframes driftTwo { to { transform: translate(-70px,-55px) scale(.9); } }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 48px; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .eyebrow { justify-content: center; }
  .feature-row { justify-content: center; }
  .visual-stage { min-height: 460px; margin-top: -4px; }
  .chip-secure { left: 7%; }
  .chip-fast { right: 7%; }
}

@media (max-width: 640px) {
  .site-header, .site-footer, .hero { width: min(100% - 28px, 1180px); }
  .site-header { min-height: 78px; }
  .brand-mark { width: 39px; height: 39px; border-radius: 12px; }
  .brand-mark svg { width: 26px; }
  .brand-text { font-size: 1.18rem; }
  .launch-pill { padding: 8px 10px; font-size: .72rem; }

  .hero { min-height: auto; gap: 30px; padding: 48px 0 50px; }
  h1 { font-size: clamp(3.1rem, 16vw, 4.8rem); }
  .lead { font-size: .98rem; line-height: 1.7; }
  .feature-row { gap: 9px 14px; font-size: .82rem; }

  .notify-form { width: 100%; grid-template-columns: 1fr; }
  .notify-form button { width: 100%; }
  .privacy-note { margin-top: -8px; }

  .visual-stage { min-height: 390px; }
  .shop-card { width: min(330px, 88vw); padding: 15px; border-radius: 23px; }
  .promo-banner { min-height: 120px; padding: 18px; }
  .promo-banner strong { font-size: 1.28rem; }
  .bag-icon { width: 72px; height: 72px; }
  .product-grid { gap: 7px; }
  .product { padding: 6px; }
  .product-art { height: 54px; }
  .orbit-one { width: 400px; height: 260px; }
  .orbit-two { width: 300px; height: 190px; }
  .floating-chip { padding: 9px 11px; }
  .chip-secure { left: -3px; top: 65px; }
  .chip-fast { right: -4px; bottom: 55px; }

  .site-footer { flex-direction: column; align-items: center; text-align: center; }
  .site-footer nav { justify-content: center; }
}

@media (max-width: 390px) {
  .launch-pill { font-size: 0; width: 38px; height: 38px; justify-content: center; }
  .launch-pill i { margin: 0; }
  h1 { font-size: 3.25rem; }
  .feature-row { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
