/* ═══════════════════════════════════════════════════════════
   ONLYSUBSCRIBERS — DESIGN SYSTEM & STYLESHEET
   Color Palette:
     Primary Blue:   #00AFF0
     White:          #FFFFFF
     Border Gray:    #E5E7EB
     Dark Text:      #242529
     Soft BG:        #F9FAFB
     Mid Gray:       #6B7280
     Light Blue:     #EBF8FF
   ═══════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #00AFF0;
  --blue-dark:   #0090C8;
  --blue-light:  #EBF8FF;
  --blue-glow:   rgba(0,175,240,.25);
  --white:       #FFFFFF;
  --bg-soft:     #F9FAFB;
  --border:      #E5E7EB;
  --text-dark:   #242529;
  --text-mid:    #6B7280;
  --text-light:  #9CA3AF;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.14);
  --shadow-blue: 0 8px 32px rgba(0,175,240,.20);
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-pill: 100px;
  --transition:  all .22s cubic-bezier(.4,0,.2,1);
  --font:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ─── LAYOUT ────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── TYPOGRAPHY ────────────────────────────────────────── */
.highlight-blue       { color: var(--blue); }
.highlight-blue-dark  { color: var(--blue); }

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  text-decoration: none;
  letter-spacing: -.01em;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 12px 40px rgba(0,175,240,.4);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}

.btn-sm  { padding: 10px 22px; font-size: .875rem; }
.btn-md  { padding: 13px 28px; font-size: .9375rem; }
.btn-lg  { padding: 16px 36px; font-size: 1rem; }
.btn-xl  { padding: 18px 44px; font-size: 1.075rem; }
.btn-block { width: 100%; }

@keyframes pulse {
  0%,100% { box-shadow: var(--shadow-blue); }
  50%      { box-shadow: 0 0 0 10px rgba(0,175,240,0); }
}
.pulse-anim { animation: pulse 2.2s infinite; }

/* ─── SECTION COMMONS ───────────────────────────────────── */
section { padding: 96px 0; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-eyebrow {
  display: inline-block;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--text-dark);
  letter-spacing: -.03em;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.0625rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   SECTION 0: HEADER
   ══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px; /* Taller header for better logo presentation on desktop */
}

.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 48px; /* Bigger logo for improved legibility */
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-img-sm {
  height: 36px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
}
.nav-link:hover { color: var(--blue); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ══════════════════════════════════════════════════════════
   SECTION 1: HERO
   ══════════════════════════════════════════════════════════ */
.hero {
  padding-top: 120px; /* Spacing offsets the taller desktop header */
  padding-bottom: 120px;
  background: linear-gradient(135deg, var(--blue-light) 0%, #FFFFFF 60%);
  overflow: hidden;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 80px 120px;
  align-items: stretch;
}

/* Hero Image Card */
.hero-image-card {
  grid-column: 1;
  grid-row: 1;
  height: 100%;
  min-height: 520px;
  border-radius: 24px;
  position: relative;
  box-shadow: 0 24px 48px rgba(0,0,0,.15);
  overflow: hidden;
}
.hero-image-card::before {
  content: '';
  position: absolute;
  inset: -20px;
  background-image: url('hero-bg.webp');
  background-size: cover;
  background-position: center;
  filter: blur(6px);
  z-index: 1;
}
.hero-image-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.05) 0%, rgba(0,0,0,.2) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Urgency Banner centered on top of Blurred Card */
.urgency-banner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: #FFF5F5;
  border: 1px solid #FFE3E3;
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  white-space: nowrap;
}
.urgency-dot {
  width: 8px; height: 8px;
  background: #FF4444;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255,68,68,.2);
  animation: blink 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: .4; }
}
.urgency-text { font-size: .85rem; font-weight: 600; color: #FF4444; }
.urgency-text strong { color: #FF4444; font-weight: 800; }

/* Hero Content */
.hero-content {
  grid-column: 2;
  grid-row: 1;
  padding-top: 20px;
}

.badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.badge-blue {
  background: var(--blue-light);
  color: var(--blue);
  border: 1px solid rgba(0,175,240,.2);
}
.badge-gray {
  background: var(--bg-soft);
  color: var(--text-mid);
  border: 1px solid var(--border);
}

.hero-headline {
  font-size: clamp(2.5rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.04em;
  color: var(--text-dark);
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 34px;
  max-width: 480px;
}

.cta-block { margin-bottom: 28px; }
.cta-micro {
  margin-top: 12px;
  font-size: .8125rem;
  color: var(--text-light);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-mid);
}
.trust-icon {
  width: 18px; height: 18px;
  color: var(--blue);
  flex-shrink: 0;
}

/* Hero Visual (Phone Mockup) */
.hero-visual {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

.mockup-phone {
  width: 320px;
  min-height: 560px;
  background: #fff;
  border: 6px solid #000;
  border-radius: 38px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,.15);
  display: flex;
  flex-direction: column;
  overflow: visible;
}
.mockup-phone::before {
  content: '';
  position: absolute;
  top: 120px;
  left: -9px;
  width: 3px;
  height: 24px;
  background: #000;
  border-radius: 2px 0 0 2px;
  box-shadow: 0 40px 0 #000; /* Volume Down */
}
.mockup-phone::after {
  content: '';
  position: absolute;
  top: 140px;
  right: -9px;
  width: 3px;
  height: 36px;
  background: #000;
  border-radius: 0 2px 2px 0;
}
.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px; 
  height: 24px;
  background: #000;
  border-radius: 20px;
  z-index: 20;
}
.phone-notch::after {
  content: '';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px; 
  height: 8px;
  background: #000;
  border: 2px solid #2a2a3a;
  border-radius: 50%;
  box-shadow: inset 0 0 2px rgba(255,255,255,0.2);
}
.phone-screen {
  padding-top: 36px;
  flex: 1;
  background: #f8f8fb;
  display: flex;
  flex-direction: column;
  border-radius: 32px;
  overflow: hidden;
}
.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px 10px;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.phone-logo {
  font-weight: 900;
  font-size: 1rem;
  color: var(--blue);
}
.phone-header-text {
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-mid);
}
.phone-bell { font-size: 1rem; }

/* Feed cards */
.feed-card {
  background: #fff;
  border-radius: 12px;
  margin: 10px 10px 0;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 8px 10px;
}
.feed-avatar {
  grid-column: 1;
  grid-row: 1;
  width: 34px; height: 34px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 800;
  color: var(--white);
}
.av1 { background-image: url('amouranth.webp'); background-color: var(--blue); }
.av2 { background-image: url('sophie.webp'); background-color: #8B5CF6; }
.av3 { background-image: url('corinna.webp'); background-color: #10B981; }

.feed-info {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feed-name { font-size: .8125rem; font-weight: 700; color: var(--text-dark); display: flex; align-items: center; gap: 4px; }
.verified-tick { color: var(--blue); font-size: .75rem; }
.feed-sub { font-size: .6875rem; color: var(--text-light); }

.feed-lock-img {
  grid-column: 1 / -1;
  grid-row: 2;
  height: 100px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.feed-card-1 .feed-lock-img { background-image: url('amouranth_banner.webp'); }
.feed-card-2 .feed-lock-img { background-image: url('sophie_banner.webp'); }
.lock-2 { background-image: url('sophie_banner.webp') !important; }
.lock-3 { background-image: url('corinna_banner.webp') !important; }

.lock-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.lock-icon { font-size: 1.25rem; }
.lock-label { font-size: .6875rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: .06em; }

/* Clickable phone mockup button style */
.phone-cta-pill {
  display: block;
  margin: 12px 10px 10px;
  background: var(--blue);
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius-pill);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: -.01em;
  text-decoration: none;
  transition: var(--transition);
}
.phone-cta-pill:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

/* Floating badges */
.float-badge {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 30;
  animation: float-badge 5s ease-in-out infinite;
}
@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.float-badge-1 { top: 30px; left: calc(100% + 12px); animation-delay: 0s; }
.float-badge-2 { top: 45%; right: calc(100% + 12px); animation-delay: 1.5s; }
.float-badge-3 { bottom: 60px; left: calc(100% + 12px); animation-delay: 3s; }
.fb-emoji { font-size: 1.5rem; }
.fb-num { font-size: 1.125rem; font-weight: 800; color: var(--text-dark); }
.fb-label { font-size: .75rem; color: var(--text-mid); font-weight: 500; }

/* Hero Visual Text */
.hero-visual-text {
  grid-column: 1;
  grid-row: 2;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hvt-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.hvt-desc {
  font-size: .9375rem;
  color: var(--text-mid);
  margin-bottom: 22px;
  line-height: 1.65;
}
.hvt-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.hvt-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9375rem;
  color: var(--text-mid);
}
.hvt-list strong { color: var(--text-dark); }
.check-icon { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.hvt-btn { margin-top: 12px; align-self: flex-start; }

/* Wave separator */
.wave-sep {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  overflow: hidden;
  line-height: 0;
}
.wave-sep svg {
  display: block;
  width: 100%; height: 60px;
}

/* ══════════════════════════════════════════════════════════
   SECTION 2: PROOF TICKER
   ══════════════════════════════════════════════════════════ */
.proof-ticker {
  background: var(--blue);
  padding: 18px 0;
  overflow: hidden;
  margin-top: 0;
}
.ticker-track {
  display: flex;
  overflow: hidden;
}
.ticker-items {
  display: flex;
  gap: 48px;
  animation: ticker-scroll 28s linear infinite;
  will-change: transform;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  flex-shrink: 0;
}
.ticker-item strong { color: #fff; font-weight: 700; }

/* ══════════════════════════════════════════════════════════
   SECTION 3: BENEFITS
   ══════════════════════════════════════════════════════════ */
.benefits { background: var(--bg-soft); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(0,175,240,.3);
}
.benefit-icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.benefit-icon-wrap svg { width: 24px; height: 24px; }
.icon-blue   { background: rgba(0,175,240,.1);  color: var(--blue); }
.icon-teal   { background: rgba(20,184,166,.1); color: #14B8A6; }
.icon-purple { background: rgba(139,92,246,.1); color: #8B5CF6; }
.icon-orange { background: rgba(245,158,11,.1); color: #F59E0B; }
.icon-green  { background: rgba(16,185,129,.1); color: #10B981; }

.benefit-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.benefit-desc  { font-size: .9375rem; color: var(--text-mid); line-height: 1.6; }

.benefit-card-cta {
  background: linear-gradient(135deg, var(--blue) 0%, #0090c8 100%);
  border-color: transparent;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}
.benefit-card-cta:hover { transform: translateY(-4px); box-shadow: var(--shadow-blue); }
.benefit-cta-title { font-size: 1.35rem; font-weight: 800; line-height: 1.25; }
.benefit-cta-micro { font-size: .8125rem; opacity: .8; }

/* ══════════════════════════════════════════════════════════
   SECTION 4: CREATOR CARDS
   ══════════════════════════════════════════════════════════ */
.creators { background: var(--white); }

.creator-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.creator-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.creator-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(0,175,240,.3);
}

.creator-thumb {
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.ct1 { background-image: url('amouranth_banner.webp'); }
.ct2 { background-image: url('sophie_banner.webp'); }
.ct3 { background-image: url('corinna_banner.webp'); }
.ct4 { background-image: url('bhadbhabie_banner.webp'); }

.thumb-blur-overlay {
  position: absolute; inset: 0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 12px;
}
.thumb-lock-badge {
  background: rgba(0,0,0,.65);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 6px;
}

.creator-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.creator-profile-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.creator-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-sm);
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .8rem;
  color: var(--white);
  flex-shrink: 0;
}
.cav1 { background-image: url('amouranth.webp'); background-color: var(--blue); }
.cav2 { background-image: url('sophie.webp'); background-color: #8B5CF6; }
.cav3 { background-image: url('corinna.webp'); background-color: #10B981; }
.cav4 { background-image: url('bhadbhabie.webp'); background-color: #F59E0B; }

.creator-meta { text-align: left; }
.creator-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  margin-bottom: 2px;
}
.creator-name .check-icon { width: 16px; height: 16px; margin-top: 0; }
.creator-stats {
  font-size: .78rem;
  color: var(--text-light);
}

.creator-sub-price {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-size: .875rem;
}
.free-tag {
  background: #DCFCE7;
  color: #16A34A;
  font-size: .72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: .05em;
}
.old-price { color: var(--text-light); font-size: .8125rem; }

.creator-card .btn-block { margin-top: auto; border-radius: 0 0 var(--radius-lg) var(--radius-lg); }

.creators-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.creators-footer p { color: var(--text-mid); font-size: .9375rem; }
.creators-footer strong { color: var(--text-dark); }

/* ─── SEO EDITORIAL SECTION ─── */
.seo-editorial {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}
.editorial-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.editorial-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -.02em;
  margin-bottom: 24px;
  text-align: center;
}
.editorial-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 40px;
  text-align: center;
}
.editorial-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.editorial-col h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.editorial-col p {
  font-size: .9375rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}
.editorial-highlights {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}
.editorial-highlights h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.trending-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.trend-tag {
  background: var(--blue-light);
  color: var(--blue);
  font-size: .8125rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0,175,240,.12);
}

/* ══════════════════════════════════════════════════════════
   SECTION 5: SOCIAL PROOF
   ══════════════════════════════════════════════════════════ */
.social-proof { background: var(--bg-soft); }

/* Rating Summary */
.rating-summary {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 56px;
  box-shadow: var(--shadow-sm);
}
.rating-score {
  font-size: 4rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -.04em;
  line-height: 1;
}
.rating-details { flex-shrink: 0; }
.stars-row { color: #F59E0B; font-size: 1.25rem; margin-bottom: 6px; }
.rating-count { font-size: .875rem; color: var(--text-mid); }
.rating-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .8125rem;
  color: var(--text-mid);
}
.rating-bar-row > span:first-child { width: 24px; text-align: right; flex-shrink: 0; }
.bar-track {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.bar-fill { height: 100%; background: #F59E0B; border-radius: 4px; }
.bar-4 { background: #FBBF24; }
.bar-3 { background: #D1D5DB; }
.bar-2 { background: #D1D5DB; }
.bar-1 { background: #D1D5DB; }

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.testi-featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(0,175,240,.15), var(--shadow-sm);
}
.featured-label {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: .04em;
  white-space: nowrap;
}
.phone-cta {
  background: var(--blue);
  color: var(--white);
  padding: 16px;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
}
.testi-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .8125rem;
  color: var(--white);
  flex-shrink: 0;
}
.ta1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.ta2 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.ta3 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.ta4 { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.ta5 { background: linear-gradient(135deg, #fa709a, #fee140); }
.ta6 { background: linear-gradient(135deg, #a18cd1, #fbc2eb); }

.testi-name { font-size: .9rem; font-weight: 700; color: var(--text-dark); }
.verified-badge {
  font-size: .72rem;
  font-weight: 600;
  color: var(--blue);
  margin-left: 4px;
}
.testi-stars { color: #F59E0B; font-size: .875rem; }
.testi-body {
  font-size: .9375rem;
  color: var(--text-mid);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 16px;
}
.testi-date { font-size: .78rem; color: var(--text-light); }

/* Press Bar */
.press-bar {
  text-align: center;
  padding-top: 64px;
  border-top: 1px solid var(--border);
  margin-top: 64px;
}
.press-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 24px;
}
.press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.press-logo {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text-light);
  letter-spacing: -.02em;
  opacity: .5;
}

/* ══════════════════════════════════════════════════════════
   SECTION 6: CLAIM / CTA FORM
   ══════════════════════════════════════════════════════════ */
.claim-section {
  background: linear-gradient(135deg, #0B0F19 0%, #1a1f35 100%);
  padding: 96px 0;
}

.eyebrow-white { color: rgba(255,255,255,.7); }

.claim-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.claim-left { color: var(--white); }

.claim-headline {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.035em;
  color: var(--white);
  margin-bottom: 18px;
  margin-top: 12px;
}
.claim-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 32px;
  line-height: 1.65;
}
.claim-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.claim-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9375rem;
  color: rgba(255,255,255,.8);
}
.check-circle {
  width: 22px; height: 22px;
  background: rgba(0,175,240,.2);
  border: 1.5px solid var(--blue);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 800;
  color: var(--blue);
  flex-shrink: 0;
}

/* Urgency block */
.urgency-block {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.urgency-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.urgency-fire { font-size: 2rem; }
.urgency-title {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  margin-bottom: 4px;
}
.urgency-timer {
  font-size: 2rem;
  font-weight: 900;
  color: #FF4444;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
}
.spots-left { margin-left: auto; text-align: center; }
.spots-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.spots-label {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
}

/* Form card */
.claim-right {}
.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}
.form-top { text-align: center; margin-bottom: 28px; }
.form-logo { display: flex; justify-content: center; margin-bottom: 16px; }
.form-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-sub {
  font-size: .875rem;
  color: var(--text-mid);
}

.form-group { margin-bottom: 18px; }
.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: .9375rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
}
.form-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,175,240,.12);
}
.pw-wrap { position: relative; }
.pw-toggle {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.submit-btn { margin-bottom: 16px; }
.form-legal {
  font-size: .78rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.6;
}
.form-legal a { color: var(--blue); text-decoration: underline; }

/* Form success state */
.form-success { text-align: center; padding: 20px 0; }
.success-icon { font-size: 3rem; margin-bottom: 16px; }
.success-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 10px; color: var(--text-dark); }
.success-sub { color: var(--text-mid); font-size: .9375rem; margin-bottom: 24px; }
.success-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sc-item {
  background: #F0FDF4;
  color: #16A34A;
  font-size: .875rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: var(--radius-md);
}

/* Security badges */
.security-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.sec-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
}

/* ══════════════════════════════════════════════════════════
   SECTION 7: FAQ
   ══════════════════════════════════════════════════════════ */
.faq { background: var(--bg-soft); }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(0,175,240,.35); box-shadow: var(--shadow-sm); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  gap: 16px;
}
.faq-chevron {
  font-size: .875rem;
  color: var(--text-light);
  transition: transform .22s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--blue); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(0,1,0,1), padding .2s ease;
  padding: 0 28px;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 28px 24px;
  transition: max-height .4s ease-in-out, padding .2s ease;
}
.faq-answer p { font-size: .9375rem; color: var(--text-mid); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════
   SECTION 8: STICKY BOTTOM BAR
   ══════════════════════════════════════════════════════════ */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 14px 0;
  z-index: 998;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 -4px 24px rgba(0,0,0,.08);
}
.sticky-bottom-bar.visible { transform: translateY(0); }
.sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.sticky-text { font-size: .9375rem; color: var(--text-dark); }
.sticky-text strong { color: #FF4444; }
.sticky-text span { color: var(--text-mid); }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.site-footer-bottom {
  background: var(--text-dark);
  padding: 48px 0;
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-logo { display: flex; align-items: center; gap: 8px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-copy {
  font-size: .78rem;
  color: rgba(255,255,255,.25);
  max-width: 600px;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   LEGAL & TRUST PAGES
   ══════════════════════════════════════════════════════════ */
.legal-hero {
  background: linear-gradient(135deg, var(--blue-light) 0%, #FFFFFF 100%);
  padding: 140px 0 60px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.legal-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.legal-hero p {
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
.legal-content-wrapper {
  padding: 80px 0;
  background: var(--white);
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 40px;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.legal-content h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 28px;
  margin-bottom: 12px;
}
.legal-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 20px;
  margin-bottom: 8px;
}
.legal-content p {
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.75;
}
.legal-content ul, .legal-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
  color: var(--text-mid);
}
.legal-content li { margin-bottom: 8px; line-height: 1.7; }
.legal-alert {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  padding: 20px;
  border-radius: var(--radius-md);
  margin: 32px 0;
}
.legal-alert h3 { margin-top: 0; color: var(--blue-dark); font-size: 1.2rem; }
.legal-alert p { margin-bottom: 0; color: var(--text-dark); font-size: 0.95rem; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.contact-card {
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: var(--radius-md);
  background: var(--white);
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.contact-card h3 { margin-top: 0; margin-bottom: 12px; color: var(--text-dark); }
.contact-card p { margin-bottom: 16px; font-size: 0.95rem; }
.contact-meta { font-size: 0.9rem; color: var(--text-dark); }
.contact-meta strong { color: var(--blue); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  section { padding: 72px 0; }
  .hero { padding: 120px 0 80px 0; } /* Spacing matched for taller header logo */
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  
  /* Reset all desktop grid positions so mobile stacks cleanly without horizontal shifting */
  .hero-image-card,
  .hero-content,
  .hero-visual,
  .hero-visual-text {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  
  .hero-image-card { height: 420px; min-height: auto; order: 1; display: block !important; }
  .badge-row { justify-content: center; }
  .trust-row { justify-content: center; }
  .hero-visual { order: 3; } /* phone mockup loads third */
  .hero-content { order: 2; } /* text content loads second */
  .hero-visual-text { order: 4; padding: 24px; text-align: left; }
  .float-badge { display: none !important; } /* Hidden on tablet and mobile to prevent overflow */
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .creator-grid  { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .claim-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .rating-summary { gap: 24px; padding: 24px; flex-direction: column; }
  .contact-grid { grid-template-columns: 1fr; }
  
  /* Centers the urgency banner on smaller screens */
  .urgency-banner {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .benefits-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .press-logos { gap: 24px; }
  .creators-footer { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .creator-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .claim-headline { font-size: 1.8rem; }
  .hero-image-card { 
    height: 380px !important; /* Increased from 280px to make it longer as requested */
  } 
  .mockup-phone {
    width: 100%;
    max-width: 290px; /* Perfectly scales on smaller devices without overflow */
    min-height: 500px;
    border-width: 4px;
    margin: 0 auto;
  }
  .phone-notch {
    width: 60px;
    height: 18px;
  }
  .feed-lock-img {
    height: 80px;
  }
  
  /* Overrides to prevent the Urgency Banner text from overflowing the pink capsule edges */
  .urgency-banner {
    padding: 8px 14px !important; /* Slightly snugger padding */
    max-width: 90% !important; /* Contained safely inside the card borders */
  }
  .urgency-text {
    font-size: 0.72rem !important; /* Scaled down slightly to fit on one line safely */
  }
}

.phone-app-logo {
  height: 22px; 
  width: auto;
  object-fit: contain;
}