:root {
  color-scheme: light;
  --brand: #a43073;
  --brand-dark: #742250;
  --purple: #7a35db;
  --ink: #201a1e;
  --muted: #746a70;
  --line: #eadfe5;
  --surface: #fffafd;
  --soft: #f8f1f5;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 5%, rgba(122, 53, 219, .10), transparent 28rem),
    radial-gradient(circle at 5% 20%, rgba(164, 48, 115, .10), transparent 28rem),
    #fff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  border-bottom: 1px solid rgba(234, 223, 229, .8);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1120px, calc(100% - 40px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  color: var(--brand);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -.7px;
  text-decoration: none;
}

.nav-links { display: flex; gap: 24px; }
.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.nav-links a:hover { color: var(--brand); }

.hero {
  width: min(1120px, calc(100% - 40px));
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
  padding: 80px 0 96px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(46px, 7vw, 78px);
  line-height: 1.02;
  letter-spacing: -3px;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(120deg, var(--brand), var(--purple));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy {
  max-width: 590px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}
.button-primary { color: white; background: linear-gradient(120deg, var(--brand), var(--purple)); box-shadow: 0 16px 38px rgba(164, 48, 115, .22); }
.button-secondary { border: 1px solid var(--line); background: rgba(255,255,255,.75); }

.phone-wrap { position: relative; display: grid; place-items: center; }
.glow {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(164,48,115,.28), rgba(122,53,219,.20));
  filter: blur(45px);
}
.phone {
  position: relative;
  width: 278px;
  aspect-ratio: 1290 / 2796;
  padding: 9px;
  border: 2px solid #352f33;
  border-radius: 48px;
  background: #111;
  box-shadow: 0 32px 70px rgba(65, 33, 51, .25);
}
.phone-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 39px;
  background:
    radial-gradient(circle at 70% 25%, rgba(255,255,255,.9) 0 3%, transparent 15%),
    radial-gradient(circle at 32% 68%, rgba(255,199,220,.78), transparent 26%),
    linear-gradient(155deg, #35274f 0%, #9a428a 38%, #f0a9ba 70%, #ffe4cf 100%);
}
.island { width: 86px; height: 25px; margin: 11px auto; border-radius: 20px; background: #080808; }
.screen-time { margin-top: 54px; color: white; text-align: center; font-size: 68px; font-weight: 650; letter-spacing: -5px; text-shadow: 0 2px 12px rgba(0,0,0,.14); }
.screen-date { color: rgba(255,255,255,.92); text-align: center; font-size: 12px; font-weight: 600; }
.screen-orb { width: 160px; height: 160px; margin: 78px auto 0; border: 1px solid rgba(255,255,255,.34); border-radius: 50%; background: rgba(255,255,255,.12); backdrop-filter: blur(8px); }

.feature-section { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-inner { width: min(1120px, calc(100% - 40px)); margin: 0 auto; padding: 90px 0; }
.section-title { margin: 0 0 14px; font-size: 38px; letter-spacing: -1.4px; }
.section-intro { max-width: 650px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 42px; }
.feature-card { min-height: 190px; padding: 26px; border: 1px solid var(--line); border-radius: 26px; background: white; }
.feature-icon { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 14px; color: white; background: linear-gradient(135deg, var(--brand), var(--purple)); font-size: 20px; }
.feature-card h3 { margin: 22px 0 8px; font-size: 19px; }
.feature-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.legal-main { width: min(820px, calc(100% - 40px)); margin: 0 auto; padding: 68px 0 100px; }
.legal-hero { margin-bottom: 50px; }
.legal-hero h1 { font-size: clamp(38px, 6vw, 58px); letter-spacing: -2px; }
.updated { margin: 14px 0 0; color: var(--muted); font-size: 14px; }
.legal-intro { margin-top: 30px; color: var(--muted); font-size: 16px; line-height: 1.9; }
.legal-section { padding: 32px 0; border-top: 1px solid var(--line); }
.legal-section h2 { margin: 0 0 18px; font-size: 23px; letter-spacing: -.5px; }
.legal-section h3 { margin: 22px 0 10px; font-size: 17px; }
.legal-section p, .legal-section li { color: var(--muted); font-size: 15px; line-height: 1.85; }
.legal-section p { margin: 10px 0; }
.legal-section ul { margin: 10px 0; padding-left: 22px; }
.contact-link { color: #1264d8; }

.site-footer { border-top: 1px solid var(--line); background: white; }
.footer-inner {
  width: min(1120px, calc(100% - 40px));
  min-height: 120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
}
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--brand); }

@media (max-width: 780px) {
  .nav-links a:first-child { display: none; }
  .hero { grid-template-columns: 1fr; gap: 64px; padding-top: 58px; text-align: center; }
  .hero-copy { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-inner { padding: 28px 0; align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
