/* ═══════════════════════════════════════════════════════════════════════
   Icebreaker – Design System
   Brand: #FF0F96 (pink) → #7A00F5 (purple), #00D0FF (cyan)
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --pink:       #FF0F96;
  --purple:     #7A00F5;
  --cyan:       #00D0FF;
  --bg-dark:    #090011;
  --bg-surface: #130020;
  --bg-card:    #1C002E;
  --divider:    #2A1040;
  --text-muted: #B0A4C0;

  --gradient: linear-gradient(135deg, var(--pink), var(--purple));
  --gradient-h: linear-gradient(135deg, var(--purple), var(--pink));

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;

  --shadow-glow-pink:   0 0 60px rgba(255,15,150,0.25);
  --shadow-glow-purple: 0 0 60px rgba(122,0,245,0.25);
  --shadow-card:        0 4px 32px rgba(9,0,17,0.5);
  --shadow-card-hover:  0 12px 48px rgba(255,15,150,0.18);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', sans-serif;

  --nav-h: 68px;
  --section-pad: 100px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }
ul { list-style: none; }

/* ── Typography scale ── */
.h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; }
.h2 { font-size: clamp(1.8rem, 4vw, 3rem);   font-weight: 800; line-height: 1.12; letter-spacing: -0.025em; }
.h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; line-height: 1.3; }
.h4 { font-size: 1.1rem; font-weight: 700; }
.body-lg { font-size: clamp(1rem, 1.8vw, 1.2rem); line-height: 1.7; }
.body    { font-size: 1rem;  line-height: 1.65; }
.caption { font-size: 0.82rem; line-height: 1.5; }
.label   { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }

/* ── Gradient text ── */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Utility ── */
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Layout container ── */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 760px; }
.container--wide   { max-width: 1280px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  cursor: pointer;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 24px rgba(255,15,150,0.35);
}
.btn-primary:hover { box-shadow: 0 8px 36px rgba(255,15,150,0.55); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(12px);
}
.btn-outline:hover {
  border-color: var(--pink);
  box-shadow: 0 0 20px rgba(255,15,150,0.2);
}

.btn-cyan {
  background: var(--cyan);
  color: var(--bg-dark);
  font-weight: 800;
  box-shadow: 0 4px 24px rgba(0,208,255,0.3);
}
.btn-cyan:hover { box-shadow: 0 8px 36px rgba(0,208,255,0.5); }

/* ── Divider ── */
.divider {
  width: 100%;
  height: 1px;
  background: var(--divider);
}

/* ═══════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(9,0,17,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--divider);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.nav__logo-icon {
  width: 34px;
  height: 34px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 2px 12px rgba(255,15,150,0.4);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s;
}
.nav__links a:hover { color: #fff; }
.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  position: relative;
  overflow: hidden;
}

/* Ambient glow blobs */
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__glow--pink {
  width: 600px; height: 600px;
  top: -10%; left: -5%;
  background: radial-gradient(circle, rgba(255,15,150,0.18) 0%, transparent 70%);
  animation: drift 8s ease-in-out infinite alternate;
}
.hero__glow--purple {
  width: 500px; height: 500px;
  bottom: 0; right: -5%;
  background: radial-gradient(circle, rgba(122,0,245,0.16) 0%, transparent 70%);
  animation: drift 10s ease-in-out infinite alternate-reverse;
}
.hero__glow--cyan {
  width: 300px; height: 300px;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0,208,255,0.08) 0%, transparent 70%);
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, -30px) scale(1.1); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%,-50%) scale(1.2); }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 10px;
  background: rgba(255,15,150,0.1);
  border: 1px solid rgba(255,15,150,0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.hero__badge-dot {
  width: 6px; height: 6px;
  background: var(--pink);
  border-radius: 50%;
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

.hero__title {
  margin-bottom: 24px;
}
.hero__sub {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 40px;
}
.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* App store badges (coming soon state) */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  cursor: default;
  position: relative;
  transition: border-color 0.2s;
}
.store-badge__soon {
  position: absolute;
  top: -9px;
  right: 10px;
  background: var(--cyan);
  color: var(--bg-dark);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: 100px;
}
.store-badge__icon { font-size: 1.3rem; opacity: 0.6; }
.store-badge__text { text-align: left; line-height: 1.3; }
.store-badge__text small { display: block; font-size: 0.7rem; font-weight: 400; opacity: 0.65; }
.store-badge__text strong { font-size: 0.95rem; }

/* Phone mockup visual */
.hero__visual {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
.phone-frame {
  width: 220px;
  height: 440px;
  background: var(--bg-surface);
  border-radius: 40px;
  border: 2px solid var(--divider);
  margin: 0 auto;
  position: relative;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), var(--shadow-card), 0 0 80px rgba(122,0,245,0.25);
  overflow: hidden;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 8px;
  background: var(--bg-card);
  border-radius: 4px;
}
.phone-screen {
  position: absolute;
  inset: 20px 8px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 8px;
  gap: 8px;
}
.phone-user-card {
  width: 100%;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--divider);
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: card-float 3.5s ease-in-out infinite;
}
.phone-user-card:nth-child(2) { animation-delay: -1.75s; }
.phone-user-card__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
}
.phone-user-card__info { flex: 1; }
.phone-user-card__name {
  height: 8px;
  border-radius: 4px;
  margin-bottom: 5px;
  background: rgba(255,255,255,0.18);
}
.phone-user-card__sub {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.08);
  width: 65%;
}
.phone-connect {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
}
.phone-connect__bolt {
  font-size: 1.4rem;
  animation: bolt-pulse 1.8s ease-in-out infinite;
}
.phone-connect__line {
  width: 2px;
  height: 20px;
  border-radius: 1px;
  background: linear-gradient(to bottom, var(--pink), var(--cyan));
  animation: bolt-pulse 1.8s ease-in-out infinite;
}

@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}
@keyframes bolt-pulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.85); }
}

/* Floating user chips around the phone */
.user-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(19,0,32,0.85);
  border: 1px solid var(--divider);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-card);
}
.user-chip__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4CD98A;
  box-shadow: 0 0 8px rgba(76,217,138,0.6);
  animation: blink 2s ease-in-out infinite;
}
.user-chip--1 { top: 30px; left: -30px; animation: chip-float 4s ease-in-out infinite; }
.user-chip--2 { top: 80px; right: -40px; animation: chip-float 4s ease-in-out infinite 1.3s; }
.user-chip--3 { bottom: 60px; left: -20px; animation: chip-float 4s ease-in-out infinite 2.6s; }

@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ═══════════════════════════════════════════
   SECTION COMMON
   ═══════════════════════════════════════════ */
.section {
  padding: var(--section-pad) 0;
}
.section--dark { background: var(--bg-dark); }
.section--surface { background: var(--bg-surface); }
.section--card { background: var(--bg-card); }

.section__header {
  margin-bottom: 64px;
}
.section__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--pink);
}
.section__title { margin-bottom: 16px; }
.section__sub { color: var(--text-muted); }

/* ═══════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  counter-reset: steps;
}
.step-card {
  background: var(--bg-surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.25s ease;
  border-radius: inherit;
}
.step-card:hover {
  border-color: rgba(255,15,150,0.35);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.step-card:hover::before { opacity: 0.04; }

.step-card__number {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--pink);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.step-card__icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.step-card__icon--pink   { background: rgba(255,15,150,0.12); }
.step-card__icon--purple { background: rgba(122,0,245,0.12); }
.step-card__icon--cyan   { background: rgba(0,208,255,0.12); }

.step-card__title {
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.step-card__body {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════
   FEATURES / BENEFITS
   ═══════════════════════════════════════════ */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover {
  border-color: rgba(122,0,245,0.35);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(122,0,245,0.14);
}
.feature-card__icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
}
.feature-card__title { margin-bottom: 8px; }
.feature-card__body { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ═══════════════════════════════════════════
   SAFETY SECTION
   ═══════════════════════════════════════════ */
.safety-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.safety-visual {
  position: relative;
}
.safety-card {
  background: var(--bg-card);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.2s, transform 0.2s;
  margin-bottom: 12px;
}
.safety-card:hover {
  border-color: rgba(0,208,255,0.3);
  transform: translateX(6px);
}
.safety-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(0,208,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.safety-card__title { margin-bottom: 4px; }
.safety-card__body { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }
.safety-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(76,217,138,0.1);
  border: 1px solid rgba(76,217,138,0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #4CD98A;
  margin-top: 8px;
}

/* ═══════════════════════════════════════════
   DOWNLOAD / CTA SECTION
   ═══════════════════════════════════════════ */
.cta-section {
  padding: var(--section-pad) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(122,0,245,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section__content { position: relative; z-index: 1; }
.store-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.store-badge-lg {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  cursor: default;
  position: relative;
  transition: border-color 0.2s;
  min-width: 200px;
}
.store-badge-lg__soon {
  position: absolute;
  top: -10px; right: 14px;
  background: var(--gradient);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 2px 10px;
  border-radius: 100px;
  box-shadow: 0 2px 12px rgba(255,15,150,0.4);
}
.store-badge-lg__icon { font-size: 1.6rem; opacity: 0.5; }
.store-badge-lg__label { text-align: left; }
.store-badge-lg__label small { display: block; font-size: 0.7rem; opacity: 0.55; }
.store-badge-lg__label strong { font-size: 1rem; }
.notify-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.notify-input {
  padding: 13px 20px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  color: #fff;
  font-family: var(--font);
  font-size: 0.95rem;
  width: 280px;
  outline: none;
  transition: border-color 0.2s;
}
.notify-input::placeholder { color: rgba(255,255,255,0.3); }
.notify-input:focus { border-color: var(--pink); }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--divider);
  padding: 48px 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer__brand p { color: var(--text-muted); font-size: 0.88rem; margin-top: 12px; line-height: 1.65; max-width: 240px; }
.footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { color: var(--text-muted); font-size: 0.88rem; transition: color 0.15s; }
.footer__links a:hover { color: #fff; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--divider);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy { font-size: 0.82rem; color: var(--text-muted); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 0.82rem; color: var(--text-muted); transition: color 0.15s; }
.footer__legal a:hover { color: #fff; }

/* ═══════════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════════ */
.legal-hero {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  border-bottom: 1px solid var(--divider);
}
.legal-hero__eyebrow {
  color: var(--pink);
  margin-bottom: 12px;
}
.legal-body {
  padding: 64px 0 100px;
}
.legal-content {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.75;
}
.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 40px 0 12px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  margin: 24px 0 8px;
}
.legal-content p { margin-bottom: 14px; }
.legal-content ul {
  list-style: disc;
  margin: 0 0 14px 20px;
}
.legal-content ul li { margin-bottom: 6px; }
.legal-content a { color: var(--pink); transition: opacity 0.15s; }
.legal-content a:hover { opacity: 0.75; }
.legal-updated {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ═══════════════════════════════════════════
   SUPPORT PAGE
   ═══════════════════════════════════════════ */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 64px;
}
.support-card {
  background: var(--bg-surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.support-card:hover {
  border-color: rgba(255,15,150,0.3);
  transform: translateY(-4px);
}
.support-card__icon { font-size: 1.8rem; margin-bottom: 16px; }
.support-card__title { margin-bottom: 8px; }
.support-card__body { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; margin-bottom: 20px; }

.faq { border-top: 1px solid var(--divider); }
.faq-item {
  border-bottom: 1px solid var(--divider);
}
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  gap: 16px;
  transition: color 0.15s;
}
.faq-btn:hover { color: var(--pink); }
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--text-muted);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding-bottom: 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════ */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}
[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }
[data-animate-delay="4"] { transition-delay: 0.4s; }
[data-animate-delay="5"] { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════
   MOBILE NAV DRAWER
   ═══════════════════════════════════════════ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(9,0,17,0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  transition: color 0.15s;
}
.mobile-nav a:hover { color: #fff; }
.mobile-nav__close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  :root { --section-pad: 72px; }

  .nav__links { display: none; }
  .nav__cta .btn { display: none; }
  .hamburger { display: flex; }

  .safety-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .safety-visual { order: -1; }

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

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

@media (max-width: 600px) {
  :root { --section-pad: 56px; }

  /* Scale down display type so headings don't overflow at 390px */
  .h1 { font-size: clamp(1.4rem, 6vw, 2rem); }
  .h2 { font-size: clamp(1.3rem, 5vw, 1.8rem); }

  /* Collapse hero side padding — let body/container padding handle it */
  .hero--homepage { padding-left: 0; padding-right: 0; }

  .hero__ctas { flex-direction: column; }
  .steps { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .phone-frame { width: 180px; height: 360px; }
  .user-chip { display: none; }

  .notify-form { flex-direction: column; }
  .notify-input { width: 100%; }
}

/* ═══════════════════════════════════════════
   WEBSITE REFRESH ADDITIONS
   ═══════════════════════════════════════════ */
.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255,15,150,0.22);
}

.hero--homepage {
  text-align: left;
  padding-bottom: 120px;
}
.hero-home {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-home__copy {
  max-width: 670px;
}
.hero__sub--left,
.hero__ctas--left {
  margin-left: 0;
  justify-content: flex-start;
}
.hero-points {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}
.hero-point {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ddd6e5;
  font-size: 0.96rem;
}
.hero-point span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(0,208,255,0.14);
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 800;
}
.hero-home__visual {
  display: flex;
  justify-content: center;
}
.hero-device-stack {
  position: relative;
  width: 100%;
  min-height: 660px;
}
.screen-card {
  position: absolute;
  width: 280px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(28,0,46,0.94), rgba(19,0,32,0.98));
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 18px 60px rgba(0,0,0,0.35), 0 0 48px rgba(122,0,245,0.12);
  padding: 14px;
  overflow: hidden;
}
.screen-card--primary {
  top: 0;
  left: 0;
  z-index: 3;
  transform: rotate(-8deg);
}
.screen-card--secondary {
  top: 150px;
  right: 10px;
  z-index: 2;
  transform: rotate(7deg);
}
.screen-card--tertiary {
  bottom: 10px;
  left: 70px;
  z-index: 1;
  transform: rotate(-2deg);
}
.screen-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.screen-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,15,150,0.14);
  color: #ffd0ec;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.screen-pill--cyan {
  background: rgba(0,208,255,0.12);
  color: #bcf6ff;
}
.screen-pill--pink {
  background: rgba(255,15,150,0.16);
}
.screen-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #4CD98A;
  box-shadow: 0 0 12px rgba(76,217,138,0.75);
}
.mock-app {
  border-radius: 24px;
  background: linear-gradient(180deg, #0e0516, #130020);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 16px;
  min-height: 430px;
}
.mock-status-row,
.mock-name-row,
.mock-action-row,
.mock-tags,
.decision-row {
  display: flex;
  align-items: center;
}
.mock-status-row,
.mock-name-row {
  justify-content: space-between;
}
.mock-status-row {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  margin-bottom: 14px;
}
.mock-profile-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  padding: 12px;
}
.mock-photo {
  height: 220px;
  border-radius: 18px;
  margin-bottom: 12px;
  background: radial-gradient(circle at top, rgba(255,15,150,0.32), transparent 35%), linear-gradient(135deg, #ff0f96, #7a00f5 55%, #00d0ff);
}
.mock-name-row strong {
  font-size: 1rem;
}
.mock-name-row span,
.mock-profile-card p {
  color: rgba(255,255,255,0.72);
}
.mock-profile-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 12px 0;
}
.mock-tags {
  gap: 8px;
  flex-wrap: wrap;
}
.mock-tags span {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.82);
}
.mock-action-row {
  gap: 10px;
  margin-top: 16px;
}
.mock-action-row button {
  flex: 1;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-weight: 700;
}
.mock-action-row button.is-primary {
  background: var(--gradient);
}
.mock-action-row--stack {
  flex-direction: column;
}
.mock-action-row--stack button {
  width: 100%;
}
.mock-app--match,
.mock-app--chat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.mock-app--match h3,
.mock-app--chat h3 {
  font-size: 1.4rem;
  margin: 12px 0 6px;
}
.mock-app--match p,
.mock-app--chat p {
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.match-color {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  margin: 0 auto;
  background: linear-gradient(135deg, #00d0ff, #6f81ff);
  box-shadow: 0 0 50px rgba(0,208,255,0.35);
}
.timer {
  width: 126px;
  margin: 22px auto;
  padding: 14px 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.decision-row {
  gap: 10px;
  margin-top: 24px;
}
.decision-card {
  flex: 1;
  padding: 18px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  font-size: 0.85rem;
  font-weight: 700;
}
.trust-strip {
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: 18px 0;
  background: rgba(12,0,20,0.92);
}
.trust-strip__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
}
.steps--four {
  grid-template-columns: repeat(4, 1fr);
}
.positioning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.shot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.shot-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--divider);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow-card);
}
.shot-card h3 {
  margin: 16px 0 8px;
}
.shot-card p {
  font-size: 0.92rem;
  line-height: 1.6;
}
.shot-card__phone {
  border-radius: 28px;
  padding: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.06);
}
.shot-placeholder {
  min-height: 360px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.shot-placeholder--pink {
  background: linear-gradient(135deg, rgba(255,15,150,0.4), rgba(122,0,245,0.18));
}
.shot-placeholder--cyan {
  background: linear-gradient(135deg, rgba(0,208,255,0.4), rgba(122,0,245,0.18));
}
.shot-placeholder--purple {
  background: linear-gradient(135deg, rgba(122,0,245,0.42), rgba(255,15,150,0.18));
}
.section--quote {
  padding-top: 70px;
  padding-bottom: 70px;
}
.quote-block {
  font-size: clamp(1.2rem, 2.5vw, 1.9rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.02em;
}
.cta-logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  margin: 0 auto 18px;
  border-radius: 26px;
  box-shadow: 0 0 42px rgba(255,15,150,0.24);
}

@media (max-width: 1100px) {
  .hero-home,
  .positioning-grid,
  .shot-grid {
    grid-template-columns: 1fr;
  }
  .steps--four {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-home__visual {
    margin-top: 16px;
  }
  .hero-device-stack {
    min-height: 720px;
    max-width: 620px;
  }
}

@media (max-width: 900px) {
  .hero--homepage {
    text-align: center;
  }
  .hero__sub--left,
  .hero__ctas--left {
    margin-right: auto;
    margin-left: auto;
    justify-content: center;
  }
  .hero-points {
    justify-items: center;
  }
  .screen-card--primary {
    left: 10px;
  }
  .screen-card--secondary {
    right: 10px;
  }
  .screen-card--tertiary {
    left: 120px;
  }
}

@media (max-width: 700px) {
  .hero-device-stack {
    min-height: auto;
    display: grid;
    gap: 18px;
  }
  .screen-card {
    position: static;
    width: 100%;
    transform: none;
  }
  .steps--four {
    grid-template-columns: 1fr;
  }
  .shot-grid {
    gap: 18px;
  }
  .shot-placeholder {
    min-height: 260px;
  }
}
