/* ==========================================================================
   COMPONENTS — Sologiri Waitlist
   All section-level component styles.
   ========================================================================== */


/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.01em;
  transition: all var(--transition-base);
  position: relative;
  white-space: normal;
  text-align: center;
  line-height: 1.4;
}

.btn--primary {
  background: var(--accent-teal);
  color: #FFFFFF;
}

.btn--primary:hover {
  background: var(--accent-teal-hover);
  transform: scale(1.02);
}

.btn--primary:active {
  transform: scale(0.98);
}

.btn--glow {
  box-shadow: 0 0 15px var(--accent-teal-glow);
  animation: glowPulseTeal 3s ease-in-out infinite;
}

.btn--glow:hover {
  box-shadow: 0 0 25px var(--accent-teal-glow);
  animation: none;
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-default);
}

.btn--ghost:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: var(--border-strong);
  transform: scale(1.02);
}

.btn--full {
  width: 100%;
}

.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

.btn--black {
  background: var(--bg-dark);
  color: #FFFFFF;
}

.btn--black:hover {
  background: #222222;
  transform: scale(1.02);
}

.btn--teal {
  background: var(--accent-teal);
  color: #111111;
  font-weight: 700;
}

.btn--teal:hover {
  background: var(--accent-teal-hover);
  transform: scale(1.02);
  color: #000;
}

.btn--gold {
  background: var(--accent-gold);
  color: #111111;
  font-weight: 700;
}

.btn--gold:hover {
  background: #eabd60;
  transform: scale(1.02);
  color: #000;
  box-shadow: 0 4px 20px rgba(212, 168, 87, 0.4);
}

.btn--pill {
  border-radius: 9999px;
}

/* Loading state */
.btn.loading {
  pointer-events: none;
}

.btn.loading .btn__text {
  visibility: hidden;
}

.btn.loading .btn__loader {
  display: block;
}

.btn__loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  position: absolute;
}


/* ==========================================================================
   STATUS TAG
   ========================================================================== */

.status-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-secondary);
  padding: var(--space-2) var(--space-4);
  border: 1px solid rgba(152, 222, 217, 0.2);
  border-radius: var(--radius-full);
  background: rgba(152, 222, 217, 0.05);
}

.status-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-secondary);
  animation: dotPulse 2s ease-in-out infinite;
}


/* ==========================================================================
   BADGE
   ========================================================================== */

.badge {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
}

.badge--coral {
  background: rgba(255, 122, 110, 0.12);
  color: var(--accent-coral);
  border: 1px solid rgba(255, 122, 110, 0.2);
}

.badge--dark {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-on-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.badge--gold {
  background: rgba(212, 168, 87, 0.1);
  color: var(--accent-gold);
  border: 1px solid rgba(212, 168, 87, 0.25);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.badge--teal {
  background: rgba(0, 184, 169, 0.15);
  color: var(--accent-teal);
  border: 1px solid rgba(0, 184, 169, 0.3);
}

.badge--pill {
  border-radius: 9999px;
  padding: var(--space-2) var(--space-4);
}


/* ==========================================================================
   NAVBAR
   ========================================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-8);
  z-index: var(--z-sticky);
  background: #0A0A0A;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.navbar__logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.navbar__name {
  font-family: var(--font-logo);
  font-size: var(--text-3xl);
  color: #FFFFFF;
  letter-spacing: 0.02em;
}

/* Navbar-scoped overrides: keep text/borders white on solid black bar */
.navbar .btn--ghost {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.18);
}

.navbar .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
}

.navbar__beta-badge {
  margin-left: var(--space-2);
  font-size: 0.65rem;
  padding: 2px 8px;
  letter-spacing: 0.05em;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.lang-selector {
  display: flex;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-display);
}

.lang-active {
  color: var(--accent-gold);
  text-decoration: none;
}

.lang-inactive {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.lang-divider {
  color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
  .navbar {
    height: 70px;
    padding: 0 var(--space-3);
    gap: var(--space-2);
  }

  .navbar__brand {
    gap: var(--space-2);
  }

  .navbar__logo {
    width: 32px;
    height: 32px;
  }

  .navbar__name {
    font-size: var(--text-lg);
  }

  .navbar__beta-badge {
    padding: 2px 6px;
    font-size: 0.55rem;
    margin-left: 0;
  }

  .navbar__actions {
    gap: 8px;
  }

  .lang-selector {
    font-size: 12px;
    gap: 4px;
  }

  .navbar .btn {
    font-size: 11px;
    padding: 6px 12px;
    white-space: nowrap;
  }
}


/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 85vh; /* Reduced from 100vh to minimize whitespace below */
  min-height: 85dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--navbar-height);
  overflow: hidden;
}

/* Grain overlay for cinematic feel */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* Animated mesh gradient blobs */
.hero__mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero__mesh::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 93, 250, 0.12) 0%, transparent 70%);
  top: 15%;
  left: 45%;
  filter: blur(80px);
  animation: meshFloat1 22s ease-in-out infinite;
}

.hero__mesh::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(152, 222, 217, 0.10) 0%, transparent 70%);
  bottom: 15%;
  right: 15%;
  filter: blur(80px);
  animation: meshFloat2 28s ease-in-out infinite;
}

.hero__mesh-blob {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 110, 0.06) 0%, transparent 70%);
  top: 55%;
  left: 15%;
  filter: blur(80px);
  animation: meshFloat3 32s ease-in-out infinite;
}

/* Hero Layout */
.hero__layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-12);
  width: 100%;
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: var(--z-content);
  flex: 1;
  max-width: 600px;
  min-width: 0;
  text-align: left;
}

/* Hero visual (iPhone Mockup) */
.hero__visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  perspective: 1200px;
  z-index: var(--z-content);
}

.iphone-mockup {
  width: 260px;
  height: 530px;
  background: #000;
  border-radius: 32px;
  border: 8px solid #1a1a1a;
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.15), 
    inset 0 0 0 2px #333,
    inset 0 0 0 3px #000;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.iphone-mockup:hover {
  transform: translateY(-8px);
}



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

.iphone-mockup--floating {
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.iphone-mockup--floating:hover {
  transform: translateY(-10px);
  box-shadow: 0 60px 100px rgba(0, 184, 169, 0.25);
}

@media (max-width: 992px) {
  .iphone-mockup--floating {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }
  
  .iphone-mockup--floating:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 184, 169, 0.15);
  }
}

.hero__tag {
  margin-bottom: var(--space-8);
}

.hero h1 {
  color: var(--text-primary);
  font-size: 3.25rem; /* 52px - slightly dialed down further */
  margin-bottom: var(--space-6);
  text-align: left;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 0 var(--space-10) 0;
  line-height: 1.7;
  text-align: left;
}

.hero__cta {
  margin-bottom: var(--space-8);
  text-align: left;
}

.hero__cta-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.mockup-logo {
  width: 60%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  display: block;
}

.hero__proof {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.hero__proof .counter {
  color: var(--accent-secondary);
  font-family: var(--font-mono);
  font-weight: 600;
}

@media (max-width: 992px) {
  .hero__layout {
    flex-direction: column-reverse;
    text-align: center;
    gap: var(--space-4); /* Reduced from space-10 to pull heading closer to image */
  }

  .hero__content {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .hero h1,
  .hero__subtitle,
  .hero__cta {
    text-align: center;
  }

  .iphone-mockup {
    transform: none; /* Flat on mobile */
  }

  .iphone-mockup:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: calc(60px + var(--space-8)) 0 var(--space-8);
  }

  .hero h1 {
    font-size: var(--text-5xl);
  }

  .hero__tag {
    margin-bottom: var(--space-5);
  }

  .hero__subtitle {
    display: block;
    font-size: var(--text-sm);
    line-height: 1.5;
    margin-bottom: var(--space-6);
    padding: 0 var(--space-2);
  }

  .hero__subtitle span {
    font-size: var(--text-lg);
    margin-top: var(--space-2);
  }

  .hero__cta {
    margin-bottom: var(--space-6);
    width: 100%;
  }

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

  .iphone-mockup {
    width: 180px;
    height: 370px;
    border-radius: 24px;
    border-width: 6px;
  }

  .iphone-mockup::before {
    width: 80px;
    height: 18px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }

  .hero__mesh::before {
    width: 350px;
    height: 350px;
    filter: blur(60px);
  }

  .hero__mesh::after {
    width: 250px;
    height: 250px;
    filter: blur(60px);
  }

  .hero__mesh-blob {
    width: 200px;
    height: 200px;
    filter: blur(60px);
  }
}


/* ==========================================================================
   MIND READER SECTION (CRED STYLE)
   ========================================================================== */

.mind-reader {
  background-color: var(--bg-dark);
  padding: calc(var(--space-12) * 3) 0;
  position: relative;
  overflow: hidden;
}

.mind-reader::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(122, 98, 248, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.mind-reader__headline {
  font-size: clamp(var(--text-4xl), 4.2vw, var(--text-7xl));
  white-space: nowrap;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text-on-dark);
  margin-bottom: var(--space-12);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

.neon-glow {
  text-shadow: 0 0 40px var(--accent-teal-glow), 0 0 10px var(--accent-teal-glow);
}

.neon-glow-purple {
  text-shadow: 0 0 40px var(--accent-primary-glow), 0 0 10px var(--accent-primary-glow);
}



.mind-reader__empathy-box {
  max-width: 700px;
  margin: var(--space-12) auto 0;
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mind-reader__empathy-box p {
  font-size: var(--text-xl);
  line-height: 1.6;
  color: var(--text-on-dark-secondary);
}

.mind-reader__cta {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--text-on-dark);
  letter-spacing: -0.02em;
}

@media (max-width: 992px) {
  .mind-reader__headline {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .mind-reader__headline {
    font-size: var(--text-4xl);
  }
  .mind-reader__cta {
    font-size: var(--text-2xl);
  }
  .mind-card {
    font-size: var(--text-base);
    padding: var(--space-4);
  }
}

/* ==========================================================================
   PAIN POINTS SECTION
   ========================================================================== */

.pain-points__headline {
  font-size: var(--text-5xl);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-4);
  color: var(--text-on-dark);
}

.pain-points__subtitle {
  font-size: var(--text-xl);
  color: var(--text-on-dark-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .pain-points__headline {
    font-size: var(--text-3xl);
  }
  .pain-points__subtitle {
    font-size: var(--text-lg);
  }
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.pain-card {
  background: var(--bg-surface);
  border-radius: 24px;
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.pain-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.pain-card__quote-mark {
  font-size: var(--text-7xl);
  line-height: 1;
  color: var(--bg-surface-elevated);
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: calc(var(--space-2) * -1);
}

.pain-card__text {
  font-size: var(--text-base);
  color: var(--text-primary);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: var(--space-8);
  z-index: 1;
  position: relative;
}

.pain-card__footer {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-subtle);
}

.pain-card__icon-wrap {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 184, 169, 0.1);
  flex-shrink: 0;
}

.pain-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pain-card__title {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}

.pain-card__status {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */

.final-cta {
  padding: calc(var(--space-24) + var(--space-8)) 0;
}

.final-cta__headline {
  font-size: var(--text-5xl);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

@media (max-width: 768px) {
  .stuck {
    padding: var(--space-12) 0;
  }

  .stuck__headline {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-6);
  }

  .stuck__body {
    font-size: var(--text-base);
    line-height: 1.7;
  }

  .stuck__cta-text {
    font-size: var(--text-base);
  }
}


/* ==========================================================================
   TRANSFORMATION SECTION
   ========================================================================== */

.transformation {
  text-align: center;
}

.transformation .section__headline {
  margin-bottom: var(--space-12);
}

/* Grid of identity cards */
.transform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  max-width: 800px;
  margin: 0 auto var(--space-12);
}

.transform-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-6) var(--space-8);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.transform-card:hover {
  background: var(--bg-surface-elevated);
  border-color: rgba(124, 93, 250, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(124, 93, 250, 0.08);
}

.transform-card__from {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-lg);
  color: var(--text-muted);
}

.transform-card__arrow {
  font-size: var(--text-xl);
  color: var(--accent-primary);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.transform-card:hover .transform-card__arrow {
  transform: translateX(6px);
  color: var(--accent-secondary);
}

.transform-card__to {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--text-primary);
}

.founding-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--text-on-dark);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(245, 199, 103, 0.2);
}

@media (max-width: 640px) {
  .transform-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .transform-card {
    padding: var(--space-4) var(--space-5);
    min-height: 56px;
  }

  .transform-card__from,
  .transform-card__to {
    font-size: var(--text-sm);
  }

  .transform-card__arrow {
    font-size: var(--text-base);
  }
}

@media (max-width: 768px) {
  .marquee__item {
    font-size: var(--text-lg);
  }
}

/* Marquee */
.marquee {
  overflow: hidden;
  padding: var(--space-6) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

/* Fade edges */
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-base), transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-base), transparent);
}

.marquee__track {
  display: flex;
  gap: var(--space-8);
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}

.marquee__item {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-faded);
  white-space: nowrap;
  letter-spacing: 0.06em;
  user-select: none;
}

.marquee__item .highlight {
  color: var(--accent-primary);
  opacity: 0.4;
}

/* ==========================================================================
   HERO CAROUSEL
   ========================================================================== */

.hero-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.hero-carousel__track {
  display: flex;
  width: 500%; /* 5 slides for seamless loop */
  animation: heroCarouselSlide 16s infinite;
}

.hero-carousel-slide {
  width: 20%; /* 1/5 of track */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: var(--space-8) 0 0 0; /* Removed bottom padding to pull heading up */
}

.persona-hero-wrap {
  width: 360px;
  height: 360px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: 
    linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%);
  -webkit-mask-composite: source-in;
  mask-image: 
    linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%);
  mask-composite: intersect;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-carousel-slide:hover .hero-carousel-img {
  transform: scale(1.1) translateY(-10px);
}

.hero-carousel-tag {
  text-align: center;
  z-index: 10;
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
}

.tag-title {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.tag-subtitle {
  color: var(--text-secondary);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-full);
  display: inline-block;
  background: transparent;
}

@keyframes heroCarouselSlide {
  0%, 18% { transform: translateX(0); }
  25%, 43% { transform: translateX(-20%); }
  50%, 68% { transform: translateX(-40%); }
  75%, 93% { transform: translateX(-60%); }
  100% { transform: translateX(-80%); }
}

@media (max-width: 768px) {
  .persona-hero-wrap {
    width: 280px;
    height: 280px;
  }
}


/* ==========================================================================
   FOUNDING SELLER SECTION
   ========================================================================== */

.founding {
  text-align: center;
}

.founding .section__headline {
  margin-bottom: var(--space-4);
}

.founding__subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-12);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Vibrant VIP Card */
.founding-card {
  max-width: 520px;
  margin: 0 auto;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid rgba(245, 199, 103, 0.3); /* Gold border hint */
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  color: var(--text-on-dark);
}

@media (max-width: 768px) {
  .founding-card {
    padding: var(--space-6) var(--space-5);
    border-radius: 4px; /* More rectangular on mobile */
  }

  .founding__subtitle {
    font-size: var(--text-base);
    margin-bottom: var(--space-8);
  }

  .founding-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }

  .benefits-list__item {
    font-size: var(--text-sm);
    padding: var(--space-2) 0;
  }
}

.founding-card__watermark {
  position: absolute;
  top: 60%;
  right: var(--space-4);
  transform: translateY(-50%);
  width: 120px;
  height: 120px;
  opacity: 0.4;
  pointer-events: none;
  filter: grayscale(100%) brightness(1.2);
  mix-blend-mode: screen;
  z-index: 0;
}

@media (max-width: 768px) {
  .founding-card__watermark {
    width: 90px;
    height: 90px;
    top: 65%;
    right: -5px;
    opacity: 0.2;
  }
}

.founding-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.founding-card::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.founding-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
  position: relative;
  z-index: 1;
}


/* Benefits checklist */
.benefits-list {
  text-align: left;
  position: relative;
  z-index: 1;
}

.benefits-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.benefits-list__check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--accent-gold);
  margin-top: 2px;
}


/* ==========================================================================
   FOUNDER STORY (NO PHOTO — Quote Only)
   ========================================================================== */

.founder-story {
  text-align: center;
  position: relative;
}

.founder-story .section__headline {
  margin-bottom: var(--space-10);
}

.founder-quote {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-secondary);
  position: relative;
  padding: var(--space-8) var(--space-4);
  max-width: 720px;
  margin: 0 auto;
  border: none;
}

/* Giant decorative quotation mark */
.founder-quote::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent-primary);
  opacity: 0.12;
  pointer-events: none;
}

.founder-quote em {
  font-style: normal;
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .founder-story {
    padding: var(--space-12) 0;
  }

  .founder-story .section__headline {
    margin-bottom: var(--space-6);
  }

  .founder-quote {
    font-size: var(--text-base);
    padding: var(--space-4) 0;
    line-height: 1.65;
  }

  .founder-quote::before {
    font-size: 4rem;
    top: -15px;
  }
}


/* ==========================================================================
   WAITLIST FORM
   ========================================================================== */

.waitlist {
  text-align: center;
  position: relative;
}

/* Subtle radial glow behind form */
.waitlist::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(124, 93, 250, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.waitlist .section__headline {
  margin-bottom: var(--space-10);
  position: relative;
  z-index: 1;
}

.waitlist-form {
  max-width: var(--max-width-form);
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 1;
}

.form-group {
  margin-bottom: var(--space-6);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
  letter-spacing: 0.01em;
}

.form-input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 16px; /* Prevents iOS zoom on focus */
  transition: all var(--transition-base);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:hover {
  border-color: var(--border-strong);
}

.form-input:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(124, 93, 250, 0.12);
}

.form-input--light {
  background: rgba(255, 255, 255, 0.92);
  border-color: #FFFFFF;
  color: #111111;
}

.form-input--light:hover {
  border-color: rgba(124, 93, 250, 0.5);
  background: #FFFFFF;
}

.form-input--light:focus {
  background: #FFFFFF;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(124, 93, 250, 0.2);
}

.form-input--light::placeholder {
  color: #777777;
}

.form-input::placeholder {
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .form-input {
    padding: var(--space-4);
  }
}

/* Radio Pills */
.radio-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.radio-pills input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.radio-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-4);
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-base);
  user-select: none;
  /* Min touch target 44px for mobile */
  min-height: 44px;
}

.radio-pill:hover {
  background: var(--bg-surface-elevated);
  border-color: var(--border-strong);
  color: var(--text-primary);
}

.radio-pills input[type="radio"]:checked + .radio-pill {
  background: var(--accent-primary) !important;
  border-color: var(--accent-primary) !important;
  color: #fff !important;
  font-weight: 600;
}

.radio-pills input[type="radio"]:focus-visible + .radio-pill {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .radio-pills {
    gap: var(--space-3);
  }

  .radio-pill {
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-base);
  }

  .waitlist .section__headline {
    margin-bottom: var(--space-6);
  }

  .waitlist-form .btn {
    min-height: 52px;
    font-size: var(--text-base);
  }
}

/* Form submit button spacing */
.waitlist-form .btn {
  margin-top: var(--space-4);
}

.form-micro {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--space-4);
  text-align: center;
}

/* Success State */
.waitlist-success {
  max-width: var(--max-width-form);
  margin: 0 auto;
  text-align: center;
  padding: var(--space-12) var(--space-6);
  position: relative;
  z-index: 1;
}

.waitlist-success .success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(152, 222, 217, 0.1);
  color: var(--accent-secondary);
  font-size: var(--text-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  border: 2px solid rgba(152, 222, 217, 0.25);
  animation: checkPop 0.5s ease forwards;
}

.waitlist-success h3 {
  margin-bottom: var(--space-4);
  font-size: var(--text-3xl);
  color: #ffffff;
}

.waitlist-success p {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-lg);
  line-height: 1.6;
}


/* ==========================================================================
   FAQ
   ========================================================================== */

.faq .section__headline {
  text-align: center;
  margin-bottom: var(--space-10);
}

.faq-list {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-subtle);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-base);
  min-height: 48px; /* Touch-friendly */
}

@media (max-width: 768px) {
  .faq-item__trigger {
    padding: var(--space-4) 0;
    font-size: var(--text-sm);
  }

  .faq-item__content p {
    font-size: var(--text-sm);
    line-height: 1.6;
  }
}

.faq-item__trigger:hover {
  color: var(--accent-primary);
}

.faq-item__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--transition-base), color var(--transition-base);
}

.faq-item.active .faq-item__chevron {
  transform: rotate(180deg);
  color: var(--accent-primary);
}

.faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base) ease;
}

.faq-item__content p {
  padding: 0 0 var(--space-5);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.7;
}


/* ==========================================================================



/* ==========================================================================
   WAITLIST SPLIT LAYOUT
   ========================================================================== */

.waitlist-split {
  padding: var(--space-24) 0;
  overflow: hidden;
}

.waitlist-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

@media (max-width: 992px) {
  .waitlist-split__grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
  }
  .waitlist-split__visual {
    margin-top: var(--space-8);
  }
  .waitlist-split__content {
    text-align: center;
    display: flex;
    flex-direction: column;
  }
  .waitlist-split__content .form-micro {
    text-align: center !important;
  }
  .waitlist-split__visual .iphone-mockup {
    margin: 0 auto;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  padding: var(--space-12) 0 var(--space-8);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #0A0A0A;
}

.footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer__logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.footer__name {
  font-family: var(--font-logo);
  font-size: var(--text-lg);
  color: #FFFFFF;
}

.footer__tagline {
  color: #A0A0A0;
  margin-bottom: var(--space-6);
  font-size: var(--text-sm);
}

.footer__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

.footer__links a {
  font-size: var(--text-sm);
  color: #A0A0A0;
  transition: color var(--transition-base);
  position: relative;
}

.footer__links a:hover {
  color: #FFFFFF;
}

.footer__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-primary);
  transition: width var(--transition-base);
}

.footer__links a:hover::after {
  width: 100%;
}

.footer__copyright {
  font-size: var(--text-xs);
  color: #666666;
}
