/* =========================================
   OUTLET DOMAINS — BOLD BRAND SYSTEM
   ========================================= */

:root {
  --purple-900: #1A0B3D;
  --purple-800: #2D1B69;
  --purple-700: #3D2785;
  --purple-600: #5B2D8E;
  --purple-500: #6D3FA8;
  --gold: #FFB627;
  --gold-bright: #FFD15C;
  --gold-deep: #E5A41F;
  --teal: #14B5A5;
  --teal-bright: #1FD9C5;
  --teal-deep: #0D8C80;
  --green: #14B5A5;
  --black: #0A0118;
  --white: #FFFFFF;
  --off-white: #F8F4FF;
  --gray: #B8B0C9;
  --gray-dark: #4A3E5C;

  --grad-hero: linear-gradient(135deg, #1A0B3D 0%, #3D2785 50%, #5B2D8E 100%);
  --grad-purple-gold: linear-gradient(135deg, #2D1B69 0%, #5B2D8E 50%, #FFB627 100%);
  --grad-gold: linear-gradient(135deg, #FFD15C 0%, #FFB627 50%, #E5A41F 100%);
  --grad-teal: linear-gradient(135deg, #1FD9C5 0%, #14B5A5 50%, #0D8C80 100%);

  --font-display: "Archivo Black", "Anton", "Impact", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1280px;
  --radius: 16px;
  --radius-lg: 28px;
  --shadow-lg: 0 30px 80px -20px rgba(26, 11, 61, 0.4);
  --shadow-gold: 0 20px 60px -10px rgba(255, 182, 39, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* =========================================
   TYPOGRAPHY — GO BIG
   ========================================= */

h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

h1, .h1 {
  font-size: clamp(2.4rem, 6.5vw, 5.4rem);
  letter-spacing: -0.03em;
  line-height: 0.98;
}

h2, .h2 {
  font-size: clamp(2.25rem, 5.5vw, 5rem);
}

h3, .h3 {
  font-size: clamp(1.5rem, 2.8vw, 2.5rem);
  line-height: 1.05;
}

h4 {
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 10px 18px;
  border: 2px solid var(--gold);
  border-radius: 999px;
  margin-bottom: 24px;
}

.eyebrow.dark {
  color: var(--purple-800);
  border-color: var(--purple-800);
}

.eyebrow.teal {
  color: var(--teal);
  border-color: var(--teal);
}

.highlight-gold {
  color: var(--gold);
}

.highlight-teal {
  color: var(--teal-bright);
}

.highlight-stroke {
  -webkit-text-stroke: 2px var(--gold);
  color: transparent;
}

p {
  font-size: 1.0625rem;
  line-height: 1.65;
}

.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  line-height: 1.55;
  font-weight: 500;
}

/* =========================================
   NAV
   ========================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--purple-900);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 56px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--purple-800);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--purple-900);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover {
  color: var(--teal-deep);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-account {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--purple-800);
}

.nav-toggle {
  display: none;
  background: var(--purple-800);
  color: var(--white);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  font-size: 1.5rem;
  cursor: pointer;
}

/* =========================================
   BUTTONS — BOLD AS HELL
   ========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 18px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-align: center;
  line-height: 1;
}

.btn-gold {
  background: var(--grad-gold);
  color: var(--purple-900);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 25px 70px -10px rgba(255, 182, 39, 0.7);
}

.btn-teal {
  background: var(--grad-teal);
  color: var(--white);
  box-shadow: 0 20px 60px -10px rgba(20, 181, 165, 0.5);
}

.btn-teal:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 25px 70px -10px rgba(20, 181, 165, 0.7);
}

.btn-purple {
  background: var(--purple-800);
  color: var(--white);
}

.btn-purple:hover {
  background: var(--purple-700);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--purple-900);
}

.btn-outline-dark {
  background: transparent;
  color: var(--purple-900);
  border: 2px solid var(--purple-900);
}

.btn-outline-dark:hover {
  background: var(--purple-900);
  color: var(--white);
}

.btn-xl {
  font-size: 1.2rem;
  padding: 24px 48px;
}

.btn-arrow::after {
  content: "→";
  font-family: var(--font-body);
  font-size: 1.2rem;
  transition: transform 0.2s;
}

.btn:hover .btn-arrow::after,
.btn-arrow:hover::after {
  transform: translateX(4px);
}

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

.hero {
  position: relative;
  background: var(--grad-hero);
  color: var(--white);
  padding: 56px 0 64px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 182, 39, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(20, 181, 165, 0.18) 0%, transparent 45%);
  z-index: -1;
}

.hero-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero-star {
  position: absolute;
  color: var(--gold);
  opacity: 0.12;
  font-size: 14rem;
  font-family: var(--font-display);
  user-select: none;
}

.hero-star.s1 { top: -40px; right: -20px; transform: rotate(15deg); }
.hero-star.s2 { bottom: -60px; left: 5%; font-size: 10rem; transform: rotate(-20deg); color: var(--teal-bright); opacity: 0.1; }
.hero-star.s3 { top: 40%; right: 8%; font-size: 6rem; transform: rotate(35deg); opacity: 0.18; }

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero h1 .line {
  display: block;
  line-height: 0.98;
}

.hero .lead {
  max-width: 680px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.hero-tag .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.hero-powered {
  margin-top: 28px;
  text-align: center;
  opacity: 0.7;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-marquee {
  margin-top: 10px;
  display: flex;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
  font-weight: 700;
  opacity: 0.55;
  font-size: 0.85rem;
}

/* Hide marquee on shorter viewports so headline stays above fold */
@media (max-height: 760px) and (min-width: 600px) {
  .hero-powered, .hero-marquee { display: none; }
  .hero { padding: 44px 0 52px; }
}

/* =========================================
   SECTIONS
   ========================================= */

.section {
  padding: 120px 0;
  position: relative;
}

.section-dark {
  background: var(--purple-900);
  color: var(--white);
}

.section-gold {
  background: var(--grad-gold);
}

.section-light {
  background: var(--off-white);
}

.section-black {
  background: var(--black);
  color: var(--white);
}

/* New background variants for variety */
.section-cream {
  background: linear-gradient(180deg, #FFF8EC 0%, #FFF1D6 100%);
  position: relative;
}

.section-cream::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 182, 39, 0.12) 0, transparent 35%),
    radial-gradient(circle at 85% 80%, rgba(20, 181, 165, 0.08) 0, transparent 40%);
  pointer-events: none;
}

.section-mesh {
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 182, 39, 0.18) 0, transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(20, 181, 165, 0.15) 0, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(91, 45, 142, 0.08) 0, transparent 50%),
    var(--off-white);
  position: relative;
}

.section-teal {
  background: var(--grad-teal);
  color: var(--white);
}

.section-gradient-purple {
  background: linear-gradient(160deg, #2D1B69 0%, #5B2D8E 60%, #6D3FA8 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-gradient-purple::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 30%, rgba(255, 182, 39, 0.15) 0, transparent 35%),
    radial-gradient(circle at 90% 70%, rgba(20, 181, 165, 0.18) 0, transparent 40%);
  pointer-events: none;
}

.section-striped {
  background: var(--off-white);
  background-image:
    repeating-linear-gradient(135deg, transparent 0, transparent 60px, rgba(91, 45, 142, 0.03) 60px, rgba(91, 45, 142, 0.03) 61px);
}

.section-dotted {
  background: var(--white);
  background-image: radial-gradient(circle, rgba(91, 45, 142, 0.08) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
}

.section-cream .section-head h2,
.section-mesh .section-head h2 {
  color: var(--purple-900);
}

.section-cream > .container,
.section-mesh > .container,
.section-striped > .container,
.section-dotted > .container,
.section-gradient-purple > .container {
  position: relative;
  z-index: 1;
}

.section-head {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 80px;
}

.section-head.left {
  text-align: left;
  margin-left: 0;
}

.section-head p {
  font-size: 1.2rem;
  opacity: 0.85;
  margin-top: 20px;
}

/* =========================================
   PRODUCT CARDS — HOMEPAGE
   ========================================= */

.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 60px 56px;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.product-card.layout-right {
  grid-template-columns: 1fr 1.2fr;
}

.product-card.layout-right .product-card-content {
  order: 2;
}

.product-card.purple {
  background: var(--grad-hero);
  color: var(--white);
}

.product-card.gold {
  background: var(--grad-gold);
  color: var(--purple-900);
}

.product-card.teal {
  background: var(--grad-teal);
  color: var(--white);
}

.product-card-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 12px;
}

.product-card h3 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 20px;
}

.product-card p {
  font-size: 1.1rem;
  margin-bottom: 28px;
  max-width: 520px;
}

.product-card .benefits {
  list-style: none;
  margin-bottom: 36px;
}

.product-card .benefits li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  font-weight: 600;
  font-size: 1rem;
}

.product-card .benefits li::before {
  content: "★";
  flex-shrink: 0;
  font-size: 1.2rem;
  line-height: 1.4;
}

.product-card.gold .benefits li::before { color: var(--purple-800); }
.product-card.purple .benefits li::before { color: var(--gold); }
.product-card.teal .benefits li::before { color: var(--gold); }

.product-card-visual {
  position: relative;
  aspect-ratio: 4 / 3.2;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.product-card.gold .product-card-visual {
  background: rgba(26, 11, 61, 0.12);
  border-color: rgba(26, 11, 61, 0.3);
}

.product-card-visual-icon {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 1;
  letter-spacing: -0.05em;
  text-align: center;
}

/* =========================================
   FEATURE GRID
   ========================================= */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 2px solid var(--purple-900);
  box-shadow: 8px 8px 0 var(--purple-900);
  transition: transform 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 14px 14px 0 var(--gold);
}

.feature-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-family: var(--font-display);
  color: var(--purple-900);
}

.feature-card h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--purple-900);
}

.feature-card p {
  font-size: 0.98rem;
  color: var(--gray-dark);
}

/* =========================================
   PHASES (Site Express / Partnership)
   ========================================= */

.phase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.phase-card {
  background: var(--white);
  color: var(--purple-900);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}

.phase-card .phase-num {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 16px;
}

.phase-card h4 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--purple-900);
}

.phase-card ul {
  list-style: none;
}

.phase-card ul li {
  padding: 8px 0;
  font-size: 0.95rem;
  padding-left: 20px;
  position: relative;
  color: var(--gray-dark);
}

.phase-card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
}

/* =========================================
   TESTIMONIALS
   ========================================= */

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 2px solid var(--purple-900);
  position: relative;
}

.testi-card .quote {
  font-size: 5rem;
  font-family: var(--font-display);
  color: var(--gold);
  line-height: 0.8;
  margin-bottom: 16px;
}

.testi-card .stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testi-card h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--purple-800);
}

.testi-card .quote-body {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--gray-dark);
}

.testi-card .author {
  font-weight: 700;
  color: var(--purple-900);
  font-size: 0.95rem;
}

/* =========================================
   PRICING
   ========================================= */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  border: 3px solid var(--purple-900);
  overflow: hidden;
}

.price-card.featured {
  background: var(--grad-hero);
  color: var(--white);
  border-color: var(--gold);
  transform: scale(1.02);
  box-shadow: var(--shadow-gold);
}

.price-card .price-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--gold);
  color: var(--purple-900);
  font-family: var(--font-display);
  font-size: 0.8rem;
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: 0.1em;
}

.price-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.price-card .price {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  margin: 20px 0 8px;
}

.price-card .price small {
  font-size: 1.1rem;
  opacity: 0.6;
  margin-left: 6px;
}

.price-card .price-strike {
  text-decoration: line-through;
  opacity: 0.6;
  font-size: 1.4rem;
  font-family: var(--font-display);
}

.price-card .price-note {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 28px;
}

.price-card ul {
  list-style: none;
  margin-bottom: 32px;
}

.price-card ul li {
  padding: 10px 0;
  font-size: 0.98rem;
  padding-left: 28px;
  position: relative;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.price-card.featured ul li {
  border-color: rgba(255, 255, 255, 0.12);
}

.price-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 900;
  color: var(--teal);
  font-size: 1.1rem;
}

.price-card.featured ul li::before {
  color: var(--gold);
}

.price-card .btn {
  width: 100%;
}

.price-cancel {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 16px;
}

/* =========================================
   GUARANTEE
   ========================================= */

.guarantee {
  background: var(--grad-hero);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 80px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.guarantee::before {
  content: "★";
  position: absolute;
  top: -40px;
  right: -40px;
  font-family: var(--font-display);
  font-size: 20rem;
  color: var(--gold);
  opacity: 0.1;
  line-height: 1;
}

.guarantee-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--purple-900);
  font-family: var(--font-display);
  padding: 14px 28px;
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}

.guarantee h2 {
  margin-bottom: 24px;
}

.guarantee p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.15rem;
  opacity: 0.9;
}

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

.faq-list {
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 2px solid var(--purple-900);
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item[open] {
  box-shadow: 8px 8px 0 var(--gold);
}

.faq-item summary {
  padding: 24px 28px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  color: var(--purple-900);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  transition: transform 0.2s;
  line-height: 1;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item .faq-body {
  padding: 0 28px 28px;
  color: var(--gray-dark);
}

/* =========================================
   CTA BAND
   ========================================= */

.cta-band {
  background: var(--grad-hero);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 100px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before,
.cta-band::after {
  content: "★";
  position: absolute;
  font-family: var(--font-display);
  font-size: 18rem;
  color: var(--gold);
  opacity: 0.08;
  line-height: 1;
}

.cta-band::before { top: -60px; left: -40px; transform: rotate(-15deg); }
.cta-band::after { bottom: -100px; right: -40px; transform: rotate(20deg); color: var(--teal-bright); }

.cta-band h2 {
  margin-bottom: 24px;
}

.cta-band p {
  max-width: 680px;
  margin: 0 auto 36px;
  font-size: 1.15rem;
  opacity: 0.9;
}

/* =========================================
   COUNTDOWN
   ========================================= */

.countdown {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
}

.countdown .unit {
  background: var(--purple-900);
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 20px 28px;
  min-width: 100px;
  text-align: center;
}

.countdown .unit .num {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
}

.countdown .unit .label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 6px;
  color: var(--white);
}

/* =========================================
   BONUSES
   ========================================= */

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.bonus-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border-top: 6px solid var(--gold);
  border-left: 2px solid var(--purple-900);
  border-right: 2px solid var(--purple-900);
  border-bottom: 2px solid var(--purple-900);
  box-shadow: 6px 6px 0 var(--purple-900);
  transition: transform 0.2s, box-shadow 0.2s;
}

.bonus-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 10px 10px 0 var(--gold);
}

.bonus-card .bonus-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--teal);
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.bonus-card h4 {
  font-size: 1.25rem;
  color: var(--purple-900);
  margin-bottom: 14px;
}

.bonus-card .value-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--purple-900);
  font-family: var(--font-display);
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.bonus-card p {
  font-size: 0.95rem;
  color: var(--gray-dark);
}

/* =========================================
   VALUE STACK
   ========================================= */

.value-stack {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  border: 2px solid var(--purple-900);
}

.value-stack .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px dashed rgba(26, 11, 61, 0.15);
  gap: 20px;
}

.value-stack .row:last-of-type { border-bottom: 2px solid var(--purple-900); }

.value-stack .row .label {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--purple-900);
  flex: 1;
}

.value-stack .row .value {
  font-family: var(--font-display);
  color: var(--teal-deep);
  font-size: 1.1rem;
  white-space: nowrap;
}

.value-stack .total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  margin-top: 8px;
}

.value-stack .total .label {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--purple-900);
}

.value-stack .total .value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
}

.value-stack .today {
  background: var(--grad-gold);
  margin: 24px -48px -48px;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0 0 var(--radius) var(--radius);
}

.value-stack .today .label {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--purple-900);
}

.value-stack .today .value {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--purple-900);
}

/* =========================================
   CALENDAR BLOCK (Partnership)
   ========================================= */

.book-call {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px;
  border: 3px solid var(--purple-900);
  box-shadow: 12px 12px 0 var(--gold);
  max-width: 880px;
  margin: 0 auto;
}

.book-call .meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.book-call .meta-pill {
  background: var(--purple-900);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.book-call h3 {
  margin-bottom: 16px;
  color: var(--purple-900);
}

.book-call p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  color: var(--gray-dark);
}

/* =========================================
   CREATOR PAGE SPECIFIC
   ========================================= */

.creator-pulse {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 182, 39, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}

.creator-pulse .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 1.5s infinite;
}

.creator-phones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 60px auto 0;
}

.phone {
  aspect-ratio: 9 / 18;
  background: linear-gradient(180deg, #1A0B3D 0%, #3D2785 100%);
  border-radius: 32px;
  border: 6px solid var(--black);
  position: relative;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.phone::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: var(--black);
  border-radius: 4px;
}

.phone-head {
  padding: 20px 4px 0;
  text-align: center;
  color: var(--white);
}

.phone-head .avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad-gold);
  margin: 0 auto 10px;
  border: 2px solid var(--gold);
}

.phone-head .name {
  font-family: var(--font-display);
  font-size: 0.85rem;
}

.phone-head .bio {
  font-size: 0.7rem;
  opacity: 0.7;
}

.phone-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.phone-link {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px;
  font-size: 0.7rem;
  text-align: center;
  color: var(--white);
  font-weight: 600;
}

.phone-link.featured {
  background: var(--grad-gold);
  color: var(--purple-900);
  border-color: var(--gold);
}

/* Creator perks */

.perk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.perk-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 2px solid var(--purple-900);
  position: relative;
  overflow: hidden;
}

.perk-card .num {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: -10px;
  right: 10px;
}

.perk-card h4 {
  color: var(--purple-900);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.perk-card p {
  color: var(--gray-dark);
  font-size: 0.96rem;
  position: relative;
  z-index: 1;
}

/* VCW deal box */

.vcw-deal {
  background: var(--grad-teal);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px 56px;
  position: relative;
  overflow: hidden;
}

.vcw-deal::before {
  content: "★";
  position: absolute;
  top: -80px;
  right: -40px;
  font-family: var(--font-display);
  font-size: 22rem;
  color: var(--white);
  opacity: 0.08;
  line-height: 1;
}

.vcw-deal-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.vcw-deal .deal-price {
  text-align: center;
}

.vcw-deal .deal-price .strike {
  font-family: var(--font-display);
  font-size: 1.8rem;
  text-decoration: line-through;
  opacity: 0.6;
}

.vcw-deal .deal-price .now {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.vcw-deal .deal-price .month {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-top: 8px;
}

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

.footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "★";
  position: absolute;
  bottom: -120px;
  right: -50px;
  font-family: var(--font-display);
  font-size: 22rem;
  color: var(--gold);
  opacity: 0.04;
  line-height: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.footer-brand img {
  height: 64px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand img.no-invert { filter: none; }

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  max-width: 360px;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo Black', Impact, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  line-height: 1;
}

.footer-social a:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer-social .sm-fb {
  background: #1877F2;
  color: #FFFFFF;
}

.footer-social .sm-ig {
  background: radial-gradient(circle at 30% 110%, #FFD75C 0%, #FA7E1E 30%, #D62976 60%, #962FBF 80%, #4F5BD5 100%);
  color: #FFFFFF;
}

.footer-social .sm-tt {
  background: #000000;
  color: #FFFFFF;
  position: relative;
}

.footer-social .sm-tt::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(37, 244, 238, 0.5), transparent 40%),
              radial-gradient(circle at 70% 70%, rgba(254, 44, 85, 0.5), transparent 40%);
  mix-blend-mode: screen;
  opacity: 0.7;
  pointer-events: none;
}

.footer-social .sm-tt span {
  position: relative;
  z-index: 1;
}

.footer-social .sm-yt {
  background: #FF0000;
  color: #000000;
}

.footer-social .sm-x {
  background: #000000;
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
}

.footer-disclaimer {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 880px;
  margin: 0 auto 30px;
  text-align: center;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

/* =========================================
   UTILITIES + ANIMATIONS — GO CRAZY
   ========================================= */

.text-center { text-align: center; }
.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 32px; }
.mb-lg { margin-bottom: 56px; }

/* --- SCROLL REVEAL VARIANTS --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left { transform: translateX(-50px); }
.reveal-left.visible { transform: translateX(0); }

.reveal-right { transform: translateX(50px); }
.reveal-right.visible { transform: translateX(0); }

.reveal-zoom { transform: scale(0.85); }
.reveal-zoom.visible { transform: scale(1); }

.reveal-spin { transform: rotate(-8deg) translateY(40px); }
.reveal-spin.visible { transform: rotate(0) translateY(0); }

/* --- ANIMATED GRADIENT HERO --- */
.hero {
  background: linear-gradient(120deg, #1A0B3D, #3D2785, #5B2D8E, #2D1B69, #1A0B3D);
  background-size: 300% 300%;
  animation: gradientShift 18s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* --- HERO STAR DRIFT --- */
.hero-star { animation: drift 14s ease-in-out infinite; }
.hero-star.s1 { animation-duration: 16s; animation-delay: -1s; }
.hero-star.s2 { animation-duration: 12s; animation-delay: -3s; }
.hero-star.s3 { animation-duration: 18s; animation-delay: -5s; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0) rotate(var(--rot, 0deg)); }
  25% { transform: translate(15px, -25px) rotate(calc(var(--rot, 0deg) + 8deg)); }
  50% { transform: translate(-10px, -15px) rotate(calc(var(--rot, 0deg) - 6deg)); }
  75% { transform: translate(20px, 10px) rotate(calc(var(--rot, 0deg) + 4deg)); }
}

.hero-star.s1 { --rot: 15deg; }
.hero-star.s2 { --rot: -20deg; }
.hero-star.s3 { --rot: 35deg; }

/* --- HEADLINE LINE-BY-LINE REVEAL --- */
.hero h1 .line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: lineIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero h1 .line:nth-child(1) { animation-delay: 0.1s; }
.hero h1 .line:nth-child(2) { animation-delay: 0.25s; }
.hero h1 .line:nth-child(3) { animation-delay: 0.4s; }

@keyframes lineIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero .lead, .hero-actions, .hero-tag, .hero-powered, .hero-marquee, .creator-pulse {
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-tag, .creator-pulse { animation-delay: 0.05s; }
.hero .lead { animation-delay: 0.55s; }
.hero-actions { animation-delay: 0.7s; }
.hero-powered { animation-delay: 0.9s; }
.hero-marquee { animation-delay: 1.1s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- PULSING CTA BUTTON --- */
.pulse-cta {
  position: relative;
  animation: btnBounce 2.6s ease-in-out infinite;
}

.pulse-cta::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  background: var(--gold);
  z-index: -1;
  opacity: 0.6;
  animation: ringPulse 2.2s ease-out infinite;
}

@keyframes btnBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes ringPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.25); opacity: 0; }
}

.btn-teal.pulse-cta::before { background: var(--teal-bright); }
.btn-purple.pulse-cta::before { background: var(--purple-500); opacity: 0.5; }

/* --- BUTTON SHINE ON HOVER --- */
.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.btn:hover::after {
  left: 130%;
}

/* --- FLOATING AMBIENT STARS (page background) --- */
.float-stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}

.float-star {
  position: absolute;
  font-family: var(--font-display);
  color: var(--gold);
  opacity: 0;
  user-select: none;
  animation: floatStar 14s linear infinite;
  filter: drop-shadow(0 0 12px rgba(255, 182, 39, 0.4));
}

@keyframes floatStar {
  0% { opacity: 0; transform: translateY(100vh) rotate(0deg) scale(0.5); }
  10% { opacity: 0.5; }
  90% { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(-20vh) rotate(360deg) scale(1.2); }
}

/* --- FEATURE CARD: LIFT + WIGGLE --- */
.feature-card {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translate(-6px, -6px) rotate(-0.5deg);
  box-shadow: 18px 18px 0 var(--gold);
}

.feature-card .icon {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover .icon {
  transform: rotate(-12deg) scale(1.1);
}

/* --- PHASE CARD HOVER --- */
.phase-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px -10px rgba(26, 11, 61, 0.25);
}

.phase-card .phase-num {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s;
}

.phase-card:hover .phase-num {
  transform: scale(1.1) translateX(4px);
  color: var(--teal);
}

/* --- TESTIMONIAL CARD --- */
.testi-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testi-card:hover {
  transform: translateY(-6px) rotate(0.5deg);
  box-shadow: 12px 12px 0 var(--gold);
}

.testi-card .quote {
  animation: quoteBob 4s ease-in-out infinite;
  transform-origin: center;
}

@keyframes quoteBob {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-6px) rotate(-3deg); }
}

/* --- PRICING CARD HOVER --- */
.price-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px -10px rgba(26, 11, 61, 0.3);
}

.price-card.featured {
  animation: featuredFloat 4s ease-in-out infinite;
}

@keyframes featuredFloat {
  0%, 100% { transform: scale(1.02) translateY(0); }
  50% { transform: scale(1.02) translateY(-6px); }
}

.price-card.featured:hover { animation-play-state: paused; }

/* --- PRODUCT CARD ICON BOUNCE --- */
.product-card-visual-icon {
  animation: iconBob 5s ease-in-out infinite;
}

@keyframes iconBob {
  0%, 100% { transform: translateY(0) rotate(0); }
  25% { transform: translateY(-8px) rotate(-1deg); }
  75% { transform: translateY(4px) rotate(1deg); }
}

.product-card-visual {
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-visual {
  transform: scale(1.05) rotate(2deg);
}

/* --- COUNTDOWN DIGIT FLIP --- */
.countdown .unit {
  transition: transform 0.2s ease;
  animation: countdownPulse 1s ease-in-out infinite;
}

.countdown .unit:nth-child(1) { animation-delay: 0s; }
.countdown .unit:nth-child(2) { animation-delay: 0.15s; }
.countdown .unit:nth-child(3) { animation-delay: 0.3s; }

@keyframes countdownPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

.countdown .num {
  transition: transform 0.15s ease;
}

.countdown .num.tick {
  animation: digitFlip 0.4s ease-out;
}

@keyframes digitFlip {
  0% { transform: scale(1.2); color: var(--gold-bright); }
  100% { transform: scale(1); color: var(--gold); }
}

/* --- MARQUEE TICKER BAND --- */
.ticker {
  background: var(--black);
  color: var(--gold);
  overflow: hidden;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 18px 0;
  position: relative;
}

.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}

.ticker-item {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 60px;
}

.ticker-item::after {
  content: "★";
  color: var(--teal-bright);
  font-size: 1.5rem;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker.ticker-gold {
  background: var(--grad-gold);
  color: var(--purple-900);
  border-color: var(--purple-900);
}

.ticker.ticker-gold .ticker-item::after { color: var(--purple-700); }

/* --- HERO MARQUEE (powered by) --- */
.hero-marquee {
  overflow: hidden;
  display: flex;
  justify-content: center;
  gap: 0;
}

.hero-marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: tickerScroll 25s linear infinite;
  white-space: nowrap;
}

.hero-marquee-track span {
  font-weight: 800;
  letter-spacing: 0.05em;
}

/* --- LIVE SOCIAL PROOF TOAST --- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  color: var(--purple-900);
  padding: 14px 20px 14px 16px;
  border-radius: 16px;
  border: 2px solid var(--purple-900);
  box-shadow: 6px 6px 0 var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 320px;
  z-index: 200;
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-size: 0.9rem;
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--grad-gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: var(--purple-900);
  font-size: 0.85rem;
}

.toast strong { color: var(--purple-800); }

/* --- BONUS CARD HOVER --- */
.bonus-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.bonus-card:hover .value-tag { animation: tagShake 0.4s ease; }

@keyframes tagShake {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-4deg) scale(1.05); }
  75% { transform: rotate(4deg) scale(1.05); }
}

/* --- PERK CARD --- */
.perk-card { transition: transform 0.3s ease; }
.perk-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 10px 10px 0 var(--purple-900);
}
.perk-card .num {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
}
.perk-card:hover .num {
  transform: scale(1.15) rotate(-8deg);
  opacity: 0.5;
}

/* --- COUNT-UP NUMBERS --- */
.count-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 24px 16px;
}

.count-stat .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  color: var(--gold);
  line-height: 1.05;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.count-stat .label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  line-height: 1.4;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.stats-row .count-stat + .count-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 980px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .stats-row .count-stat + .count-stat { border-left: none; }
  .stats-row .count-stat { padding: 18px 12px; }
  .stats-row .count-stat:nth-child(2) { border-left: 1px solid rgba(255,255,255,0.08); }
  .stats-row .count-stat:nth-child(4) { border-left: 1px solid rgba(255,255,255,0.08); }
  .stats-row .count-stat:nth-child(3),
  .stats-row .count-stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 22px; }
}

@media (max-width: 480px) {
  .count-stat .num { font-size: 1.8rem; }
  .count-stat .label { font-size: 0.65rem; letter-spacing: 0.12em; }
}

/* --- NAV LOGO HOVER --- */
.nav-logo img {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

/* --- PHONE CARDS BOB --- */
.phone {
  animation: phoneBob 5s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.phone:nth-child(1) { animation-delay: 0s; }
.phone:nth-child(2) { animation-delay: 0.4s; }
.phone:nth-child(3) { animation-delay: 0.8s; }
.phone:nth-child(4) { animation-delay: 1.2s; }

@keyframes phoneBob {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-12px) rotate(-1deg); }
}

.phone:hover {
  transform: translateY(-20px) rotate(2deg) scale(1.04);
  animation-play-state: paused;
}

.phone-link {
  transition: transform 0.2s ease, background 0.2s;
}

.phone-link:hover {
  transform: translateX(3px) scale(1.02);
}

.phone-link.featured {
  animation: linkGlow 2.5s ease-in-out infinite;
}

@keyframes linkGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 182, 39, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(255, 182, 39, 0); }
}

/* --- VCW DEAL ANIMATIONS --- */
.vcw-deal .now {
  display: inline-block;
  animation: priceDrop 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) infinite alternate;
}

@keyframes priceDrop {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.vcw-deal::before {
  animation: spinStar 30s linear infinite;
}

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

/* --- EYEBROW WIGGLE --- */
.eyebrow {
  animation: eyebrowWiggle 6s ease-in-out infinite;
}

@keyframes eyebrowWiggle {
  0%, 100% { transform: rotate(0); }
  50% { transform: rotate(-1deg); }
}

/* --- HIGHLIGHT STROKE GLOW --- */
.highlight-stroke {
  position: relative;
  animation: strokeGlow 4s ease-in-out infinite;
}

@keyframes strokeGlow {
  0%, 100% { -webkit-text-stroke-color: var(--gold); }
  50% { -webkit-text-stroke-color: var(--gold-bright); }
}

/* --- FAQ HOVER --- */
.faq-item {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  transform: translate(-2px, -2px);
}

.faq-item[open] {
  animation: faqOpen 0.4s ease;
}

@keyframes faqOpen {
  from { transform: translate(0, 0); }
  50% { transform: translate(-6px, -6px); }
  to { transform: translate(-2px, -2px); }
}

/* --- DECORATIVE BACKGROUND STAR ROTATIONS --- */
.cta-band::before { animation: spinStar 40s linear infinite; }
.cta-band::after { animation: spinStar 50s linear infinite reverse; }
.guarantee::before { animation: spinStar 35s linear infinite; }

/* =========================================
   DIAGRAMS / ILLUSTRATIONS
   ========================================= */

.diagram {
  max-width: 980px;
  margin: 0 auto;
  display: block;
}

.diagram svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.diagram-frame {
  background: var(--white);
  border: 2px solid var(--purple-900);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: 12px 12px 0 var(--gold);
  position: relative;
}

.section-dark .diagram-frame,
.section-gradient-purple .diagram-frame {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold);
  box-shadow: 12px 12px 0 rgba(255, 182, 39, 0.3);
}

.diagram-caption {
  text-align: center;
  margin-top: 24px;
  font-size: 0.95rem;
  opacity: 0.75;
  font-weight: 600;
}

/* Pulsing nodes inside diagrams */
.diagram .node-pulse {
  transform-origin: center;
  animation: nodePulse 2.4s ease-in-out infinite;
}
.diagram .node-pulse.delay-1 { animation-delay: 0.4s; }
.diagram .node-pulse.delay-2 { animation-delay: 0.8s; }
.diagram .node-pulse.delay-3 { animation-delay: 1.2s; }
.diagram .node-pulse.delay-4 { animation-delay: 1.6s; }
.diagram .node-pulse.delay-5 { animation-delay: 2.0s; }

@keyframes nodePulse {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(255, 182, 39, 0)); }
  50% { filter: drop-shadow(0 0 12px rgba(255, 182, 39, 0.8)); }
}

.diagram .flow-arrow {
  stroke-dasharray: 12 6;
  animation: dashFlow 1.5s linear infinite;
}

@keyframes dashFlow {
  to { stroke-dashoffset: -36; }
}

.diagram .orbit {
  transform-origin: center;
  animation: orbit 18s linear infinite;
}

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

@media (max-width: 600px) {
  .diagram-frame { padding: 28px 20px; box-shadow: 8px 8px 0 var(--gold); }
}

/* =========================================
   DASHBOARD / LOGIN / INTAKE
   ========================================= */

.auth-page {
  min-height: 100vh;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.auth-page::before,
.auth-page::after {
  content: "★";
  position: absolute;
  font-family: var(--font-display);
  font-size: 30rem;
  color: var(--gold);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
  animation: spinStar 50s linear infinite;
}

.auth-page::before { top: -100px; left: -100px; }
.auth-page::after { bottom: -150px; right: -100px; animation-direction: reverse; }

.auth-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px 44px;
  width: 100%;
  max-width: 480px;
  box-shadow: 14px 14px 0 var(--gold);
  border: 3px solid var(--purple-900);
  position: relative;
  z-index: 1;
}

.auth-logo {
  display: block;
  margin: 0 auto 28px;
  height: 60px;
  width: auto;
}

.auth-card h1 {
  font-size: clamp(2rem, 5vw, 2.6rem);
  text-align: center;
  margin-bottom: 8px;
  color: var(--purple-900);
}

.auth-card .auth-sub {
  text-align: center;
  color: var(--gray-dark);
  margin-bottom: 32px;
  font-size: 1rem;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-900);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--purple-900);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
  color: var(--black);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--font-body);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 182, 39, 0.2);
  transform: translateY(-1px);
}

.field-hint {
  font-size: 0.85rem;
  color: var(--gray-dark);
  margin-top: 6px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 600px) {
  .field-row { grid-template-columns: 1fr; }
}

.auth-card .btn {
  width: 100%;
  margin-top: 8px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray);
  font-size: 0.85rem;
  margin: 20px 0;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gray);
  opacity: 0.4;
}

.btn-google {
  width: 100%;
  background: var(--white);
  border: 2px solid var(--purple-900);
  color: var(--purple-900);
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-google:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.auth-footer {
  text-align: center;
  margin-top: 24px;
  color: var(--gray-dark);
  font-size: 0.95rem;
}

.auth-footer a {
  color: var(--purple-800);
  font-weight: 800;
  text-decoration: underline;
}

/* Dashboard */
.dash {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
  background: var(--off-white);
}

.dash-sidebar {
  background: var(--purple-900);
  color: var(--white);
  padding: 32px 24px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.dash-sidebar .logo {
  display: block;
  text-align: center;
}
.dash-sidebar .logo img {
  height: 50px;
  margin: 0 auto 32px;
  display: block;
}

.dash-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dash-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}

.dash-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.dash-nav a.active {
  background: var(--gold);
  color: var(--purple-900);
}

.dash-nav .icon {
  font-size: 1.1rem;
}

.dash-user {
  margin-top: auto;
  padding: 20px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.dash-user .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-900);
  font-family: var(--font-display);
}

.dash-main {
  padding: 40px 48px;
  overflow-x: hidden;
}

.dash-greeting {
  margin-bottom: 36px;
}

.dash-greeting h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 8px;
  color: var(--purple-900);
}

.dash-greeting p {
  color: var(--gray-dark);
  font-size: 1.05rem;
}

.dash-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.dash-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  border: 2px solid var(--purple-900);
  box-shadow: 6px 6px 0 var(--purple-900);
}

.dash-card.featured {
  background: var(--grad-hero);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 6px 6px 0 var(--gold);
}

.dash-card h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--purple-900);
}

.dash-card.featured h3 { color: var(--gold); }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.status-pill .dot {
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.progress-bar {
  background: rgba(91, 45, 142, 0.12);
  height: 14px;
  border-radius: 8px;
  overflow: hidden;
  margin: 16px 0 8px;
}

.progress-fill {
  background: var(--grad-gold);
  height: 100%;
  border-radius: 8px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.progress-fill.show { width: var(--p, 65%); }

.progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--gray-dark);
  font-weight: 600;
}

.requests-list {
  list-style: none;
  margin-top: 16px;
}

.requests-list li {
  padding: 16px;
  background: var(--off-white);
  border-radius: 12px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}

.requests-list li .req-status {
  font-family: var(--font-display);
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.req-status.pending { background: var(--gold); color: var(--purple-900); }
.req-status.done { background: var(--teal); color: var(--white); }
.req-status.review { background: var(--purple-700); color: var(--white); }

.meeting-cta {
  text-align: center;
}

.meeting-cta h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.meeting-cta p {
  margin-bottom: 22px;
  opacity: 0.9;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.resource-card {
  background: var(--off-white);
  border-radius: 12px;
  padding: 20px;
  border: 1.5px solid rgba(91, 45, 142, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.resource-card:hover {
  transform: translateY(-3px);
  box-shadow: 4px 4px 0 var(--gold);
}

.resource-card .label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--teal);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.resource-card .title {
  font-weight: 800;
  color: var(--purple-900);
  font-size: 1rem;
}

/* ================================================
   MOBILE APP-LIKE EXPERIENCE
   Slide-out drawer sidebar + bottom nav + touch targets
   ================================================ */

/* Hamburger button — hidden on desktop */
.dash-hamburger {
  display: none;
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 110;
  background: var(--purple-900);
  color: var(--gold);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(26, 11, 61, 0.25);
}

/* Mobile top bar (shows logo + actions) */
.dash-mobile-topbar {
  display: none;
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(91, 45, 142, 0.1);
  padding: 12px 60px 12px 70px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 64px;
}

.dash-mobile-topbar .mobile-logo img {
  height: 32px;
}

.dash-mobile-topbar .mobile-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--purple-900);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Drawer backdrop */
.dash-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 11, 61, 0.6);
  backdrop-filter: blur(4px);
  z-index: 105;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.dash-backdrop.show {
  display: block;
  opacity: 1;
}

/* Bottom nav bar (mobile only) */
.dash-bottomnav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  background: var(--white);
  border-top: 1px solid rgba(91, 45, 142, 0.12);
  padding: 6px 4px;
  padding-bottom: calc(6px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 16px rgba(26, 11, 61, 0.08);
}

.dash-bottomnav-inner {
  display: grid;
  grid-template-columns: repeat(var(--bn-cols, 4), 1fr);
  gap: 2px;
}

.dash-bottomnav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
  border-radius: 12px;
  color: var(--gray-dark);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  min-height: 52px;
  transition: background 0.15s, color 0.15s;
}

.dash-bottomnav a .bn-icon {
  font-size: 1.25rem;
  line-height: 1;
  margin-bottom: 4px;
  color: var(--purple-800);
}

.dash-bottomnav a.active {
  background: rgba(255, 182, 39, 0.18);
  color: var(--purple-900);
}

.dash-bottomnav a.active .bn-icon {
  color: var(--gold-deep);
}

.dash-bottomnav a:active {
  transform: scale(0.94);
}

/* Activate the drawer on mobile */
@media (max-width: 880px) {
  .dash { grid-template-columns: 1fr; }

  /* Sidebar becomes off-canvas drawer */
  .dash-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 84%;
    max-width: 320px;
    height: 100vh;
    z-index: 106;
    padding: 28px 22px;
    flex-direction: column;
    display: flex;
    align-items: stretch;
    gap: 0;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }
  .dash-sidebar.open {
    transform: translateX(0);
  }
  .dash-sidebar .logo img { height: 42px; margin: 0 auto 24px; }
  .dash-nav {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 4px;
  }
  .dash-nav a {
    padding: 14px 16px;
    font-size: 0.95rem;
    min-height: 48px;
  }
  .dash-user { display: flex; }

  /* Show hamburger + top bar + bottom nav */
  .dash-hamburger { display: flex; align-items: center; justify-content: center; }
  .dash-mobile-topbar { display: flex; }
  .dash-bottomnav { display: block; }

  .dash-main { padding: 16px 14px 96px; }
  .dash-grid { grid-template-columns: 1fr; gap: 16px; }
  .dash-card { padding: 18px 16px; }

  .dash-greeting { display: none; } /* save space — title is in topbar */
}

/* ================================================
   ADMIN TABLE → CARD on mobile
   Transforms tables into card stacks for readability
   ================================================ */
@media (max-width: 880px) {
  .admin-table {
    display: block;
    box-shadow: none;
    border: none;
    background: transparent;
  }
  .admin-table thead { display: none; }
  .admin-table tbody { display: block; }
  .admin-table tr {
    display: block;
    background: var(--white);
    border: 2px solid var(--purple-900);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 12px;
    box-shadow: 4px 4px 0 rgba(255, 182, 39, 0.3);
  }
  .admin-table tr:hover td { background: transparent; }
  .admin-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    border-bottom: 1px dashed rgba(91, 45, 142, 0.1);
    font-size: 0.9rem;
  }
  .admin-table td:last-child { border-bottom: none; }
  .admin-table td::before {
    content: attr(data-label);
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: var(--gray-dark);
    text-transform: uppercase;
    flex-shrink: 0;
  }
  .admin-table td:first-child::before { display: none; }
  .admin-table td:first-child {
    border-bottom: 2px solid rgba(91, 45, 142, 0.12);
    padding-bottom: 10px;
    margin-bottom: 6px;
    font-weight: 800;
  }

  .admin-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    padding-bottom: 0;
    margin: 0 -14px 16px;
    padding: 0 14px;
  }
  .admin-tabs::-webkit-scrollbar { display: none; }
  .admin-tab {
    flex-shrink: 0;
    font-size: 0.78rem;
    padding: 12px 16px;
  }

  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .stat-card {
    padding: 14px 16px;
    box-shadow: 3px 3px 0 var(--gold);
  }
  .stat-card .num { font-size: 1.7rem; }

  .req-card { padding: 16px; }
  .req-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .req-actions textarea { min-height: 64px; font-size: 0.9rem; }
  .req-actions button { width: 100%; padding: 12px; font-size: 0.78rem; }
}

/* ================================================
   MOBILE KANBAN — wider columns, app-like swipe
   ================================================ */
@media (max-width: 1100px) {
  .pipeline {
    margin: 0 -14px;
    padding: 0 14px 16px;
    scroll-padding-left: 14px;
  }
  .pipeline-col { flex: 0 0 84%; min-height: 240px; }
  .pipeline-card { padding: 14px; }
  .pipeline-card .pc-name { font-size: 1rem; }
  .pipeline-card select { min-height: 40px; }
}

/* ================================================
   MODAL → FULL-SCREEN SHEET on mobile
   ================================================ */
@media (max-width: 600px) {
  .modal-backdrop { padding: 0; align-items: flex-end; }
  .modal {
    max-width: 100%;
    width: 100%;
    border-radius: 24px 24px 0 0;
    max-height: 92vh;
    overflow-y: auto;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.25);
    border-bottom: none;
    padding: 28px 22px calc(28px + env(safe-area-inset-bottom));
  }
  .modal-backdrop.open .modal {
    animation: sheetUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  @keyframes sheetUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }
  .modal h2 { font-size: 1.4rem; }
  .modal-actions { flex-direction: column-reverse; gap: 10px; }
  .modal-actions .btn { width: 100%; }
}

/* ================================================
   STICKY FORM CTA on mobile (intake, addon-intake)
   ================================================ */
@media (max-width: 600px) {
  .intake-controls {
    position: sticky;
    bottom: 0;
    background: linear-gradient(to top, var(--white) 70%, transparent);
    padding: 16px 0 calc(16px + env(safe-area-inset-bottom));
    margin: 16px -22px -22px;
    padding-left: 22px;
    padding-right: 22px;
    flex-direction: row-reverse;
    z-index: 5;
    border-top: 1px solid rgba(91, 45, 142, 0.1);
  }
  .intake-controls .btn { flex: 1; padding: 14px; font-size: 0.95rem; min-height: 48px; }
}

/* ================================================
   TOUCH-FRIENDLY TARGETS sitewide (mobile only)
   Min 44px for all interactive elements
   ================================================ */
@media (max-width: 880px) {
  .btn { min-height: 48px; }
  a.addon-cta, button.addon-cta { min-height: 44px; }
  .price-card .btn { min-height: 52px; font-size: 0.95rem; }
  .faq-item summary { min-height: 56px; }
  .nav-toggle { min-width: 48px; min-height: 48px; }

  /* Bigger inputs for thumbs */
  .field input, .field textarea, .field select {
    min-height: 48px;
    font-size: 16px; /* prevents iOS Safari zoom-on-focus */
  }
  .field textarea { min-height: 80px; }

  /* Bigger checkboxes */
  .checkbox-group label { padding: 12px 16px; min-height: 44px; }
}

/* ================================================
   ADD-ONS GRID on mobile — full width cards
   ================================================ */
@media (max-width: 600px) {
  .addons-grid { grid-template-columns: 1fr; gap: 12px; }
  .addon-card { padding: 18px 16px; min-height: auto; }
  .addon-card[style*="grid-column: span 2"] { grid-column: span 1 !important; }
  .properties-grid { grid-template-columns: 1fr; }
}

/* ADD-ONS GRID */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.addon-card {
  background: var(--white);
  border: 2px solid var(--purple-900);
  border-radius: 16px;
  padding: 22px 20px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 220px;
}

.addon-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--gold);
}

.addon-card.featured {
  background: linear-gradient(135deg, #FFF8EC, #FFF);
  border-color: var(--gold);
}

.addon-card .addon-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--purple-900);
}

.addon-card .addon-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--purple-900);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.addon-card .addon-price {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--gold-deep);
  line-height: 1;
}

.addon-card .addon-price small {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-dark);
  margin-left: 2px;
}

.addon-card .addon-desc {
  font-size: 0.88rem;
  color: var(--gray-dark);
  line-height: 1.45;
  flex: 1;
}

.addon-card .addon-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--purple-900);
  font-family: var(--font-display);
  font-size: 0.65rem;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.1em;
}

.addon-card .addon-tag.free { background: var(--teal); color: var(--white); }
.addon-card .addon-tag.popular { background: var(--purple-900); color: var(--gold); }
.addon-card .addon-tag.physical { background: var(--teal-deep); color: var(--white); }

.addon-card .addon-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  background: var(--purple-900);
  color: var(--white);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  cursor: pointer;
  border: none;
  width: auto;
  font-weight: 800;
  text-align: center;
  outline: none;
}

.addon-card button.addon-cta:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.addon-card .addon-cta:hover {
  background: var(--gold);
  color: var(--purple-900);
  transform: translateY(-2px);
}

.addon-card .addon-cta.included {
  background: var(--teal);
  cursor: default;
}

.addon-card .addon-cta.included:hover {
  background: var(--teal);
  transform: none;
}

/* Intake-incomplete banner (teal — distinct from rest of site) */
.intake-banner {
  background: linear-gradient(135deg, #1FD9C5, #14B5A5, #0D8C80);
  color: var(--white);
  border-radius: 16px;
  padding: 18px 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 4px 4px 0 var(--purple-900);
}

.intake-banner .ib-msg {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.3;
}

.intake-banner .ib-sub {
  font-size: 0.85rem;
  font-family: var(--font-body);
  margin-top: 2px;
  opacity: 0.9;
  font-weight: 600;
}

.intake-banner a {
  background: var(--white);
  color: var(--teal-deep);
  padding: 10px 20px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.15s;
  white-space: nowrap;
}

.intake-banner a:hover { transform: scale(1.05); }

/* Billing-alert banner (red — pops, pulses) */
.billing-banner {
  background: linear-gradient(135deg, #E74C3C, #C0392B);
  color: var(--white);
  border-radius: 16px;
  padding: 18px 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 4px 4px 0 #6E1F18;
  animation: billingPulse 1.6s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.billing-banner::before {
  content: "!";
  position: absolute;
  font-family: var(--font-display);
  font-size: 12rem;
  color: var(--white);
  opacity: 0.08;
  top: -40px;
  right: -10px;
  line-height: 1;
}

.billing-banner .bb-msg {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.3;
  position: relative;
}

.billing-banner .bb-sub {
  font-size: 0.85rem;
  font-family: var(--font-body);
  margin-top: 2px;
  opacity: 0.9;
  font-weight: 600;
  position: relative;
}

.billing-banner a, .billing-banner button {
  background: var(--white);
  color: #C0392B;
  padding: 10px 20px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: transform 0.15s;
}

.billing-banner a:hover, .billing-banner button:hover {
  transform: scale(1.05);
}

@keyframes billingPulse {
  0%, 100% { box-shadow: 4px 4px 0 #6E1F18, 0 0 0 0 rgba(231, 76, 60, 0.4); }
  50% { box-shadow: 4px 4px 0 #6E1F18, 0 0 0 12px rgba(231, 76, 60, 0); }
}

/* PIPELINE / KANBAN (admin) */
.pipeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 8px;
}

@media (max-width: 1100px) {
  .pipeline {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    gap: 12px;
  }
  .pipeline-col {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }
}

.pipeline-col {
  background: var(--off-white);
  border-radius: 14px;
  padding: 12px 10px;
  border: 1.5px solid rgba(91, 45, 142, 0.12);
  min-height: 120px;
}

.pipeline-col-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 8px 12px;
  border-bottom: 2px solid;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pipeline-col[data-status="opt_in"] .pipeline-col-head { color: var(--teal-deep); border-color: var(--teal); }
.pipeline-col.pipeline-col-optin { background: linear-gradient(180deg, rgba(20, 181, 165, 0.06), transparent 60%); }
.pipeline-card.pipeline-card-optin { border-left: 3px solid var(--teal); background: linear-gradient(135deg, rgba(20,181,165,0.04), transparent); }
.pipeline-col[data-status="awaiting_intake"] .pipeline-col-head { color: var(--purple-700); border-color: var(--purple-700); }
.pipeline-col[data-status="building"] .pipeline-col-head { color: var(--gold-deep); border-color: var(--gold); }
.pipeline-col[data-status="delivered"] .pipeline-col-head { color: var(--purple-800); border-color: var(--purple-800); }
.pipeline-col[data-status="live"] .pipeline-col-head { color: var(--teal-deep); border-color: var(--teal); }
.pipeline-col[data-status="paused"] .pipeline-col-head { color: var(--gray-dark); border-color: var(--gray); }

.pipeline-col .col-count {
  background: var(--purple-900);
  color: var(--gold);
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

.pipeline-card {
  background: var(--white);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 8px;
  border: 1.5px solid rgba(91, 45, 142, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.15s, transform 0.15s;
}

.pipeline-card:hover {
  box-shadow: 0 4px 12px rgba(91, 45, 142, 0.12);
  transform: translateY(-1px);
}

.pipeline-card .pc-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--purple-900);
  margin-bottom: 4px;
  line-height: 1.15;
}

.pipeline-card .pc-customer {
  font-size: 0.78rem;
  color: var(--gray-dark);
  margin-bottom: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pipeline-card .pc-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  font-size: 0.72rem;
}

.pipeline-card .pc-type-pill {
  background: var(--gold);
  color: var(--purple-900);
  padding: 2px 8px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
}

.pipeline-card .pc-days {
  color: var(--gray-dark);
  font-weight: 700;
}

.pipeline-card .pc-actions {
  margin-top: 10px;
  display: flex;
  gap: 4px;
}

.pipeline-card select {
  width: 100%;
  padding: 6px 8px;
  border: 1px solid rgba(91, 45, 142, 0.25);
  border-radius: 8px;
  font-size: 0.78rem;
  font-family: var(--font-body);
  background: var(--white);
  color: var(--purple-900);
}

.pipeline-empty {
  color: var(--gray);
  font-size: 0.78rem;
  font-style: italic;
  padding: 20px 8px;
  text-align: center;
}

/* Property status timeline (customer dashboard) */
.status-timeline {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 10px 0 6px;
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
}

.status-timeline .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
  color: var(--gray);
  position: relative;
  gap: 2px;
}

.status-timeline .step .dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(91, 45, 142, 0.12);
  border: 1.5px solid rgba(91, 45, 142, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  z-index: 1;
}

.status-timeline .step.done .dot {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.status-timeline .step.active .dot {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--purple-900);
  box-shadow: 0 0 0 4px rgba(255, 182, 39, 0.25);
  animation: stepPulse 1.5s ease-in-out infinite;
}

@keyframes stepPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 182, 39, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(255, 182, 39, 0.05); }
}

.status-timeline .step.done { color: var(--teal-deep); }
.status-timeline .step.active { color: var(--gold-deep); }

.status-timeline .step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 9px;
  left: calc(50% + 12px);
  right: calc(-50% + 12px);
  height: 2px;
  background: rgba(91, 45, 142, 0.12);
  z-index: 0;
}

.status-timeline .step.done:not(:last-child)::after {
  background: var(--teal);
}

.status-timeline .step .step-label {
  font-size: 0.55rem;
  margin-top: 2px;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .status-timeline .step .step-label { font-size: 0.5rem; }
}

/* Site Properties (dashboard) */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.property-card {
  background: var(--off-white);
  border: 2px solid var(--purple-900);
  border-radius: 16px;
  padding: 22px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.property-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--gold);
}

.property-card .ptype {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  border-radius: 999px;
  align-self: flex-start;
}

.property-card .ptype.s72 { background: var(--gold); color: var(--purple-900); }
.property-card .ptype.creator { background: var(--teal); color: var(--white); }
.property-card .ptype.partnership { background: var(--purple-700); color: var(--white); }
.property-card .ptype.addon { background: var(--teal-deep); color: var(--white); }

.property-card .pname {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--purple-900);
  line-height: 1.1;
}

.property-card .pdomain {
  font-size: 0.9rem;
  color: var(--gray-dark);
  font-weight: 600;
}

.property-card .pstatus {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 999px;
  align-self: flex-start;
}

.pstatus.building { background: var(--gold); color: var(--purple-900); }
.pstatus.live { background: var(--teal); color: var(--white); }
.pstatus.paused { background: var(--gray); color: var(--purple-900); }

.property-card .pactions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
}

.property-card .pactions a {
  flex: 1;
  text-align: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  border: 1.5px solid var(--purple-900);
  color: var(--purple-900);
  background: var(--white);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.property-card .pactions a.primary {
  background: var(--purple-900);
  color: var(--white);
}

.property-card .pactions a:hover {
  background: var(--gold);
  color: var(--purple-900);
  border-color: var(--gold);
}

.property-card.add-new {
  background: transparent;
  border: 2px dashed var(--purple-700);
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  min-height: 200px;
}

.property-card.add-new:hover {
  background: rgba(255, 182, 39, 0.08);
  border-color: var(--gold);
  border-style: solid;
}

.property-card.add-new .plus {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}

.property-card.add-new .label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--purple-900);
  letter-spacing: 0.1em;
}

/* Add Property Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26, 11, 61, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 3px solid var(--purple-900);
  box-shadow: 10px 10px 0 var(--gold);
  width: 100%;
  max-width: 540px;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-backdrop.open .modal {
  transform: scale(1);
}

.modal h2 {
  font-size: 1.8rem;
  color: var(--purple-900);
  margin-bottom: 6px;
}

.modal-sub {
  color: var(--gray-dark);
  margin-bottom: 24px;
}

.type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.type-option {
  padding: 16px 10px;
  border: 2px solid var(--purple-900);
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.78rem;
  background: var(--white);
  color: var(--purple-900);
  letter-spacing: 0.05em;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}

.type-option:hover {
  background: var(--off-white);
}

.type-option.selected {
  background: var(--grad-gold);
  color: var(--purple-900);
  transform: scale(1.04);
}

.type-option .price {
  display: block;
  font-size: 0.65rem;
  opacity: 0.7;
  margin-top: 4px;
  letter-spacing: 0.08em;
}

.modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.modal-actions .btn {
  flex: 1;
}

@media (max-width: 600px) {
  .type-grid { grid-template-columns: 1fr; }
  .modal { padding: 28px 22px; }
}

/* Multi-step intake */
.intake-page {
  min-height: 100vh;
  background: var(--off-white);
  padding: 60px 24px;
}

.intake-container {
  max-width: 760px;
  margin: 0 auto;
}

.intake-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}

.intake-step {
  flex: 1;
  height: 8px;
  background: rgba(91, 45, 142, 0.15);
  border-radius: 4px;
  transition: background 0.3s ease;
}

.intake-step.done {
  background: var(--teal);
}

.intake-step.active {
  background: var(--grad-gold);
}

.intake-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 2px solid var(--purple-900);
  box-shadow: 10px 10px 0 var(--gold);
}

.intake-card h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 12px;
  color: var(--purple-900);
}

.intake-card .step-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
  margin-bottom: 12px;
}

.intake-card .step-sub {
  color: var(--gray-dark);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.intake-controls {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.intake-controls .btn {
  padding: 14px 28px;
}

@media (max-width: 600px) {
  .intake-card { padding: 32px 24px; box-shadow: 6px 6px 0 var(--gold); }
}

/* --- SIGNUP POPUP --- */
.signup-popup {
  position: fixed;
  inset: 0;
  background: rgba(10, 1, 24, 0.6);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.signup-popup.show {
  opacity: 1;
  pointer-events: auto;
}

.signup-popup-card {
  background: var(--grad-hero);
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  width: 100%;
  max-width: 460px;
  position: relative;
  box-shadow: var(--shadow-gold);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.signup-popup-card::before {
  content: "★";
  position: absolute;
  top: -50px;
  right: -50px;
  font-family: var(--font-display);
  font-size: 16rem;
  color: var(--gold);
  opacity: 0.1;
  line-height: 1;
  animation: spinStar 25s linear infinite;
}

.signup-popup.show .signup-popup-card {
  transform: scale(1) translateY(0);
}

.signup-popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 2;
  transition: background 0.2s, transform 0.2s;
}

.signup-popup-close:hover {
  background: var(--gold);
  color: var(--purple-900);
  transform: rotate(90deg);
}

@media (max-width: 480px) {
  .signup-popup-card { padding: 36px 24px; }
}

/* =========================================
   LEGAL PAGES
   ========================================= */

.legal-page {
  background: linear-gradient(180deg, #F8F4FF 0%, #FFFFFF 80px);
  padding: 60px 24px 100px;
  min-height: 100vh;
}

.legal-container {
  max-width: 920px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  padding: 64px 56px;
  border: 2px solid var(--purple-900);
  box-shadow: 14px 14px 0 var(--gold);
}

.legal-eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: var(--gold-deep);
  letter-spacing: 0.22em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.legal-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--purple-900);
  line-height: 1.05;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.legal-updated {
  color: var(--gray-dark);
  font-size: 0.92rem;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 2px dashed rgba(91, 45, 142, 0.18);
}

.legal-intro {
  font-size: 1.08rem;
  line-height: 1.65;
  color: #2D2238;
  margin-bottom: 36px;
}

.legal-toc {
  background: linear-gradient(135deg, #F8F4FF, rgba(255, 182, 39, 0.06));
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 44px;
  border-left: 5px solid var(--gold);
}

.legal-toc h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--purple-900);
  letter-spacing: 0.15em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.legal-toc ol {
  counter-reset: toc;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
}

.legal-toc ol li {
  counter-increment: toc;
  padding: 4px 0;
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.legal-toc ol li::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.legal-toc a {
  color: var(--purple-900);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
}

.legal-toc a:hover {
  color: var(--teal);
  text-decoration: underline;
}

.legal-body h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--purple-900);
  margin: 48px 0 18px;
  scroll-margin-top: 100px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.legal-body h2 .num {
  color: var(--gold);
  margin-right: 10px;
}

.legal-body h3 {
  font-family: 'Archivo Black', Impact, sans-serif;
  font-size: 1.05rem;
  color: var(--purple-800);
  margin: 28px 0 10px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 900;
}

.legal-body p,
.legal-body li {
  font-size: 1rem;
  line-height: 1.7;
  color: #2D2238;
  margin-bottom: 14px;
}

.legal-body ul, .legal-body ol {
  padding-left: 24px;
  margin: 0 0 18px;
}

.legal-body ul li, .legal-body ol li {
  margin-bottom: 6px;
}

.legal-body a {
  color: var(--purple-700);
  text-decoration: underline;
  font-weight: 600;
}

.legal-body strong {
  color: var(--purple-900);
  font-weight: 800;
}

.legal-body em {
  font-style: italic;
  color: var(--purple-800);
}

.legal-callout {
  background: linear-gradient(135deg, rgba(255, 182, 39, 0.14), rgba(255, 182, 39, 0.04));
  border-left: 5px solid var(--gold);
  border-radius: 12px;
  padding: 22px 26px;
  margin: 32px 0;
}

.legal-callout-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: var(--gold-deep);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.legal-callout p {
  margin: 0;
  font-size: 1rem;
}

.legal-callout.danger {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.02));
  border-left-color: #C0392B;
}

.legal-callout.danger .legal-callout-label {
  color: #C0392B;
}

.legal-contact-box {
  background: var(--grad-hero);
  color: var(--white);
  border-radius: 18px;
  padding: 36px 32px;
  margin-top: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.legal-contact-box::before {
  content: "★";
  position: absolute;
  top: -50px;
  right: -50px;
  font-family: var(--font-display);
  font-size: 16rem;
  color: var(--gold);
  opacity: 0.1;
  line-height: 1;
}

.legal-contact-box h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  margin: 0 0 14px;
  text-transform: uppercase;
  position: relative;
}

.legal-contact-box p {
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 6px;
  position: relative;
  font-size: 1rem;
}

.legal-contact-box a {
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

.legal-contact-box a:hover {
  text-decoration: underline;
}

@media (max-width: 700px) {
  .legal-container { padding: 36px 24px; box-shadow: 8px 8px 0 var(--gold); }
  .legal-toc { padding: 22px; }
  .legal-toc ol { grid-template-columns: 1fr; }
  .legal-body h2 { font-size: 1.25rem; }
}

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

/* =========================================
   RESPONSIVE — BULLETPROOF MOBILE
   ========================================= */

@media (max-width: 1100px) {
  .nav-links { gap: 24px; }
  .container { padding: 0 24px; }
}

@media (max-width: 980px) {
  .section { padding: 72px 0; }
  .hero { padding: 50px 0 70px; }

  .nav-inner { padding: 12px 20px; gap: 12px; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    gap: 0;
    border-bottom: 3px solid var(--gold);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
  }
  .nav-links.open {
    display: flex;
    animation: navSlide 0.3s ease;
  }
  @keyframes navSlide {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .nav-links li { padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.08); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { font-size: 1rem; }
  .nav-cta .btn { padding: 12px 16px; font-size: 0.8rem; }
  .nav-account {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(91, 45, 142, 0.08);
    border: 1.5px solid var(--purple-900);
    color: var(--purple-900);
    font-family: var(--font-display);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
  }
  .nav-account:hover {
    background: var(--gold);
    border-color: var(--gold);
  }

  .product-card,
  .product-card.layout-right {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    gap: 24px;
  }
  .product-card.layout-right .product-card-content { order: 0; }
  .product-card-visual { aspect-ratio: 5 / 2.4; padding: 24px; }
  .product-card-visual-icon { font-size: clamp(3rem, 14vw, 6rem); }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .vcw-deal-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .vcw-deal { padding: 48px 32px; }
  .vcw-deal .deal-price .now { font-size: 5rem; }

  .cta-band, .guarantee {
    padding: 60px 28px;
  }

  .book-call { padding: 36px 24px; box-shadow: 8px 8px 0 var(--gold); }

  .value-stack { padding: 28px 20px; }
  .value-stack .today { margin: 24px -20px -28px; padding: 20px 24px; flex-direction: column; gap: 8px; text-align: center; }
  .value-stack .total .label { font-size: 1.1rem; }
  .value-stack .total .value { font-size: 1.7rem; }
  .value-stack .row { flex-direction: column; align-items: flex-start; gap: 4px; }

  .pricing-grid { gap: 20px; }
  .price-card.featured { transform: scale(1); animation: none; }
  .price-card { padding: 36px 28px; }
  .price-card .price { font-size: 3.5rem; }

  .feature-card { padding: 32px 24px; }
  .phase-card { padding: 32px 24px; }
  .perk-card { padding: 28px 22px; }

  .testi-card { padding: 30px 26px; }

  .section-head { margin-bottom: 56px; }
  .section-head p { font-size: 1.05rem; }

  .countdown { gap: 10px; }
  .countdown .unit { padding: 14px 18px; min-width: 84px; }
  .countdown .unit .num { font-size: 2.2rem; }

  .ticker-item { font-size: 1.05rem; gap: 36px; }
  .ticker-track { gap: 36px; }
}

@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .section { padding: 60px 0; }

  .nav-inner { padding: 10px 16px; }
  .nav-logo img { height: 40px; }
  .nav-logo-text { display: none; }
  .nav-cta .btn { padding: 10px 14px; font-size: 0.75rem; }
  .nav-account { padding: 8px 12px; font-size: 0.7rem; }
  .nav-toggle { width: 42px; height: 42px; border-radius: 10px; }

  .hero { padding: 36px 0 60px; }
  .hero-tag, .creator-pulse { font-size: 0.72rem; padding: 8px 14px; }
  .hero h1 { font-size: clamp(2.4rem, 11vw, 4rem); }
  .hero .lead { font-size: 1rem; padding: 0 4px; }

  .hero-actions { flex-direction: column; gap: 12px; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .btn-xl { font-size: 1rem; padding: 18px 24px; }

  .hero-powered { font-size: 0.72rem; }
  .hero-marquee { gap: 24px; }
  .hero-marquee-track { gap: 24px; font-size: 0.85rem; }

  h1, .h1 { font-size: clamp(2.4rem, 11vw, 4rem); }
  h2, .h2 { font-size: clamp(1.9rem, 8vw, 3rem); }
  h3, .h3 { font-size: clamp(1.4rem, 6vw, 2rem); }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer { padding: 60px 0 24px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  .countdown { gap: 8px; }
  .countdown .unit { padding: 12px 14px; min-width: 72px; }
  .countdown .unit .num { font-size: 1.8rem; }
  .countdown .unit .label { font-size: 0.65rem; }

  .product-card { padding: 32px 22px; }
  .product-card h3 { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .product-card p { font-size: 1rem; }
  .product-card .benefits li { font-size: 0.92rem; }

  .price-card { padding: 32px 24px; }
  .price-card h3 { font-size: 1.4rem; }
  .price-card .price { font-size: 3rem; }
  .price-card .price-tag { top: 18px; right: 18px; font-size: 0.7rem; padding: 6px 10px; }

  .vcw-deal { padding: 40px 24px; }
  .vcw-deal .deal-price .now { font-size: 4.2rem; }
  .vcw-deal h2 { font-size: clamp(1.8rem, 7vw, 2.5rem); }

  .cta-band, .guarantee { padding: 50px 22px; }
  .guarantee h2, .cta-band h2 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .guarantee p, .cta-band p { font-size: 1rem; }
  .guarantee-badge { font-size: 0.75rem; padding: 10px 18px; }

  .book-call { padding: 32px 22px; }
  .book-call .meta { flex-wrap: wrap; }
  .book-call h3 { font-size: 1.6rem; }
  .book-call p { font-size: 1rem; }

  .testi-card .quote { font-size: 3.5rem; }
  .feature-card .icon { width: 48px; height: 48px; font-size: 1.3rem; }

  .phase-card .phase-num { font-size: 3rem; }
  .perk-card .num { font-size: 4rem; }

  .creator-phones { gap: 16px; }

  .faq-item summary { font-size: 0.9rem; padding: 20px 22px; padding-right: 50px; }
  .faq-item summary::after { font-size: 1.6rem; right: 22px; position: absolute; }
  .faq-item { position: relative; }
  .faq-item .faq-body { padding: 0 22px 22px; font-size: 0.95rem; }

  .toast { left: 12px; right: 12px; max-width: none; bottom: 16px; padding: 12px 16px; font-size: 0.85rem; }

  .ticker { padding: 14px 0; }
  .ticker-item { font-size: 0.95rem; gap: 24px; }
  .ticker-item::after { font-size: 1.2rem; }

  .float-stars { display: none; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: clamp(2rem, 10vw, 3.2rem); }
  .nav-cta { gap: 8px; }
  .nav-cta .btn { padding: 9px 12px; font-size: 0.7rem; letter-spacing: 0.02em; }
  .price-card .price { font-size: 2.6rem; }
  .countdown .unit { padding: 10px 10px; min-width: 64px; }
}

/* ===== First-time paywall ===== */
.paywall {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(255, 182, 39, 0.18), transparent 60%),
    radial-gradient(1000px 500px at 80% 100%, rgba(20, 181, 165, 0.18), transparent 60%),
    linear-gradient(135deg, #1A0B3D 0%, #2D1B5C 100%);
  overflow-y: auto;
  padding: 40px 20px;
  -webkit-overflow-scrolling: touch;
}
.paywall-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  text-align: center;
}
.paywall-logo {
  height: 48px;
  display: block;
  margin: 0 auto 14px;
}
.paywall-badge {
  display: inline-block;
  background: var(--purple-900);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.paywall-card h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: var(--purple-900);
  line-height: 1.05;
  margin: 0 0 10px;
}
.paywall-sub {
  font-size: 1rem;
  color: var(--gray-dark);
  margin: 0 0 28px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.paywall-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}
.paywall-plan {
  text-align: left;
  background: var(--off-white);
  border: 2px solid rgba(91,45,142,0.15);
  border-radius: 16px;
  padding: 20px;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
  position: relative;
  overflow: hidden;
}
.paywall-plan:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(255, 182, 39, 0.25);
}
.paywall-plan.paywall-plan-1 {
  background: linear-gradient(135deg, rgba(255,182,39,0.12), rgba(255,182,39,0.04));
  border-color: var(--gold);
}
.paywall-plan .pp-eyebrow {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  color: var(--gold-deep);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.paywall-plan-2 .pp-eyebrow { color: var(--teal-deep); }
.paywall-plan-3 .pp-eyebrow { color: var(--purple-700); }
.paywall-plan-4 .pp-eyebrow { color: #B8801A; }
.paywall-plan-4 {
  background: linear-gradient(135deg, rgba(20,181,165,0.10), rgba(91,45,142,0.06));
  border: 2px dashed rgba(20,181,165,0.55);
}
.paywall-plan-4:hover {
  border-color: var(--teal-deep);
  box-shadow: 0 12px 30px rgba(20,181,165,0.22);
}
.paywall-plan-4 .pp-cta {
  background: var(--teal-deep);
  color: #fff;
}

/* Financing tile — lives INSIDE the paywall-grid. Spans 2 columns on wide
   screens so the 4 normal tiles + this double tile fit snugly into a 3x2
   layout (or 6 column-slots). Falls back to a single column on narrow. */
.paywall-plan-finance {
  grid-column: span 2;
  text-align: left;
  background: linear-gradient(135deg, #1A0B3D 0%, #3D2785 60%, #5B2D8E 100%);
  border: 2px solid rgba(255,182,39,0.45);
  color: #fff;
  box-shadow: 0 12px 30px rgba(26, 11, 61, 0.35);
}
.paywall-plan-finance:hover {
  border-color: var(--gold);
  box-shadow: 0 18px 40px rgba(255, 182, 39, 0.25);
}
/* On narrow screens the grid collapses to one column — make the finance
   tile collapse with everything else, otherwise it stays a "double" and
   looks weird. */
@media (max-width: 540px) {
  .paywall-plan-finance { grid-column: span 1; }
}

/* The financing modal must render above the paywall overlay (z-index 10000).
   Without this bump the modal opens but is hidden behind the paywall and
   "nothing appears to happen" on click. */
#financingModal { z-index: 10010; }
.paywall-plan .pp-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--purple-900);
  margin-bottom: 4px;
}
.paywall-plan .pp-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--purple-900);
  line-height: 1;
  margin-bottom: 6px;
}
.paywall-plan .pp-price small {
  font-size: 0.55em;
  opacity: 0.7;
}
.paywall-plan .pp-blurb {
  font-size: 0.85rem;
  color: var(--gray-dark);
  line-height: 1.45;
  margin-bottom: 14px;
}
.paywall-plan .pp-cta {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--purple-900);
  background: var(--gold);
  display: inline-block;
  padding: 8px 14px;
  border-radius: 8px;
}
.paywall-divider {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--gray-dark);
  margin: 18px 0 8px;
}
.paywall-card select {
  width: 100%;
  max-width: 420px;
  padding: 12px 14px;
  font-size: 0.95rem;
  border-radius: 10px;
  border: 1.5px solid rgba(91,45,142,0.2);
  background: var(--white);
  margin-bottom: 24px;
}
.paywall-footer {
  font-size: 0.85rem;
  color: var(--gray-dark);
}
.paywall-footer a {
  color: var(--purple-800);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1.5px solid var(--gold);
}
.paywall-footer a:hover { color: var(--gold-deep); }
@media (max-width: 600px) {
  .paywall-card { padding: 30px 22px; border-radius: 18px; }
  .paywall-grid { gap: 10px; }
}

/* ===== Customer deliverable tiles ===== */
a.deliverable-tile > div { transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s; }
a.deliverable-tile:hover > div {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 4px 4px 0 rgba(255, 182, 39, 0.45);
}

/* ===== Urgent INTAKE REQUIRED banner ===== */
.intake-urgent {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #C0392B 0%, #7c1d10 100%);
  color: #fff;
  border-radius: 16px;
  padding: 26px 28px;
  margin-bottom: 28px;
  box-shadow: 0 12px 40px rgba(192, 57, 43, 0.45);
  animation: intakeUrgentPulse 2s ease-in-out infinite;
}
.intake-urgent .iu-stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 215, 0, 0.10) 0 18px,
    transparent 18px 36px
  );
  pointer-events: none;
  animation: intakeStripeSlide 3s linear infinite;
}
.intake-urgent .iu-content { position: relative; z-index: 1; }
.iu-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--purple-900);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
  animation: intakeBadgeBlink 1.2s ease-in-out infinite;
}
.iu-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2rem);
  margin: 0 0 8px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.25);
}
.iu-body {
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 0 18px;
  max-width: 620px;
  opacity: 0.96;
}
.iu-body strong { color: var(--gold); }
.iu-stats {
  display: flex;
  gap: 22px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.iu-stat {
  background: rgba(0,0,0,0.22);
  border-left: 3px solid var(--gold);
  padding: 10px 16px;
  border-radius: 8px;
  min-width: 100px;
}
.iu-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}
.iu-stat-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  opacity: 0.85;
  margin-top: 4px;
}
.iu-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.iu-cta {
  background: var(--gold);
  color: var(--purple-900);
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  padding: 14px 26px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 6px 24px rgba(255, 182, 39, 0.55);
  animation: intakeCtaShake 1.4s ease-in-out infinite;
  display: inline-block;
}
.iu-cta:hover { transform: translateY(-2px); }
.iu-secondary {
  color: #fff;
  opacity: 0.9;
  text-decoration: underline;
  font-size: 0.9rem;
}
.iu-secondary:hover { opacity: 1; color: var(--gold); }
@keyframes intakeUrgentPulse {
  0%, 100% { box-shadow: 0 12px 40px rgba(192, 57, 43, 0.45); }
  50%      { box-shadow: 0 12px 60px rgba(192, 57, 43, 0.85), 0 0 0 4px rgba(255, 182, 39, 0.35); }
}
@keyframes intakeStripeSlide {
  0%   { background-position: 0 0; }
  100% { background-position: 51px 51px; }
}
@keyframes intakeBadgeBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.7; transform: scale(1.04); }
}
@keyframes intakeCtaShake {
  0%, 100% { transform: translate(0, 0); }
  20%      { transform: translate(-2px, 0); }
  40%      { transform: translate(2px, 0); }
  60%      { transform: translate(-2px, 0); }
  80%      { transform: translate(2px, 0); }
}
@media (max-width: 600px) {
  .intake-urgent { padding: 22px 18px; }
  .iu-stats { gap: 10px; }
  .iu-stat { min-width: 0; flex: 1; padding: 8px 12px; }
  .iu-cta { width: 100%; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  .intake-urgent, .iu-stripes, .iu-badge, .iu-cta { animation: none; }
}

/* ===== Bounty resource card — cowboy WANTED-poster vibe ===== */
.resource-card.resource-bounty {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 220, 130, 0.55), rgba(255, 182, 39, 0.28)),
    repeating-linear-gradient(
      45deg,
      transparent 0 8px,
      rgba(91, 45, 142, 0.04) 8px 9px
    );
  border: 2px dashed var(--gold-deep);
  overflow: hidden;
}
.resource-card.resource-bounty::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 12px;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: bountyShine 3.2s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.resource-card.resource-bounty > * { position: relative; z-index: 1; }
.resource-card.resource-bounty:hover {
  box-shadow: 4px 4px 0 var(--purple-900);
  transform: translateY(-3px) rotate(-0.4deg);
}
.bounty-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--purple-900);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 0 12px 0 10px;
  z-index: 2;
}
@keyframes bountyShine {
  0%, 100% { background-position: 200% 0; }
  50%      { background-position: -100% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .resource-card.resource-bounty::before { animation: none; }
}

/* ===== "Add Another Project" — green, shiny, flashing, hard-to-miss ===== */
.add-project-shiny {
  position: relative;
  padding: 16px 28px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  border-radius: 14px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, #1ed760 0%, #14b85a 45%, #0d8f47 100%) !important;
  color: #fff !important;
  border: none !important;
  text-shadow: 0 1px 1px rgba(0,0,0,0.2);
  box-shadow:
    0 0 0 2px rgba(30, 215, 96, 0.45),
    0 10px 28px rgba(20, 184, 90, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  animation: addProjectGlow 1.2s ease-in-out infinite;
  transform: translateZ(0);
}
.add-project-shiny::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -60%;
  width: 50%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.85) 50%,
    transparent 100%
  );
  transform: skewX(-22deg);
  animation: addProjectShine 2.4s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.add-project-shiny:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 3px rgba(30, 215, 96, 0.7),
    0 14px 36px rgba(20, 184, 90, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
@keyframes addProjectGlow {
  0%, 100% {
    box-shadow:
      0 0 0 2px rgba(30, 215, 96, 0.45),
      0 10px 28px rgba(20, 184, 90, 0.55),
      inset 0 1px 0 rgba(255, 255, 255, 0.35);
    filter: brightness(1);
  }
  50% {
    box-shadow:
      0 0 0 6px rgba(30, 215, 96, 0.85),
      0 16px 42px rgba(30, 215, 96, 0.9),
      inset 0 1px 0 rgba(255, 255, 255, 0.55);
    filter: brightness(1.18);
  }
}
@keyframes addProjectShine {
  0%   { left: -60%; }
  60%  { left: 130%; }
  100% { left: 130%; }
}
@media (max-width: 600px) {
  .add-project-shiny { padding: 14px 20px; font-size: 0.85rem; width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .add-project-shiny { animation: none; }
  .add-project-shiny::after { display: none; }
}
