:root {
  --bg: #05070d;
  --bg-soft: #0a0e19;
  --text: #f7f8ff;
  --muted: rgba(247, 248, 255, .72);
  --faint: rgba(247, 248, 255, .46);
  --line: rgba(255, 255, 255, .14);
  --glass: rgba(255, 255, 255, .08);
  --glass-strong: rgba(255, 255, 255, .13);
  --accent-a: #4da3ff;
  --accent-b: #8b5cf6;
  --accent-c: #ff6a4a;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 24px 80px rgba(0, 0, 0, .42);
  --gradient: linear-gradient(135deg, var(--accent-a), var(--accent-b) 55%, var(--accent-c));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 5%, rgba(77, 163, 255, .24), transparent 34%),
    radial-gradient(circle at 85% 12%, rgba(255, 106, 74, .20), transparent 30%),
    radial-gradient(circle at 50% 75%, rgba(139, 92, 246, .20), transparent 36%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}

.topbar {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 32px));
  height: 76px;
  padding: 10px 12px 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 50;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 12, 22, .58);
  backdrop-filter: blur(26px) saturate(170%);
  -webkit-backdrop-filter: blur(26px) saturate(170%);
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
  transition: .25s ease;
}
.topbar.is-scrolled { background: rgba(8, 12, 22, .78); height: 68px; }

.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-logo-only { gap: 0; }
.brand-mark {
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 10px 34px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255,255,255,.12);
  flex: 0 0 auto;
}
.brand-mark-full {
  width: 188px;
  height: 56px;
  padding: 0 18px;
  border-radius: 20px;
}
.brand-mark img { width: 100%; max-width: 150px; filter: drop-shadow(0 0 18px rgba(255,255,255,.12)); }
.footer-logo-mark { width: 210px; height: 62px; padding: 0 22px; border-radius: 22px; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--muted);
  transition: .22s ease;
}
.main-nav a:hover, .main-nav a.is-active {
  color: var(--text);
  background: rgba(255,255,255,.10);
}

.nav-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 999px; background: rgba(255,255,255,.10); color: white; }
.nav-toggle span { display: block; width: 18px; height: 2px; margin: 5px auto; background: white; border-radius: 99px; }

.section-pad { width: min(1120px, calc(100% - 32px)); margin: 0 auto; padding: 116px 0; position: relative; }
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 58px; padding-top: 150px; }
.compact-hero { padding-top: 174px; padding-bottom: 70px; }

.orb { position: absolute; width: 280px; height: 280px; border-radius: 50%; filter: blur(20px); opacity: .56; pointer-events: none; }
.orb-one { top: 12%; left: -10%; background: rgba(77, 163, 255, .28); }
.orb-two { right: -8%; bottom: 18%; background: rgba(255, 106, 74, .22); }

.eyebrow, .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 750;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .78rem;
}
.eyebrow span { width: 9px; height: 9px; border-radius: 50%; background: var(--gradient); box-shadow: 0 0 22px rgba(77, 163, 255, .9); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(3.2rem, 8vw, 6.7rem); line-height: .9; letter-spacing: -.075em; margin: 22px 0 24px; }
h2 { font-size: clamp(2.2rem, 4.6vw, 4.6rem); line-height: .94; letter-spacing: -.06em; margin: 12px 0 18px; }
h3 { font-size: 1.28rem; margin-bottom: 10px; }
p { color: var(--muted); line-height: 1.75; }
.hero-copy { font-size: 1.12rem; max-width: 670px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0; }
.center-actions { justify-content: center; }
.btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  cursor: pointer;
  color: white;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gradient); border-color: transparent; box-shadow: 0 16px 46px rgba(139, 92, 246, .28); }
.btn-ghost, .btn-small { background: rgba(255,255,255,.08); backdrop-filter: blur(18px); }
.btn-small { padding: 10px 14px; font-size: .86rem; }
.btn.full { width: 100%; }
.btn.is-confirmed { background: rgba(255,255,255,.18); }

.glass-card, .glass-panel {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.055));
  box-shadow: var(--shadow);
  backdrop-filter: blur(26px) saturate(160%);
  -webkit-backdrop-filter: blur(26px) saturate(160%);
}
.glass-card { border-radius: var(--radius-lg); }
.glass-panel { border-radius: var(--radius-xl); padding: clamp(26px, 4vw, 54px); }

.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; max-width: 720px; }
.hero-stats div { padding: 18px; background: rgba(255,255,255,.035); }
.hero-stats strong { display: block; }
.hero-stats span { display: block; color: var(--faint); font-size: .88rem; margin-top: 5px; }

.hero-visual { display: flex; justify-content: center; }
.hero-stage {
  position: relative;
  width: min(520px, 100%);
  min-height: 690px;
  overflow: hidden;
  padding: 24px 18px 18px;
  border-radius: 42px;
  background: linear-gradient(160deg, rgba(255,255,255,.14), rgba(255,255,255,.05));
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-stage-glow {
  position: absolute;
  inset: auto;
  border-radius: 50%;
  filter: blur(34px);
  opacity: .62;
  pointer-events: none;
}
.glow-a { width: 240px; height: 240px; top: 40px; right: -40px; background: rgba(77, 163, 255, .34); }
.glow-b { width: 240px; height: 240px; bottom: 80px; left: -40px; background: rgba(139, 92, 246, .24); }
.logo-watermark {
  position: absolute;
  top: 94px;
  left: 50%;
  width: 112px;
  transform: translateX(-50%);
  opacity: .07;
  pointer-events: none;
}
.hero-portrait {
  position: relative;
  z-index: 2;
  width: min(100%, 462px);
  margin: 0 auto 0;
  align-self: flex-end;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.10);
  filter: drop-shadow(0 46px 90px rgba(0,0,0,.55));
}
.floating-chip {
  position: absolute;
  z-index: 4;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(5,7,13,.68);
  backdrop-filter: blur(20px);
  font-weight: 800;
  box-shadow: 0 16px 46px rgba(0,0,0,.30);
}
.chip-top { top: 30px; right: 18px; }
.chip-bottom { left: 18px; bottom: 24px; }
.floating-card {
  position: absolute;
  z-index: 4;
  width: 220px;
  padding: 18px;
  background: rgba(11,15,27,.56);
}
.floating-card strong { display: block; margin-bottom: 6px; }
.floating-card span { display: block; color: var(--muted); font-size: .92rem; line-height: 1.55; }
.floating-left { left: 18px; top: 130px; }
.floating-right { right: 18px; bottom: 130px; }

.section-heading { max-width: 840px; margin-bottom: 34px; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.audience-card h3 { font-size: 1.6rem; line-height: 1.1; letter-spacing: -.04em; margin-bottom: 16px; }
.feature-grid, .social-grid, .roadmap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card, .social-card, .roadmap-card { padding: 26px; min-height: 220px; }
.icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; background: var(--gradient); margin-bottom: 24px; font-weight: 900; }

.story-section { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; align-items: stretch; }
.text-link { color: white; font-weight: 850; }
.mini-showcase { display: grid; gap: 18px; }
.mini-card { padding: 24px; display: flex; flex-direction: column; justify-content: center; }
.mini-card strong { font-size: 1.4rem; }
.mini-card span { color: var(--muted); margin-top: 8px; }

.social-card { min-height: 190px; display: flex; flex-direction: column; justify-content: space-between; }
.social-card span { color: var(--faint); }
.social-card strong { font-size: 2rem; letter-spacing: -.04em; }
.social-card em { color: var(--muted); font-style: normal; }
.cta-panel { text-align: center; max-width: 920px; margin: auto; }

.page-hero-content { max-width: 900px; }
.store-intro { padding-top: 30px; }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card { overflow: hidden; }
.product-art {
  position: relative;
  height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(77,163,255,.30), rgba(139,92,246,.22), rgba(255,106,74,.22)),
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.24), transparent 28%);
}
.product-watermark {
  position: absolute;
  inset: 24px auto auto 24px;
  width: 140px;
  opacity: .13;
}
.product-art span { position: relative; z-index: 1; padding: 8px 12px; border-radius: 999px; background: rgba(5,7,13,.55); border: 1px solid var(--line); font-size: .78rem; font-weight: 900; }
.product-info { padding: 20px; }
.product-info p { margin: 0 0 5px; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--faint); }
.product-info span { display: block; color: var(--muted); line-height: 1.6; min-height: 78px; }
.product-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 20px; }
.roadmap-card strong { color: var(--faint); font-size: 2.4rem; }

.contact-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: 18px; align-items: start; padding-top: 30px; }
.contact-points { display: grid; gap: 14px; margin-top: 28px; }
.contact-points div { padding: 18px; border-radius: 18px; background: rgba(255,255,255,.06); border: 1px solid var(--line); }
.contact-points strong { display: block; margin-bottom: 6px; }
.contact-points span, .contact-points a { color: var(--muted); }
.services-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.service-pill {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.08);
  color: var(--muted);
  font-size: .92rem;
}
.contact-form { padding: 26px; display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 8px; color: var(--muted); font-weight: 750; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255,255,255,.08);
  color: var(--text);
  padding: 15px 16px;
  outline: none;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: rgba(77,163,255,.65); }
.hidden-field { position: absolute; left: -9999px; opacity: 0; }
.alert { padding: 15px 16px; border-radius: 16px; border: 1px solid var(--line); font-weight: 800; }
.alert.success { background: rgba(20, 184, 166, .18); }
.alert.error { background: rgba(255, 106, 74, .18); }
.form-note { font-size: .82rem; margin: 0; color: var(--faint); }
.form-note code { color: white; }

.footer { width: min(1120px, calc(100% - 32px)); margin: 0 auto; padding: 60px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 24px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: rgba(255,255,255,.06); backdrop-filter: blur(22px); }
.footer h3 { font-size: .95rem; margin-bottom: 12px; }
.footer p, .footer a, .footer-bottom { color: var(--muted); }
.footer a { display: block; margin: 10px 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 12px; padding: 22px 6px 0; font-size: .9rem; }
.footer-brand { margin-bottom: 16px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { justify-content: flex-start; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid, .social-grid, .roadmap-grid, .contact-layout, .story-section, .footer-grid, .audience-grid { grid-template-columns: 1fr; }
  .hero-stage { min-height: 640px; }
}

@media (max-width: 720px) {
  .topbar { top: 10px; height: 68px; width: calc(100% - 20px); }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 82px;
    left: 10px;
    right: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(8,12,22,.92);
    backdrop-filter: blur(24px);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { text-align: center; }
  .section-pad { width: min(100% - 22px, 1120px); padding: 82px 0; }
  .hero { padding-top: 128px; min-height: auto; gap: 34px; }
  h1 { font-size: clamp(2.9rem, 15vw, 4.5rem); }
  h2 { font-size: clamp(2.1rem, 11vw, 3.2rem); }
  .hero-stats { grid-template-columns: 1fr; }
  .brand-mark-full { width: 148px; height: 50px; padding: 0 14px; }
  .brand-mark img { max-width: 118px; }
  .hero-stage { min-height: 560px; padding-top: 18px; }
  .hero-portrait { width: min(100%, 360px); margin-top: 0; }
  .logo-watermark { width: 92px; top: 96px; }
  .floating-card { width: calc(100% - 36px); position: relative; left: auto; right: auto; top: auto; bottom: auto; margin: 12px 18px 0; }
  .floating-left { margin-top: 18px; }
  .floating-right { margin-bottom: 18px; }
  .chip-top { right: 12px; top: 12px; }
  .chip-bottom { left: 12px; bottom: 12px; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid { padding: 24px; }
  .footer-bottom { flex-direction: column; }
}
.maintenance-screen{min-height:100vh;display:grid;place-items:center;width:min(760px,calc(100% - 28px));margin:0 auto;padding:40px 0}.maintenance-card{text-align:center}.maintenance-card img{width:180px;margin:0 auto 30px}.maintenance-card h1{font-size:clamp(2.8rem,8vw,5.4rem)}.store-closed-section{padding-top:20px}.contact-form input:disabled,.contact-form select:disabled,.contact-form textarea:disabled,.contact-form button:disabled{opacity:.55;cursor:not-allowed}
