/* ═══════════════════════════════════════════════
   MOCKUP BUILD — DESIGN SYSTEM
   White & Vibrant Green — UX-Friendly Edition
   ═══════════════════════════════════════════════ */

/* ─── VARIABLES ─── */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8faf8;
  --bg-tertiary: #f0fdf0;
  --bg-surface: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.85);
  --bg-dark: #052e16;
  --border: #e5e7eb;
  --border-hover: #16a34a;
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;
  --text-on-dark: #f9fafb;
  --green-600: #16a34a;
  --green-500: #22c55e;
  --green-400: #4ade80;
  --green-100: #dcfce7;
  --green-50: #f0fdf4;
  --gradient: linear-gradient(135deg, #16a34a, #22c55e);
  --gradient-soft: linear-gradient(135deg, #f0fdf4, #dcfce7);
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.09);
  --shadow-green: 0 8px 30px rgba(22, 163, 74, 0.15);
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', 'Inter', sans-serif;
  --section-py: clamp(5rem, 10vw, 8rem);
  --container-max: 1140px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

/* ─── RESET ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* Nicer scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

/* Selection */
::selection {
  background: var(--green-100);
  color: var(--green-600);
}

/* ─── UTILITY ─── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.6rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.25);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.35);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s;
}

.btn--glow:hover::after {
  opacity: 1;
}

.btn--outline {
  border: 1.5px solid var(--border);
  color: var(--text-primary);
  background: #fff;
}

.btn--outline:hover {
  border-color: var(--green-500);
  color: var(--green-600);
  background: var(--green-50);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn--ghost {
  color: var(--text-secondary);
}

.btn--ghost:hover {
  color: var(--green-600);
}

.btn--lg {
  padding: 1rem 2.2rem;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

.btn--sm {
  padding: .5rem 1.1rem;
  font-size: .82rem;
  border-radius: 8px;
}

.btn--block {
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════════════
   HEADER
   ═══════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: .8rem 0;
  transition: all var(--transition);
}

.header.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: .6rem 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  font-family: var(--font-heading);
}

.logo__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover .logo__mark {
  transform: rotate(-5deg) scale(1.1);
}

.logo__text {
  color: #111827;
}

/* Animated Clothing Logo */
@keyframes float-clothing {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-3px) rotate(3deg);
  }
}

.logo-icon-animated {
  animation: float-clothing 3s ease-in-out infinite;
  display: block;
}

.nav {
  display: flex;
  gap: 2.5rem;
}

.nav__link {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
  padding: .25rem 0;
}

.nav__link:hover,
.nav__link--active {
  color: var(--green-600);
}

.nav__link--active::after {
  width: 100% !important;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transition: width .3s ease;
}

.nav__link:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  gap: .75rem;
  align-items: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all .3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 12rem;
  background: linear-gradient(170deg, #f0fdf4 0%, #fff 35%, #ecfdf5 70%, #fff 100%);
  overflow: hidden;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image: radial-gradient(circle at 1px 1px, #d1d5db 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: glow-pulse 8s ease-in-out infinite alternate;
}

.hero__glow--1 {
  width: 500px;
  height: 500px;
  top: -100px;
  left: -60px;
  background: rgba(22, 163, 74, 0.07);
}

.hero__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -80px;
  right: -40px;
  background: rgba(74, 222, 128, 0.06);
  animation-delay: 4s;
}

@keyframes glow-pulse {
  0% {
    opacity: .4;
    transform: scale(1);
  }

  100% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}



.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

/* Hero social proof */
.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  max-width: fit-content;
}

.hero__avatars {
  display: flex;
}

.hero__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .72rem;
  color: #fff;
  border: 2.5px solid #fff;
  margin-left: -8px;
}

.hero__avatar:first-child {
  margin-left: 0;
}

.hero__stars {
  color: #f59e0b;
  font-size: .85rem;
  letter-spacing: 1px;
}

.hero__stars span {
  color: var(--text-muted);
  font-size: .8rem;
  font-weight: 600;
  margin-left: .25rem;
}

.hero__social-text p {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: .1rem;
}

/* Hero mockup visual */
.hero__visual {
  position: relative;
}

.hero__mockup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
}

.mockup-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: var(--radius-md);
  padding: .9rem;
  text-align: center;
  transition: all .4s cubic-bezier(.34, 1.56, .64, 1);
  box-shadow: var(--shadow-xs);
  animation: float-in .6s ease-out backwards;
}

.mockup-card:hover {
  transform: translateY(-10px) scale(1.04) rotate(-1deg);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-100);
  z-index: 2;
}

.mockup-card--1 {
  animation-delay: .05s;
}

.mockup-card--2 {
  animation-delay: .1s;
}

.mockup-card--3 {
  animation-delay: .15s;
}

.mockup-card--4 {
  animation-delay: .2s;
}

.mockup-card--5 {
  animation-delay: .25s;
}

.mockup-card--6 {
  animation-delay: .3s;
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.mockup-card__visual {
  position: relative;
  width: 100%;
  margin-bottom: .55rem;
  border-radius: 8px;
  overflow: hidden;
}

.mockup-card__img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
  background-color: #f9fafb;
  display: block;
}


.mockup-card span {
  font-size: .85rem;
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: .02em;
  display: block;
}

/* Floating stats */
.hero__stats-float {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.stat-badge {
  position: absolute;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: var(--radius-md);
  padding: .7rem 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  box-shadow: var(--shadow-md);
  animation: badge-float 5s ease-in-out infinite alternate;
  pointer-events: auto;
}

.stat-badge__icon {
  font-size: 1.3rem;
}

.stat-badge strong {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--green-600);
  display: block;
}

.stat-badge span {
  font-size: .65rem;
  color: var(--text-muted);
  display: block;
}

.stat-badge--top {
  top: -70px;
  right: -25px;
}

.stat-badge--bottom {
  bottom: -100px;
  left: -25px;
  animation-delay: 2.5s;
}

@keyframes badge-float {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-8px);
  }
}

/* Tote bag specific resize */
.mockup-card--6 .mockup-card__img {
  object-fit: contain;
  padding: 0;
  transform: scale(1.15);
}

/* ═══════════════════════════════════════
   LOGOS BAR
   ═══════════════════════════════════════ */
.logos-bar {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: #fff;
  position: relative;
}

.logos-bar::before,
.logos-bar::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.logos-bar::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.logos-bar::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.logos-bar__label {
  text-align: center;
  font-size: .8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 700;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.logos-bar__track {
  display: flex;
  gap: 4rem;
  animation: marquee 30s linear infinite;
  padding-left: 2rem;
}

.logos-bar__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0 1rem;
}

.logos-bar__item img {
  height: 40px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logos-bar__item:hover img {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}



/* POD Indigo */

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════════════
   SECTION HEADER
   ═══════════════════════════════════════ */
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-block;
  padding: .4rem 1.1rem;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--green-600);
  margin-bottom: 1.25rem;
}

/* Section tag color variants */
/* Section tag color variants - unified to green theme */
.tag--purple,
.tag--blue,
.tag--amber,
.tag--rose,
.tag--teal,
.tag--green {
  background: var(--green-50);
  border-color: var(--green-100);
  color: var(--green-600);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   FRUSTRATION / PAIN POINTS
   ═══════════════════════════════════════ */
.frustration {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, #fff 0%, #fef7f0 40%, #fef7f0 60%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.frustration .section-tag {
  background: #fff1f2;
  border-color: #fecdd3;
  color: #e11d48;
}

.frustration .section-title {
  color: var(--text-primary);
}

.frustration .section-subtitle {
  color: var(--text-secondary);
}

.gradient-text--red {
  background: linear-gradient(135deg, #ef4444, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.frustration__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.frustration__card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: all var(--transition);
  position: relative;
  box-shadow: var(--shadow-xs);
}

.frustration__card:hover {
  border-color: #fda4af;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(244, 63, 94, 0.08);
}

.frustration__icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.frustration__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: .5rem;
}

.frustration__desc {
  font-size: .88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.frustration__cta {
  text-align: center;
  padding-top: 1rem;
}

.frustration__cta-text {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.frustration__cta-text strong {
  color: var(--text-primary);
}

/* ═══════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════ */
.features {
  padding: var(--section-py) 0;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.feature-card:hover {
  border-color: #e5e7eb;
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-50);
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  color: var(--green-600);
  transition: all var(--transition);
}

.feature-card:hover .feature-card__icon {
  background: var(--gradient);
  color: #fff;
  transform: scale(1.05);
}

/* Feature card color variants */
.feature-card--purple .feature-card__icon {
  background: #f5f3ff;
  color: #7c3aed;
}

.feature-card--purple::before {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.feature-card--purple:hover .feature-card__icon {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  color: #fff;
}

.feature-card--blue .feature-card__icon {
  background: #eff6ff;
  color: #2563eb;
}

.feature-card--blue::before {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
}

.feature-card--blue:hover .feature-card__icon {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  color: #fff;
}

.feature-card--amber .feature-card__icon {
  background: #fffbeb;
  color: #d97706;
}

.feature-card--amber::before {
  background: linear-gradient(135deg, #d97706, #fbbf24);
}

.feature-card--amber:hover .feature-card__icon {
  background: linear-gradient(135deg, #d97706, #fbbf24);
  color: #fff;
}

.feature-card--rose .feature-card__icon {
  background: #fff1f2;
  color: #e11d48;
}

.feature-card--rose::before {
  background: linear-gradient(135deg, #e11d48, #fb7185);
}

.feature-card--rose:hover .feature-card__icon {
  background: linear-gradient(135deg, #e11d48, #fb7185);
  color: #fff;
}

.feature-card--teal .feature-card__icon {
  background: #f0fdfa;
  color: #0d9488;
}

.feature-card--teal::before {
  background: linear-gradient(135deg, #0d9488, #2dd4bf);
}

.feature-card--teal:hover .feature-card__icon {
  background: linear-gradient(135deg, #0d9488, #2dd4bf);
  color: #fff;
}

.feature-card--indigo .feature-card__icon {
  background: #eef2ff;
  color: #4f46e5;
}

.feature-card--indigo::before {
  background: linear-gradient(135deg, #4f46e5, #818cf8);
}

.feature-card--indigo:hover .feature-card__icon {
  background: linear-gradient(135deg, #4f46e5, #818cf8);
  color: #fff;
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.feature-card__desc {
  font-size: .88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════ */
.how-it-works {
  padding: var(--section-py) 0;
  background: var(--bg-secondary);
}

.steps {
  max-width: 780px;
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.75rem;
  align-items: center;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
}

.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-100);
}

.step__number {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.2);
}

.step__title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: .3rem;
}

.step__desc {
  font-size: .88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step__visual {
  flex-shrink: 0;
}

.step-connector {
  display: flex;
  justify-content: center;
  padding: .4rem 0;
}

.step-connector__line {
  width: 2px;
  height: 36px;
  background: linear-gradient(to bottom, var(--green-400), transparent);
  border-radius: 2px;
}

.step__icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem;
}

.step__mini-card {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 8px;
  font-size: 1.2rem;
  transition: transform var(--transition);
}

.step:hover .step__mini-card {
  transform: scale(1.08);
}

.step__upload-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  padding: 1rem 1.4rem;
  border: 2px dashed var(--green-100);
  border-radius: var(--radius-md);
  font-size: .72rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: border-color var(--transition);
}

.step:hover .step__upload-zone {
  border-color: var(--green-400);
}

.step__progress-demo {
  min-width: 150px;
}

.step__progress-bar {
  width: 100%;
  height: 7px;
  background: var(--green-50);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: .4rem;
}

.step__progress-fill {
  width: 0;
  height: 100%;
  background: var(--gradient);
  border-radius: 4px;
  animation: progress-fill 3s ease-in-out infinite;
}

@keyframes progress-fill {
  0% {
    width: 0;
  }

  60% {
    width: 100%;
  }

  100% {
    width: 100%;
  }
}

.step__progress-label {
  font-size: .7rem;
  color: var(--green-600);
  font-weight: 600;
}

/* ═══════════════════════════════════════
   SOCIAL PROOF
   ═══════════════════════════════════════ */
.social-proof {
  padding: var(--section-py) 0;
}

/* Carousel wrapper */
.carousel-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 0.5rem 0;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.carousel-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
}

.carousel-track--left {
  animation: scroll-left 35s linear infinite;
}

.carousel-track--right {
  animation: scroll-right 35s linear infinite;
}

.carousel-wrapper:hover .carousel-track {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
  position: relative;
  min-width: 340px;
  max-width: 360px;
  flex-shrink: 0;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--green-100);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-100);
}

.testimonial-card__stars {
  color: #f59e0b;
  font-size: .9rem;
  margin-bottom: .85rem;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: .92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .82rem;
  color: #fff;
  flex-shrink: 0;
  position: relative;
}

.avatar-initials {
  position: relative;
  z-index: 1;
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .03em;
}

.avatar-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: transparent;
}

.testimonial-card__avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2.5px solid #f3f4f6;
  transition: border-color var(--transition);
}

.testimonial-card:hover .testimonial-card__avatar-img {
  border-color: var(--green-400);
}

.testimonial-card__author strong {
  display: block;
  font-size: .88rem;
}

.testimonial-card__author span {
  font-size: .72rem;
  color: var(--text-muted);
}

/* Testimonial card color accents */
.testimonial-card--green {
  border-left: 3px solid #16a34a;
}

.testimonial-card--green::before {
  color: #dcfce7;
}

.testimonial-card--green:hover {
  border-color: #16a34a;
}

.testimonial-card--blue {
  border-left: 3px solid #3b82f6;
}

.testimonial-card--blue::before {
  color: #bfdbfe;
}

.testimonial-card--blue:hover {
  border-color: #3b82f6;
}

.testimonial-card--amber {
  border-left: 3px solid #f59e0b;
}

.testimonial-card--amber::before {
  color: #fde68a;
}

.testimonial-card--amber:hover {
  border-color: #f59e0b;
}

.testimonial-card--purple {
  border-left: 3px solid #7c3aed;
}

.testimonial-card--purple::before {
  color: #e9d5ff;
}

.testimonial-card--purple:hover {
  border-color: #7c3aed;
}

.testimonial-card--rose {
  border-left: 3px solid #e11d48;
}

.testimonial-card--rose::before {
  color: #fecdd3;
}

.testimonial-card--rose:hover {
  border-color: #e11d48;
}

.testimonial-card--teal {
  border-left: 3px solid #0d9488;
}

.testimonial-card--teal::before {
  color: #99f6e4;
}

.testimonial-card--teal:hover {
  border-color: #0d9488;
}

.testimonial-card--indigo {
  border-left: 3px solid #4f46e5;
}

.testimonial-card--indigo::before {
  color: #c7d2fe;
}

.testimonial-card--indigo:hover {
  border-color: #4f46e5;
}

/* Stats bar */
.social-proof__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 2.5rem;
  background: var(--bg-dark);
  border-radius: var(--radius-xl);
}

.stat-block {
  text-align: center;
}

.stat-block__number {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--green-400);
}

.stat-block__label {
  font-size: .78rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: .2rem;
}

/* ═══════════════════════════════════════
   PRICING
   ═══════════════════════════════════════ */
.pricing {
  padding: var(--section-py) 0;
  background: var(--bg-secondary);
}

.pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.pricing__toggle-label {
  font-size: .9rem;
  color: var(--text-muted);
  transition: color .3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .5rem;
  user-select: none;
}

.pricing__toggle-label--active {
  color: var(--text-primary);
  font-weight: 600;
}

.pricing__save-badge {
  background: var(--green-100);
  color: var(--green-600);
  font-size: .68rem;
  font-weight: 700;
  padding: .2rem .55rem;
  border-radius: 50px;
}

.pricing__switch {
  width: 48px;
  height: 26px;
  background: #e5e7eb;
  border-radius: 50px;
  position: relative;
  transition: background .3s;
}

.pricing__switch.active {
  background: var(--green-100);
}

.pricing__switch-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--gradient);
  border-radius: 50%;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 2px 6px rgba(22, 163, 74, 0.3);
}

.pricing__switch.active .pricing__switch-thumb {
  transform: translateX(22px);
}

.pricing__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  transition: all var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--popular {
  border: 2px solid var(--green-500);
  box-shadow: var(--shadow-green);
}

.pricing-card--popular:hover {
  box-shadow: 0 16px 50px rgba(22, 163, 74, 0.18);
}

.pricing-card__badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .45rem 1.3rem;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
}

.pricing-card__header {
  margin-bottom: 1.75rem;
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: .1rem;
}

.pricing-card__currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-muted);
}

.pricing-card__amount {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
}

.pricing-card__period {
  font-size: .88rem;
  color: var(--text-muted);
  margin-left: .25rem;
}

.pricing-card__sub {
  font-size: .82rem;
  color: var(--green-600);
  margin-top: .5rem;
  font-weight: 600;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .9rem;
  color: var(--text-secondary);
}

/* Guarantee */
.pricing__guarantee {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.pricing__guarantee-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-md);
  max-width: fit-content;
}

.pricing__guarantee-card strong {
  display: block;
  font-size: .88rem;
  color: var(--green-600);
}

.pricing__guarantee-card p {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: .15rem;
}

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.faq {
  padding: var(--section-py) 0;
}

.faq__list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.faq-item {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-item.open {
  border-color: var(--green-100);
  box-shadow: var(--shadow-md);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  font-size: .95rem;
  font-weight: 600;
  text-align: left;
  transition: color .2s;
}

.faq-item__question:hover {
  color: var(--green-600);
}

/* Plus/minus icon */
.faq-item__icon {
  width: 22px;
  height: 22px;
  position: relative;
  flex-shrink: 0;
}

.faq-item__icon span {
  position: absolute;
  background: var(--text-muted);
  border-radius: 2px;
  transition: all .3s ease;
}

.faq-item__icon span:first-child {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item__icon span:last-child {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-item__icon span {
  background: var(--green-600);
}

.faq-item.open .faq-item__icon span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4, 0, .2, 1);
}

.faq-item.open .faq-item__answer {
  max-height: 300px;
}

.faq-item__answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ═══════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════ */
.cta-banner {
  padding: var(--section-py) 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.cta-banner__glow {
  position: absolute;
  width: 700px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(34, 197, 94, 0.10), transparent 65%);
  pointer-events: none;
}

.cta-banner__inner {
  text-align: center;
  position: relative;
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
  letter-spacing: -0.01em;
}

.cta-banner__subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-banner__trust {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.cta-banner__trust-item {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

/* ═══════════════════════════════════════
   BLOG PAGE
   ═══════════════════════════════════════ */
.blog-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(180deg, #f0fdf0 0%, #ffffff 100%);
  text-align: center;
}

.blog-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.blog-hero__subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 6rem;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-200);
}

.blog-card__thumb {
  width: 100%;
  height: 220px;
  background: #f3f4f6;
  position: relative;
  overflow: hidden;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__img {
  transform: scale(1.05);
}

.blog-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card__tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--green-50);
  color: var(--green-700);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card__excerpt {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.blog-card__author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-card__author-img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

@media(max-width:768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__desc {
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 280px;
  line-height: 1.65;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.footer__link {
  font-size: .88rem;
  color: var(--text-secondary);
  transition: all .2s;
  display: inline-block;
}

.footer__link:hover {
  color: var(--green-600);
  transform: translateX(2px);
}

.footer__email {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: .75rem;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: .8rem;
  color: var(--text-muted);
}

.footer__social {
  display: flex;
  gap: .75rem;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  transition: all .25s;
}

.footer__social-link:hover {
  color: #fff;
  border-color: var(--green-500);
  background: var(--gradient);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
}

/* ═══════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-green);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.3);
}

/* ═══════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.25, .46, .45, .94), transform .8s cubic-bezier(.25, .46, .45, .94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 {
  transition-delay: .12s;
}

.reveal--delay-2 {
  transition-delay: .24s;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media(max-width:1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero__subtitle {
    margin: 0 auto 2.25rem;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__social-proof {
    margin: 0 auto;
  }

  .hero__visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-proof__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:768px) {
  .nav {
    display: none;
  }

  .header__actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    padding: 2rem 1.5rem;
    gap: 1rem;
    z-index: 999;
    animation: slide-down .3s ease;
    border-top: 1px solid var(--border);
  }

  @keyframes slide-down {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav.mobile-open .nav__link {
    font-size: 1.15rem;
    padding: .75rem 0;
    border-bottom: 1px solid var(--border);
  }

  .hero {
    min-height: auto;
    padding: 6.5rem 0 3rem;
  }

  .hero__title {
    font-size: 2.1rem;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .frustration__grid {
    grid-template-columns: 1fr;
  }

  .step {
    grid-template-columns: auto 1fr;
    gap: 1rem;
  }

  .step__visual {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .pricing__cards {
    grid-template-columns: 1fr;
    max-width: 380px;
  }

  .social-proof__stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.5rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
  }
}

@media(max-width:480px) {
  .hero__mockup-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-banner__trust {
    flex-direction: column;
    align-items: center;
    gap: .75rem;
  }

  .hero__social-proof {
    flex-direction: column;
    text-align: center;
  }

  .hero__avatars {
    justify-content: center;
  }
}

/* ═══════════════════════════════════════
   WAITLIST — Premium Redesign
   ═══════════════════════════════════════ */
.waitlist {
  padding: var(--section-py) 0;
  background: linear-gradient(170deg, #f0fdf4 0%, #ecfdf5 30%, #f0f9ff 60%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.waitlist__bg-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  top: 20%;
  left: 15%;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.07) 0%, transparent 70%);
  pointer-events: none;
  animation: glow-pulse 8s ease-in-out infinite alternate;
}

.waitlist__bg-glow--2 {
  top: auto;
  bottom: 10%;
  left: auto;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.06) 0%, transparent 70%);
  animation-delay: 4s;
}

/* ─── Two-column layout ─── */
.waitlist__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.waitlist__info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.waitlist__heading {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
}

.waitlist__desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 440px;
}

/* ─── Perks list ─── */
.waitlist__perks {
  list-style: none;
  padding: 0;
  margin: .5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.waitlist__perk {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .85rem 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(229, 231, 235, 0.4);
  transition: all var(--transition);
}

.waitlist__perk:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(22, 163, 74, 0.2);
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.waitlist__perk-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(22, 163, 74, 0.08);
}

.waitlist__perk strong {
  display: block;
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.waitlist__perk span {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ─── Social Proof ─── */
.waitlist__social {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: .5rem;
}

.waitlist__avatars {
  display: flex;
}

.waitlist__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .65rem;
  color: #fff;
  border: 2.5px solid #fff;
  margin-left: -8px;
  transition: transform .2s ease;
}

.waitlist__avatar:first-child {
  margin-left: 0;
}

.waitlist__avatar:hover {
  transform: translateY(-2px);
}

.waitlist__social-text {
  font-size: .85rem;
  color: var(--text-muted);
}

.waitlist__social-text strong {
  color: var(--green-600);
  font-family: var(--font-heading);
  font-size: .95rem;
}

/* ─── Form Card ─── */
.waitlist__card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(229, 231, 235, 0.5);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.waitlist__card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg,
      transparent 0deg,
      rgba(22, 163, 74, 0.06) 60deg,
      transparent 120deg,
      rgba(14, 165, 233, 0.05) 180deg,
      transparent 240deg,
      rgba(139, 92, 246, 0.04) 300deg,
      transparent 360deg);
  animation: card-glow-spin 12s linear infinite;
  pointer-events: none;
}

@keyframes card-glow-spin {
  100% {
    transform: rotate(360deg);
  }
}

.waitlist__card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: .35rem;
  position: relative;
}

.waitlist__card-sub {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  position: relative;
}

/* ─── Form ─── */
.waitlist__form {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  position: relative;
}

.waitlist__input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.waitlist__input-icon {
  position: absolute;
  left: 1rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: color var(--transition);
  z-index: 1;
}

.waitlist__input-group:focus-within .waitlist__input-icon {
  color: var(--green-600);
}

.waitlist__input {
  width: 100%;
  padding: 1rem 1rem 1rem 2.8rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: .95rem;
  font-family: var(--font-body);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-primary);
  transition: all var(--transition);
  outline: none;
}

.waitlist__input:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.08);
  background: #fff;
}

.waitlist__input::placeholder {
  color: var(--text-muted);
}

/* ─── Button ─── */
.waitlist__btn {
  width: 100%;
  margin-top: .25rem;
  justify-content: center;
  font-size: 1rem;
  padding: 1rem;
  position: relative;
}

.waitlist__btn-check {
  display: none;
}

.waitlist__btn.success .waitlist__btn-text,
.waitlist__btn.success .waitlist__btn-arrow {
  display: none;
}

.waitlist__btn.success .waitlist__btn-check {
  display: block;
  animation: check-pop .4s cubic-bezier(.34, 1.56, .64, 1);
}

.waitlist__btn.success {
  background: var(--green-600);
}

@keyframes check-pop {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

/* ─── Social proof (in-card) ─── */
.waitlist__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-top: 1rem;
}

.waitlist__social-text {
  font-size: .82rem;
  color: var(--text-muted);
}

.waitlist__social-text strong {
  color: var(--green-600);
  font-family: var(--font-heading);
}

.waitlist__spots {
  color: #f59e0b;
  font-weight: 600;
}

/* ─── Card Benefits ─── */
.waitlist__card-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .75rem;
  margin-top: 1rem;
  position: relative;
}

.waitlist__card-benefit {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.waitlist__card-benefit svg {
  flex-shrink: 0;
}

/* ─── Hint (legacy) ─── */
.waitlist__hint {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  position: relative;
}

.waitlist__hint svg {
  opacity: .5;
}

/* ─── Form state ─── */
.waitlist__form-wrap {
  position: relative;
}

.waitlist__form-wrap.hidden {
  display: none;
}

/* ─── Success state ─── */
.waitlist__success {
  display: none;
  text-align: center;
  padding: 2rem 0;
  animation: fade-up .5s ease-out;
}

.waitlist__success.active {
  display: block;
}

.waitlist__success-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: bounce-in .6s cubic-bezier(.34, 1.56, .64, 1);
}

@keyframes bounce-in {
  0% {
    transform: scale(0) rotate(-10deg);
    opacity: 0;
  }

  60% {
    transform: scale(1.2) rotate(5deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.waitlist__success-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: .5rem;
  color: var(--text-primary);
}

.waitlist__success-desc {
  font-size: .95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto;
}

.waitlist__success-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1.25rem;
  padding: .45rem 1rem;
  border-radius: 100px;
  background: rgba(22, 163, 74, 0.08);
  color: var(--green-600);
  font-size: .82rem;
  font-weight: 600;
  font-family: var(--font-heading);
  animation: fade-up .6s ease-out .2s both;
}

/* ─── Error state ─── */
.waitlist__input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
  animation: shake .4s ease;
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-6px);
  }

  75% {
    transform: translateX(6px);
  }
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .waitlist__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .waitlist__desc {
    max-width: 100%;
  }

  .waitlist__heading {
    font-size: 2rem;
  }

  .waitlist__social {
    justify-content: center;
  }

  .waitlist__perks {
    max-width: 420px;
    margin: .5rem auto 0;
  }

  .waitlist__perk {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .waitlist__card {
    padding: 2rem 1.5rem;
  }

  .waitlist__heading {
    font-size: 1.75rem;
  }

  .waitlist__perk {
    padding: .7rem .85rem;
  }
}

/* ═══════════════════════════════════════
   PRE-LAUNCH BADGE
   ═══════════════════════════════════════ */
.hero__prelaunch-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1.25rem;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(14, 165, 233, 0.08));
  border: 1px solid rgba(22, 163, 74, 0.2);
  color: var(--green-600);
  font-size: .85rem;
  font-weight: 600;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.15);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(22, 163, 74, 0);
  }
}

@media (max-width: 640px) {
  .hero__prelaunch-badge {
    font-size: .78rem;
    padding: .45rem 1rem;
  }
}

/* ═══════════════════════════════════════
   HERO WAITLIST CARD
   ═══════════════════════════════════════ */
.hero-waitlist-card {
  max-width: 100%;
  margin: 0 auto;
}

/* ─── Counter below card ─── */
.waitlist__counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(229, 231, 235, 0.3);
}

.waitlist__counter-text {
  font-size: .82rem;
  color: var(--text-muted);
}

.waitlist__counter-text strong {
  color: var(--green-600);
  font-family: var(--font-heading);
  font-size: .95rem;
}

@media (max-width: 768px) {
  .hero-waitlist-card {
    max-width: 480px;
  }

  .waitlist__counter {
    flex-direction: column;
    gap: .5rem;
  }
}