:root {
  --bg: #080315;
  --bg-deep: #120424;
  --panel: rgba(18, 12, 42, 0.86);
  --panel-strong: rgba(27, 17, 58, 0.96);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f7f1ff;
  --muted: #c9bee8;
  --gold: #ffbe2f;
  --gold-soft: #ffe09a;
  --pink: #f33bd8;
  --pink-soft: #ffb1f4;
  --cyan: #39d7ff;
  --cyan-soft: #acefff;
  --danger: #ff6a8b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max: 1180px;
  --heading-font: "Avenir Next Condensed", "Arial Narrow", "Trebuchet MS", sans-serif;
  --body-font: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--body-font);
  background:
    radial-gradient(circle at 15% 20%, rgba(243, 59, 216, 0.22), transparent 24%),
    radial-gradient(circle at 80% 18%, rgba(57, 215, 255, 0.24), transparent 22%),
    radial-gradient(circle at 50% 75%, rgba(255, 190, 47, 0.12), transparent 28%),
    linear-gradient(180deg, #060210 0%, #110521 35%, #17081f 65%, #07020e 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black, transparent 88%);
  opacity: 0.18;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(22px);
  background: rgba(7, 2, 14, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  box-shadow: 0 0 24px rgba(243, 59, 216, 0.35);
}

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy strong {
  font-family: var(--heading-font);
  font-size: 1.05rem;
}

.brand-copy span {
  color: var(--gold-soft);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  position: relative;
  color: var(--muted);
  font-weight: 600;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
  background: linear-gradient(90deg, var(--pink), var(--gold));
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #2d1200;
  background: linear-gradient(135deg, #ffe26a, var(--gold) 45%, #ff8a00);
  box-shadow: 0 14px 28px rgba(255, 166, 0, 0.35);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.hero {
  padding: 78px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 38px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 20px 0 16px;
  font-family: var(--heading-font);
  font-size: clamp(3.2rem, 7vw, 5.3rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero h1 span,
.page-hero h1 span,
.section-heading span {
  color: var(--gold);
  text-shadow: 0 0 18px rgba(255, 190, 47, 0.42);
}

.lead {
  margin: 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.stat-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.stat-pill,
.tag {
  padding: 12px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.stat-pill strong {
  display: block;
  font-size: 1rem;
}

.stat-pill span,
.tag {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
}

.glow-panel,
.feature-card,
.info-card,
.legal-card,
.contact-card,
.step-card,
.timeline-card,
.store-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.hero-main-card {
  position: relative;
  padding: 18px;
}

.hero-main-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(57, 215, 255, 0.4), rgba(243, 59, 216, 0.25), rgba(255, 190, 47, 0.28));
  z-index: -1;
  filter: blur(18px);
}

.hero-main-card img {
  width: 100%;
  border-radius: 22px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.floating-chip {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  min-width: 180px;
  border-radius: 22px;
  background: rgba(7, 2, 14, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow);
}

.floating-chip strong {
  font-size: 1.2rem;
  color: var(--gold-soft);
}

.floating-chip span {
  color: var(--muted);
  font-size: 0.88rem;
}

.chip-left {
  left: -28px;
  bottom: 42px;
}

.chip-right {
  right: -20px;
  top: 30px;
}

.section {
  padding: 42px 0 80px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0 0 12px;
  font-family: var(--heading-font);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.88fr);
  gap: 26px;
  align-items: center;
}

.feature-stack,
.card-grid,
.info-grid,
.legal-grid,
.contact-grid,
.download-grid,
.two-col {
  display: grid;
  gap: 22px;
}

.feature-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-grid,
.legal-grid,
.contact-grid,
.download-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.info-card,
.contact-card,
.legal-card,
.step-card,
.timeline-card,
.store-card {
  padding: 24px;
}

.feature-card h3,
.info-card h3,
.contact-card h3,
.legal-card h3,
.step-card h3,
.timeline-card h3,
.store-card h3 {
  margin: 0 0 10px;
  font-family: var(--heading-font);
  font-size: 1.55rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.feature-card p,
.info-card p,
.contact-card p,
.legal-card p,
.step-card p,
.timeline-card p,
.store-card p,
.panel-copy p,
.footer-note,
.legal-card li,
.content-list li {
  color: var(--muted);
  line-height: 1.7;
}

.contact-card a,
.legal-card a,
.notice a {
  color: var(--cyan-soft);
  text-decoration: underline;
  text-decoration-color: rgba(172, 239, 255, 0.4);
}

.feature-kicker,
.card-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--cyan-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame.tall img {
  min-height: 430px;
}

.mini-steps {
  display: grid;
  gap: 16px;
}

.mini-step {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 14px;
  align-items: start;
}

.step-no {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(243, 59, 216, 0.22), rgba(57, 215, 255, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--heading-font);
  font-size: 1.6rem;
  color: var(--gold-soft);
}

.highlight-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: 24px;
  padding: 24px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(243, 59, 216, 0.12), rgba(57, 215, 255, 0.08)),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.highlight-banner ul,
.content-list,
.legal-card ul {
  padding-left: 18px;
  margin: 14px 0 0;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill-grid span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
}

.page-hero {
  padding: 62px 0 30px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: 28px;
  align-items: center;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-card time {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.store-badge strong {
  display: block;
  font-size: 1rem;
}

.store-badge span {
  color: var(--muted);
  font-size: 0.86rem;
}

.phone-stage {
  position: relative;
  padding: 18px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(57, 215, 255, 0.14), rgba(243, 59, 216, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.phone-frame {
  width: min(100%, 340px);
  margin: 0 auto;
  padding: 14px;
  border-radius: 38px;
  background: #120713;
  border: 3px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.phone-screen {
  overflow: hidden;
  border-radius: 28px;
}

.phone-screen img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.requirements {
  display: grid;
  gap: 16px;
}

.requirement {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.requirement strong {
  color: var(--gold-soft);
}

.contact-panel {
  padding: 30px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  outline: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(57, 215, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(57, 215, 255, 0.12);
}

.checkbox-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.94rem;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form-message {
  display: none;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 700;
}

.form-message.is-visible {
  display: block;
}

.form-message.is-success {
  background: rgba(88, 227, 163, 0.12);
  border: 1px solid rgba(88, 227, 163, 0.35);
  color: #b7f7d7;
}

.form-message.is-error {
  background: rgba(255, 106, 139, 0.12);
  border: 1px solid rgba(255, 106, 139, 0.34);
  color: #ffc2cf;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

th,
td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

th {
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.05);
}

.notice {
  padding: 22px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 190, 47, 0.12), rgba(243, 59, 216, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.notice strong {
  color: var(--gold-soft);
}

.footer {
  padding: 18px 0 40px;
}

.footer-shell {
  padding: 26px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-top {
  align-items: center;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
}

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  align-items: center;
}

.footer-note {
  max-width: 680px;
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-h5-page {
  background:
    radial-gradient(circle at top, rgba(243, 59, 216, 0.22), transparent 28%),
    linear-gradient(180deg, #080315 0%, #150528 55%, #09020f 100%);
}

.mobile-sheet {
  width: min(calc(100% - 24px), 520px);
  margin: 0 auto;
  padding: 18px 0 30px;
}

.mobile-sheet .glow-panel,
.mobile-sheet .image-frame {
  margin-bottom: 18px;
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.mobile-brand img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
}

.mobile-brand strong {
  display: block;
  font-family: var(--heading-font);
  font-size: 1.15rem;
  text-transform: uppercase;
}

.mobile-brand span {
  display: block;
  color: var(--gold-soft);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mobile-copy {
  padding: 22px;
}

.mobile-copy h1,
.mobile-copy h2 {
  margin: 0 0 12px;
  font-family: var(--heading-font);
  text-transform: uppercase;
}

.mobile-copy h1 {
  font-size: 2.25rem;
  line-height: 0.95;
}

.mobile-copy h2 {
  font-size: 1.45rem;
}

.mobile-copy p,
.mobile-copy li {
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-layout,
  .page-hero-grid,
  .highlight-banner,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .feature-stack,
  .card-grid,
  .info-grid,
  .legal-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .floating-chip {
    position: static;
    margin-top: 14px;
  }

  .hero-visual {
    display: grid;
    gap: 14px;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .nav-wrap {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 22px;
    background: rgba(10, 4, 20, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
  }

  .nav-wrap.is-open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .field-grid,
  .requirement {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 22px), var(--max));
  }

  .header-row {
    min-height: 78px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.7rem;
  }

  .section {
    padding: 28px 0 58px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .contact-panel,
  .feature-card,
  .info-card,
  .contact-card,
  .legal-card,
  .step-card,
  .timeline-card,
  .store-card,
  .footer-shell {
    padding: 20px;
  }
}
