/* ═══════════════════════════════════════════
   LOVELET — Website Styles
   ═══════════════════════════════════════════ */

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

:root {
  --bg:           #F0EBE3;
  --bg-dark:      #0F0A1A;
  --purple:       #6D28D9;
  --purple-soft:  #EDE9FE;
  --purple-mid:   #A78BFA;
  --amber:        #F59E0B;
  --amber-light:  #FEF3C7;
  --coral:        #FB7185;
  --text:         #1A1025;
  --text-muted:   #6B7280;
  --cream:        #F9F5EE;
  --white:        #FFFFFF;

  --radius-card:  24px;
  --shadow-card:  0 4px 24px rgba(0,0,0,0.05);
  --shadow-lift:  0 16px 48px rgba(0,0,0,0.12);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* ── SCREEN READER ONLY ───────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── REDUCED MOTION ───────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ═══════════════════════════════════════════
   PRELOADER
   ═══════════════════════════════════════════ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}

#preloader.slide-up {
  transform: translateY(-100%);
}

.preloader-content {
  text-align: center;
}

.preloader-tagline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.25em;
  color: var(--purple-mid);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.preloader-line {
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 400;
  letter-spacing: -0.01em;
  min-height: 1.5em;
}

.blink-cursor {
  color: var(--purple);
  font-weight: 700;
  animation: cursor-blink 0.65s step-end infinite;
}

@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.preloader-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--coral), var(--amber));
  background-size: 200% 100%;
  animation:
    preloader-fill 2.6s ease forwards,
    shimmer 1.5s linear infinite;
}

@keyframes preloader-fill {
  from { width: 0; }
  to   { width: 100%; }
}

@keyframes shimmer {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* ═══════════════════════════════════════════
   CUSTOM CURSOR
   ═══════════════════════════════════════════ */
#cursor {
  width: 38px;
  height: 38px;
  border: 2px solid var(--purple);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9997;
  transition: width 0.22s ease, height 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  mix-blend-mode: multiply;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

#cursor.cursor-expand {
  width: 58px;
  height: 58px;
  background: rgba(109, 40, 217, 0.08);
}

#cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--purple);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

/* Sparkle element */
.sparkle {
  position: fixed;
  font-size: 18px;
  color: var(--purple);
  pointer-events: none;
  z-index: 9996;
  transform: translate(-50%, -50%);
  animation: sparkle-up 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes sparkle-up {
  from { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  to   { opacity: 0; transform: translate(-50%, -130%) scale(0.4); }
}

/* ═══════════════════════════════════════════
   SITE WRAPPER
   ═══════════════════════════════════════════ */
.site-hidden {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.site-visible {
  opacity: 1;
}

/* ── REVEAL ANIMATIONS ────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

#navbar.scrolled {
  background: rgba(240, 235, 227, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
}

.logo-heart {
  color: var(--purple);
  font-size: 19px;
  transition: transform 0.3s ease;
}

.logo:hover .logo-heart {
  transform: scale(1.3) rotate(-10deg);
}

.logo-word {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-pill {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(0,0,0,0.05);
  padding: 5px 12px;
  border-radius: 100px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--text);
  color: var(--cream);
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-cta:hover {
  background: var(--purple);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(109,40,217,0.3);
}

/* ═══════════════════════════════════════════
   CLOUDS
   ═══════════════════════════════════════════ */
.cloud {
  position: absolute;
  background: white;
  border-radius: 100px;
  pointer-events: none;
}

.cloud::before,
.cloud::after {
  content: '';
  position: absolute;
  background: white;
  border-radius: 50%;
}

.cloud-lg { opacity: 0.65; }
.cloud-md { opacity: 0.5; }
.cloud-sm { opacity: 0.45; }

.cloud-1 {
  width: 210px;
  height: 62px;
  top: 14%;
  right: -30px;
  animation: cloud-drift 20s ease-in-out infinite;
}
.cloud-1::before { width: 50%; height: 160%; top: -45%; left: 18%; }
.cloud-1::after  { width: 36%; height: 130%; top: -30%; right: 22%; }

.cloud-2 {
  width: 160px;
  height: 48px;
  top: 32%;
  left: -20px;
  animation: cloud-drift 26s ease-in-out infinite reverse;
}
.cloud-2::before { width: 55%; height: 165%; top: -50%; left: 15%; }
.cloud-2::after  { width: 38%; height: 135%; top: -28%; right: 20%; }

.cloud-3 {
  width: 240px;
  height: 72px;
  bottom: 22%;
  right: 8%;
  animation: cloud-drift 30s ease-in-out infinite 6s;
}
.cloud-3::before { width: 48%; height: 155%; top: -40%; left: 20%; }
.cloud-3::after  { width: 34%; height: 125%; top: -25%; right: 18%; }

.cloud-4 {
  width: 85px;
  height: 28px;
  top: 60%;
  left: 4%;
  animation: cloud-drift 16s ease-in-out infinite 2s;
}
.cloud-4::before { width: 55%; height: 170%; top: -55%; left: 12%; }
.cloud-4::after  { width: 40%; height: 140%; top: -35%; right: 16%; }

.cloud-5 {
  width: 70px;
  height: 22px;
  top: 8%;
  left: 42%;
  animation: cloud-drift 22s ease-in-out infinite 9s;
}
.cloud-5::before { width: 58%; height: 175%; top: -58%; left: 10%; }
.cloud-5::after  { width: 42%; height: 145%; top: -38%; right: 14%; }

@keyframes cloud-drift {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(28px); }
}

/* Registration section clouds */
.cloud-reg {
  opacity: 0.04;
}

.cloud-r1 {
  width: 320px; height: 88px;
  top: 15%; left: -80px;
  animation: cloud-drift 22s ease-in-out infinite;
}
.cloud-r1::before { width: 50%; height: 160%; top: -45%; left: 18%; }
.cloud-r1::after  { width: 36%; height: 130%; top: -30%; right: 22%; }

.cloud-r2 {
  width: 240px; height: 68px;
  bottom: 18%; right: -50px;
  animation: cloud-drift 28s ease-in-out infinite reverse;
}
.cloud-r2::before { width: 50%; height: 160%; top: -45%; left: 18%; }
.cloud-r2::after  { width: 36%; height: 130%; top: -30%; right: 22%; }

.cloud-r3 {
  width: 140px; height: 42px;
  top: 50%; left: 30%;
  animation: cloud-drift 18s ease-in-out infinite 5s;
}
.cloud-r3::before { width: 50%; height: 160%; top: -45%; left: 18%; }
.cloud-r3::after  { width: 36%; height: 130%; top: -30%; right: 22%; }

/* Card-level mini clouds */
.card-cloud {
  position: absolute;
  background: rgba(255,255,255,0.2);
  border-radius: 100px;
  pointer-events: none;
}
.card-cloud::before {
  content: '';
  position: absolute;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
}

.card-cloud-1 {
  width: 80px; height: 24px;
  top: 18%; left: -10px;
  animation: cloud-drift 12s ease-in-out infinite;
}
.card-cloud-1::before { width: 55%; height: 180%; top: -55%; left: 14%; }

.card-cloud-2 {
  width: 55px; height: 18px;
  top: 38%; right: -8px;
  animation: cloud-drift 16s ease-in-out infinite reverse;
}
.card-cloud-2::before { width: 55%; height: 180%; top: -55%; left: 14%; }

.card-cloud-3 {
  width: 70px; height: 22px;
  bottom: 28%; left: 10%;
  animation: cloud-drift 14s ease-in-out infinite 3s;
}
.card-cloud-3::before { width: 55%; height: 180%; top: -55%; left: 14%; }

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */
#hero {
  min-height: 100svh;
  padding: 130px 40px 90px;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(109, 40, 217, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 40, 217, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

/* Deco stars */
.deco-star {
  position: absolute;
  color: var(--purple);
  font-size: 18px;
  pointer-events: none;
  opacity: 0.5;
}

.deco-star-1 {
  top: 22%;
  left: 48%;
  font-size: 24px;
  animation: spin-slow 12s linear infinite;
}
.deco-star-2 {
  bottom: 30%;
  left: 55%;
  font-size: 14px;
  animation: spin-slow 8s linear infinite reverse;
}
.deco-star-3 {
  top: 65%;
  left: 6%;
  font-size: 20px;
  color: var(--amber);
  opacity: 0.4;
  animation: float-bob 4s ease-in-out infinite;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

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

.deco-dot-group {
  position: absolute;
  top: 40%;
  right: 3%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.deco-dot {
  display: block;
  width: 5px;
  height: 5px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0.5;
}

/* Hero layout */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

/* ── Sticker badge ──────────────────────── */
.sticker-badge {
  display: inline-flex;
  align-items: center;
  background: var(--amber);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  transform: rotate(-1.5deg);
  box-shadow: 3px 3px 0 rgba(0,0,0,0.12);
  width: fit-content;
}

.sticker-amber { background: var(--amber); }

/* ── Hero headline ──────────────────────── */
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(46px, 6vw, 82px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 26px;
}

.hl-line {
  display: block;
  color: var(--text);
}

.hl-accent {
  display: block;
  color: var(--purple);
  font-style: italic;
  font-size: 0.78em;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 30px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.tag {
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.07);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(0,0,0,0.08);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--text);
  color: var(--cream);
  padding: 15px 30px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--purple);
  border-radius: 100px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
  z-index: 0;
}

.btn-primary:hover::before  { transform: scaleX(1); }
.btn-primary:hover          { box-shadow: 0 10px 30px rgba(109,40,217,0.3); transform: translateY(-2px); }
.btn-primary span           { position: relative; z-index: 1; }

.btn-arrow {
  transition: transform 0.25s ease;
}
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.hero-disclaimer {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* ── iPhone mockup ──────────────────────── */
.hero-phone-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Two-phone hero layout */
.hero-phones {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  justify-content: center;
}

.hp-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hp-send {
  animation: phone-float 5s ease-in-out infinite;
  transform: rotate(-2deg);
}

.hp-recv {
  animation: phone-float 5s ease-in-out infinite 0.8s;
  transform: rotate(2deg);
}

.hp-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15,10,26,0.4);
  background: rgba(109,40,217,0.08);
  border: 1px solid rgba(109,40,217,0.12);
  padding: 4px 10px;
  border-radius: 20px;
}

.iphone-sm {
  width: 200px;
  height: 410px;
}

.phones-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-bottom: 50px;
  align-self: center;
  flex-shrink: 0;
}

.pb-label {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--purple);
  white-space: nowrap;
}

.recv-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--purple);
  background: rgba(109,40,217,0.1);
  border: 1px solid rgba(109,40,217,0.2);
  border-radius: 20px;
  padding: 4px 12px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* GF send screen */
.send-ui {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #0F0A1A;
}

.sui-topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 12px 10px;
  flex-shrink: 0;
}

.sui-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
}

.sui-photo-wrap {
  flex: 1;
  position: relative;
  margin: 0 10px;
  border-radius: 14px;
  overflow: hidden;
  min-height: 0;
}

.sui-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sui-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
}

.sui-footer {
  padding: 8px 10px 10px;
  flex-shrink: 0;
}

.sui-caption-row {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 7px 10px;
  margin-bottom: 6px;
}

.sui-caption-text {
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}

.sui-send-btn {
  width: 100%;
  background: var(--purple);
  color: white;
  border: none;
  border-radius: 9px;
  padding: 9px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  cursor: default;
}

/* BF home screen */
.homescreen-ui {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(160deg, #170a2e 0%, #0d081e 100%);
  padding-top: 0;
}

.hs-time {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: rgba(255,255,255,0.88);
  text-align: center;
  padding: 34px 0 10px;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

.hs-widget {
  margin: 0 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
}

.hs-widget-photo-wrap {
  height: 110px;
  overflow: hidden;
}

.hs-widget-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hs-widget-info {
  padding: 8px 10px 10px;
}

.hs-app-name {
  display: block;
  font-size: 7.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple-mid);
  margin-bottom: 2px;
}

.hs-from {
  display: block;
  font-size: 8.5px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 3px;
}

.hs-msg {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  font-style: italic;
}

.hs-app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  padding: 14px 12px 0;
}

.hs-icon {
  aspect-ratio: 1;
  border-radius: 9px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hs-icon svg {
  width: 55%;
  height: 55%;
}

/* Brand colors */
.hs-youtube   { background: #FF0000; }
.hs-instagram { background: radial-gradient(circle at 30% 110%, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.hs-snapchat  { background: #FFFC00; }
.hs-slack     { background: #4A154B; }
.hs-github    { background: #24292E; }
.hs-messages  { background: linear-gradient(160deg, #5AC85A 0%, #34C759 100%); }
.hs-lovelet   { background: linear-gradient(135deg, #6D28D9 0%, #A78BFA 100%); box-shadow: 0 0 10px rgba(109,40,217,0.5); }
.hs-photos    { background: linear-gradient(135deg, #FF6B6B 0%, #FFA500 50%, #FFD700 100%); }

.fishhook {
  pointer-events: none;
}

.fishhook-hero {
  position: absolute;
  top: -10px;
  left: -5px;
  width: 140px;
  z-index: 5;
}

.fh-path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fh-path.drawn { stroke-dashoffset: 0; }

.iphone-wrap {
  animation: phone-float 5s ease-in-out infinite;
  position: relative;
}

@keyframes phone-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-18px) rotate(-2deg); }
}

.iphone {
  width: 265px;
  height: 538px;
  background: #1C1731;
  border-radius: 46px;
  border: 8px solid #2A2445;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 2px #3A3260,
    0 40px 90px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.iphone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 116px;
  height: 32px;
  background: #0A0814;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notch-camera {
  width: 10px;
  height: 10px;
  background: #1C1731;
  border-radius: 50%;
  margin-right: -30px;
  box-shadow: 0 0 0 1.5px #3A3260;
}

.iphone-screen {
  position: absolute;
  inset: 0;
}

.app-ui {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #F8F5FF 0%, #EDE9FE 100%);
  display: flex;
  flex-direction: column;
  padding: 44px 12px 20px;
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.app-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

.app-avatar-pill {
  width: 30px;
  height: 30px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
  font-weight: 700;
}

.moment-card {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin-bottom: 12px;
}

.moment-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #3B2314 0%, #1A0F0A 100%);
  position: relative;
  overflow: hidden;
}

.moment-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.moment-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,20,0.75) 0%, transparent 55%);
}

.moment-meta {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 2;
}

.moment-from {
  display: block;
  font-size: 9.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 3px;
}

.moment-msg {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: white;
  line-height: 1.35;
}

.moment-time {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 8px;
  color: rgba(255,255,255,0.5);
  z-index: 2;
}

.app-share {
  width: 100%;
  padding: 13px;
  background: var(--purple);
  color: white;
  border: none;
  border-radius: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background 0.2s ease, transform 0.2s ease;
}

.app-share:hover {
  background: #5B21B6;
  transform: scale(1.02);
}

.iphone-home-indicator {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: rgba(255,255,255,0.35);
  border-radius: 100px;
}

/* Widget float badge */
.widget-float {
  position: absolute;
  right: -25px;
  top: 42%;
  width: 120px;
  background: rgba(255,255,255,0.96);
  border-radius: 18px;
  padding: 10px 10px 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18), 0 2px 6px rgba(0,0,0,0.08);
  backdrop-filter: blur(12px);
  animation: widget-bob 4.5s ease-in-out infinite 0.5s;
}

@keyframes widget-bob {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50%       { transform: translateY(-10px) rotate(2deg); }
}

.widget-header {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
}

.widget-thumb {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--purple-mid), var(--purple));
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.widget-thumb-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.widget-copy { flex: 1; min-width: 0; }

.widget-name {
  display: block;
  font-size: 8px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.widget-caption {
  display: block;
  font-size: 7px;
  color: var(--text-muted);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.widget-footer {
  font-size: 7px;
  color: var(--purple);
  font-weight: 600;
  text-align: center;
  border-top: 1px solid rgba(109,40,217,0.1);
  padding-top: 5px;
}

.hero-phone-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 12.5px;
  color: var(--text-muted);
  font-style: italic;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line-anim {
  width: 1.5px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, var(--text-muted));
  animation: scroll-grow 2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scroll-grow {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.5); opacity: 0.3; }
}

/* ═══════════════════════════════════════════
   MARQUEE STRIP
   ═══════════════════════════════════════════ */
.marquee-wrap {
  background: var(--text);
  padding: 16px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  color: var(--cream);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  animation: marquee-scroll 22s linear infinite;
}

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

/* ═══════════════════════════════════════════
   SECTION SHARED
   ═══════════════════════════════════════════ */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--purple);
  margin-bottom: 16px;
}

.label-light { color: rgba(167, 139, 250, 1); }

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.title-light { color: var(--cream); }

.section-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 60px;
}

.sub-light { color: rgba(249,245,238,0.6); }

/* ═══════════════════════════════════════════
   WHAT SECTION — editorial reveal layout
   ═══════════════════════════════════════════ */
#what {
  padding: 90px 0 0;
}

.what-header {
  padding: 0 40px;
  margin-bottom: 0;
}

/* Editorial photo panels — NOT a standard 3-col grid */
.feat-editorial {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 10px;
  padding: 48px 40px 0;
  max-width: 1400px;
  margin: 0 auto;
  height: 600px;
}

.feat-col {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.feat-panel {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: default;
  background: var(--bg-dark);
}

.feat-img-wrap {
  position: absolute;
  inset: 0;
}

.feat-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feat-panel:hover .feat-img {
  transform: scale(1.05);
}

/* Image fallback gradients */
.feat-img-wrap.img-fb-1 { background: linear-gradient(145deg, #A78BFA, #6D28D9); }
.feat-img-wrap.img-fb-2 { background: linear-gradient(145deg, #FCD34D, #F59E0B); }
.feat-img-wrap.img-fb-3 { background: linear-gradient(145deg, #FB7185, #6D28D9); }

.feat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 0, 18, 0.92) 0%,
    rgba(5, 0, 18, 0.35) 45%,
    rgba(5, 0, 18, 0.08) 100%
  );
  transition: opacity 0.4s ease;
}

.feat-overlay-tinted {
  background: linear-gradient(
    to top,
    rgba(55, 10, 120, 0.92) 0%,
    rgba(55, 10, 120, 0.4) 45%,
    rgba(55, 10, 120, 0.1) 100%
  );
}

.feat-panel:hover .feat-overlay {
  opacity: 0.85;
}

.feat-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px 30px;
  z-index: 2;
  transition: transform 0.3s ease;
}

.feat-panel:hover .feat-content {
  transform: translateY(-6px);
}

.feat-num {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.feat-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.feat-large .feat-heading {
  font-size: clamp(26px, 2.8vw, 38px);
}

.feat-sm .feat-heading {
  font-size: 20px;
}

.feat-text {
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.feat-large .feat-text { font-size: 15px; max-width: 400px; }
.feat-sm    .feat-text { font-size: 13.5px; }

/* Caption chip overlay — mimics in-app caption */
.feat-caption-chip {
  display: inline-flex;
  flex-direction: column;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 8px 12px;
  margin-top: 16px;
  max-width: 240px;
}

.fcc-from {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.fcc-text {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  line-height: 1.4;
}

/* Circle arrow button on large panel */
.feat-connector-arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 3;
}

.feat-panel:hover .feat-connector-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* Footer arrow connector between sections */
.what-footer-arrow {
  display: flex;
  justify-content: flex-end;
  padding: 0 40px;
  margin-top: 20px;
  margin-bottom: -10px;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS SECTION
   ═══════════════════════════════════════════ */
#how {
  background: var(--bg-dark);
  padding: 100px 40px;
}

.steps {
  display: flex;
  flex-direction: column;
  margin-top: 56px;
  max-width: 760px;
}

.step {
  display: grid;
  grid-template-columns: 70px 1fr 52px;
  gap: 24px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
}

.step:last-child { border-bottom: none; }

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  letter-spacing: -0.05em;
}

.step-name {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(249,245,238,0.55);
}

.step-fishhook {
  width: 50px;
  align-self: center;
  opacity: 0.7;
}

.ios-note {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px 24px;
  margin-top: 56px;
  max-width: 500px;
  position: relative;
}

.ios-badge-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ios-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ios-text strong {
  color: var(--cream);
  font-size: 15px;
}

.ios-text span {
  color: rgba(249,245,238,0.45);
  font-size: 13.5px;
}

.fishhook-ios {
  position: absolute;
  right: -60px;
  top: 0;
  width: 80px;
}

/* ═══════════════════════════════════════════
   VIBES SECTION (BENTO GRID)
   ═══════════════════════════════════════════ */
#vibes {
  padding: 100px 40px;
  max-width: 1180px;
  margin: 0 auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 18px;
  margin-top: 60px;
}

/* Grid placement */
.bento-card:nth-child(1) { grid-column: 1;     grid-row: 1; }     /* Quote Marcus */
.bento-card:nth-child(2) { grid-column: 2 / 4; grid-row: 1 / 3; } /* Goals (wide tall) */
.bento-card:nth-child(3) { grid-column: 1;     grid-row: 2; }     /* Quote Sofía */
.bento-card:nth-child(4) { grid-column: 1;     grid-row: 3; }     /* Moment demo */
.bento-card:nth-child(5) { grid-column: 2 / 4; grid-row: 3; }     /* Golden hour wide */
.bento-card:nth-child(6) { grid-column: 1 / 4; grid-row: 4; }     /* Highlight full */

.bento-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 30px;
  border: 1.5px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}

/* ── Photo-backed quote cards ─────────────── */
.bento-photo-quote {
  padding: 0;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--bg-dark);
}

.bpq-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.bpq-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s ease;
}

.bento-photo-quote:hover .bpq-img {
  transform: scale(1.04);
}

.bpq-img-wrap.bpq-fb-1 { background: linear-gradient(145deg, #A78BFA, #6D28D9); }
.bpq-img-wrap.bpq-fb-2 { background: linear-gradient(145deg, #FCD34D, #F59E0B); }

.bpq-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 0, 18, 0.92) 0%,
    rgba(5, 0, 18, 0.45) 50%,
    rgba(5, 0, 18, 0.1) 100%
  );
}

.bpq-content {
  position: relative;
  z-index: 2;
  padding: 22px 22px 22px;
}

.bpq-text {
  font-size: 14.5px;
  line-height: 1.6;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  margin-bottom: 16px;
  border: none;
  padding: 0;
}

/* Opening quote mark */
.bpq-text::before {
  content: '"';
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--purple-mid);
  line-height: 0;
  vertical-align: -12px;
  margin-right: 4px;
  font-style: normal;
}

.bpq-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bpq-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.3);
}

.av-purple { background: rgba(109,40,217,0.6); color: white; }
.av-amber  { background: rgba(245,158,11,0.7); color: white; }

.bpq-info {
  display: flex;
  flex-direction: column;
}

.bpq-info strong {
  font-size: 13px;
  font-weight: 700;
  color: white;
}

.bpq-info span {
  font-size: 11.5px;
  color: rgba(255,255,255,0.5);
}

/* ── Photo tall cards (span 2 rows) ────────── */
.bento-photo-tall {
  padding: 0;
  min-height: 320px;
  background: var(--bg-dark);
  border: none;
}

.bpt-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s ease;
}

.img-fb-hidden { display: none; }

.bento-photo-tall.bpt-fb-1 { background: linear-gradient(145deg, #A78BFA, #4C1D95); }
.bento-photo-tall.bpt-fb-2 { background: linear-gradient(145deg, #FCD34D, #D97706); }

.bento-photo-tall:hover .bpt-img {
  transform: scale(1.04);
}

.bpt-tag {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: rgba(255,255,255,0.92);
  color: var(--text);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  backdrop-filter: blur(8px);
}

/* Home-screen-goals card overlays */
.bpt-goals-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(5,0,18,0.15) 0%,
    rgba(5,0,18,0.55) 55%,
    rgba(5,0,18,0.92) 100%
  );
  z-index: 1;
}

.bpt-widget-mockup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -58%);
  width: 170px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.bwm-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px 6px;
}

.bwm-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple-mid);
  flex-shrink: 0;
}

.bwm-appname {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  flex: 1;
}

.bwm-live {
  font-size: 8px;
  font-weight: 700;
  color: #22C55E;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 20px;
  padding: 2px 7px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bwm-photo-strip {
  width: 100%;
  height: 70px;
  overflow: hidden;
  background: linear-gradient(135deg, #3B2314, #6B3A2A);
}

.bwm-photo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bwm-caption {
  padding: 8px 12px 10px;
  font-size: 11px;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.bpt-goals-text {
  position: absolute;
  bottom: 58px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.03em;
  padding: 0 20px;
}


/* Feature chips card */
.bento-features {
  background: var(--purple-soft);
  border: 1.5px solid rgba(109,40,217,0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.features-title {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.55;
}

.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 16px;
}

.fchip {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  background: rgba(109,40,217,0.12);
  border: 1px solid rgba(109,40,217,0.22);
  border-radius: 20px;
  padding: 5px 12px;
  line-height: 1;
  white-space: nowrap;
}

.features-sub {
  font-size: 12px;
  color: rgba(15,10,26,0.45);
  line-height: 1.5;
}

/* Moment demo card — shows what a sent moment looks like */
.bento-moment-demo {
  padding: 0;
  overflow: hidden;
  position: relative;
  border: none;
}

.bmd-photo-wrap {
  position: absolute;
  inset: 0;
}

.bmd-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bmd-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,0,18,0.96) 0%, rgba(5,0,18,0.4) 50%, rgba(5,0,18,0.1) 100%);
}

.bmd-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px;
  z-index: 2;
}

.bmd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.bmd-app {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--purple-mid);
}

.bmd-badge {
  font-size: 9px;
  font-weight: 600;
  color: var(--amber);
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 20px;
  padding: 3px 9px;
}

.bmd-caption {
  font-size: 19px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  font-style: italic;
  line-height: 1.25;
  margin-bottom: 8px;
}

.bmd-from {
  font-size: 10px;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.04em;
}

/* Highlight card — photo background */
.bento-highlight {
  padding: 0;
  background: var(--bg-dark);
  border: none;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
}

.bhl-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.bhl-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 0.7s ease;
}

.bento-highlight:hover .bhl-img {
  transform: scale(1.03);
}

.bhl-img-wrap.bhl-fb { background: linear-gradient(90deg, #6D28D9, #4F46E5); }

.bhl-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 0, 18, 0.88) 0%,
    rgba(5, 0, 18, 0.55) 50%,
    rgba(5, 0, 18, 0.35) 100%
  );
}

.highlight-content {
  position: relative;
  z-index: 2;
  padding: 36px 40px;
}

.hl-chip {
  display: inline-flex;
  align-items: center;
  background: rgba(109,40,217,0.7);
  backdrop-filter: blur(8px);
  color: white;
  border: 1px solid rgba(167,139,250,0.4);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.highlight-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  max-width: 700px;
  letter-spacing: -0.02em;
}

.highlight-content em {
  color: var(--purple-mid);
  font-style: italic;
}

.fishhook-card {
  position: absolute;
  top: 26px;
  right: 40px;
  width: 70px;
  z-index: 3;
}

/* ═══════════════════════════════════════════
   REGISTER SECTION
   ═══════════════════════════════════════════ */
#register {
  background: var(--bg-dark);
  padding: 110px 40px;
  position: relative;
  overflow: hidden;
}

.register-content {
  text-align: center;
  max-width: 580px;
}

.reg-star {
  position: absolute;
  color: rgba(167,139,250,0.2);
  font-size: 20px;
  pointer-events: none;
  animation: spin-slow 15s linear infinite;
}

.reg-star-1 { top: 18%; left: 12%; font-size: 28px; }
.reg-star-2 { top: 60%; right: 8%; font-size: 18px; animation-direction: reverse; }
.reg-star-3 { bottom: 20%; left: 6%; font-size: 22px; }

.reg-form {
  width: 100%;
  margin-top: 40px;
}

.form-wrap {
  display: flex;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 5px 5px 5px 22px;
  margin-bottom: 14px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-wrap:focus-within {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(109,40,217,0.2);
}

#reg-email {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 15.5px;
  min-width: 0;
}

#reg-email::placeholder {
  color: rgba(249,245,238,0.3);
}

.btn-submit {
  background: var(--purple);
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  white-space: nowrap;
  min-width: 140px;
  position: relative;
  transition: background 0.25s ease, transform 0.2s ease;
  overflow: hidden;
}

.btn-submit:hover { background: #5B21B6; transform: scale(1.02); }

/* Button states */
.btn-loading, .btn-done { display: none; }

.btn-submit.is-loading .btn-default   { display: none; }
.btn-submit.is-loading .btn-loading   { display: block; }

.btn-submit.is-success .btn-default   { display: none; }
.btn-submit.is-success .btn-done      { display: block; }
.btn-submit.is-success                { background: #16A34A; }

.form-fine {
  font-size: 12.5px;
  color: rgba(249,245,238,0.35);
  margin-bottom: 8px;
}

.form-error {
  font-size: 13px;
  color: var(--coral);
  min-height: 20px;
}

/* Success state */
.success-state {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 40px 0;
  animation: pop-in 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.success-state.visible {
  display: flex;
}

@keyframes pop-in {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}

.success-icon-wrap {
  animation: bounce-icon 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes bounce-icon {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.25); }
}

.success-state h3 {
  font-family: 'Syne', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.success-state p {
  font-size: 15.5px;
  color: rgba(249,245,238,0.55);
}

/* Annotation fishhook */
.fishhook-form {
  position: absolute;
  right: -20px;
  top: 48%;
  width: 110px;
  transform: rotate(8deg);
}

/* Waitlist chip */
.waitlist-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  color: rgba(249,245,238,0.5);
  margin-top: 24px;
}

.chip-dot {
  width: 7px;
  height: 7px;
  background: #22C55E;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.4);
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.3); }
  50%       { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 36px 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo .logo-heart { color: var(--purple); font-size: 16px; }
.footer-logo .logo-word  {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--cream);
}

.footer-center {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(249,245,238,0.3);
  font-size: 13px;
}

.footer-dot { opacity: 0.3; }

.footer-right {
  color: rgba(249,245,238,0.2);
  font-size: 12.5px;
}

/* ═══════════════════════════════════════════
   HOVER TARGETS (cursor expand trigger)
   ═══════════════════════════════════════════ */
.hover-target { cursor: none; }

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Hero: single column on tablet — prevents phone overflow in narrow columns */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-phone-col { order: -1; }
  .hero-tags      { justify-content: center; }
  .hero-actions   { align-items: center; }
  .hero-sub       { margin-left: auto; margin-right: auto; }
  .sticker-badge  { margin-left: auto; margin-right: auto; }

  /* Editorial panels collapse to 2 rows */
  .feat-editorial {
    grid-template-columns: 1fr 1fr;
    height: auto;
    padding: 32px 24px 0;
  }

  .feat-col {
    grid-template-rows: 1fr 1fr;
  }

  .feat-editorial .feat-large,
  .feat-editorial .feat-col {
    min-height: 280px;
  }

  .what-header { padding: 0 24px; }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .bento-card:nth-child(1) { grid-column: 1;     grid-row: auto; min-height: 260px; }
  .bento-card:nth-child(2) { grid-column: 2;     grid-row: auto; min-height: 320px; }
  .bento-card:nth-child(3) { grid-column: 1;     grid-row: auto; min-height: 260px; }
  .bento-card:nth-child(4) { grid-column: 2;     grid-row: auto; min-height: 260px; }
  .bento-card:nth-child(5) { grid-column: 1 / 3; grid-row: auto; min-height: 260px; }
  .bento-card:nth-child(6) { grid-column: 1 / 3; grid-row: auto; min-height: 220px; }

  .nav-pill { display: none; }
  .fishhook-ios { display: none; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  body { cursor: auto; }
  #cursor, #cursor-dot { display: none; }

  .nav-inner   { padding: 0 20px; }
  .nav-cta     { padding: 9px 16px; font-size: 13px; }

  #hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-phone-col { order: -1; }

  .hero-tags        { justify-content: center; }
  .hero-actions     { align-items: center; }
  .hero-sub         { margin-left: auto; margin-right: auto; }
  .sticker-badge    { margin-left: auto; margin-right: auto; }

  .hero-phones      { gap: 6px; }
  /* Phones scale down to fit any screen width — both always visible */
  .iphone-sm {
    width: min(143px, calc((100vw - 40px - 44px) / 2));
    height: min(293px, calc((100vw - 40px - 44px) / 2 * 2.05));
  }
  .phones-bridge    { padding-bottom: 40px; }
  .hp-label         { font-size: 9px; }
  .hs-time          { font-size: 24px; padding: 26px 0 8px; }
  .sui-topbar       { padding: 28px 8px 8px; }
  .sui-photo-wrap   { margin: 0 8px; border-radius: 10px; }
  .sui-footer       { padding: 6px 8px 8px; }
  .hs-widget        { margin: 0 8px; }

  /* Editorial panels — single column on mobile */
  #what { padding: 60px 0 0; }
  .what-header { padding: 0 20px; }

  .feat-editorial {
    grid-template-columns: 1fr;
    height: auto;
    padding: 24px 20px 0;
    gap: 8px;
  }

  .feat-col {
    grid-template-rows: auto;
    gap: 8px;
  }

  .feat-large { min-height: 360px; }
  .feat-sm    { min-height: 240px; }

  .what-footer-arrow { display: none; }

  #how  { padding: 60px 20px; }

  .steps { max-width: 100%; }

  .step {
    grid-template-columns: 52px 1fr;
    gap: 16px;
  }

  .step-num      { font-size: 40px; }
  .step-fishhook { display: none; }

  #vibes { padding: 60px 20px; }

  .bento-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bento-card:nth-child(n) {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  .bento-photo-tall  { min-height: 260px; }
  .bento-photo-quote { min-height: 280px; }
  .bento-highlight   { min-height: 220px; }
  .highlight-content { padding: 24px 22px; }
  .highlight-content h3 { font-size: 20px; }

  #register { padding: 70px 20px; }
  .register-content { max-width: 100%; }

  .form-wrap {
    flex-direction: column;
    border-radius: 18px;
    padding: 14px 18px;
    gap: 10px;
  }

  .btn-submit {
    width: 100%;
    border-radius: 12px;
    padding: 14px;
  }

  .fishhook-form { display: none; }

  footer { padding: 28px 20px; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .scroll-cue     { display: none; }
  .deco-star      { display: none; }
  .deco-dot-group { display: none; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — SMALL PHONE (≤ 480px)
   ═══════════════════════════════════════════ */
@media (max-width: 480px) {
  /* Hide "instantly" label — too small to read, saves horizontal space */
  .pb-label { display: none; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 400px)
   ═══════════════════════════════════════════ */
@media (max-width: 400px) {
  /* iphone-sm width handled automatically by min() calc in 768px block */
  .widget-float   { display: none; }
  .hero-headline  { font-size: 40px; }
  .feat-large     { min-height: 300px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TINY MOBILE (≤ 360px)
   ═══════════════════════════════════════════ */
@media (max-width: 360px) {
  /* iphone-sm width handled automatically by min() calc in 768px block */
  .hero-headline  { font-size: 34px; }
  .nav-cta        { padding: 8px 12px; font-size: 12px; }
  .hero-sub       { font-size: 15px; }
}
