/* â”€â”€â”€ TOKENS â”€â”€â”€ */
:root {
  --dop-primary:        #c93684;
  --dop-secondary:      #f06fb0;
  --dop-primary-dark:   #982960;
  --dop-primary-soft:   rgba(221,75,149,0.16);
  --dop-gradient:       #dd4b95;
  --dop-purple:         #8d67fb;
  --dop-purple-gradient:#dd4b95;
  --dop-bg:             #0f1117;
  --dop-bg-2:           #161922;
  --dop-bg-3:           #1d2130;
  --dop-card:           #181c28;
  --dop-card-2:         #1f2333;
  --dop-overlay:        rgba(23,25,37,0.85);
  --dop-text:           #f5eef3;
  --dop-text-muted:     #aaa3b5;
  --dop-text-on-pink:   #ffffff;
  --dop-border:         rgba(221,75,149,0.18);
  --dop-border-soft:    rgba(255,255,255,0.06);
  --dop-border-strong:  rgba(255,255,255,0.12);
  --dop-success:        #6ad36b;
  --dop-warning:        #ffcf5c;
  --dop-energy-low:     #6ad36b;
  --dop-energy-mid:     #ffcf5c;
  --dop-energy-high:    #ef5aa5;
  --dop-shadow-pink:    0 14px 28px rgba(221,75,149,0.24);
  --dop-shadow-pink-lg: 0 16px 34px rgba(221,75,149,0.30);
  --dop-shadow-card:    0 12px 28px rgba(0,0,0,0.28);
  --dop-shadow-phone:   0 24px 56px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.05);
  --dop-glow-mascot:    drop-shadow(0 16px 24px rgba(221,75,149,0.28));
  --dop-radius-xs:  8px;
  --dop-radius-sm: 12px;
  --dop-radius-md: 14px;
  --dop-radius-lg: 18px;
  --dop-radius-xl: 22px;
  --dop-radius-2xl:30px;
  --dop-radius-pill: 999px;
  --dop-font-display: 'Nunito', system-ui, sans-serif;
  --dop-font-body:    'DM Sans', system-ui, sans-serif;
  --dop-dur-fast: .15s;
  --dop-dur:      .25s;
  --dop-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dop-tracking-tight: 0;
  /* legacy aliases */
  --primary: var(--dop-primary);
  --secondary: var(--dop-secondary);
  --primary-dark: var(--dop-primary-dark);
  --primary-soft: var(--dop-primary-soft);
  --bg: var(--dop-bg);
  --bg2: var(--dop-bg-2);
  --bg3: var(--dop-bg-3);
  --card: var(--dop-card);
  --card2: var(--dop-card-2);
  --text: var(--dop-text);
  --muted: var(--dop-text-muted);
  --border: var(--dop-border);
  --gradient: var(--dop-gradient);
  --nav-height: 68px;
  --beta-banner-height: 0px;
  --beta-banner-space: 0px;
}

/* â”€â”€â”€ BASE â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
[hidden] { display: none !important; }
body {
  font-family: var(--dop-font-body);
  background: var(--dop-bg);
  color: var(--dop-text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.has-beta-banner { --beta-banner-space: calc(var(--beta-banner-height) + 10px); }
a { color: inherit; text-decoration: none; }
img { display: block; }
h1, h2, h3, h4 { font-family: var(--dop-font-display); margin: 0; letter-spacing: var(--dop-tracking-tight); }
::selection { background: rgba(221,75,149,0.32); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dop-bg); }
::-webkit-scrollbar-thumb { background: var(--dop-primary); border-radius: 3px; }

/* â”€â”€â”€ UTILITIES â”€â”€â”€ */
.grad {
  color: var(--dop-primary);
}
.wrap { max-width: 1360px; margin: 0 auto; padding: 0 48px; }
.pad { padding: 116px 0; }
.bg2 { background: var(--dop-bg-2); }

/* â”€â”€â”€ BUTTONS â”€â”€â”€ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--dop-font-display); font-weight: 800;
  border: none; cursor: pointer; white-space: nowrap;
  transition: background var(--dop-dur), box-shadow var(--dop-dur), transform var(--dop-dur), border-color var(--dop-dur);
}
.btn-primary {
  background: var(--dop-primary); color: var(--dop-text-on-pink);
  padding: 15px 26px; border-radius: var(--dop-radius-md); font-size: 16px;
  box-shadow: var(--dop-shadow-pink);
}
.btn-primary:hover { box-shadow: var(--dop-shadow-pink-lg); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(1px); }
.btn-wide { padding: 17px 34px; border-radius: 15px; font-size: 17px; }
.btn-nav { padding: 11px 18px; border-radius: var(--dop-radius-sm); font-size: 14px; }
.btn-ghost {
  background: var(--dop-card-2); color: var(--dop-text);
  padding: 14px 22px; border-radius: var(--dop-radius-md); font-size: 15px;
  border: 1px solid var(--dop-border-strong);
}
.btn-ghost:hover { border-color: rgba(221,75,149,0.55); background: rgba(221,75,149,0.10); transform: translateY(-1px); }

/* â”€â”€â”€ BETA BANNER â”€â”€â”€ */
.beta {
  background: var(--dop-primary); color: #fff;
  text-align: center; font-family: var(--dop-font-body); font-weight: 600;
  font-size: 13px; padding: 9px 16px;
  position: relative; z-index: 60;
  transition: opacity .2s, transform .2s;
}
.beta.is-hidden { opacity: 0; pointer-events: none; height: 0; padding: 0; overflow: hidden; }
.beta .beta-banner-title { font-weight: 800; }
.beta .beta-banner-desc { opacity: 0.9; margin-left: 4px; }
.beta a, #beta-form-link { font-weight: 800; text-decoration: underline; text-underline-offset: 2px; color: #fff; margin-left: 8px; }
#beta-countdown { display: none !important; }
#beta-countdown-note { display: none !important; }

/* â”€â”€â”€ NAV â”€â”€â”€ */
nav.bar {
  position: sticky; top: 0; z-index: 50;
  background: var(--dop-overlay); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dop-border-soft);
}
nav.bar .inner {
  max-width: 1360px; margin: 0 auto; padding: 14px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand img { width: 40px; height: 40px; object-fit: contain; filter: drop-shadow(0 4px 10px rgba(221,75,149,0.45)); transition: transform var(--dop-dur); }
.brand:hover img { transform: rotate(-6deg) scale(1.05); }
.brand .brand-title { width: 100px; height: auto; filter: none; transform: none; }
.brand:hover .brand-title { transform: none; }
.brand span { font-family: var(--dop-font-display); font-weight: 900; font-size: 19px; letter-spacing: -0.02em; }
.navlinks { display: flex; gap: 30px; list-style: none; }
.navlinks a { color: var(--dop-text-muted); font-size: 14px; font-weight: 500; transition: color var(--dop-dur); }
.navlinks a:hover { color: var(--dop-text); }
.nav-cta { display: flex; align-items: center; gap: 14px; }

/* â”€â”€â”€ PHONE FRAME â”€â”€â”€ */
.phone {
  border-radius: var(--dop-radius-2xl); overflow: hidden;
  border: 1px solid var(--dop-border-strong);
  box-shadow: var(--dop-shadow-phone);
  background: #000;
}
.phone img { width: 100%; height: auto; }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.hero { padding: 88px 0 70px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(56px, 7vw, 104px); align-items: center; }
.hero h1 {
  font-size: clamp(40px, 6.2vw, 70px); font-weight: 900; line-height: 1.02;
  margin: 22px 0 0;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 32px; }
.hero-beta-link { display: block; margin-top: 32px; }
.hero-beta-link[hidden] { display: none !important; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero p.lead {
  font-size: 18px; color: var(--dop-text-muted); line-height: 1.7;
  margin: 20px 0 0; max-width: 540px;
}
.hero-stats { display: grid; grid-template-columns: repeat(3, auto); gap: 36px; margin-top: 44px; }
.hero-stats .v { font-family: var(--dop-font-display); font-weight: 900; font-size: 28px; line-height: 1; }
.hero-stats .l { font-size: 12.5px; color: var(--dop-text-muted); margin-top: 6px; }
.hero-visual { position: relative; height: 580px; display: flex; align-items: center; justify-content: center; }
.hero-glow {
  position: absolute; width: 440px; height: 440px; max-width: 90%; border-radius: 50%;
  background: radial-gradient(circle, rgba(221,75,149,0.30), rgba(221,75,149,0.06) 55%, transparent 70%);
  filter: blur(14px); z-index: 1;
}
.hero-phone {
  width: 300px; max-width: 78%; position: relative; z-index: 2;
  animation: phone-float 6s ease-in-out infinite;
}


/* â”€â”€â”€ SECTION HEADING â”€â”€â”€ */
.sec-head { text-align: left; max-width: 820px; margin: 0 0 68px; }
.sec-head h2 { font-size: clamp(36px, 5.2vw, 60px); font-weight: 900; line-height: 1.05; margin: 0; }
.sec-head p { color: var(--dop-text-muted); margin: 18px 0 0; font-size: 17px; max-width: 640px; }

/* â”€â”€â”€ BENTO GRID â”€â”€â”€ */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }
.card {
  background: var(--dop-card); border: 1px solid var(--dop-border-soft);
  border-radius: var(--dop-radius-xl); overflow: hidden; position: relative;
  transition: border-color var(--dop-dur), transform var(--dop-dur);
}
.card:hover { border-color: rgba(221,75,149,0.4); transform: translateY(-3px); }
.card .cbody { padding: 34px; }
.card .ico {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--dop-primary-soft); border: 1px solid rgba(221,75,149,0.24);
  display: inline-flex; align-items: center; justify-content: center; font-size: 20px;
  margin-bottom: 16px;
}
.card h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.card p { color: var(--dop-text-muted); font-size: 14.5px; line-height: 1.65; margin: 0; }
.card .shot { width: 100%; }
.card .shot img { width: 100%; height: auto; }
.c-6 { grid-column: span 6; }
.c-4 { grid-column: span 4; }
.c-3 { grid-column: span 3; }
.c-2 { grid-column: span 2; }
.card.row { display: grid; grid-template-columns: 1fr 0.92fr; }
.card.row.rev { grid-template-columns: 0.92fr 1fr; }
.card .shot-wrap { position: relative; overflow: hidden; min-height: 230px; background: var(--dop-bg-3); }
.card .shot-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px; border-radius: 999px; font-size: 13px; font-weight: 700;
  background: rgba(31,35,51,0.7); border: 1px solid var(--dop-border-soft);
  color: rgba(245,238,243,0.85); font-family: var(--dop-font-body);
}
.dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.more-row { display: flex; align-items: center; gap: 16px; justify-content: center; margin-top: 44px; color: var(--dop-text-muted); font-size: 14px; }


/* â”€â”€â”€ SCREEN TOUR â”€â”€â”€ */
.tour { padding: 116px 0; overflow: hidden; background: var(--dop-bg); }
.marquee {
  overflow: hidden; margin-top: 56px;
  -webkit-mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee-track {
  display: flex; gap: 24px; width: max-content; padding: 18px 0;
  animation: tour-scroll 52s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes tour-scroll { to { transform: translateX(calc(-50% - 12px)); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }
.scard {
  position: relative; flex: 0 0 300px; height: 470px;
  border-radius: var(--dop-radius-2xl); overflow: hidden;
  border: 1px solid var(--dop-border-strong); background: #000;
  box-shadow: var(--dop-shadow-card);
  transition: transform var(--dop-dur) var(--dop-ease-out), border-color var(--dop-dur) var(--dop-ease-out), box-shadow var(--dop-dur) var(--dop-ease-out);
}
.scard:hover { transform: translateY(-4px); border-color: rgba(221,75,149,0.5); box-shadow: var(--dop-shadow-pink); }
.scard > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.scard .veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,17,23,0) 42%, rgba(15,17,23,0.55) 68%, rgba(15,17,23,0.94) 100%);
}
.scard .sbody { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 22px 26px; text-align: center; }
.scard .sbody h3 { font-family: var(--dop-font-display); font-weight: 800; font-size: 22px; letter-spacing: var(--dop-tracking-tight); }
.scard .sbody p { color: rgba(245,238,243,0.82); font-size: 13.5px; line-height: 1.55; margin: 9px 0 0; }
.scard .sbtn {
  display: inline-flex; margin-top: 16px; opacity: 0; transform: translateY(8px);
  transition: opacity var(--dop-dur) var(--dop-ease-out), transform var(--dop-dur) var(--dop-ease-out), background var(--dop-dur) var(--dop-ease-out);
  padding: 11px 22px; font-size: 14px; border-radius: var(--dop-radius-md);
  background: rgba(255,255,255,0.94); color: #161922;
  font-family: var(--dop-font-display); font-weight: 800;
}
.scard .sbtn:hover { background: #fff; }
.scard:hover .sbtn { opacity: 1; transform: none; }

/* â”€â”€â”€ FREE TOOLS / COMPARISONS â”€â”€â”€ */
.tools-section { background: var(--dop-bg-2); }
.tools-inner { max-width: 1360px; margin: 0 auto; }
.tools-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.tool-card {
  display: flex; flex-direction: column; gap: 14px; min-height: 220px;
  background: var(--dop-card); border: 1px solid var(--dop-border-soft); border-radius: var(--dop-radius-md);
  padding: 24px; transition: transform .2s, border-color .2s, box-shadow .2s;
}
.tool-card:hover { transform: translateY(-3px); border-color: rgba(221,75,149,0.4); box-shadow: 0 14px 30px rgba(0,0,0,0.2); }
.tool-card strong { font-family: var(--dop-font-display); font-size: 17px; font-weight: 800; line-height: 1.25; }
.tool-card p { color: var(--dop-text-muted); font-size: 14px; line-height: 1.65; margin: 0; }
.tool-card span { margin-top: auto; color: var(--dop-secondary); font-size: 13px; font-weight: 800; }
.comparison-links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }

/* â”€â”€â”€ TESTIMONIALS â”€â”€â”€ */
.tcols { columns: 3; column-gap: 18px; }
.tcard {
  break-inside: avoid; margin-bottom: 18px;
  background: var(--dop-card); border: 1px solid var(--dop-border-soft);
  border-radius: 16px; padding: 22px;
}
.tcard .stars { color: var(--dop-warning); font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }
.tcard p { margin: 0 0 16px; font-size: 14.5px; line-height: 1.6; }
.tcard .who { display: flex; align-items: center; gap: 11px; }
.tcard .av { width: 36px; height: 36px; border-radius: 50%; background: var(--dop-primary); display: flex; align-items: center; justify-content: center; font-family: var(--dop-font-display); font-weight: 800; font-size: 14px; color: #fff; flex-shrink: 0; }
.tcard .nm { font-family: var(--dop-font-display); font-weight: 800; font-size: 14px; }
.tcard .rl { font-size: 12px; color: var(--dop-text-muted); }
/* JS-rendered testimonial cards */
.testimonials-grid { columns: 3; column-gap: 18px; }
.testimonial-card { break-inside: avoid; margin-bottom: 18px; background: var(--dop-card); border: 1px solid var(--dop-border-soft); border-radius: 16px; padding: 22px; }
.testimonial-rating { color: var(--dop-warning); font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-body { font-size: 14.5px; line-height: 1.6; margin-bottom: 16px; }
.testimonial-meta { display: flex; align-items: center; gap: 11px; }
.testimonial-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--dop-primary); display: flex; align-items: center; justify-content: center; font-family: var(--dop-font-display); font-weight: 800; font-size: 14px; color: #fff; flex-shrink: 0; }
.testimonial-author { font-family: var(--dop-font-display); font-weight: 800; font-size: 14px; }
.testimonial-context { font-size: 12px; color: var(--dop-text-muted); }
.testimonials-note { margin-top: 20px; font-size: 13px; color: var(--dop-text-muted); }

/* â”€â”€â”€ PRICING â”€â”€â”€ */
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-header { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 60px; max-width: 720px; margin-left: auto; margin-right: auto; }
.pricing-mascot { width: 224px; height: 224px; object-fit: contain; margin-bottom: 22px; filter: var(--dop-glow-mascot); }
.pricing-card-wrap { display: flex; justify-content: center; }
.pricing-card {
  background: var(--dop-card); border: 2px solid rgba(221,75,149,0.4);
  border-radius: var(--dop-radius-lg); padding: 52px 56px;
  max-width: 480px; width: 100%; position: relative; overflow: hidden;
  box-shadow: 0 22px 52px rgba(0,0,0,0.24); text-align: center;
}
.pricing-badge::before { content: ''; width: 28px; height: 1px; background: rgba(221,75,149,0.72); }
.pricing-price { font-family: var(--dop-font-display); font-size: 72px; font-weight: 800; color: var(--dop-primary); line-height: 1; margin-bottom: 8px; }
.pricing-price span { font-size: 28px; font-weight: 600; }
.pricing-period { font-size: 15px; color: var(--dop-text-muted); margin-bottom: 36px; }
.pricing-features { list-style: none; margin-bottom: 40px; text-align: left; padding: 0; }
.pricing-features li { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(221,75,149,0.1); font-size: 15px; }
.pricing-features li:last-child { border-bottom: none; }
.check { width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, rgba(221,75,149,0.3), rgba(243,121,182,0.2)); border: 1px solid rgba(221,75,149,0.4); display: flex; align-items: center; justify-content: center; font-size: 11px; }
.pricing-btn {
  display: flex; align-items: center; justify-content: center; width: 100%;
  background: var(--dop-primary); color: #fff;
  border-radius: 15px; padding: 20px; font-size: 17px; font-weight: 800;
  font-family: var(--dop-font-display); box-shadow: var(--dop-shadow-pink);
  transition: transform .15s, box-shadow .15s; text-decoration: none; line-height: 1.2;
}
.pricing-btn:hover { box-shadow: var(--dop-shadow-pink-lg); transform: translateY(-1px); }
.pricing-btn:active { transform: translateY(1px); }
.pricing-note { font-size: 13px; color: var(--dop-text-muted); margin-top: 16px; }
.beta-home-section {
  scroll-margin-top: 86px;
  position: relative;
  min-height: clamp(560px, calc(100vh - 104px), 760px);
  padding: clamp(76px, 10vh, 128px) 0;
  background: var(--dop-bg);
  border-bottom: 1px solid var(--dop-border-soft);
  overflow: hidden;
}
.beta-home-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 17, 23, .98) 0%, rgba(15, 17, 23, .9) 33%, rgba(15, 17, 23, .56) 67%, rgba(15, 17, 23, .72) 100%),
    linear-gradient(180deg, rgba(15, 17, 23, .16) 0%, rgba(15, 17, 23, .18) 54%, var(--dop-bg) 100%);
  z-index: 1;
}
.beta-home-backdrop {
  position: absolute;
  top: 36%;
  right: max(-260px, -14vw);
  width: clamp(780px, 76vw, 1180px);
  height: auto;
  opacity: .72;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  filter: saturate(.9) contrast(.92);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 24%, #000 86%, transparent 100%),
    linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 24%, #000 86%, transparent 100%),
    linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
  mask-composite: intersect;
}
.beta-home-wrap {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.beta-home-copy h1 {
  max-width: 800px;
  font-size: clamp(48px, 5.2vw, 74px);
  font-weight: 900;
  line-height: 1.05;
}
.beta-home-accent {
  background: linear-gradient(135deg, var(--dop-secondary, #f06fb0) 12%, var(--dop-primary, #c93684) 78%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Eyebrow badge — partagé beta page + homepage */
.beta-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 16px;
  padding: 0 12px;
  border: 1px solid rgba(221, 75, 149, 0.28);
  border-radius: 999px;
  background: rgba(221, 75, 149, 0.1);
  color: #ffd1e8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.beta-home-lede {
  max-width: 52ch;
  margin-top: 18px;
  color: var(--dop-text-muted);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.6;
}
.beta-home-copy {
  width: min(100%, 1160px);
}
.beta-home-card {
  width: min(100%, 580px);
  margin-top: clamp(28px, 5vw, 44px);
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(24, 28, 40, 0.84);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  text-align: left;
}
.beta-home-card .beta-signup-form {
  display: grid;
  grid-template-columns: minmax(220px, 1.45fr) minmax(120px, .72fr);
  gap: 8px 12px;
  align-items: end;
}
.beta-home-card .beta-field input,
.beta-home-card .beta-toggle {
  background: #11141c;
  border-color: rgba(255, 255, 255, .07);
}
.beta-home-card .beta-field label {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
}
.beta-home-card .beta-field input {
  min-height: 56px;
  padding: 15px 17px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.beta-home-card .beta-field input:focus {
  background: #202637;
  border-color: rgba(243, 121, 182, 0.74);
  box-shadow: 0 0 0 4px rgba(221, 75, 149, 0.18);
}
.beta-home-card .beta-consent-group {
  grid-column: 1 / -1;
  gap: 5px;
  padding: 0;
  background: transparent;
  border: 0;
}
.beta-home-card .beta-check {
  gap: 7px;
  font-size: 11px;
  line-height: 1.3;
}
.beta-home-card .beta-check input {
  width: 14px;
  height: 14px;
}
.beta-home-card .beta-field--pseudonym,
.beta-home-card .beta-setup-note,
.beta-home-card .beta-form-button-note,
.beta-home-card .beta-form-status,
.beta-home-card .cf-turnstile {
  grid-column: 1 / -1;
}
.beta-home-card .beta-setup-note,
.beta-home-card .beta-form-button-note,
.beta-home-card .beta-form-status {
  max-width: 430px;
  padding: 9px 12px;
  font-size: 11px;
  line-height: 1.45;
}
.beta-home-card .beta-form-button-note {
  grid-column: 1 / -1;
  padding: 0;
  color: rgba(245, 238, 243, .9);
}
.beta-home-card .beta-signup-form .btn-wide {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 56px;
  padding: 15px 20px;
  border-radius: 15px;
  font-size: 15px;
}
.beta-home-proof {
  margin-top: 14px;
  color: var(--dop-text-muted);
  font-size: 12px;
}
.beta-home-proof strong {
  color: var(--dop-primary);
  font-family: var(--dop-font-display);
  font-weight: 900;
}

@keyframes plushie-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: no-preference) {
  .beta-home-backdrop {
    animation: homeBackdropFloat 7s ease-in-out infinite;
  }
}

@keyframes homeBackdropFloat {
  0%, 100% { transform: translateY(-50%) rotate(-1deg); }
  50%       { transform: translateY(calc(-50% - 14px)) rotate(0.5deg); }
}


/* â”€â”€â”€ FAQ â”€â”€â”€ */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--dop-border-soft); padding: 6px 0; }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 4px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--dop-font-display); font-weight: 800; font-size: 18px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm {
  width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%;
  background: var(--dop-primary-soft); border: 1px solid rgba(221,75,149,0.24);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--dop-primary); transition: transform var(--dop-dur);
  font-weight: 400;
}
.faq details[open] summary .pm { transform: rotate(45deg); }
.faq .ans { padding: 0 4px 24px; color: var(--dop-text-muted); font-size: 15.5px; line-height: 1.7; max-width: 640px; }
.faq-foot { text-align: center; margin-top: 40px; color: var(--dop-text-muted); font-size: 15px; }
.faq-foot a { color: var(--dop-primary); font-weight: 700; }

/* â”€â”€â”€ BIG YEAR â”€â”€â”€ */
.year { text-align: center; padding: 70px 0 40px; }
.year .y { font-family: var(--dop-font-display); font-weight: 900; font-size: clamp(80px, 14vw, 180px); line-height: 0.9; letter-spacing: -0.04em; }
.year .cap { color: var(--dop-text-muted); font-size: 16px; margin-top: 10px; }

/* â”€â”€â”€ MASCOT MOMENT â”€â”€â”€ */
.mascot-moment {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.mascot-moment .mascot-tile:nth-child(1) { flex: 0 0 210px; height: 270px; }
.mascot-moment .mascot-tile:nth-child(2) { flex: 0 0 185px; height: 240px; margin-top: 28px; }
.mascot-moment .mascot-tile:nth-child(3) { flex: 0 0 220px; height: 280px; }
.mascot-moment .mascot-tile:nth-child(4) { flex: 0 0 185px; height: 240px; margin-top: 28px; }
.mascot-moment .mascot-tile:nth-child(5) { flex: 0 0 210px; height: 270px; }
.mascot-tile {
  border-radius: 20px; overflow: hidden; position: relative;
  background: var(--dop-primary); transition: transform .3s;
}
.mascot-tile:hover { transform: scale(1.03) rotate(-1deg); }
.mascot-tile img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.mascot-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.68));
  padding: 32px 16px 12px;
  font-family: var(--dop-font-display); font-weight: 800; font-size: 14px;
  color: #fff; display: flex; align-items: center; gap: 6px;
}


/* â”€â”€â”€ FINALE CTA â”€â”€â”€ */
.finale { text-align: center; padding: 120px 0 70px; overflow: hidden; }
.finale .mascot { width: 160px; margin: 0 auto 18px; filter: var(--dop-glow-mascot); animation: dop-bob 5.4s ease-in-out infinite; }
.finale .wm {
  font-family: var(--dop-font-display); font-weight: 900;
  font-size: clamp(64px, 16vw, 220px); line-height: 0.86; letter-spacing: -0.05em;
  margin: 0;
}
.finale .sub { color: var(--dop-text-muted); font-size: 18px; margin: 26px 0 32px; }
.finale .hero-cta { justify-content: center; }
.cta-beta-link { display: inline-block; }
.cta-beta-link[hidden] { display: none !important; }
.cta-stores { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* â”€â”€â”€ FOOTER â”€â”€â”€ */
footer.site {
  background: var(--dop-bg-2); border-top: 1px solid var(--dop-border-soft);
  padding: 56px 0 36px;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 34px; }
.foot-brand .brand span { font-size: 20px; }
.foot-brand p { color: var(--dop-text-muted); font-size: 14px; margin: 16px 0 0; max-width: 280px; }
.foot-col .foot-title { font-family: var(--dop-font-display); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.foot-col ul { list-style: none; display: grid; gap: 11px; }
.foot-col a { color: var(--dop-text-muted); font-size: 14px; transition: color var(--dop-dur); }
.foot-col a:hover { color: var(--dop-text); }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--dop-border-soft); color: var(--dop-text-muted); font-size: 13px; }

/* â”€â”€â”€ ANIMATIONS â”€â”€â”€ */
@keyframes phone-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes dop-bob { 0%,100%{transform:translateY(0) rotate(-1deg)} 50%{transform:translateY(-7px) rotate(1deg)} }
@keyframes mascotBob { 0%,100%{transform:translateY(0) rotate(-1deg)} 50%{transform:translateY(-5px) rotate(1deg)} }
@keyframes scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media(max-width:920px) {
  .wrap, nav.bar .inner { padding-left: 22px; padding-right: 22px; }
  .navlinks { display: none; }
  .hero { padding: 60px 0 50px; }
  .hero-grid { grid-template-columns: 1fr; gap: 10px; text-align: center; }
  .hero-visual { height: 420px; margin-top: 10px; }
  .hero-stats { gap: 24px; justify-content: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-actions { justify-content: center; }
  .bento { grid-template-columns: 1fr; }
  .c-6, .c-4, .c-3, .c-2 { grid-column: span 1; }
  .card.row, .card.row.rev { grid-template-columns: 1fr; }
  .tcols, .testimonials-grid { columns: 1; }
  .mascot-moment { gap: 14px; }
  .mascot-moment .mascot-tile { flex: 0 0 calc(50% - 7px) !important; height: 200px !important; margin-top: 0 !important; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .pad { padding: 78px 0; }
  .tools-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .comparison-links { grid-template-columns: 1fr; }
  .beta-home-section {
    min-height: 620px;
    padding-top: 96px;
  }
  .beta-home-backdrop {
    top: 43%;
    right: -300px;
    width: 900px;
    opacity: .42;
  }
  .beta-home-copy { width: min(100%, 680px); }
  .sec-head { margin-bottom: 52px; }
  .bento { gap: 20px; }
  .card .cbody { padding: 28px; }
}
@media(max-width:560px) {
  nav.bar .inner { padding-left: 14px; padding-right: 14px; gap: 10px; }
  nav.bar .brand-title { display: none; }
  .nav-cta .btn-nav { padding: 10px 12px; font-size: 12px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 18px; display: grid; }
  .nav-cta .btn-nav .full { display: none; }
  .foot-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 32px 22px; }
  .pricing-price { font-size: 56px; }
  .beta-home-section {
    min-height: 640px;
    padding-top: 88px;
    padding-bottom: 92px;
  }
  .beta-home-copy h1 { font-size: clamp(40px, 13vw, 54px); }
  .beta-home-backdrop {
    top: 58%;
    right: -410px;
    width: 760px;
    opacity: .24;
  }
  .beta-home-card {
    width: 100%;
  }
  .beta-home-card .beta-signup-form { grid-template-columns: 1fr; }
  .beta-home-card .beta-signup-form .btn-wide { width: 100%; }
  .finale .wm { font-size: clamp(48px, 16vw, 220px); }
  .scard { flex: 0 0 220px; height: 360px; }
  .mascot-moment .mascot-tile { flex: 0 0 100% !important; height: 220px !important; }
}
