@import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,400;0,500;1,400&family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600;1,700&display=swap');

:root {
  --ink: #0d121f;
  --ink-soft: #151b2e;
  --ink-card: #1d243c;
  --cloud: #fbfdff;
  --cloud-pure: #ffffff;
  --cloud-card: #f4f7fc;
  --muted: #647291;
  --muted-light: #9aa7c7;
  --violet: #613deb;
  --violet-dark: #4d2cdb;
  --violet-light: #7b59ff;
  --violet-glow: rgba(97, 61, 235, 0.28);
  --spark: #29bce3;
  --spark-light: #5eedb8;
  --mint: #10b981;
  --mint-bg: #e6fbf2;
  --peach: #ff7d59;
  --peach-bg: #fff2ed;
  --lavender: #ded4ff;
  --lavender-bg: #f3efff;
  --line: rgba(23, 28, 46, 0.09);
  --line-strong: rgba(23, 28, 46, 0.16);
  --shadow-sm: 0 4px 12px rgba(13, 18, 31, 0.04);
  --shadow-md: 0 14px 34px rgba(13, 18, 31, 0.08);
  --shadow-lg: 0 24px 60px rgba(13, 18, 31, 0.12);
  --shadow-purple: 0 20px 45px rgba(97, 61, 235, 0.16);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  background-color: var(--cloud);
  color: var(--ink);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Scroll progress indicator */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--spark), var(--violet), var(--mint));
  z-index: 1000;
  width: 0%;
  transition: width 0.1s ease-out;
}

@supports (animation-timeline: scroll()) {
  .scroll-progress-bar {
    width: 100%;
    transform-origin: 0 50%;
    animation: scroll-progress-anim linear;
    animation-timeline: scroll();
  }
  @keyframes scroll-progress-anim {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
  }
}

/* Site Layout Shell */
.site-shell {
  position: relative;
  overflow-x: clip;
  min-height: 100vh;
}

.wrap {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

/* Top Animated Banner */
.top-banner {
  background: linear-gradient(90deg, #181436 0%, #291b5c 40%, #152244 100%);
  color: #ffffff;
  padding: 10px 16px;
  font-size: 13px;
  position: relative;
  z-index: 90;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.top-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  animation: banner-shine 7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes banner-shine {
  0% { left: -100%; }
  35%, 100% { left: 200%; }
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(97, 61, 235, 0.5);
  border: 1px solid rgba(158, 131, 255, 0.4);
  padding: 2px 9px;
  border-radius: 999px;
  font: 600 11px 'DM Mono', monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--spark-light);
  box-shadow: 0 0 10px var(--spark-light);
  animation: pulse-dot-anim 1.8s ease-in-out infinite;
}

@keyframes pulse-dot-anim {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.35); opacity: 1; box-shadow: 0 0 14px var(--mint); }
}

.banner-text {
  font-weight: 500;
  color: #e5e9f5;
  display: flex;
  align-items: center;
  gap: 8px;
}

.banner-link {
  color: var(--spark-light);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.banner-link:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.banner-close-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 4px 8px;
  font-size: 16px;
  line-height: 1;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.banner-close-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* Sticky Navigation */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(251, 253, 255, 0.85);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s ease;
}

.nav-scrolled {
  box-shadow: 0 10px 30px rgba(13, 18, 31, 0.06);
  background: rgba(251, 253, 255, 0.95);
}

.nav {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 22px;
  color: var(--ink);
  transition: transform 0.2s ease;
}

.brand:hover {
  transform: scale(1.02);
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: var(--violet);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px var(--violet-glow);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand:hover .brand-mark {
  transform: rotate(6deg) scale(1.05);
}

.brand-mark img {
  width: 24px;
  height: 24px;
  display: block;
}

.brand-text {
  font-weight: 800;
  letter-spacing: -0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.nav-link-item {
  position: relative;
  padding: 6px 2px;
  transition: color 0.2s ease;
}

.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--violet);
  transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.nav-link-item:hover {
  color: var(--ink);
}

.nav-link-item:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-rating-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #3b4868;
  background: #edf1fa;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(23, 28, 46, 0.06);
}

.nav-rating-pill .stars {
  color: #eab308;
  font-size: 11px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  background: var(--ink);
  color: #ffffff;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(13, 18, 31, 0.15);
}

.nav-cta:hover {
  background: var(--violet);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--violet-glow);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* Mobile Drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 84px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  z-index: 75;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-drawer.open {
  display: flex;
}

.mobile-nav-drawer a {
  font-size: 16px;
  font-weight: 700;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 68px 0 96px;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  align-items: center;
  gap: 56px;
  min-height: 640px;
}

.bg-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

.glow-orb-1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(97, 61, 235, 0.35) 0%, rgba(97, 61, 235, 0) 70%);
  top: -120px;
  right: -50px;
  animation: orb-float-1 14s ease-in-out infinite alternate;
}

.glow-orb-2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(41, 188, 227, 0.3) 0%, rgba(41, 188, 227, 0) 70%);
  bottom: 0;
  left: -80px;
  animation: orb-float-2 18s ease-in-out infinite alternate;
}

@keyframes orb-float-1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, 60px) scale(1.15); }
}

@keyframes orb-float-2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, -40px) scale(1.2); }
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #ffffff;
  border: 1px solid rgba(97, 61, 235, 0.2);
  box-shadow: 0 4px 16px rgba(97, 61, 235, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  font: 600 12px 'DM Mono', monospace;
  letter-spacing: 0.06em;
  color: var(--violet);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge-pill .pulse-indicator {
  position: relative;
  width: 8px;
  height: 8px;
}

.hero-badge-pill .pulse-indicator::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--violet);
  opacity: 0.4;
  animation: beacon-ring 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.hero-badge-pill .pulse-indicator::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--violet);
}

@keyframes beacon-ring {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.8); opacity: 0; }
}

.hero h1 {
  font-size: clamp(48px, 5.8vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.065em;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 24px;
}

.hero h1 em {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--violet);
  font-style: italic;
  letter-spacing: -0.05em;
  position: relative;
  display: inline-block;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(97, 61, 235, 0.15);
  border-radius: 3px;
  z-index: -1;
}

.hero-lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.button-primary {
  background: var(--violet);
  color: #ffffff;
  box-shadow: 0 10px 25px var(--violet-glow);
}

.button-primary:hover {
  background: var(--violet-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 35px var(--violet-glow);
}

.button-secondary {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.button-secondary:hover {
  background: var(--cloud-card);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.shopify-button-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  display: grid;
  place-items: center;
  margin-left: -8px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.avatar-stack span:first-child {
  margin-left: 0;
  background: #e6fbf2;
  color: #0b784f;
}

.avatar-stack span:nth-child(2) {
  background: #f3efff;
  color: var(--violet);
}

.avatar-stack span:nth-child(3) {
  background: #e5f8ff;
  color: #0284c7;
}

.avatar-stack span:nth-child(4) {
  background: #fff0eb;
  color: #ea580c;
}

.avatar-stack span:last-child {
  background: var(--ink);
  color: #ffffff;
}

.proof-copy {
  display: grid;
  gap: 2px;
}

.proof-stars {
  color: #f59e0b;
  font-size: 13px;
  letter-spacing: 2px;
}

.proof-text {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.proof-text strong {
  color: var(--ink);
}

/* Hero Art - Interactive Coupon Wallet Simulator */
.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 540px;
}

.art-orbit-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.orbit-1 {
  width: 520px;
  height: 520px;
  border: 1px dashed rgba(97, 61, 235, 0.22);
  animation: orbit-rotate 40s linear infinite;
}

.orbit-2 {
  width: 400px;
  height: 400px;
  border: 1px solid rgba(41, 188, 227, 0.18);
  animation: orbit-rotate-reverse 30s linear infinite;
}

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

@keyframes orbit-rotate-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

.floating-badge {
  position: absolute;
  z-index: 10;
  background: #ffffff;
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(13, 18, 31, 0.12);
  border: 1px solid rgba(23, 28, 46, 0.08);
  font: 500 11px 'DM Mono', monospace;
  letter-spacing: 0.03em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.floating-badge strong {
  color: var(--ink);
  font-weight: 700;
}

.badge-top-right {
  top: 18px;
  right: -10px;
  animation: float-slow 6s ease-in-out infinite;
}

.badge-bottom-left {
  bottom: 24px;
  left: -20px;
  animation: float-reverse 7s ease-in-out infinite;
}

.badge-dot-sparkle {
  color: var(--spark);
  font-size: 16px;
}

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

@keyframes float-reverse {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(10px) rotate(1deg); }
}

.wallet-card-container {
  position: relative;
  z-index: 5;
  width: min(390px, 94%);
  background: #ffffff;
  border: 1px solid rgba(97, 61, 235, 0.15);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(97, 61, 235, 0.14), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  padding: 26px 24px;
  transform: rotate(2deg);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.wallet-card-container:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 0 30px 70px rgba(97, 61, 235, 0.22);
}

.wallet-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}

.wallet-store-tag {
  font: 600 10px 'DM Mono', monospace;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.wallet-store-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
}

.wallet-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin-top: 4px;
}

.wallet-title i {
  font-family: 'Playfair Display', serif;
  color: var(--violet);
  font-style: italic;
  font-weight: 600;
}

.wallet-live-badge {
  background: var(--mint-bg);
  color: #067647;
  font: 700 10px 'DM Mono', monospace;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  display: flex;
  align-items: center;
  gap: 4px;
}

.wallet-tabs-bar {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.wallet-tab-btn {
  background: none;
  border: none;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.wallet-tab-btn.active {
  color: var(--ink);
  background: #edf2fc;
}

.wallet-tab-btn .tab-count {
  background: #dce4f5;
  color: var(--ink);
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
}

.wallet-tab-btn.active .tab-count {
  background: var(--violet);
  color: #ffffff;
}

.wallet-ticket-stack {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.coupon-ticket {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px dashed rgba(23, 28, 46, 0.18);
  position: relative;
  background: #ffffff;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.coupon-ticket:hover {
  transform: scale(1.02);
  border-color: var(--violet);
}

.coupon-ticket::before,
.coupon-ticket::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--cloud);
  border-radius: 50%;
  top: calc(50% - 6px);
  z-index: 2;
}

.coupon-ticket::before {
  left: -7px;
  border-right: 1px dashed rgba(23, 28, 46, 0.2);
}

.coupon-ticket::after {
  right: -7px;
  border-left: 1px dashed rgba(23, 28, 46, 0.2);
}

.coupon-ticket.tone-mint {
  background: #f0fdf7;
}

.coupon-ticket.tone-peach {
  background: #fff8f5;
}

.coupon-ticket.tone-lavender {
  background: #f7f4ff;
}

.coupon-ticket.clipped {
  border-style: solid;
  border-color: var(--violet);
  box-shadow: 0 4px 12px rgba(97, 61, 235, 0.1);
}

.ticket-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ticket-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #ffffff;
  display: grid;
  place-items: center;
  font-size: 15px;
  color: var(--violet);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.ticket-details {
  display: grid;
  gap: 2px;
}

.ticket-code-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ticket-code {
  font: 700 12px 'DM Mono', monospace;
  letter-spacing: 0.05em;
  color: var(--ink);
}

.ticket-discount-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 4px;
  background: rgba(97, 61, 235, 0.1);
  color: var(--violet);
}

.ticket-desc {
  font-size: 11px;
  color: var(--muted);
}

.ticket-clip-action {
  font-size: 11px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.coupon-ticket.clipped .ticket-clip-action {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}

.ticket-clip-action:hover {
  transform: scale(1.05);
}

.wallet-summary-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--muted);
}

.savings-counter {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--mint);
}

.savings-counter strong {
  color: #067647;
  font-size: 13px;
}

.wallet-power-tag {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
}

.wallet-power-tag strong {
  color: var(--violet);
}

/* INFINITE TICKERS */
.infinity-ticker-section {
  position: relative;
  background: var(--ink);
  color: #ffffff;
  padding: 24px 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: rotate(-0.5deg);
  width: calc(100% + 20px);
  margin-left: -10px;
}

.infinity-ticker-section::before,
.infinity-ticker-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 10;
  pointer-events: none;
}

.infinity-ticker-section::before {
  left: 0;
  background: linear-gradient(90deg, var(--ink), transparent);
}

.infinity-ticker-section::after {
  right: 0;
  background: linear-gradient(270deg, var(--ink), transparent);
}

.ticker-lane {
  display: flex;
  width: max-content;
  will-change: transform;
}

.ticker-lane-1 {
  animation: marquee-scroll-left 32s linear infinite;
}

.ticker-lane-2 {
  margin-top: 14px;
  animation: marquee-scroll-right 36s linear infinite;
  opacity: 0.85;
}

.infinity-ticker-section:hover .ticker-lane {
  animation-play-state: paused;
}

@keyframes marquee-scroll-left {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes marquee-scroll-right {
  0% { transform: translate3d(-50%, 0, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

.ticker-segment {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-right: 36px;
  white-space: nowrap;
}

.ticker-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 600 13px 'DM Mono', monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
}

.ticker-pill-accent { color: var(--spark); }
.ticker-pill-mint { color: var(--spark-light); }
.ticker-pill-lavender { color: var(--lavender); }

.ticker-separator {
  color: var(--spark);
  font-size: 16px;
  animation: rotate-spark 12s linear infinite;
}

@keyframes rotate-spark {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* SCROLL REVEALS */
.scroll-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

@supports (animation-timeline: view()) {
  .scroll-driven-reveal {
    animation: scroll-fade-in linear both;
    animation-timeline: view();
    animation-range: entry 10% cover 30%;
  }
  @keyframes scroll-fade-in {
    from { opacity: 0.15; transform: translateY(40px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
}

/* Section Header Styles */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-kicker {
  font: 600 12px 'DM Mono', monospace;
  letter-spacing: 0.14em;
  color: var(--violet);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
  background: rgba(97, 61, 235, 0.08);
  padding: 4px 14px;
  border-radius: 999px;
}

.section-title {
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.055em;
  color: var(--ink);
  margin-bottom: 18px;
}

.section-title span,
.section-title em {
  font-family: 'Playfair Display', serif;
  color: var(--violet);
  font-style: italic;
  font-weight: 600;
}

.section-subtitle {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
}

/* HOW IT WORKS */
.how-it-works-section {
  padding: 120px 0 100px;
  position: relative;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.step-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(97, 61, 235, 0.3);
}

.step-card-top {
  margin-bottom: 30px;
}

.step-num-badge {
  font: 700 13px 'DM Mono', monospace;
  color: var(--violet);
  background: var(--lavender-bg);
  padding: 4px 12px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.step-interactive-visual {
  height: 140px;
  background: var(--cloud-card);
  border-radius: 14px;
  border: 1px dashed var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.vis-trigger-badge {
  background: #ffffff;
  padding: 10px 16px;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  font: 700 12px 'DM Mono', monospace;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: pulse-card-float 3s ease-in-out infinite;
}

@keyframes pulse-card-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.04); }
}

.vis-clip-card {
  background: #ffffff;
  border: 1px solid var(--violet);
  border-radius: 10px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 20px var(--violet-glow);
}

.vis-clip-card .check-pill {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--mint);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
}

.vis-auto-apply {
  background: var(--ink);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vis-auto-apply .applied-tag {
  background: var(--mint);
  color: var(--ink);
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 4px;
}

/* LIVE DEMO SECTION */
.live-demo-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cloud) 0%, #edf3fc 50%, var(--cloud) 100%);
  position: relative;
}

.demo-frame-wrapper {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(23, 28, 46, 0.12);
  box-shadow: 0 24px 60px rgba(13, 18, 31, 0.09);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.store-simulation-side {
  padding: 44px 40px;
  border-right: 1px solid var(--line);
  background: #ffffff;
}

.mock-browser-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}

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

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
}

.browser-dots span:first-child { background: #ff5f56; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:last-child { background: #27c93f; }

.browser-address {
  font: 500 11px 'DM Mono', monospace;
  color: var(--muted);
  background: #f1f5f9;
  padding: 4px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.store-product-preview {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: center;
  background: var(--cloud-card);
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 24px;
}

.product-image-box {
  height: 140px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  display: grid;
  place-items: center;
  font-size: 38px;
}

.product-meta h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}

.current-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
}

.original-price {
  font-size: 16px;
  text-decoration: line-through;
  color: var(--muted);
}

.discount-saved-badge {
  font: 700 11px 'DM Mono', monospace;
  color: #067647;
  background: var(--mint-bg);
  padding: 2px 8px;
  border-radius: 6px;
}

.cart-controls-row {
  display: flex;
  gap: 12px;
}

.demo-add-cart-btn {
  flex: 1;
  background: var(--ink);
  color: #ffffff;
  padding: 14px;
  border-radius: 8px;
  border: none;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}

.demo-add-cart-btn:hover {
  background: var(--violet);
}

.converti-live-control-side {
  padding: 44px 36px;
  background: #fafcff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.control-header {
  margin-bottom: 20px;
}

.control-header h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}

.control-header p {
  font-size: 13px;
  color: var(--muted);
}

.live-clip-interactive-box {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.interactive-demo-ticket {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 14px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.25s ease;
}

.interactive-demo-ticket:hover {
  border-color: var(--violet);
  box-shadow: 0 4px 14px rgba(97, 61, 235, 0.1);
}

.interactive-demo-ticket.active-clipped {
  background: #f7f4ff;
  border: 1px solid var(--violet);
}

.demo-stats-summary {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.demo-stat-col strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--violet);
}

.demo-stat-col span {
  font-size: 11px;
  color: var(--muted);
}

/* BENTO FEATURE GRID */
.features-section {
  padding: 110px 0;
  position: relative;
}

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

.bento-card {
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.bento-dark {
  background: var(--ink);
  color: #ffffff;
  grid-column: span 2;
}

.bento-peach {
  background: #fff3ec;
  color: var(--ink);
  border: 1px solid rgba(255, 125, 89, 0.2);
}

.bento-mint {
  background: #effcf6;
  color: var(--ink);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.bento-lavender {
  background: #f5f1ff;
  color: var(--ink);
  border: 1px solid rgba(97, 61, 235, 0.2);
  grid-column: span 2;
}

.bento-card-top {
  position: relative;
  z-index: 2;
}

.bento-category {
  font: 600 11px 'DM Mono', monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 16px;
}

.bento-card h3 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.bento-card h3 span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
}

.bento-dark h3 span { color: var(--spark-light); }
.bento-peach h3 span { color: var(--peach); }
.bento-mint h3 span { color: var(--mint); }
.bento-lavender h3 span { color: var(--violet); }

.bento-card p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 440px;
  opacity: 0.85;
}

.bento-visual-slot {
  position: relative;
  margin-top: 30px;
  z-index: 1;
}

.bento-wallet-preview {
  background: #ffffff;
  color: var(--ink);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
  max-width: 320px;
  margin-left: auto;
  transform: rotate(-2deg);
}

.radar-signals {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.radar-chip {
  background: #ffffff;
  border: 1px solid rgba(255, 125, 89, 0.3);
  padding: 8px 14px;
  border-radius: 20px;
  font: 600 11px 'DM Mono', monospace;
  color: var(--peach);
}

.sync-badge-cluster {
  display: grid;
  gap: 8px;
}

.sync-pill {
  background: #ffffff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.chart-sim-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 90px;
  padding-top: 10px;
}

.chart-bar {
  flex: 1;
  background: var(--lavender);
  border-radius: 6px 6px 0 0;
  transition: height 0.5s ease;
  position: relative;
}

.chart-bar.highlight {
  background: var(--violet);
}

/* ROI CALCULATOR */
.roi-calculator-section {
  padding: 110px 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.calculator-card {
  background: linear-gradient(135deg, #161b2e 0%, #0d121f 100%);
  color: #ffffff;
  border-radius: 28px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  box-shadow: 0 30px 80px rgba(13, 18, 31, 0.2);
  position: relative;
  overflow: hidden;
}

.calc-star-bg {
  position: absolute;
  right: -40px;
  bottom: -60px;
  font-size: 320px;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  line-height: 1;
}

.calc-inputs-col h3 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.calc-inputs-col p {
  color: var(--muted-light);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 36px;
}

.slider-group {
  margin-bottom: 30px;
}

.slider-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #e2e8f0;
}

.slider-value-badge {
  font: 700 16px 'DM Mono', monospace;
  color: var(--spark-light);
  background: rgba(94, 237, 184, 0.12);
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid rgba(94, 237, 184, 0.3);
}

.custom-range-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #2d3752;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.custom-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--violet-light);
  border: 3px solid #ffffff;
  box-shadow: 0 0 14px var(--violet-glow);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.custom-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.18);
}

.calc-results-col {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(12px);
}

.result-stat-block {
  margin-bottom: 24px;
}

.result-stat-label {
  font: 600 12px 'DM Mono', monospace;
  letter-spacing: 0.1em;
  color: var(--muted-light);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.result-stat-number {
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 800;
  color: var(--mint);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}

.result-stat-subtext {
  font-size: 13px;
  color: #cbd5e1;
}

.calc-cta-btn {
  width: 100%;
  background: var(--mint);
  color: var(--ink);
  padding: 16px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.calc-cta-btn:hover {
  background: #34d399;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(52, 211, 153, 0.3);
}

/* COMPARISON */
.comparison-section {
  padding: 110px 0;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.comparison-card {
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--line);
}

.comp-bad {
  background: #fffbf9;
  border-color: rgba(239, 68, 68, 0.2);
}

.comp-good {
  background: #f7faff;
  border: 2px solid var(--violet);
  box-shadow: var(--shadow-purple);
  position: relative;
}

.comp-badge {
  font: 700 11px 'DM Mono', monospace;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 20px;
}

.comp-bad .comp-badge {
  background: #fee2e2;
  color: #b91c1c;
}

.comp-good .comp-badge {
  background: var(--lavender-bg);
  color: var(--violet);
}

.comparison-card h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.comp-list {
  list-style: none;
  display: grid;
  gap: 16px;
}

.comp-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.comp-icon-cross {
  color: #ef4444;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.comp-icon-check {
  color: var(--mint);
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

/* TESTIMONIALS */
.testimonials-section {
  padding: 100px 0;
  background: var(--cloud-card);
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  width: max-content;
  gap: 24px;
  animation: testimonial-marquee 45s linear infinite;
  will-change: transform;
  padding: 20px 0;
}

.testimonials-section:hover .testimonials-track {
  animation-play-state: paused;
}

@keyframes testimonial-marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.testimonial-card {
  width: 360px;
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.test-stars {
  color: #f59e0b;
  font-size: 13px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 500;
}

.test-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.test-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lavender);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--violet);
}

.test-author-meta strong {
  display: block;
  font-size: 13px;
  color: var(--ink);
}

.test-author-meta span {
  font-size: 11px;
  color: var(--muted);
}

.test-metric-pill {
  margin-left: auto;
  font: 700 11px 'DM Mono', monospace;
  color: #067647;
  background: var(--mint-bg);
  padding: 3px 8px;
  border-radius: 6px;
}

/* FAQ ACCORDION */
.faq-section {
  padding: 110px 0;
}

.faq-accordion-container {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.open {
  border-color: var(--violet);
  box-shadow: 0 4px 18px rgba(97, 61, 235, 0.06);
}

.faq-question-btn {
  width: 100%;
  padding: 22px 26px;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}

.faq-icon-cross {
  font-size: 20px;
  color: var(--violet);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon-cross {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 26px 22px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

/* CLOSING CTA */
.closing-section {
  padding: 40px 0 90px;
}

.closing-panel {
  background: linear-gradient(135deg, #151b2e 0%, #0d121f 100%);
  color: #ffffff;
  border-radius: 30px;
  padding: 70px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(13, 18, 31, 0.2);
}

.closing-orb {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(97, 61, 235, 0.4) 0%, transparent 70%);
  right: 10%;
  top: -20%;
  pointer-events: none;
}

.closing-left {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.closing-left h2 {
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin: 18px 0 16px;
}

.closing-left h2 i {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  color: var(--mint);
}

.closing-left p {
  font-size: 16px;
  color: #cbd5e1;
  line-height: 1.6;
}

.closing-actions-col {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.btn-closing-primary {
  background: var(--mint);
  color: var(--ink);
  padding: 18px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.btn-closing-primary:hover {
  background: #34d399;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.4);
}

.closing-guarantee-note {
  font: 500 11px 'DM Mono', monospace;
  color: #94a3b8;
  letter-spacing: 0.05em;
}

/* FOOTER */
.footer {
  padding: 40px 0 50px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}

.footer-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-nav-links {
  display: flex;
  gap: 28px;
  font-weight: 700;
  color: var(--ink);
}

.footer-nav-links a:hover {
  color: var(--violet);
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(23, 28, 46, 0.05);
  flex-wrap: wrap;
  gap: 16px;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font: 500 11px 'DM Mono', monospace;
  color: #067647;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--mint);
  border-radius: 50%;
  animation: pulse-dot-anim 2s infinite;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 50px 0 70px;
    gap: 40px;
  }
  .hero-copy {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-social-proof {
    justify-content: center;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .demo-frame-wrapper {
    grid-template-columns: 1fr;
  }
  .store-simulation-side {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-dark,
  .bento-lavender {
    grid-column: span 1;
  }
  .calculator-card {
    grid-template-columns: 1fr;
    padding: 40px;
  }
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  .closing-panel {
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
    padding: 44px 36px;
  }
  .closing-actions-col {
    align-items: flex-start;
    width: 100%;
  }
  .btn-closing-primary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .nav-links,
  .nav-rating-pill {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .banner-content {
    font-size: 12px;
    gap: 8px;
  }
  .banner-close-btn {
    display: none;
  }
  .hero h1 {
    font-size: clamp(40px, 11vw, 56px);
  }
  .hero-lede {
    font-size: 16px;
  }
  .wallet-card-container {
    width: 100%;
    transform: none;
  }
  .floating-badge {
    display: none;
  }
  .store-product-preview {
    grid-template-columns: 1fr;
  }
  .calculator-card {
    padding: 28px 20px;
  }
  .result-stat-number {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .hero-actions .button {
    width: 100%;
  }
  .store-simulation-side,
  .converti-live-control-side {
    padding: 24px 18px;
  }
  .bento-card {
    padding: 26px 20px;
  }
  .comparison-card {
    padding: 28px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* POLICY & LEGAL PAGES */
.policy-page {
  padding: 40px 0 90px;
}

.policy-container {
  max-width: 860px;
  margin: 0 auto;
}

.policy-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 700 13px 'DM Mono', monospace;
  color: var(--violet);
  margin-bottom: 24px;
  transition: transform 0.2s ease;
}

.policy-back-link:hover {
  transform: translateX(-4px);
}

.policy-header-box {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}

.policy-header-box h1 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.policy-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font: 500 12px 'DM Mono', monospace;
  color: var(--muted);
  flex-wrap: wrap;
}

.policy-meta-badge {
  background: var(--mint-bg);
  color: #067647;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 700;
}

.policy-content-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 32px;
  line-height: 1.7;
}

.policy-section h2 {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.policy-section h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 16px 0 8px;
}

.policy-section p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 12px;
}

.policy-section ul {
  list-style: disc;
  padding-left: 24px;
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}

.policy-section strong {
  color: var(--ink);
}

.policy-callout {
  background: var(--cloud-card);
  border-left: 4px solid var(--violet);
  padding: 16px 20px;
  border-radius: 0 12px 12px 0;
  font-size: 14px;
  color: var(--ink);
  margin: 16px 0;
}

@media (max-width: 640px) {
  .policy-header-box,
  .policy-content-card {
    padding: 28px 20px;
  }
}

