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

:root {
  --bg: #080810;
  --text: #f0f0f0;
  --muted: #ccc;
  --g1: #ff2d78;
  --g2: #a855f7;
  --g3: #3b82f6;
}

html {
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

/* ── HERO ── */
.hero {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
}

/* scrolling screenshots fill the entire page background */
.hero-bg {
  position: fixed;
  inset: 0;
  display: flex;
  gap: 12px;
  align-items: stretch;
  overflow: hidden;
}

.hero-bg .strip-inner {
  display: flex;
  gap: 40px;
  flex-shrink: 0;
  animation: slide 40s linear infinite;
  align-items: center;
}

/* iPhone frame wrapper */
.phone-frame {
  position: relative;
  flex: 0 0 auto;
  height: 108vh;
  aspect-ratio: 9 / 19.5;
  border-radius: 11% / 5.2%;
  background: #1a1a1e;
  box-shadow:
    0 0 0 3px #3a3a3c,
    0 0 0 6px #111115,
    0 40px 80px rgba(0,0,0,.6);
  overflow: hidden;
  opacity: .7;
}

/* Dynamic Island notch */
.phone-frame::before {
  content: '';
  position: absolute;
  top: 1.8%;
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  height: 3.2%;
  background: #111115;
  border-radius: 99px;
  z-index: 2;
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* gradient overlay so text reads clearly */
.hero-overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(8,8,16,.5) 0%, transparent 100%),
    linear-gradient(to bottom, rgba(8,8,16,.6) 0%, rgba(8,8,16,.25) 35%, rgba(8,8,16,.25) 65%, rgba(8,8,16,.7) 100%);
  pointer-events: none;
}

/* hero text sits above bg + overlay */
.hero-content {
  position: relative;
  z-index: 1;
}

.pre-headline {
  font-weight: 700;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  letter-spacing: -.01em;
  color: #fff;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.6);
}

/* ── LOGO LOCKUP ── */
.logo-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.logo-icon {
  width: clamp(56px, 10vw, 80px);
  height: clamp(56px, 10vw, 80px);
  border-radius: 22%;
  box-shadow: 0 8px 40px rgba(168,85,247,.6), 0 0 0 1px rgba(255,255,255,.1);
  flex: 0 0 auto;
}

.wordmark {
  font-family: 'Nunito', -apple-system, sans-serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(115deg, var(--g1) 0%, var(--g2) 50%, var(--g3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: var(--muted);
  max-width: 400px;
  margin: 0 auto 1rem;
  line-height: 1.65;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}

.hero-tags {
  font-size: clamp(.9rem, 1.8vw, 1rem);
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--muted);
  margin-bottom: 2.2rem;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}

/* ── BUTTON ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2rem;
  border-radius: 99px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s, opacity .15s;
  background: linear-gradient(115deg, var(--g1), var(--g2));
  color: #fff;
  box-shadow: 0 4px 28px rgba(168,85,247,.5);
}
.btn:hover { transform: translateY(-2px); opacity: .9; }

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  padding: 2.5rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.footer-logo img {
  width: 28px;
  height: 28px;
  border-radius: 22%;
}

.footer-wordmark {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  background: linear-gradient(115deg, var(--g1), var(--g2), var(--g3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

footer p { font-size: .8rem; color: rgba(255,255,255,.45); }

/* ── PRIVACY PAGE ── */
body.privacy {
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
}

body.privacy a.back {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: color .15s;
}
body.privacy a.back:hover { color: #fff; }

body.privacy .logo-lockup {
  display: flex;
  align-items: center;
  gap: .8rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

body.privacy .logo-lockup img {
  width: 48px;
  height: 48px;
  border-radius: 22%;
  box-shadow: 0 4px 20px rgba(168,85,247,.5);
}

body.privacy .wordmark {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  background: linear-gradient(115deg, var(--g1), var(--g2), var(--g3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.privacy .card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  max-width: 590px;
  width: 100%;
}

body.privacy h1 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

body.privacy p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #aaa;
}

body.privacy p strong { color: #f0f0f0; }

body.privacy .updated {
  margin-top: 2rem;
  font-size: .8rem;
  color: rgba(255,255,255,.25);
}

.footer-links {
  display: flex;
  gap: 1.2rem;
  font-size: .8rem;
}

.footer-links a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .15s;
}
.footer-links a:hover { color: #fff; }
