/* ═══════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════ */
:root {
  --bg:        #F7F8FA;
  --white:     #FFFFFF;
  --ink-900:   #0C0D0F;
  --ink-700:   #1F2937;
  --ink-500:   #6B7280;
  --ink-300:   #D1D5DB;
  --ink-100:   #F3F4F6;

  --red-800:   #991B1B;
  --red-700:   #B91C1C;
  --red-600:   #DC2626;
  --red-100:   #FEE2E2;
  --red-50:    #FFF1F2;

  --font: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont,
          "Segoe UI", system-ui, Helvetica, Arial, sans-serif;
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }

body {
  background: var(--bg);
  color: var(--ink-900);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  min-height: 100svh;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════
   BACKGROUND ORBS
═══════════════════════════════════════════ */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  width: 700px;
  height: 700px;
  top: -300px;
  left: -200px;
  background: radial-gradient(circle, rgba(252,165,165,.28) 0%, transparent 65%);
  filter: blur(80px);
}
.orb-2 {
  width: 550px;
  height: 550px;
  bottom: -220px;
  right: -150px;
  background: radial-gradient(circle, rgba(248,113,113,.15) 0%, transparent 65%);
  filter: blur(70px);
}

/* ═══════════════════════════════════════════
   HERO — CENTERED LAYOUT
═══════════════════════════════════════════ */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem 1.5rem;
}

.hero-inner {
  width: 100%;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ═══════════════════════════════════════════
   APP ICON
═══════════════════════════════════════════ */
.icon-scene {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.2rem;
}

.icon-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252,165,165,.5) 0%, rgba(248,113,113,.18) 40%, transparent 68%);
  filter: blur(48px);
  pointer-events: none;
}

.app-icon {
  position: relative;
  z-index: 1;
  width: min(44vw, 160px);
  aspect-ratio: 1;
  border-radius: 24%;
  display: block;
  box-shadow:
    0 2px 4px rgba(0,0,0,.04),
    0 8px 20px rgba(0,0,0,.09),
    0 24px 48px rgba(0,0,0,.12),
    0 48px 72px rgba(0,0,0,.06);
}

/* ═══════════════════════════════════════════
   COPY
═══════════════════════════════════════════ */
h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.6rem, 6vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.accent-text {
  background: linear-gradient(120deg, var(--red-600) 0%, var(--red-800) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead {
  margin: 0 0 1.8rem;
  font-size: 1.05rem;
  line-height: 1.72;
  color: var(--ink-500);
  max-width: 460px;
}

/* ═══════════════════════════════════════════
   FEATURE LIST — HORIZONTAL CHIPS
═══════════════════════════════════════════ */
.feat-list {
  list-style: none;
  margin: 0 0 2.2rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1.4rem;
}

.feat-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-700);
}

.feat-list svg { flex-shrink: 0; color: var(--red-600); }

/* ═══════════════════════════════════════════
   CTA BUTTON
═══════════════════════════════════════════ */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 13px 24px;
  background: var(--ink-900);
  color: var(--white);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(12,13,15,.22), 0 1px 4px rgba(12,13,15,.1);
  transition: transform 140ms cubic-bezier(.2,.8,.2,1), box-shadow 140ms ease;
  will-change: transform;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(12,13,15,.28), 0 2px 6px rgba(12,13,15,.12);
}

.cta-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.cta-btn strong {
  display: block;
  font-size: .93rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.cta-btn small {
  display: block;
  margin-top: 2px;
  font-size: .69rem;
  opacity: .55;
  font-weight: 400;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.page-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: .75rem 1rem 1.25rem;
}

.privacy-link {
  font-size: .74rem;
  color: var(--ink-500);
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .6;
  transition: opacity 120ms;
}
.privacy-link:hover { opacity: 1; }

/* ═══════════════════════════════════════════
   PRIVACY POLICY PAGE
═══════════════════════════════════════════ */
.policy-page {
  min-height: 100svh;
  background: var(--bg);
}

.policy-shell {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 1.25rem 1.25rem 2rem;
}

.back-link {
  display: inline-block;
  margin-bottom: 1.25rem;
  color: var(--ink-500);
  font-size: .95rem;
}

.policy-card {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background: var(--white);
  border: 1px solid var(--ink-300);
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}

.policy-card h1 {
  margin: 0 0 .9rem;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
}

.policy-card p {
  margin: 0 0 1rem;
  max-width: 44rem;
  color: var(--ink-500);
  font-size: .95rem;
  line-height: 1.68;
}

.policy-intro {
  color: var(--ink-700) !important;
  font-weight: 600;
}

.policy-section {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ink-300);
}

.policy-section h2 {
  margin: 0 0 .6rem;
  font-size: .96rem;
  line-height: 1.4;
  font-weight: 700;
  color: var(--ink-900);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 540px) {
  .hero { padding: 2.5rem 1.25rem 1rem; }

  h1 { font-size: clamp(2.3rem, 11vw, 3rem); }

  .feat-list {
    flex-direction: column;
    align-items: center;
    gap: .55rem;
  }

  .cta-btn { width: 100%; justify-content: center; }
}
