*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cyan:    #3CDDF2;
  --blue:    #4572E6;
  --violet:  #A365E1;
  --magenta: #E65CBF;

  --bg:        #0F121A;
  --bg-2:      #141720;
  --text:      #FFFFFF;
  --text-body: rgba(255, 255, 255, 0.82);
  --subtext:   rgba(255, 255, 255, 0.55);

  --brand-gradient: linear-gradient(90deg, var(--magenta), var(--violet), var(--blue), var(--cyan));

  --radius-pill: 50px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg:        #FFFFFF;
    --bg-2:      #F5F5F7;
    --text:      #000000;
    --text-body: rgba(0, 0, 0, 0.72);
    --subtext:   rgba(0, 0, 0, 0.55);
  }
}

html {
  font-family: var(--font);
  background: linear-gradient(180deg, var(--bg), var(--bg-2));
  min-height: 100%;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

/* ─── Hero ─────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 160px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 60% at 50% 110%,
    rgba(163, 101, 225, 0.35) 0%,
    rgba(60, 221, 242, 0.15) 50%,
    transparent 70%);
  pointer-events: none;
}

@media (prefers-color-scheme: light) {
  .hero-bg {
    background: radial-gradient(ellipse 90% 60% at 50% 110%,
      rgba(163, 101, 225, 0.15) 0%,
      rgba(60, 221, 242, 0.08) 50%,
      transparent 70%);
  }
}

.app-icon {
  width: 120px;
  height: 120px;
  border-radius: 26.67%;
  margin-bottom: 28px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 8px 32px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(163, 101, 225, 0.25);
}

.hero h1 {
  font-family: ui-rounded, var(--font);
  font-size: clamp(52px, 10vw, 88px);
  font-weight: 700;
  line-height: 1;
  padding-bottom: 0.15em;
  margin-bottom: 16px;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (prefers-color-scheme: light) {
  .hero h1 {
    background: linear-gradient(90deg, #C02090, #7B35C8, #2E4EBF, #1ABBE0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
}

.hero-tagline {
  font-size: clamp(17px, 3vw, 22px);
  color: var(--subtext);
  font-weight: 400;
  letter-spacing: -0.3px;
  margin-bottom: 48px;
  max-width: 400px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--text);
  color: var(--bg);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.2px;
  transition: opacity 0.2s, transform 0.2s;
  cursor: default;
  opacity: 0.45;
}

.store-btn.live {
  cursor: pointer;
  opacity: 1;
}

.store-btn.live:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.store-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.store-coming {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--subtext);
}

/* ─── Holo divider ──────────────────────────────────── */

.holo-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg,
    var(--magenta),
    var(--violet),
    var(--blue),
    var(--cyan),
    var(--blue),
    var(--violet),
    var(--magenta));
  background-size: 200% 100%;
  animation: holo-sweep 4s linear infinite;
  opacity: 0.75;
}

@keyframes holo-sweep {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* ─── Footer ────────────────────────────────────────── */

footer {
  background: var(--bg);
  border-top: 1px solid rgba(60, 221, 242, 0.18);
  padding: 24px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

@media (prefers-color-scheme: light) {
  footer {
    color: rgba(0, 0, 0, 0.4);
  }
  footer a {
    color: rgba(0, 0, 0, 0.55);
  }
  footer a:hover {
    color: #000;
  }
}

footer a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: #fff;
}

footer .sep {
  margin: 0 10px;
  opacity: 0.4;
}

/* ─── Privacy page ──────────────────────────────────── */

.privacy-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 24px;
}

.privacy-wrap .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cyan);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 48px;
  transition: opacity 0.2s;
}

.privacy-wrap .back-link:hover { opacity: 0.75; }

@media (prefers-color-scheme: light) {
  .privacy-wrap .back-link {
    color: #1ABBE0;
  }
}

.privacy-wrap h1 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.privacy-wrap .updated {
  color: var(--subtext);
  font-size: 14px;
  margin-bottom: 48px;
}

.privacy-wrap h2 {
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.3px;
  margin: 40px 0 12px;
}

.privacy-wrap p, .privacy-wrap li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
}

.privacy-wrap ul {
  padding-left: 20px;
  margin: 8px 0;
}

.privacy-wrap li { margin-bottom: 6px; }

.privacy-wrap a {
  color: var(--cyan);
  text-decoration: none;
}

@media (prefers-color-scheme: light) {
  .privacy-wrap a {
    color: #1ABBE0;
  }
}

.privacy-wrap a:hover { text-decoration: underline; }
