
:root {
  --bg: #070b14;
  --bg-soft: #0c1322;
  --panel: rgba(14, 22, 38, 0.72);
  --panel-strong: rgba(17, 27, 46, 0.9);
  --text: #f5f7fb;
  --muted: #9ba7ba;
  --muted-2: #718096;
  --line: rgba(255, 255, 255, 0.10);
  --accent: #7cb8ff;
  --accent-2: #9a7cff;
  --success: #68d7a1;
  --danger: #ff8b93;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 18%, rgba(90, 119, 255, 0.18), transparent 24rem),
    radial-gradient(circle at 18% 82%, rgba(66, 190, 180, 0.08), transparent 26rem),
    linear-gradient(180deg, #080d18 0%, #070b14 58%, #060911 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;
}

.site-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(124, 184, 255, 0.20), rgba(154, 124, 255, 0.12));
  border: 1px solid rgba(124, 184, 255, 0.30);
  color: #dcecff;
  font-weight: 800;
}

.brand-name {
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #c5cfdd;
  font-size: 13px;
  font-weight: 650;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(104, 215, 161, 0.08);
}

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 72px;
  padding: 84px 0 78px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  font-size: clamp(76px, 11vw, 150px);
  line-height: 0.86;
  letter-spacing: -0.07em;
  font-weight: 850;
  background: linear-gradient(180deg, #ffffff 15%, #c9d8ef 86%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.65;
  letter-spacing: -0.01em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.store-button {
  min-width: 176px;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 10px 18px;
  color: #d8dfeb;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  opacity: 0.82;
  cursor: default;
}

.store-small {
  font-size: 10px;
  line-height: 1.1;
  color: #8f9caf;
}

.store-large {
  margin-top: 3px;
  font-size: 18px;
  font-weight: 760;
}

.availability {
  margin: 17px 0 0;
  color: var(--muted-2);
  font-size: 13px;
}

.hero-art {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
}

.glass-card {
  position: relative;
  width: min(390px, 88%);
  aspect-ratio: 0.78;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(150deg, rgba(255,255,255,0.09), rgba(255,255,255,0.018)),
    rgba(11, 18, 32, 0.62);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0 52%, rgba(4, 7, 13, 0.78) 100%),
    radial-gradient(circle at 72% 22%, rgba(130, 157, 255, 0.32), transparent 38%);
  pointer-events: none;
}

.mini-label,
.mini-title,
.mini-line,
.mini-copy {
  position: relative;
  z-index: 1;
}

.mini-label {
  color: #a6b3c6;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.22em;
}

.mini-title {
  margin-top: 5px;
  font-size: 58px;
  font-weight: 850;
  letter-spacing: -0.06em;
}

.mini-line {
  width: 54px;
  height: 1px;
  margin: 20px 0;
  background: rgba(255, 255, 255, 0.34);
}

.mini-copy {
  color: #b5c1d1;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.orb-one {
  width: 260px;
  height: 260px;
  top: 22px;
  right: -20px;
  background: radial-gradient(circle at 35% 30%, rgba(151, 185, 255, 0.62), rgba(83, 83, 190, 0.16) 68%, transparent 71%);
}

.orb-two {
  width: 180px;
  height: 180px;
  bottom: 0;
  left: 10px;
  background: radial-gradient(circle at 40% 35%, rgba(109, 221, 193, 0.28), rgba(36, 125, 145, 0.04) 72%, transparent 74%);
}

.studio-note {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  align-items: start;
  padding: 68px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.studio-note h2 {
  margin: 0;
  max-width: 420px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.studio-note > p {
  margin: 28px 0 0;
  max-width: 590px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.site-footer {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted-2);
  font-size: 13px;
}

.reset-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
}

.reset-card {
  width: min(500px, 100%);
  padding: 38px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.reset-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.reset-card h1 {
  margin: 0;
  text-align: center;
  font-size: 38px;
  letter-spacing: -0.04em;
}

.reset-intro {
  margin: 12px auto 28px;
  max-width: 390px;
  text-align: center;
  color: var(--muted);
  line-height: 1.6;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: #dce4ef;
  font-size: 13px;
  font-weight: 700;
}

.field input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
}

.field input:focus {
  border-color: rgba(124, 184, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(124, 184, 255, 0.08);
}

.primary-button {
  width: 100%;
  min-height: 50px;
  margin-top: 4px;
  border: 0;
  border-radius: 12px;
  color: #06101f;
  background: linear-gradient(135deg, #8bc4ff, #9c8dff);
  font-weight: 800;
  cursor: pointer;
}

.primary-button:hover {
  filter: brightness(1.04);
}

.message {
  min-height: 22px;
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
}

.message.error {
  color: var(--danger);
}

.message.success {
  color: var(--success);
}

.back-link {
  display: block;
  margin-top: 24px;
  text-align: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
}

.back-link:hover {
  color: var(--text);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 60px;
  }

  .hero-art {
    min-height: 400px;
  }

  .studio-note {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 600px) {
  .site-shell {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    height: 78px;
  }

  .brand-name {
    font-size: 16px;
  }

  .status-pill {
    padding: 8px 10px;
    font-size: 11px;
  }

  .hero {
    min-height: auto;
    padding: 60px 0 54px;
  }

  .hero h1 {
    font-size: clamp(72px, 26vw, 112px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .store-button {
    flex: 1 1 150px;
  }

  .glass-card {
    width: min(330px, 94%);
    border-radius: 28px;
    padding: 30px;
  }

  .studio-note {
    padding: 54px 0;
  }

  .studio-note > p {
    margin-top: 8px;
    font-size: 16px;
  }

  .site-footer {
    min-height: 100px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
  }

  .reset-card {
    padding: 30px 22px;
  }
}
