:root {
  --sage: #8DAA91;
  --sage-light: #C4D3C6;
  --sage-dark: #6D8A71;
  --rose: #D4A5A5;
  --cream: #F9F7F2;
  --charcoal: #2A2A2A;
  --grey: #5A5A5A;
  --gold: #D4AF37;
  --border: rgba(42, 42, 42, 0.08);
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
  --shadow-lg: 0 24px 48px rgba(0,0,0,0.08);
  --shadow-premium: 0 40px 100px rgba(0, 0, 0, 0.15);
  --radius-sm: 12px;
  --radius-lg: 24px;
  --serif: "Fraunces", Georgia, serif;
  --serif-tracking: -0.02em;
  --sans: "Inter Tight", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Base Texture & Mesh */
.noise-overlay {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
  z-index: 9999;
}

.mesh-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.mesh-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
}

.c1 { width: 600px; height: 600px; background: var(--sage); top: -200px; right: -100px; }
.c2 { width: 500px; height: 500px; background: var(--rose); bottom: -100px; left: -100px; }
.c3 { width: 400px; height: 400px; background: var(--gold); top: 30%; left: 10%; opacity: 0.15; }

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 10px 14px 10px 24px;
  border-radius: 999px;
  box-shadow: var(--shadow-premium);
  display: flex;
  align-items: center;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-cta--visible { transform: translateX(-50%) translateY(0); }

.sticky-cta span { font-weight: 700; font-size: 14px; letter-spacing: -0.01em; }

/* ================== TYPOGRAPHY ================== */
.text-gradient {
  background: linear-gradient(135deg, var(--sage-dark), var(--rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(141, 170, 145, 0.15);
  border: 1px solid rgba(141, 170, 145, 0.3);
  color: var(--sage-dark);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  animation: float 4s ease-in-out infinite;
}

/* ================== BUTTONS ================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.magnetic {
  transition: transform 0.1s linear;
}

.btn--primary {
  background: var(--charcoal);
  color: #fff;
  border: 1px solid var(--charcoal);
  box-shadow: 0 8px 24px rgba(42, 42, 42, 0.25);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(42, 42, 42, 0.35);
  background: #1a1a1a;
}

.btn--secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid rgba(42,42,42,0.2);
}

.btn--secondary:hover {
  background: rgba(42,42,42,0.05);
  border-color: rgba(42,42,42,0.4);
}

.btn--small {
  padding: 8px 20px;
  font-size: 0.9rem;
}

.btn--large {
  padding: 18px 36px;
  font-size: 1.1rem;
}

/* ================== NAVIGATION ================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(249, 247, 242, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background-image: url('favicon.jpg');
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.brand__text {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: var(--serif-tracking);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  text-decoration: none;
  color: var(--grey);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav__link:hover {
  color: var(--charcoal);
}

@media (max-width: 768px) {
  .nav__links .nav__link {
    display: none;
  }
}

/* ================== HERO ================== */
.hero {
  position: relative;
  padding: 200px 24px 120px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__bg-glow {
  position: absolute;
  top: 0;
  left: 20%;
  width: 60vw;
  height: 60vh;
  background: radial-gradient(circle, rgba(212, 165, 165, 0.2) 0%, rgba(141, 170, 145, 0.15) 40%, transparent 70%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}

.hero__content {
  max-width: 580px;
  position: relative;
  z-index: 2;
}

.hero__title {
  font-family: var(--serif);
  font-size: 5.5rem;
  line-height: 1.05;
  margin-bottom: 32px;
  letter-spacing: -0.04em;
}

.hero__subtitle {
  font-size: 1.45rem;
  color: var(--grey);
  margin-bottom: 48px;
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.hero__trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trust-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.hero__trust span { font-size: 13px; font-weight: 700; opacity: 0.6; }

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.hero__main-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero__note {
  font-size: 0.85rem;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.hero__note::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: #4CAF50;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(76, 175, 80, 0.6);
  animation: pulseLight 2s infinite;
}

@keyframes pulseLight {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

/* Mockup UI */
.hero__mockup {
  position: relative;
  perspective: 1000px;
}

.mockup-frame {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform 0.5s ease;
}

.mockup-frame:hover {
  transform: rotateY(-2deg) rotateX(2deg);
}

.mockup-header {
  background: #f1f1f1;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e0e0e0;
}
.mockup-dots span:nth-child(1) { background: #FF5F56; }
.mockup-dots span:nth-child(2) { background: #FFBD2E; }
.mockup-dots span:nth-child(3) { background: #27C93F; }

.mockup-body {
  display: grid;
  grid-template-columns: 320px 1fr;
  height: 480px;
}

.mockup-page {
  background: #fafafa;
  position: relative;
  border-left: 1px solid var(--border);
}

.mockup-sidebar {
  background: var(--cream);
  padding: 16px;
  position: relative;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.sidebar-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--sage), var(--rose));
}

.sidebar-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 14px;
}

.sidebar-status {
  font-size: 10px;
  color: var(--sage-dark);
}

.sidebar-product {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  background: white;
  padding: 12px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.sidebar-img {
  width: 44px; height: 44px;
  background: #f0f0f0;
  border-radius: 8px;
}

.sidebar-pname {
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 700;
}

.sidebar-pbrand {
  font-size: 10px;
  color: var(--grey);
  margin-top: 4px;
}

.sidebar-tabs {
  display: flex;
  gap: 6px;
  margin-top: 16px;
}

.sidebar-tab {
  flex: 1;
  text-align: center;
  font-size: 10px;
  padding: 6px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--border);
}

.sidebar-tab--active {
  background: rgba(141, 170, 145, 0.2);
  border-color: rgba(141, 170, 145, 0.5);
  color: var(--sage-dark);
  font-weight: 600;
}

.sidebar-card {
  margin-top: 16px;
  background: white;
  padding: 16px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.sidebar-line {
  height: 20px;
  background: #f5f5f5;
  border-radius: 4px;
  margin-bottom: 10px;
  font-size: 10px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  color: var(--grey);
}
.w-80 { width: 80%; }
.w-60 { width: 60%; }

.sidebar-btn-shimmer {
  margin-top: 16px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e0e0e0 25%, #f5f5f5 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite linear;
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
  }
  .hero__content {
    margin: 0 auto;
  }
  .hero__cta {
    align-items: center;
  }
  .mockup-frame {
    transform: none;
    max-width: 600px;
    margin: 40px auto 0;
  }
}

/* ================== FEATURES ================== */
.features {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

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

.feature-card {
  background: #fff;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #fff;
}

.fi-1 { background: linear-gradient(135deg, var(--sage), var(--sage-dark)); }
.fi-2 { background: linear-gradient(135deg, var(--rose), #b87b7b); }
.fi-3 { background: linear-gradient(135deg, var(--gold), #a8882b); }

.feature-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 12px;
  letter-spacing: var(--serif-tracking);
}

.feature-desc {
  color: var(--grey);
  line-height: 1.6;
}

/* ================== VIDEO INTERACTION SECTIONS ================== */
.section-video {
  padding: 120px 24px;
  overflow: hidden;
}

.section-video__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.section-video--pricing.reverse .section-video__inner {
  flex-direction: row-reverse;
}

.section-video__content {
  flex: 1;
}

.section-video__content h2 {
  font-family: var(--serif);
  font-size: 3.5rem;
  line-height: 1.1;
  margin: 16px 0;
  letter-spacing: -0.02em;
}

.feature-bullets {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-bullets li {
  font-size: 1.1rem;
  font-weight: 600;
  padding-left: 28px;
  position: relative;
}

.feature-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 800;
}

.gsap-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

/* ================== METRICS SECTION (DESIRE) ================== */
.section-metrics {
  padding: 140px 24px;
}

.section-metrics__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.metrics-header {
  text-align: center;
  margin-bottom: 80px;
}

.metrics-header h2 {
  font-family: var(--serif);
  font-size: 4.5rem;
  line-height: 1.1;
  margin-top: 24px;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

.metrics-intro {
  font-size: 1.25rem;
  opacity: 0.6;
  max-width: 600px;
  margin: 24px auto 0;
  color: var(--charcoal);
}

.advantage-stack {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.advantage-card {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 40px;
  padding: 60px;
  display: flex;
  align-items: center;
  gap: 80px;
  transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.advantage-card:hover {
  background: #fff;
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}

.advantage-card__comparison {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
  min-width: 440px;
}

.comp-side {
  flex: 1;
  text-align: center;
}

.comp-tag {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  opacity: 0.4;
}

.comp-side--gain .comp-tag {
  opacity: 0.8;
  color: var(--sage);
}

.comp-value {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 12px;
}

.comp-side--pain .comp-value {
  opacity: 0.15;
  color: var(--charcoal);
  text-decoration: line-through;
}

.comp-side p {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.4;
  color: var(--charcoal);
}

.comp-divider {
  font-size: 2rem;
  opacity: 0.2;
  color: var(--charcoal);
}

.advantage-card__info {
  flex: 1;
}

.advantage-card__info h3 {
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--charcoal);
}

.advantage-card__info p {
  font-size: 1.15rem;
  line-height: 1.6;
  opacity: 0.6;
  color: var(--charcoal);
}

@media (max-width: 1100px) {
  .advantage-card { flex-direction: column; gap: 48px; padding: 48px; }
  .advantage-card__comparison { min-width: 100%; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 48px; }
  .advantage-card__info { text-align: center; }
}

@media (max-width: 600px) {
  .comp-value { font-size: 3rem; }
  .comp-side p { font-size: 0.8rem; }
  .advantage-card__info h3 { font-size: 1.8rem; }
}

/* ================== PRICING SECTION ================== */
.section-pricing {
  padding: 120px 24px;
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-pricing__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.badge--pricing {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
}

.pricing-cards {
  display: flex;
  gap: 32px;
  margin-top: 60px;
  justify-content: center;
}

.pricing-card {
  flex: 1;
  max-width: 400px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.free-tier {
  background: #ffffff;
}

.pricing-card.popular {
  border: 2px solid var(--charcoal);
  box-shadow: var(--shadow-premium);
  transform: translateY(-16px);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--charcoal);
  color: white;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 999px;
}

.pricing-card h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--charcoal);
}

.pricing-card .price {
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price .currency { font-size: 1.5rem; font-weight: 700; color: var(--charcoal); }
.price .amount { font-size: 3.5rem; font-weight: 800; color: var(--charcoal); letter-spacing: -0.02em; line-height: 1; }
.price .period { font-size: 1rem; color: var(--grey); font-weight: 500; }

.pricing-desc {
  font-size: 1.05rem;
  color: var(--grey);
  margin-bottom: 32px;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
  flex: 1;
}

.pricing-features li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 1rem;
  color: var(--charcoal);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 800;
}

.popular .pricing-features li::before {
  color: var(--gold);
}

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

@media (max-width: 768px) {
  .pricing-cards { flex-direction: column; align-items: center; }
  .pricing-card.popular { transform: none; }
}

/* ================== BOTTOM CTA (ACTION) ================== */
.bottom-cta {
  padding: 160px 24px;
  text-align: center;
}

.bottom-cta__inner {
  max-width: 800px;
  margin: 0 auto;
}

.bottom-cta h2 {
  font-family: var(--serif);
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.bottom-cta p {
  font-size: 1.5rem;
  color: var(--grey);
  margin-bottom: 48px;
}

@media (max-width: 968px) {
  .hero__title { font-size: 3.5rem; }
  .section-metrics { margin: 0; border-radius: 0; }
  .metrics-grid { flex-direction: column; gap: 60px; }
  .bottom-cta h2 { font-size: 3rem; }
  .sticky-cta { display: none; }
}

.section-video__content p {
  font-size: 1.25rem;
  color: var(--grey);
  line-height: 1.6;
}

.section-video__visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-container {
  position: relative;
  width: 320px;
  height: 480px;
  background: white;
  border-radius: 40px;
  border: 10px solid var(--charcoal);
  box-shadow: 0 40px 100px rgba(0,0,0,0.15);
  overflow: hidden;
  background: var(--cream);
}

.mockup-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.mockup-play::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--charcoal);
  margin-left: 4px;
}

.mockup-container:hover .mockup-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Mock Extension Panel */
.mock-panel {
  width: 100%;
  height: 100%;
  background: var(--cream);
  display: flex;
  flex-direction: column;
}

.mock-header {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mock-brand { font-family: var(--serif); font-weight: 800; font-size: 14px; }
.mock-status { font-size: 10px; opacity: 0.6; text-transform: uppercase; letter-spacing: 0.05em; }

.mock-tabs {
  display: flex;
  padding: 8px 16px;
  gap: 8px;
  background: rgba(42, 42, 42, 0.02);
}

.m-tab {
  flex: 1;
  padding: 8px;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: white;
  opacity: 0.5;
}

.m-tab.active { opacity: 1; border-color: var(--sage); background: rgba(141, 170, 145, 0.1); color: var(--sage-dark); }

.mock-body { padding: 16px; flex: 1; }

/* Discovery Interaction */
.mock-pcard {
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.mock-pimg { width: 48px; height: 48px; background: #eee; border-radius: 8px; animation: pulseFade 2s infinite; }
.mock-pmeta { flex: 1; }
.mock-pname { font-family: var(--serif); font-size: 14px; font-weight: 800; }
.mock-pbrand { font-size: 11px; opacity: 0.6; }

.mock-kv {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
}

/* Pricing Interaction */
.mock-list { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.mock-row {
  padding: 12px;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  position: relative;
}

.mock-row--best {
  border-color: var(--sage);
  background: rgba(141, 170, 145, 0.05);
  animation: pulseBorder 2.5s infinite;
}

.m-badge {
  position: absolute;
  top: -8px;
  right: 12px;
  background: var(--gold);
  color: white;
  font-size: 8px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 99px;
  text-transform: uppercase;
}

/* Ingredients Interaction */
.mock-summary-type {
  font-size: 12px;
  line-height: 1.5;
  color: var(--charcoal);
  border-left: 3px solid var(--sage);
  padding-left: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  white-space: nowrap;
  animation: typing 4s steps(40) infinite;
}

.mock-chips { display: flex; gap: 6px; }
.m-chip { font-size: 9px; padding: 4px 8px; background: #eee; border-radius: 99px; font-weight: 700; }

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes pulseFade {
  0% { opacity: 1 }
  50% { opacity: 0.5 }
  100% { opacity: 1 }
}

@keyframes pulseBorder {
  0% { box-shadow: 0 0 0 0 rgba(141, 170, 145, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(141, 170, 145, 0); }
  100% { box-shadow: 0 0 0 0 rgba(141, 170, 145, 0); }
}

@media (max-width: 968px) {
  .section-video__inner { flex-direction: column; text-align: center; gap: 40px; }
  .section-video__content h2 { font-size: 2.5rem; }
}

/* ================== BOTTOM CTA ================== */
.bottom-cta {
  padding: 80px 24px 120px;
}

.bottom-cta__inner {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--sage-light), var(--rose));
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  text-align: center;
  color: var(--charcoal);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.bottom-cta__inner h2 {
  font-family: var(--serif);
  font-size: 3rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.bottom-cta__inner p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

/* ================== FOOTER ================== */
.footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}

.footer__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.brand__icon--mono {
  filter: grayscale(100%) brightness(1.2);
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  color: var(--grey);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer__links a:hover {
  color: var(--charcoal);
  text-decoration: underline;
}

/* ================== ANIMATIONS ================== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

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

.tooltip-anim {
  position: relative;
  overflow: hidden;
}
.tooltip-anim::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

/* ================== MOBILE OPTIMIZATION ================== */
@media (max-width: 968px) {
  .hero { padding: 140px 24px 60px; grid-template-columns: 1fr; gap: 40px; text-align: left; }
  .hero__title { font-size: 3.2rem; }
  .hero__subtitle { font-size: 1.2rem; margin-bottom: 32px; }
  .hero__main-cta { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero__actions { align-items: flex-start; }
  
  .section-video__inner { flex-direction: column !important; gap: 48px; text-align: left; }
  .section-video__content h2 { font-size: 2.5rem; }
  .section-video__content p { font-size: 1.1rem; }
  
  .section-metrics { margin: 0; border-radius: 0; padding: 80px 24px; }
  .metrics-header h2 { font-size: 2.8rem; }
  .metrics-grid { flex-direction: column; gap: 48px; align-items: flex-start; }
  .metric-card { text-align: left; max-width: 100%; }
  .metric-visual { justify-content: flex-start; }
  .metric-value { font-size: 3.5rem; }
  .metric-label { font-size: 1.1rem; }
  
  .bottom-cta { padding: 100px 24px; text-align: left; }
  .bottom-cta__inner { margin: 0; }
  .bottom-cta h2 { font-size: 3rem; }
  .bottom-cta p { font-size: 1.2rem; }
  .bottom-cta__actions { display: flex; flex-direction: column; gap: 16px; }

  .sticky-cta { 
    bottom: 24px; 
    padding: 10px 16px; 
    width: calc(100% - 48px); 
    justify-content: space-between; 
    gap: 12px;
    border-radius: 20px;
  }
  .sticky-cta span { font-size: 13px; }
}
