:root {
  --bg: #150f27;
  --bg-deep: #0f0a1d;
  --card: rgba(58, 43, 89, 0.54);
  --card-strong: rgba(79, 61, 119, 0.68);
  --stroke: rgba(207, 180, 255, 0.16);
  --stroke-bright: rgba(222, 200, 255, 0.34);
  --text: #f7efff;
  --muted: #d3c4eb;
  --muted-soft: #ad9acb;
  --accent: #c89cff;
  --accent-2: #a879ff;
  --accent-3: #efb7ff;
  --shadow: rgba(8, 5, 18, 0.45);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 76% 7%, rgba(165, 128, 238, 0.42) 0 9rem, transparent 9.2rem),
    radial-gradient(circle at 10% 55%, rgba(127, 94, 183, 0.35) 0 13rem, transparent 13.2rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 0%, rgba(255, 255, 255, 0.08), transparent 22rem),
    radial-gradient(circle at 10% 80%, rgba(197, 156, 255, 0.11), transparent 18rem);
}

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

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

.page-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  position: relative;
  padding: 26px 0 34px;
}

.site-header {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  padding: 12px 16px 12px 14px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(70, 52, 105, 0.58), rgba(30, 22, 51, 0.48));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.brand-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 32% 24%, #f3d8ff 0 10%, transparent 11%),
    linear-gradient(145deg, #dfb7ff 0%, #9c6fff 58%, #5a3b91 100%);
  box-shadow: 0 12px 26px rgba(158, 110, 255, 0.35), inset 0 4px 10px rgba(255, 255, 255, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.nav-links a {
  padding: 12px 16px;
  border-radius: 999px;
  transition: 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
  background: rgba(208, 178, 255, 0.13);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 58px;
  align-items: center;
}

.hero {
  padding: 54px 0 86px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.soft-badge {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  padding: 12px 16px;
  border: 1px solid var(--stroke-bright);
  border-radius: 999px;
  color: #eadfff;
  background: linear-gradient(180deg, rgba(101, 77, 148, 0.66), rgba(45, 32, 73, 0.55));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 20px 50px rgba(0, 0, 0, 0.2);
  font-weight: 900;
}

.badge-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent-3), var(--accent-2));
  box-shadow: 0 0 22px rgba(200, 156, 255, 0.95);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  font-weight: 900;
  text-wrap: balance;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.15rem, 4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 900;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.1;
  font-weight: 900;
}

p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-text {
  max-width: 620px;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

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

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--stroke-bright);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(180deg, #d7b6ff 0%, #9f74f2 56%, #7650c9 100%);
  box-shadow: 0 18px 42px rgba(160, 116, 242, 0.32), inset 0 3px 10px rgba(255, 255, 255, 0.28);
}

.button-ghost {
  color: var(--text);
  background: rgba(55, 41, 86, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mood-row {
  display: flex;
  gap: 13px;
  margin-top: 38px;
}

.mood-row span {
  width: clamp(46px, 7vw, 68px);
  height: clamp(46px, 7vw, 68px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: clamp(1.35rem, 3vw, 2rem);
  color: #7a48bd;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.95) 0 10%, transparent 11%),
    radial-gradient(circle at 66% 70%, rgba(239, 183, 255, 0.9), transparent 38%),
    linear-gradient(145deg, #f1cbff, #c68cff 58%, #8758db);
  box-shadow: 0 12px 22px rgba(155, 107, 236, 0.32), inset 0 5px 11px rgba(255, 255, 255, 0.45);
}

.mood-row span:nth-child(2) { transform: translateY(6px); }
.mood-row span:nth-child(3) { transform: translateY(13px); }
.mood-row span:nth-child(4) { transform: translateY(6px); }

.phone-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 600px;
}

.phone-glow {
  position: absolute;
  width: min(88%, 470px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(203, 160, 255, 0.36), transparent 68%);
  filter: blur(8px);
}

.phone-frame {
  position: relative;
  width: min(390px, 84vw);
  max-height: 720px;
  overflow: hidden;
  padding: 11px;
  border-radius: 50px;
  border: 1px solid rgba(223, 202, 255, 0.28);
  background: linear-gradient(180deg, rgba(126, 103, 173, 0.45), rgba(22, 15, 39, 0.68));
  box-shadow: 0 45px 120px rgba(0, 0, 0, 0.52), 0 0 70px rgba(180, 132, 255, 0.18), inset 0 2px 0 rgba(255, 255, 255, 0.16);
}

.phone-frame img {
  width: 100%;
  max-height: 698px;
  object-fit: cover;
  object-position: top center;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.features-section {
  padding: 72px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--accent-3);
  font-size: 0.88rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.glass-card {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(63, 48, 95, 0.69), rgba(27, 19, 48, 0.66));
  box-shadow: 0 30px 90px var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-height: 260px;
  padding: 26px;
  border-radius: var(--radius-lg);
}

.feature-card p {
  margin-bottom: 0;
  font-size: 0.98rem;
}

.card-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 22px;
  color: #fff;
  font-size: 1.8rem;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.8), transparent 18%),
    linear-gradient(145deg, #e9c3ff, #a976f4 55%, #6f4ac2);
  box-shadow: 0 16px 34px rgba(153, 106, 237, 0.28), inset 0 3px 8px rgba(255, 255, 255, 0.25);
}

.privacy-highlight {
  margin: 52px 0 76px;
  padding: clamp(28px, 5vw, 54px);
}

.privacy-highlight p:last-child {
  margin-bottom: 0;
}

.privacy-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.privacy-pills span {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(223, 202, 255, 0.22);
  border-radius: 999px;
  color: #eee5ff;
  background: rgba(33, 23, 56, 0.48);
  font-weight: 900;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin: 40px 0 82px;
  padding: clamp(28px, 5vw, 50px);
}

.cta-panel h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  padding: 22px 0 0;
  color: var(--muted-soft);
  font-weight: 800;
}

.site-footer a {
  color: #e6d9ff;
}

.orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.orb-one {
  width: 420px;
  height: 420px;
  top: 84px;
  right: -250px;
  background: rgba(147, 119, 203, 0.38);
}

.orb-two {
  width: 280px;
  height: 280px;
  top: 570px;
  left: -210px;
  background: rgba(112, 86, 164, 0.42);
}

.orb-three {
  width: 180px;
  height: 180px;
  right: 16%;
  bottom: 230px;
  background: rgba(204, 158, 255, 0.12);
}

.policy-shell {
  width: min(980px, calc(100% - 36px));
}

.policy-hero {
  margin-top: 54px;
  padding: clamp(30px, 6vw, 64px);
}

.policy-hero h1 {
  margin-bottom: 12px;
}

.policy-date {
  margin-bottom: 0;
  color: #eadfff;
  font-weight: 900;
}

.policy-content {
  margin: 24px 0 64px;
  padding: clamp(28px, 5vw, 56px);
}

.policy-content h2 {
  margin: 34px 0 14px;
  color: #fff7fb;
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
}

.policy-content p {
  color: #dfd2f4;
  font-size: 1.1rem;
}

.policy-content p:last-child {
  margin-bottom: 0;
}

.policy-content a {
  color: #f2d9ff;
  text-decoration: underline;
  text-decoration-color: rgba(242, 217, 255, 0.62);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.contact-line {
  padding-top: 16px;
  border-top: 1px solid var(--stroke);
  font-weight: 900;
}

.contact-line a {
  color: #f2d9ff;
  text-decoration: underline;
  text-decoration-color: rgba(242, 217, 255, 0.38);
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  .section-grid,
  .privacy-highlight {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding-top: 34px;
  }

  .phone-stage {
    min-height: auto;
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 24px, 1180px);
    padding-top: 14px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 28px;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
  }

  .nav-links a {
    padding: 10px 12px;
  }

  .hero {
    padding-bottom: 58px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .phone-frame {
    width: min(360px, 96vw);
  }
}
