/* ==========================================================================
   getfollowup AI - Design Tokens & Stylesheet
   Strict adherence to brand identity, typography, and color palette
   100% Mobile Responsive across all device form factors
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Geist+Mono:wght@400;500;600;700&family=Geist:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --bg-canvas: #f8fafc;
  --primary-emerald: #047857;
  --primary-emerald-hover: #065f46;
  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-200: #a7f3d0;
  --emerald-500: #10b981;
  --emerald-700: #047857;
  --emerald-800: #065f46;
  --emerald-900: #064e3b;

  /* Neutral Slate Palette */
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;

  /* Alert & Danger Tokens */
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-200: #fecdd3;
  --rose-600: #e11d48;
  --rose-700: #be123c;
  --rose-800: #9f1239;
  --rose-900: #881337;

  --amber-50: #fffbeb;
  --amber-200: #fde68a;
  --amber-800: #92400e;
  --amber-900: #78350f;

  /* Typography */
  --font-headings: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Shadows & Radius */
  --radius-button: 12px;
  --radius-input: 12px;
  --radius-card: 16px;
  --radius-badge: 9999px;
  --shadow-card: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
  --shadow-card-hover: 0 14px 32px -4px rgba(15, 23, 42, 0.09);

  /* Container */
  --max-width: 1140px;
}

/* Global Reset & Viewport Lock */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-canvas);
  color: var(--slate-700);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

img, svg {
  max-width: 100%;
  display: block;
}

/* Ambient Radial Glow at Top */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 680px;
  background: radial-gradient(circle at 50% 0%, rgba(4, 120, 87, 0.10) 0%, rgba(16, 185, 129, 0.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Subtle Grid Texture */
.bg-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 700px;
  background-image: linear-gradient(to right, rgba(226, 232, 240, 0.45) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(226, 232, 240, 0.45) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 50% 10%, rgba(0, 0, 0, 0.6) 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 10%, rgba(0, 0, 0, 0.6) 0%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--slate-900);
  line-height: 1.15;
  overflow-wrap: break-word;
  word-break: normal;
}

p {
  color: var(--slate-600);
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Confetti Canvas */
#confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Header / Navbar
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(248, 250, 252, 0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  transition: all 0.2s ease;
  width: 100%;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  width: 100%;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  box-shadow: 0 2px 8px rgba(4, 120, 87, 0.25);
  transition: transform 0.2s ease;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.05) rotate(-2deg);
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.logo-text span.brand-ai {
  color: var(--primary-emerald);
}

.logo-badge {
  background-color: var(--emerald-50);
  color: var(--primary-emerald);
  border: 1px solid var(--emerald-200);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-badge);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Status Badge with Live Pulsating Dot */
.nav-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  padding: 6px 14px;
  border-radius: var(--radius-badge);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--slate-700);
  white-space: nowrap;
  flex-shrink: 0;
}

.status-short {
  display: none;
}

.pulse-indicator {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  overflow: visible;
  pointer-events: none;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  display: inline-block;
  z-index: 2;
}

.pulse-ring {
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: rgba(16, 185, 129, 0.4);
  border-radius: 50%;
  animation: pulse-wave 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pulse-wave {
  0% {
    transform: scale(0.6);
    opacity: 0.9;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding-top: 60px;
  padding-bottom: 50px;
  text-align: center;
  position: relative;
  width: 100%;
}

/* Pill Badge */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--emerald-50);
  color: var(--emerald-800);
  border: 1px solid var(--emerald-200);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: var(--radius-badge);
  margin-bottom: 22px;
  box-shadow: 0 1px 2px rgba(4, 120, 87, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.pill-indicator-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--emerald-500);
  display: inline-block;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
  flex-shrink: 0;
}

.pill-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(4, 120, 87, 0.12);
}

/* Main H1 */
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--slate-900);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
}

.hero-title .highlight-gradient {
  background: linear-gradient(135deg, #047857 0%, #059669 50%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

/* Subtitle */
.hero-subtitle {
  font-size: clamp(0.98rem, 2vw, 1.15rem);
  color: var(--slate-600);
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 34px;
  line-height: 1.65;
}

.hero-subtitle strong {
  color: var(--slate-900);
}

/* ==========================================================================
   Email Capture Box (Core Feature)
   ========================================================================== */
.capture-card-wrapper {
  width: 100%;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.capture-card {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 24px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  text-align: left;
  width: 100%;
}

.capture-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: #cbd5e1;
}

.form-group {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 10px;
  width: 100%;
}

.input-container {
  position: relative;
  flex: 1;
  min-width: 0;
}

.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--slate-400);
  display: flex;
  align-items: center;
  pointer-events: none;
  transition: color 0.2s ease;
}

.email-input {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px 12px 42px;
  font-family: var(--font-body);
  font-size: 1rem; /* 16px prevents iOS Safari zoom */
  color: var(--slate-900);
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-input);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.email-input::placeholder {
  color: #94a3b8;
  font-size: 0.95rem;
}

.email-input:hover {
  border-color: #cbd5e1;
}

.email-input:focus {
  border-color: var(--primary-emerald);
  box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.18);
}

.email-input:focus + .input-icon {
  color: var(--primary-emerald);
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 24px;
  background-color: var(--primary-emerald);
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius-button);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(4, 120, 87, 0.25);
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  user-select: none;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.cta-button:hover {
  background-color: var(--primary-emerald-hover);
  box-shadow: 0 4px 14px rgba(4, 120, 87, 0.35);
}

.cta-button:active {
  transform: scale(0.98);
}

.cta-button:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.cta-button:hover .btn-arrow {
  transform: translateX(3px);
}

/* Spinner */
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 0.7s linear infinite;
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.is-loading .spinner {
  display: inline-block;
}

.is-loading .btn-text,
.is-loading .btn-arrow {
  display: none;
}

/* Validation Alerts */
.alert-container {
  margin-top: 14px;
  display: none;
  animation: alertSlideDown 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes alertSlideDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.alert-box {
  padding: 12px 16px;
  border-radius: var(--radius-input);
  font-size: 0.875rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-width: 1px;
  border-style: solid;
}

.alert-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.alert-error {
  background-color: var(--rose-50);
  border-color: var(--rose-200);
  color: var(--rose-800);
}

.alert-warning {
  background-color: var(--amber-50);
  border-color: var(--amber-200);
  color: var(--amber-900);
}

.alert-success {
  background-color: var(--emerald-50);
  border-color: var(--emerald-200);
  color: var(--emerald-900);
}

/* Success Card State */
.success-card-content {
  display: none;
  padding: 8px 0 4px 0;
}

.success-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  padding: 12px 14px;
  background-color: var(--slate-50);
  border: 1px dashed var(--emerald-200);
  border-radius: var(--radius-input);
}

.spot-number {
  font-family: var(--font-headings);
  font-weight: 800;
  color: var(--primary-emerald);
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
}

.share-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 8px;
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  color: var(--slate-700);
  cursor: pointer;
  transition: all 0.2s ease;
}

.share-btn:hover {
  border-color: var(--primary-emerald);
  color: var(--primary-emerald);
  background-color: var(--emerald-50);
}

.reset-link-btn {
  background: none;
  border: none;
  font-size: 0.8rem;
  color: var(--slate-500);
  text-decoration: underline;
  cursor: pointer;
  margin-top: 10px;
  display: inline-block;
  padding: 4px;
}

.reset-link-btn:hover {
  color: var(--primary-emerald);
}

.social-proof-micro {
  margin-top: 16px;
  font-size: 0.825rem;
  color: var(--slate-500);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}

.social-proof-micro svg {
  color: var(--primary-emerald);
  flex-shrink: 0;
}

/* Stats Banner */
.waitlist-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--slate-600);
  flex-wrap: wrap;
}

.avatar-stack {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.avatar-stack .avatar-init {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -8px;
  background-color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--slate-700);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.avatar-stack .avatar-init:first-child {
  margin-left: 0;
}

.stats-text-block {
  font-size: 0.85rem;
  color: var(--slate-600);
  line-height: 1.4;
}

.waitlist-counter-number,
.waitlist-counter-strong {
  font-weight: 800;
  color: var(--slate-900);
  font-family: var(--font-headings);
  font-variant-numeric: tabular-nums;
}

.spots-badge-text {
  color: var(--primary-emerald);
  font-weight: 700;
  white-space: nowrap;
}

/* ==========================================================================
   Waitlist Member Benefits (3 Exclusive Perks)
   ========================================================================== */
.benefits-banner-wrapper {
  margin-top: 48px;
  width: 100%;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.benefits-card {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-card);
  padding: 30px 26px;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.benefits-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #047857 0%, #10b981 50%, #047857 100%);
}

.benefits-header {
  margin-bottom: 22px;
}

.benefits-kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary-emerald);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.benefits-headline {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 6px;
}

.benefits-sub {
  font-size: 0.925rem;
  color: var(--slate-500);
}

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

.benefit-item {
  background-color: var(--bg-canvas);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  min-width: 0;
}

.benefit-item:hover {
  transform: translateY(-2px);
  border-color: var(--emerald-200);
  background-color: var(--white);
  box-shadow: 0 8px 22px -4px rgba(15, 23, 42, 0.06);
}

.benefit-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 8px;
}

.benefit-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: var(--emerald-50);
  border: 1px solid var(--emerald-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-emerald);
  flex-shrink: 0;
}

.benefit-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-badge);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.tag-urgent {
  background-color: var(--amber-50);
  color: var(--amber-900);
  border: 1px solid var(--amber-200);
}

.tag-priority {
  background-color: var(--emerald-50);
  color: var(--emerald-900);
  border: 1px solid var(--emerald-200);
}

.tag-savings {
  background-color: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}

.benefit-body {
  margin-top: auto;
}

.benefit-num {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--slate-400);
  text-transform: uppercase;
  display: block;
  margin-bottom: 3px;
}

.benefit-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 6px;
}

.benefit-desc {
  font-size: 0.865rem;
  color: var(--slate-600);
  line-height: 1.5;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px auto;
  width: 100%;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--primary-emerald);
  background-color: var(--emerald-50);
  border: 1px solid var(--emerald-200);
  padding: 4px 10px;
  border-radius: var(--radius-badge);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: inline-block;
  white-space: nowrap;
}

.section-tag.section-tag-danger {
  color: var(--rose-700);
  background-color: var(--rose-50);
  border-color: var(--rose-200);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.025em;
}

.section-subtitle {
  font-size: 1.02rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* ==========================================================================
   SECTION 1: KISKE LIYE HAI (Who Is This For? / Target Audience)
   ========================================================================== */
.audience-section {
  padding: 84px 0 88px 0;
  border-top: 1px solid var(--slate-200);
  background: linear-gradient(180deg, #ffffff 0%, rgba(248, 250, 252, 0.85) 100%);
  width: 100%;
}

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

.audience-card {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  min-width: 0;
}

.audience-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: linear-gradient(90deg, #047857 0%, #10b981 100%);
  opacity: 0.9;
}

.audience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px -4px rgba(15, 23, 42, 0.10);
  border-color: var(--emerald-200);
}

.audience-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.audience-brand-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.audience-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: var(--emerald-50);
  border: 1px solid var(--emerald-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-emerald);
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(4, 120, 87, 0.08);
}

.audience-role-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--primary-emerald);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}

.audience-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.25;
}

.deal-size-badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--emerald-900);
  background-color: var(--emerald-50);
  border: 1px solid var(--emerald-200);
  padding: 4px 9px;
  border-radius: var(--radius-badge);
  white-space: nowrap;
  flex-shrink: 0;
}

.audience-card-desc {
  font-size: 0.885rem;
  color: var(--slate-600);
  margin-bottom: 16px;
  line-height: 1.5;
}

/* Problem Box */
.audience-friction-box {
  background-color: #fff9f9;
  border: 1px solid #fee2e2;
  border-left: 3px solid var(--rose-600);
  border-radius: 0 8px 8px 0;
  padding: 11px 13px;
  margin-bottom: 16px;
  font-size: 0.84rem;
  color: var(--slate-700);
  line-height: 1.5;
}

.friction-kicker {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 800;
  color: var(--rose-700);
  display: block;
  margin-bottom: 3px;
  letter-spacing: 0.05em;
}

/* AI Autonomous Message Preview Bubble */
.audience-ai-preview {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 13px;
  margin-bottom: 18px;
}

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

.preview-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #10b981;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
  flex-shrink: 0;
}

.preview-label {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 800;
  color: #065f46;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.preview-bubble {
  font-size: 0.845rem;
  color: #1e293b;
  line-height: 1.48;
  font-style: italic;
  background-color: #ffffff;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #dcfce7;
  margin-bottom: 8px;
  box-shadow: 0 1px 3px rgba(4, 120, 87, 0.05);
}

.preview-meta {
  font-size: 0.72rem;
  color: #047857;
  font-weight: 600;
  font-family: var(--font-mono);
  line-height: 1.35;
}

/* Perk List */
.audience-perk-list {
  list-style: none;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-top: 14px;
  border-top: 1px solid var(--slate-100);
  margin-bottom: 16px;
}

.audience-perk-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.835rem;
  color: var(--slate-700);
  line-height: 1.45;
}

.perk-check-icon {
  color: var(--primary-emerald);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Outcome Pill */
.audience-outcome-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--emerald-50);
  color: var(--emerald-900);
  font-weight: 700;
  font-size: 0.79rem;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--emerald-200);
}

.audience-outcome-pill svg {
  color: var(--primary-emerald);
  flex-shrink: 0;
}

/* Summary ROI Banner */
.audience-summary-banner {
  margin-top: 40px;
  background: linear-gradient(135deg, rgba(4, 120, 87, 0.08) 0%, rgba(16, 185, 129, 0.04) 100%);
  border: 1px solid var(--emerald-200);
  border-radius: var(--radius-card);
  padding: 22px 28px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  box-shadow: 0 4px 16px -2px rgba(4, 120, 87, 0.06);
}

.summary-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: var(--primary-emerald);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(4, 120, 87, 0.25);
}

.summary-text-col {
  flex: 1;
  min-width: 0;
}

.summary-kicker {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--primary-emerald);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.summary-text-col p {
  font-size: 0.96rem;
  color: var(--slate-800);
  line-height: 1.5;
}

.summary-text-col strong {
  color: var(--emerald-900);
}

.summary-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-emerald);
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 18px;
  border-radius: var(--radius-button);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(4, 120, 87, 0.25);
  transition: all 0.2s ease;
  flex-shrink: 0;
  text-decoration: none;
}

.summary-cta-link:hover {
  background-color: var(--primary-emerald-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(4, 120, 87, 0.35);
  color: #ffffff;
}

.audience-summary-banner p {
  font-size: 0.975rem;
  color: var(--slate-800);
}

.audience-summary-banner strong {
  color: var(--emerald-900);
}

/* ==========================================================================
   SECTION 2: KYA LOSS KAR RAHE HAI (Cost of Inaction / The Loss)
   ========================================================================== */
.loss-section {
  padding: 72px 0;
  background-color: var(--bg-canvas);
  border-top: 1px solid var(--slate-200);
  width: 100%;
}

.loss-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 44px;
  width: 100%;
}

.loss-card {
  background-color: var(--white);
  border: 1px solid var(--rose-200);
  border-radius: var(--radius-card);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-width: 0;
}

.loss-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f43f5e 0%, #e11d48 100%);
}

.loss-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px -4px rgba(225, 29, 72, 0.08);
}

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

.loss-badge-pill {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  background-color: var(--rose-50);
  color: var(--rose-700);
  border: 1px solid var(--rose-200);
  padding: 2px 8px;
  border-radius: var(--radius-badge);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.loss-stat {
  font-family: var(--font-mono);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--rose-700);
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.loss-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 8px;
}

.loss-desc {
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.55;
  margin-bottom: 16px;
}

.loss-desc strong {
  color: var(--slate-800);
}

.loss-impact {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--slate-100);
  font-size: 0.8rem;
}

.impact-label {
  display: block;
  font-weight: 700;
  color: var(--rose-800);
  margin-bottom: 2px;
}

.impact-value {
  color: var(--slate-600);
  line-height: 1.4;
}

/* Contrast Box: Without vs With */
.contrast-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
}

.contrast-card {
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  min-width: 0;
}

.without-card {
  background-color: #fff8f8;
  border: 1px solid var(--rose-200);
}

.with-card {
  background-color: var(--white);
  border: 2px solid var(--emerald-500);
  box-shadow: 0 10px 30px -4px rgba(4, 120, 87, 0.12);
}

.contrast-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: var(--radius-badge);
  margin-bottom: 12px;
  white-space: nowrap;
}

.badge-bad {
  background-color: var(--rose-100);
  color: var(--rose-900);
  border: 1px solid var(--rose-200);
}

.badge-good {
  background-color: var(--emerald-50);
  color: var(--emerald-900);
  border: 1px solid var(--emerald-200);
}

.contrast-heading {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--slate-900);
}

.contrast-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contrast-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.91rem;
  line-height: 1.5;
  color: var(--slate-700);
}

.contrast-list li span {
  flex: 1;
  min-width: 0;
}

.list-cross-icon {
  color: var(--rose-600);
  flex-shrink: 0;
  margin-top: 3px;
}

.list-check-icon {
  color: var(--emerald-500);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ==========================================================================
   Bottom CTA Section
   ========================================================================== */
.bottom-cta-section {
  padding: 72px 0 80px 0;
  background: linear-gradient(180deg, var(--bg-canvas) 0%, rgba(4, 120, 87, 0.05) 100%);
  border-top: 1px solid var(--slate-200);
  width: 100%;
}

.bottom-cta-box {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  box-shadow: 0 10px 40px -4px rgba(15, 23, 42, 0.06);
  padding: 44px 28px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.bottom-cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #047857 0%, #10b981 50%, #047857 100%);
}

.bottom-cta-box h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.3rem);
  margin-bottom: 12px;
}

.bottom-cta-box p {
  color: var(--slate-600);
  max-width: 540px;
  margin: 0 auto 26px auto;
  font-size: 1rem;
}

.bottom-cta-box p strong {
  color: var(--emerald-800);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--slate-200);
  padding: 34px 0;
  background-color: var(--white);
  font-size: 0.85rem;
  color: var(--slate-500);
  width: 100%;
}

.footer-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
}

.footer-brand-col {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.footer-logo-img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  object-fit: cover;
  display: block;
}

.footer-brand-name {
  font-size: 0.92rem;
}

.footer-copyright {
  font-size: 0.82rem;
  color: var(--slate-500);
}

.footer-links {
  display: flex;
  gap: 18px;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.footer-links a:hover {
  color: var(--primary-emerald);
  text-decoration: underline;
}

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  background-color: var(--slate-50);
  border: 1px solid var(--slate-200);
  padding: 4px 10px;
  border-radius: var(--radius-badge);
}

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

/* ==========================================================================
   Responsive Breakpoints: Desktop Down to Mobile
   ========================================================================== */

/* Tablets / Small Laptops (max-width: 1024px) */
@media (max-width: 1024px) {
  .loss-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablets (max-width: 860px) */
@media (max-width: 860px) {
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* Small Tablets & Large Phones (max-width: 768px) */
@media (max-width: 768px) {
  .contrast-container {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .footer-brand-col {
    flex-direction: column;
    gap: 6px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}

/* Mobile Phones (max-width: 640px) */
@media (max-width: 640px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-header {
    height: 58px;
  }

  .nav-wrapper {
    height: 58px;
  }

  .brand-logo {
    font-size: 1rem;
    gap: 8px;
  }

  .brand-logo-img {
    width: 28px;
    height: 28px;
    border-radius: 7px;
  }

  .logo-badge {
    display: none; /* Hide second BETA badge on mobile for clean spacing */
  }

  .nav-status {
    padding: 4px 10px;
    font-size: 0.72rem;
    gap: 6px;
  }

  .status-full {
    display: none;
  }

  .status-short {
    display: inline;
  }

  /* Hero */
  .hero-section {
    padding-top: 32px;
    padding-bottom: 28px;
  }

  .pill-badge {
    font-size: 0.7rem;
    padding: 5px 12px;
    margin-bottom: 16px;
  }

  .hero-title {
    font-size: clamp(1.6rem, 6.8vw, 2.2rem);
    margin-bottom: 12px;
    line-height: 1.18;
    text-wrap: balance;
  }

  .hero-subtitle {
    font-size: 0.925rem;
    line-height: 1.5;
    margin-bottom: 22px;
    text-wrap: pretty;
  }

  /* Capture form on mobile */
  .capture-card {
    padding: 16px 14px;
    border-radius: 14px;
  }

  .form-group {
    flex-direction: column;
    gap: 10px;
  }

  .input-container {
    width: 100%;
  }

  .email-input {
    width: 100%;
    min-height: 48px;
    font-size: 16px !important; /* 16px prevents iOS Safari auto-zoom */
    padding: 12px 14px 12px 38px;
  }

  .cta-button {
    width: 100%;
    min-height: 48px;
    font-size: 0.98rem;
    justify-content: center;
  }

  .social-proof-micro {
    font-size: 0.76rem;
    gap: 6px;
    margin-top: 12px;
  }

  /* Stats */
  .waitlist-stats {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    margin-top: 16px;
  }

  .stats-text-block {
    font-size: 0.825rem;
    line-height: 1.4;
    text-wrap: balance;
  }

  .success-badge-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
  }

  .share-group {
    width: auto;
    justify-content: flex-end;
  }

  /* Benefits card on mobile */
  .benefits-banner-wrapper {
    margin-top: 28px;
  }

  .benefits-card {
    padding: 20px 14px;
    border-radius: 14px;
  }

  .benefits-headline {
    font-size: 1.15rem;
    line-height: 1.3;
  }

  .benefits-sub {
    font-size: 0.835rem;
    line-height: 1.45;
    margin-bottom: 14px;
  }

  .benefit-item {
    padding: 14px 12px;
    border-radius: 10px;
  }

  .benefit-title {
    font-size: 0.98rem;
  }

  .benefit-desc {
    font-size: 0.825rem;
    line-height: 1.4;
  }

  /* Audience section on mobile */
  .audience-section {
    padding: 44px 0 52px 0;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .section-title {
    font-size: clamp(1.45rem, 5.5vw, 1.9rem);
    line-height: 1.25;
    text-wrap: balance;
  }

  .section-subtitle {
    font-size: 0.885rem;
    line-height: 1.5;
    text-wrap: pretty;
  }

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

  .audience-card {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .audience-card-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
  }

  .deal-size-badge {
    font-size: 0.65rem;
    padding: 3px 8px;
  }

  .audience-icon-box {
    width: 38px;
    height: 38px;
  }

  .audience-card-title {
    font-size: 1.05rem;
  }

  .audience-card-desc {
    font-size: 0.84rem;
    margin-bottom: 12px;
  }

  .audience-friction-box {
    padding: 10px 12px;
    font-size: 0.82rem;
    margin-bottom: 14px;
  }

  .audience-ai-preview {
    padding: 12px;
    margin-bottom: 14px;
  }

  .preview-bubble {
    font-size: 0.825rem;
    padding: 8px 10px;
  }

  .preview-meta {
    font-size: 0.69rem;
  }

  .audience-perk-list {
    gap: 8px;
    padding-top: 12px;
    margin-bottom: 14px;
  }

  .audience-perk-list li {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .audience-outcome-pill {
    font-size: 0.77rem;
    padding: 7px 10px;
  }

  .audience-summary-banner {
    padding: 18px 16px;
    margin-top: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
  }

  .summary-text-col p {
    font-size: 0.885rem;
    line-height: 1.5;
  }

  .summary-cta-link {
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 0.92rem;
  }

  /* Loss section on mobile */
  .loss-section {
    padding: 44px 0;
  }

  .loss-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 24px;
  }

  .loss-card {
    padding: 16px 14px;
    border-radius: 12px;
  }

  .loss-stat {
    font-size: 1.35rem;
  }

  .loss-title {
    font-size: 1.02rem;
  }

  .loss-desc {
    font-size: 0.825rem;
    line-height: 1.45;
    margin-bottom: 10px;
  }

  .loss-impact {
    font-size: 0.76rem;
  }

  /* Contrast Box on mobile */
  .contrast-card {
    padding: 18px 14px;
    border-radius: 12px;
  }

  .contrast-heading {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .contrast-list {
    gap: 10px;
  }

  .contrast-list li {
    font-size: 0.84rem;
    line-height: 1.4;
    gap: 8px;
  }

  /* Bottom CTA on mobile */
  .bottom-cta-section {
    padding: 44px 0 52px 0;
  }

  .bottom-cta-box {
    padding: 24px 14px;
    border-radius: 14px;
  }

  .bottom-cta-box h2 {
    font-size: clamp(1.35rem, 5vw, 1.8rem);
    line-height: 1.25;
  }

  .bottom-cta-box p {
    font-size: 0.885rem;
    margin-bottom: 18px;
  }

  /* Footer on mobile */
  .site-footer {
    padding: 24px 0 calc(24px + env(safe-area-inset-bottom)) 0;
  }
}

/* Extra Small Phones (max-width: 360px) */
@media (max-width: 360px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .brand-logo {
    font-size: 0.92rem;
  }

  .brand-logo-img {
    width: 24px;
    height: 24px;
  }

  .nav-status {
    font-size: 0.65rem;
    padding: 3px 8px;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .capture-card {
    padding: 12px 10px;
  }

  .email-input {
    padding-left: 34px;
  }

  .input-icon {
    left: 8px;
  }

  .benefit-item,
  .audience-card,
  .loss-card,
  .contrast-card {
    padding: 14px 10px;
  }
}
