/* ============================================================
   LemonClub Landing v3 — Section 1 (hero + bento + sites band)
   Built on tokens from styles.css
   ============================================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(1100px 560px at 10% -12%, rgba(255, 180, 143, .22), transparent 60%),
    radial-gradient(1000px 600px at 92% 0%, rgba(208, 128, 255, .15), transparent 56%),
    radial-gradient(760px 540px at 50% 34%, rgba(255, 255, 255, .6), transparent 70%),
    var(--canvas);
  -webkit-font-smoothing: antialiased;
}
/* film grain over everything — kills the flat feel */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 999; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  opacity: .045;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

::selection { background: var(--lilac-soft); color: var(--ink); }

/* ============ RIBBON ============ */
.ribbon { background: var(--ink); color: var(--text-on-dark); font-size: 13.5px; position: relative; z-index: 60; }
.ribbon.is-hidden { display: none; }
.ribbon__row { display: flex; align-items: center; justify-content: center; gap: 18px; padding-block: 9px; position: relative; }
.ribbon code { background: rgba(255,255,255,.13); border: 1px dashed rgba(255,255,255,.35); border-radius: 6px; padding: 1px 7px; font-family: inherit; font-weight: 600; letter-spacing: .03em; }
.ribbon a { color: #FFB48F; font-weight: 600; white-space: nowrap; }
.ribbon a:hover { color: #FFD9C2; }
.ribbon__x { position: absolute; right: 0; top: 50%; transform: translateY(-50%); background: none; border: 0; color: rgba(255,255,255,.55); font-size: 20px; line-height: 1; padding: 4px 8px; }
.ribbon__x:hover { color: #fff; }

/* ============ NAV ============ */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(246,242,244,.8); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid transparent; transition: border-color .2s ease, background .2s ease; }
.nav.is-stuck { border-bottom-color: var(--border-subtle); background: rgba(246,242,244,.94); }
.nav__row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 72px; }
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo-img { width: 40px; height: 40px; display: block; }
.logo-word { font-weight: 700; font-size: 20.5px; letter-spacing: -0.015em; color: var(--ink); }
.nav__links { display: flex; align-items: center; justify-content: center; gap: 26px; }
.nav__links a { font-size: 15px; font-weight: 500; opacity: .8; white-space: nowrap; display: inline-flex; align-items: center; gap: 5px; transition: opacity .15s ease; }
.nav__links a:hover { opacity: 1; }
.nav__links .caret { width: 9px; height: 9px; opacity: .5; }
.nav__cta { display: flex; align-items: center; justify-content: flex-end; gap: 14px; }
.nav__login { font-size: 15px; font-weight: 500; white-space: nowrap; opacity: .8; }
.nav__login:hover { opacity: 1; }
@media (max-width: 1080px) { .nav__links { display: none; } .nav__row { grid-template-columns: auto 1fr; } .nav__cta .nav-item--lang { display: none !important; } }

/* ============ MEGA DROPDOWNS ============ */
.nav-item { display: inline-flex; }
.nav-dd-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 0; cursor: pointer; font-family: inherit;
  font-size: 15px; font-weight: 500; color: var(--ink); opacity: .8;
  padding: 8px 11px; border-radius: 10px; white-space: nowrap;
  transition: opacity .15s ease, background .15s ease, color .15s ease;
}
.nav-dd-btn:hover { opacity: 1; }
.nav-dd-btn .caret { width: 9px; height: 9px; opacity: .5; transition: transform .18s ease; }
.nav-item.is-open .nav-dd-btn { opacity: 1; color: var(--coral); background: rgba(234,83,53,.08); }
.nav-item.is-open .nav-dd-btn .caret { transform: rotate(180deg); opacity: 1; }

.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff;
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 30px 50px -22px rgba(30,2,53,.22);
  display: none;
  max-height: 600px; overflow-y: auto;
}
.nav-item.is-open .mega { display: block; }
.nav-item.is-open .mega > .container { animation: megaIn .28s cubic-bezier(.22,.8,.36,1); }
.nav-item.is-open .mega .mega__cols > * { animation: megaItem .32s cubic-bezier(.22,.8,.36,1) backwards; }
.nav-item.is-open .mega .mega__cols > *:nth-child(2) { animation-delay: .045s; }
.nav-item.is-open .mega .mega__cols > *:nth-child(3) { animation-delay: .09s; }
.nav-item.is-open .mega .mega__cols > *:nth-child(4) { animation-delay: .135s; }
.nav-item.is-open .mega .mega__cols > *:nth-child(5) { animation-delay: .18s; }
.nav-item.is-open .mega .mega__cols > *:nth-child(6) { animation-delay: .225s; }
.nav-item.is-open .mega .mega__cols > *:nth-child(7) { animation-delay: .27s; }
.nav-item.is-open .mega .mega__cols > *:nth-child(8) { animation-delay: .315s; }
.nav-item.is-open .mega .mega-foot { animation: megaItem .3s cubic-bezier(.22,.8,.36,1) .16s backwards; }
@keyframes megaIn { from { opacity: 0; transform: translateY(-10px); } }
@keyframes megaItem { from { opacity: 0; transform: translateY(9px); } }
.mega__cols { display: grid; gap: 8px 36px; padding: 28px 0 22px; }
.mega__cols--3 { grid-template-columns: repeat(3, 1fr); }
.mega__cols--4 { grid-template-columns: repeat(4, 1fr); padding-bottom: 16px; }
.mega-col { display: flex; flex-direction: column; gap: 2px; }
.mega-col h6 { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-500); padding: 0 10px; margin-bottom: 8px; border-bottom: 1px solid #F0EDF3; padding-bottom: 9px; }
.mega-link { display: flex; align-items: center; gap: 11px; padding: 9px 10px; border-radius: 12px; transition: background .13s ease; }
.mega-link:hover { background: #F7F4F9; }
.mega-link .mic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex: none; background: var(--lilac-soft); color: #8B33C7; }
.mega-link .mic--peach { background: #FFE9E2; color: var(--coral); }
.mega-link .mic svg { width: 17px; height: 17px; }
.mega-link .mflag { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(30,2,53,.1); flex: none; }
.mega-link .mtxt { min-width: 0; }
.mega-link .mtxt b { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 650; color: var(--ink); line-height: 1.25; white-space: nowrap; }
.mega-link .msub { display: block; font-size: 12px; color: var(--gray-500); line-height: 1.35; margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mega-link .mprice { margin-left: auto; text-align: right; flex: none; font-size: 13.5px; font-weight: 700; color: var(--ink); background: #F7F4F9; border-radius: 9px; padding: 6px 10px; line-height: 1.1; }
.mega-link:hover .mprice { background: #fff; }
.mega-link .mprice em { display: block; font-style: normal; font-weight: 500; font-size: 9.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--gray-500); }
.mega-link--slim { padding-block: 7px; }
.mtag { font-style: normal; font-size: 9.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; background: var(--coral); color: #fff; border-radius: 999px; padding: 2.5px 7px; line-height: 1; flex: none; }
.mtag--zap { background: #FFE9E2; color: var(--coral); }
.mega-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; border-top: 1px solid #F0EDF3; padding: 14px 10px 18px; font-size: 12.5px; color: var(--gray-500); }
.mega-foot a { font-size: 13.5px; font-weight: 600; color: var(--coral); white-space: nowrap; }
.mega-foot a:hover { color: var(--coral-hover); }

/* small dropdown (language) */
.nav-item--lang { position: relative; }
.nav-item--lang .nav-dd-btn { font-size: 14px; padding: 8px 9px; }
.lang-cur { font-weight: 600; }
.dd-panel {
  position: absolute; right: 0; top: calc(100% + 8px); z-index: 60;
  min-width: 168px; background: #fff;
  border: 1px solid var(--border-subtle); border-radius: 14px;
  box-shadow: 0 16px 34px -14px rgba(30,2,53,.24);
  padding: 7px;
  display: none;
}
.nav-item.is-open .dd-panel { display: block; transform-origin: top right; animation: ddIn .18s cubic-bezier(.22,.8,.36,1); }
@keyframes ddIn { from { opacity: 0; transform: translateY(-5px) scale(.96); } }
.dd-opt {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  width: 100%; background: none; border: 0; cursor: pointer; font-family: inherit;
  font-size: 14px; font-weight: 500; color: var(--ink);
  padding: 9px 11px; border-radius: 9px; text-align: left;
  transition: background .12s ease;
}
.dd-opt:hover { background: #F7F4F9; }
.dd-opt svg { width: 14px; height: 14px; color: var(--coral); opacity: 0; flex: none; }
.dd-opt.is-active svg { opacity: 1; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: 16px; line-height: 1;
  border-radius: var(--radius-button); border: 0;
  padding: 16px 28px;
  white-space: nowrap;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--primary {
  background: linear-gradient(180deg, #F0633F 0%, var(--coral) 52%, #DE4226 100%);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.32), inset 0 -2px 3px rgba(140,30,10,.25), 0 1px 2px rgba(30,2,53,.14);
}
.btn--primary:hover { background: linear-gradient(180deg, #E45434 0%, var(--coral-hover) 60%, #B23A22 100%); }
.btn--nav { padding: 11px 20px; font-size: 15px; }

/* XL hero CTAs — bigger + attention animations */
.btn--xl { padding: 20px 38px; font-size: 18px; border-radius: 16px; }
.btn--pulse { position: relative; overflow: hidden; animation: cta-pulse 2.8s ease-out infinite; }
@keyframes cta-pulse {
  0% { box-shadow: inset 0 1px 0 rgba(255,255,255,.32), inset 0 -2px 3px rgba(140,30,10,.25), 0 1px 2px rgba(30,2,53,.14), 0 0 0 0 rgba(234,83,53,.45); }
  55% { box-shadow: inset 0 1px 0 rgba(255,255,255,.32), inset 0 -2px 3px rgba(140,30,10,.25), 0 1px 2px rgba(30,2,53,.14), 0 0 0 14px rgba(234,83,53,0); }
  100% { box-shadow: inset 0 1px 0 rgba(255,255,255,.32), inset 0 -2px 3px rgba(140,30,10,.25), 0 1px 2px rgba(30,2,53,.14), 0 0 0 0 rgba(234,83,53,0); }
}
.btn--pulse::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -60%; width: 50%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.38), transparent);
  transform: skewX(-22deg) translateX(-60%);
  animation: cta-shine 3.4s ease-in-out infinite;
  will-change: transform;
}
@keyframes cta-shine {
  0%, 55% { transform: skewX(-22deg) translateX(-60%); }
  85%, 100% { transform: skewX(-22deg) translateX(440%); }
}
.btn--pulse:hover { transform: translateY(-2px) scale(1.02); }
.arrow-nudge { animation: nudge 1.6s ease-in-out infinite; }
@keyframes nudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(4px); } }
.btn--google {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
  color: var(--ink);
  border: 1px solid var(--border-subtle);
  box-shadow: inset 0 1px 0 #fff, 0 1px 2px rgba(30,2,53,.08);
}
.btn--google:hover { border-color: #CFCFCF; background: #fff; }
.btn--google .g-logo { width: 19px; height: 19px; flex: none; }

/* ============ HERO ============ */
.hero { position: relative; padding-top: 70px; overflow: clip; }

/* dot-grid texture */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(30,2,53,.065) 1.2px, transparent 1.2px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(880px 500px at 50% 10%, #000 14%, transparent 72%);
  mask-image: radial-gradient(880px 500px at 50% 10%, #000 14%, transparent 72%);
}

.hero__copy { max-width: 900px; margin-inline: auto; text-align: center; position: relative; z-index: 2; }

/* Trustpilot badge */
.tp-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--border-subtle); border-radius: 999px;
  padding: 8px 18px 8px 12px; font-size: 13.5px; font-weight: 500; color: var(--ink-secondary);
  box-shadow: 0 1px 2px rgba(30,2,53,.06);
  margin-bottom: 30px;
  white-space: nowrap;
  transition: border-color .15s ease;
}
.tp-badge:hover { border-color: #CFCFCF; }
.tp-badge .tp-stars { display: inline-flex; gap: 2.5px; }
.tp-badge .tp-stars i { width: 17px; height: 17px; background: #00B67A; display: grid; place-items: center; border-radius: 2.5px; }
.tp-badge .tp-stars svg { width: 11px; height: 11px; color: #fff; }
.tp-badge b { color: var(--ink); font-weight: 600; }
.tp-badge .tp-mark { display: inline-flex; align-items: center; gap: 4px; font-weight: 700; color: var(--ink); }
.tp-badge .tp-mark svg { width: 13px; height: 13px; color: #00B67A; }

/* Headline — flat & heavy, coral key words w/ scribble underline */
.display {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(44px, 6.5vw, 82px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.display .hl { color: var(--coral); position: relative; display: inline-block; }
.display .hl .scribble {
  position: absolute; left: -1%; right: -1%; bottom: -0.16em; width: 102%; height: .18em;
  color: var(--lilac); pointer-events: none;
}
.display .hl .spark {
  position: absolute; top: -0.32em; right: -0.42em; width: .4em; height: .4em;
  color: var(--lilac); pointer-events: none;
}
.display .amp { font-weight: 300; color: var(--ink-secondary); margin-inline: .08em; }
.display .word-tile {
  display: inline-block; vertical-align: -0.06em;
  width: .82em; height: .82em; margin-left: .14em;
  transform: rotate(7deg);
  filter: drop-shadow(0 2px 3px rgba(30,2,53,.15));
}
.display .word-tile img { width: 100%; height: 100%; display: block; }

.hero__caption {
  font-size: 19px; line-height: 1.6; color: var(--ink-secondary);
  max-width: 620px; margin: 24px auto 0;
  text-wrap: pretty;
}
.hero__caption strong { color: var(--ink); font-weight: 600; }

.hero__actions { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero__micro { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 22px; flex-wrap: wrap; font-size: 13.5px; color: var(--ink-secondary); }
.hero__micro span { display: inline-flex; align-items: center; gap: 7px; }
.hero__micro svg { width: 15px; height: 15px; color: var(--success); flex: none; }

/* floating spec tags pinned to the page sides (brand chips as physical stickers) */
.side-tag {
  position: absolute; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--border-subtle); border-radius: 999px;
  padding: 9px 16px; font-size: 13.5px; font-weight: 600; color: var(--ink);
  box-shadow: 0 2px 6px rgba(30,2,53,.07), inset 0 1px 0 #fff;
  white-space: nowrap; pointer-events: none;
}
.side-tag .tag-dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.side-tag em { font-style: normal; font-weight: 500; color: var(--ink-secondary); }
.side-tag--lilac { background: var(--lilac-soft); border-color: #E5CBF7; }
@media (max-width: 1180px) { .side-tag { display: none; } }

/* decorations */
.orbit { position: absolute; border: 1.6px dashed rgba(208,128,255,.32); border-radius: 50%; pointer-events: none; }
.deco.star { position: absolute; color: var(--lilac); pointer-events: none; }
.deco.star--coral { color: var(--coral); }
.deco.spin { animation: spin 90s linear infinite; transform-origin: center; }
@keyframes spin { to { rotate: 360deg; } }

/* ============ BENTO — use-case cards ============ */
.bento { position: relative; z-index: 2; margin-top: 76px; }
.bento__head { text-align: center; margin-bottom: 22px; }
.bento__head .eyebrow { font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--coral); white-space: nowrap; }
.bento__head h2 { font-size: 30px; font-weight: 800; letter-spacing: -0.025em; margin-top: 6px; }

.bento__scroller { position: relative; }
.bento__nav button {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border-subtle); color: var(--ink);
  display: grid; place-items: center;
  box-shadow: 0 2px 8px rgba(30,2,53,.1);
  transition: background .15s ease, color .15s ease, opacity .15s ease, border-color .15s ease;
}
.bento__nav button:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.bento__nav button[disabled] { opacity: 0; pointer-events: none; }
.bento__nav #bPrev { left: -14px; }
.bento__nav #bNext { right: -14px; }
.bento__nav svg { width: 17px; height: 17px; }

.bento__row {
  display: flex; gap: 14px;
  overflow-x: auto; scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding: 4px 4px 10px;
  scrollbar-width: none;
}
.bento__row::-webkit-scrollbar { display: none; }

.bcard {
  flex: 0 0 219px; scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  box-shadow: inset 0 -2px 0 rgba(30,2,53,.04);
  padding: 18px 18px 14px;
  display: flex; flex-direction: column;
  min-height: 318px;
  transition: transform .18s ease, border-color .18s ease;
}
.bcard:hover { transform: translateY(-4px); border-color: #CDB8E0; }
.bcard h3 { font-size: 16.5px; font-weight: 700; letter-spacing: -0.01em; }
.bcard > p { font-size: 13px; line-height: 1.5; color: var(--ink-secondary); margin-top: 6px; text-wrap: pretty; }

/* card artwork area */
.bcard__art {
  margin-top: auto; height: 148px; border-radius: 13px;
  position: relative; overflow: hidden;
  border: 1px solid #EFE9F6;
  background: linear-gradient(180deg, #FAF6FF 0%, #F1E7FB 100%);
}
.bcard__art--peach { background: linear-gradient(180deg, #FFF4ED 0%, #FFE5D5 100%); border-color: #F8E4D6; }
.bcard__art .art-orbit { position: absolute; border: 1.3px dashed rgba(208,128,255,.45); border-radius: 50%; width: 180px; height: 180px; right: -55px; top: -65px; }
.bcard__art--peach .art-orbit { border-color: rgba(234,83,53,.3); }

/* mini browser window */
.mw { position: absolute; background: #fff; border: 1px solid var(--border-subtle); border-radius: 10px; overflow: hidden; }
.mw__bar { display: flex; align-items: center; gap: 4px; padding: 6px 8px; border-bottom: 1px solid #EFEFEF; }
.mw__bar i { width: 6px; height: 6px; border-radius: 50%; background: #E3D9EE; }
.mw__bar i:nth-child(1) { background: #EA5335; opacity: .75; }
.mw__bar i:nth-child(2) { background: #FFB48F; }
.mw__bar i:nth-child(3) { background: #D080FF; }
.mw__body { padding: 8px 9px; }
.mw__body * { white-space: nowrap; }

/* mini ui atoms */
.bar { height: 7px; border-radius: 4px; background: #EFE9F6; }
.bar--fill { background: linear-gradient(90deg, var(--coral), #FFB48F); }
.mini-pill { display: inline-flex; align-items: center; gap: 4px; font-size: 9px; font-weight: 700; letter-spacing: .02em; border-radius: 999px; padding: 3px 7px; line-height: 1; white-space: nowrap; flex: none; }
.mini-pill--green { background: rgba(46,158,107,.13); color: var(--success); }
.mini-pill--coral { background: rgba(234,83,53,.12); color: var(--coral); }
.mini-pill--lilac { background: var(--lilac-soft); color: #8B33C7; }

/* ticket stub */
.stub {
  position: absolute; display: flex; align-items: stretch;
  background: #fff; border: 1px solid var(--border-subtle); border-radius: 9px;
  overflow: hidden;
}
.stub * { white-space: nowrap; }
.stub__main { padding: 6px 9px; line-height: 1.45; }
.stub__tear { border-left: 1.5px dashed #E0D5EC; display: flex; align-items: center; padding: 0 7px; }
.stub__barcode { width: 26px; height: 30px; background: repeating-linear-gradient(90deg, var(--ink) 0 1.5px, transparent 1.5px 3.5px); opacity: .8; }

/* social account rows */
.acct {
  position: absolute; left: 12px; right: 12px;
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--border-subtle); border-radius: 10px;
  padding: 5px 9px;
}
.acct > span:nth-child(2) { line-height: 1.3; }
.acct__av { width: 24px; height: 24px; border-radius: 50%; flex: none; display: grid; place-items: center; font-size: 9px; font-weight: 800; color: #fff; }
.acct__av svg { width: 14px; height: 14px; }
.acct__handle { font-size: 10px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.acct__line { font-size: 8.5px; color: var(--gray-500); white-space: nowrap; }
.acct__right { margin-left: auto; display: flex; align-items: center; gap: 5px; }

/* dark "something else" card */
.bcard--dark {
  background:
    radial-gradient(280px 200px at 110% -10%, rgba(208,128,255,.26), transparent 60%),
    radial-gradient(240px 190px at -10% 110%, rgba(234,83,53,.26), transparent 58%),
    var(--ink);
  border-color: var(--ink);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.bcard--dark h3 { color: #fff; font-size: 21px; line-height: 1.2; }
.bcard--dark > p { color: rgba(244,244,244,.72); }
.bcard__chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.chip { display: inline-flex; align-items: center; border-radius: 999px; font-size: 11.5px; font-weight: 500; padding: 6px 11px; line-height: 1; white-space: nowrap; }
.chip--dark-outline { border: 1px solid rgba(255,255,255,.24); color: rgba(244,244,244,.85); }
.bcard__go {
  margin-top: auto; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 14.5px; color: #fff;
}
.bcard__go .ring { width: 40px; height: 40px; border-radius: 50%; background: var(--coral); display: grid; place-items: center; box-shadow: inset 0 1px 0 rgba(255,255,255,.3), inset 0 -2px 3px rgba(140,30,10,.3); transition: transform .15s ease; }
.bcard__go:hover .ring { transform: translateX(3px); }
.bcard__go svg { width: 16px; height: 16px; color: #fff; }

@media (max-width: 880px) {
  .bcard { flex-basis: 250px; }
  .bento__nav #bPrev { left: 4px; }
  .bento__nav #bNext { right: 4px; }
}

/* ============ SECTION 2 — PRODUCTS (tabs) ============ */
.products { position: relative; padding: 88px 0 0; overflow: clip; }
.products::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(720px 360px at 14% 4%, rgba(208,128,255,.09), transparent 60%),
    radial-gradient(680px 340px at 88% 16%, rgba(255,180,143,.12), transparent 60%);
}
.products::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 560px; pointer-events: none;
  background-image: radial-gradient(rgba(30,2,53,.06) 1.2px, transparent 1.2px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(680px 360px at 50% 26%, #000 12%, transparent 72%);
  mask-image: radial-gradient(680px 360px at 50% 26%, #000 12%, transparent 72%);
}
.products .container { position: relative; z-index: 1; }
.sec-head { text-align: center; max-width: 640px; margin-inline: auto; }
.sec-head .eyebrow { font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--coral); }
.sec-head h2 { font-size: 38px; font-weight: 800; letter-spacing: -0.03em; margin-top: 8px; line-height: 1.1; }
.sec-head .sec-lead { font-size: 16.5px; color: var(--ink-secondary); margin-top: 12px; text-wrap: pretty; }

/* segmented tabs */
.ptabs { display: flex; justify-content: center; margin-top: 36px; }
.ptabs__rail { display: inline-flex; gap: 4px; background: #ECEAEE; border: 1px solid #E2DFE6; border-radius: 14px; padding: 4px; }
.ptab {
  border: 1px solid transparent; background: transparent; border-radius: 11px;
  padding: 10px 22px; font-size: 15px; font-weight: 500; color: var(--ink-secondary);
  white-space: nowrap; transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.ptab:hover { color: var(--ink); }
.ptab.is-on { background: #fff; border-color: var(--border-subtle); color: var(--ink); font-weight: 600; box-shadow: 0 1px 2px rgba(30,2,53,.06); }
@media (max-width: 640px) {
  .ptabs { margin-top: 28px; }
  .ptabs__rail {
    width: 100%; flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start;
    scrollbar-width: none; -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity;
  }
  .ptabs__rail::-webkit-scrollbar { display: none; }
  .ptab { flex: 0 0 auto; scroll-snap-align: start; }
}

/* plan grid */
.plan-panel { margin-top: 34px; }
.plan-panel[hidden] { display: none; }
.plan-grid { display: flex; gap: 18px; justify-content: center; align-items: stretch; flex-wrap: wrap; }
.plan { flex: 1 1 0; min-width: 252px; max-width: 350px; background: #fff; border: 1px solid var(--border-subtle); border-radius: 20px; padding: 24px 24px 26px; display: flex; flex-direction: column; transition: border-color .16s ease; }
.plan:hover { border-color: #CBC4D4; }
.plan__head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 18px; }
.plan__head h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.plan__pop { font-size: 14px; font-weight: 600; color: var(--coral); white-space: nowrap; }
.plan__from { font-size: 13.5px; color: var(--ink-secondary); }
.plan__price { display: flex; align-items: baseline; gap: 5px; margin-top: 4px; }
.plan__price .amt { font-size: 34px; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); line-height: 1.1; }
.plan__price .per { font-size: 14px; color: var(--ink-secondary); white-space: nowrap; }
.plan__bulk { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--gray-500); margin-top: 10px; }
.plan__bulk svg { width: 14px; height: 14px; flex: none; }
.plan__buy {
  display: flex; align-items: center; justify-content: center;
  width: 100%; border-radius: 12px; padding: 14px 16px; margin-top: 16px;
  font-size: 15px; font-weight: 600; line-height: 1;
  background: #F1EFF3; color: var(--ink);
  transition: background .15s ease, color .15s ease;
}
.plan__buy:hover { background: #E6E2EA; }
.plan__buy--coral { background: var(--coral); color: #fff; box-shadow: inset 0 1px 0 rgba(255,255,255,.25), inset 0 -2px 3px rgba(140,30,10,.2); }
.plan__buy--coral:hover { background: var(--coral-hover); color: #fff; }
.plan__div { border: 0; border-top: 1px solid #EEECF0; margin: 22px 0 18px; }
.plan__feats { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.plan__feats li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; line-height: 1.45; color: var(--gray-800); }
.plan__feats li svg { width: 17px; height: 17px; flex: none; margin-top: 1px; color: var(--gray-500); }
.plan__feats li.info { color: var(--ink); font-weight: 500; }
.plan__feats li.info svg { color: var(--coral); }
.plan__plus { display: flex; align-items: center; gap: 12px; margin: 20px 0 16px; }
.plan__plus::before, .plan__plus::after { content: ""; flex: 1; border-top: 1px solid #EEECF0; }
.plan__plus span { width: 26px; height: 26px; border-radius: 8px; background: #F7F5F9; display: grid; place-items: center; color: var(--coral); font-weight: 600; font-size: 15px; line-height: 1; flex: none; }
.plan__sublabel { font-size: 14px; font-weight: 600; color: var(--ink); margin: 2px 0 10px; }
.plan__locs { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.plan__locs li { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--gray-800); }
.plan__locs img { width: 20px; height: 20px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(30,2,53,.1); flex: none; }
.plan__more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--coral); }
.plan__more:hover { color: var(--coral-hover); }
.plan__more svg { width: 13px; height: 13px; }
.plan__note { font-size: 13px; color: var(--gray-500); text-align: center; margin-top: 18px; }

/* region dropdowns inside plan cards */
.plan-region { border: 1px solid #EEECF0; border-radius: 11px; margin-bottom: 8px; overflow: hidden; background: #FCFBFD; }
.plan-region summary { display: flex; align-items: center; gap: 8px; padding: 11px 13px; font-size: 13.5px; font-weight: 600; color: var(--ink); cursor: pointer; list-style: none; user-select: none; }
.plan-region summary::-webkit-details-marker { display: none; }
.plan-region summary .cnt { margin-left: auto; font-size: 12px; font-weight: 500; color: var(--gray-500); }
.plan-region summary .car { width: 13px; height: 13px; color: var(--gray-500); transition: transform .15s ease; flex: none; }
.plan-region[open] summary .car { transform: rotate(180deg); }
.plan-region .plan__locs { padding: 1px 13px 13px; }
.loc-epyc { display: inline-flex; align-items: center; font-size: 9.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; background: #FFE9E2; color: var(--coral); border-radius: 999px; padding: 3px 8px; margin-left: auto; white-space: nowrap; }

/* server models */
.plan--wide { max-width: 720px; flex-basis: 720px; }
.models { display: flex; flex-direction: column; }
.model-row { display: flex; align-items: center; gap: 12px; padding: 10px 2px; border-bottom: 1px solid #F2F0F4; font-size: 14px; }
.model-row:last-child { border-bottom: 0; }
.model-row .mname { font-weight: 700; color: var(--ink); width: 52px; flex: none; font-family: ui-monospace, Menlo, monospace; font-size: 13px; }
.model-row .mspec { color: var(--ink-secondary); font-size: 13.5px; }
.model-row .mprice { margin-left: auto; font-weight: 700; color: var(--ink); white-space: nowrap; }
.model-row .mprice em { font-style: normal; font-weight: 500; font-size: 12px; color: var(--gray-500); }
.plan__locs--inline { flex-direction: row; flex-wrap: wrap; gap: 14px; }


.custom-strip {
  margin-top: 26px;
  background: #F7F5F9; border-radius: 16px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 24px; font-size: 14.5px; color: var(--ink);
  flex-wrap: wrap;
}
.custom-strip b { font-weight: 600; }
.custom-strip a { color: var(--coral); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.custom-strip a:hover { color: var(--coral-hover); }
.custom-strip a svg { width: 15px; height: 15px; }

/* payments strip */
.pay-strip { margin-top: 34px; text-align: center; }
.pay-strip__label { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 14px; }
.pay-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.pay-pill {
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
  background: #fff; border: 1px solid var(--border-subtle); border-radius: 999px;
  padding: 8px 15px 8px 11px; font-size: 13px; font-weight: 500; color: var(--gray-800);
  box-shadow: inset 0 -1px 0 rgba(30,2,53,.04);
}
.pay-pill svg { width: 18px; height: 18px; flex: none; }
.pay-pill--more { border-style: dashed; color: var(--ink-secondary); padding: 8px 15px; }
.pay-strip__sub { font-size: 12.5px; color: var(--gray-500); margin-top: 14px; }

/* ============ SECTION 3 — WHY LEMONCLUB (editorial) ============ */
.why {
  position: relative; overflow: clip;
  margin-top: 4px;
  padding: 92px 0 96px;
  background: linear-gradient(180deg, #F9F6FB 0%, #F2EDF7 100%);
  border-top: 1px solid #E9E3EE;
  border-bottom: 1px solid #E9E3EE;
}
.why::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(760px 380px at 12% 0%, rgba(255,180,143,.14), transparent 60%),
    radial-gradient(820px 420px at 92% 100%, rgba(208,128,255,.13), transparent 60%);
}
.why > .container { position: relative; z-index: 1; }
.why .sec-head--left { text-align: left; margin-inline: 0; max-width: 560px; }
.why .sec-head--left h2 { font-size: 36px; }

/* editorial rows */
.why-rows { margin-top: 16px; }
.why-row { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 60px; align-items: center; padding: 46px 0; border-top: 1px solid #E4DDEA; }
.why-row:first-child { border-top: 0; }
.why-row--flip .why-copy { order: 2; }
.why-row--flip .why-fig { order: 1; }
.why-copy .num { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 800; letter-spacing: .12em; color: var(--coral); }
.why-copy .num::after { content: ""; width: 34px; height: 1.5px; background: var(--coral); opacity: .4; }
.why-copy h3 { font-size: 25px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.18; margin-top: 12px; }
.why-copy p { font-size: 15px; line-height: 1.65; color: #564E60; margin-top: 13px; max-width: 46ch; text-wrap: pretty; }
.why-fig { position: relative; min-height: 380px; display: flex; align-items: center; justify-content: center; }

/* print/sticker aesthetic — soft depth */
.fig-card {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, #FDFBFE 100%);
  border: 1px solid #ECE7F1; border-radius: 18px;
  box-shadow:
    0 1px 2px rgba(30,2,53,.05),
    0 14px 28px -14px rgba(30,2,53,.14),
    0 38px 70px -30px rgba(30,2,53,.26);
}
.why-fig::before {
  content: ""; position: absolute; inset: 6% -4%; pointer-events: none;
  background:
    radial-gradient(44% 50% at 46% 44%, rgba(234,83,53,.08), transparent 70%),
    radial-gradient(40% 46% at 62% 62%, rgba(208,128,255,.11), transparent 70%);
  filter: blur(2px);
}

/* flow card (row 1) */
.flow-card { width: 416px; padding: 24px 26px 22px; transform: rotate(-1.2deg); border-radius: 20px; }
.flow-title { font-size: 11px; font-weight: 800; letter-spacing: .14em; color: var(--gray-500); margin-bottom: 16px; }
.flow-steps { position: relative; display: flex; flex-direction: column; gap: 12px; }
.flow-steps::before { content: ""; position: absolute; left: 20px; top: 22px; bottom: 22px; border-left: 1.5px dashed #D8D2DE; }
.flow-step { position: relative; display: flex; align-items: center; gap: 13px; padding: 7px 10px 7px 0; }
.flow-step .fs-ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; flex: none; background: var(--lilac-soft); color: #8B33C7; border: 1.5px solid #fff; box-shadow: 0 0 0 1.5px #ECE6F2; position: relative; z-index: 1; }
.flow-step .fs-ic svg { width: 20px; height: 20px; }
.flow-step .fs-ic img { width: 28px; height: 28px; }
.flow-step b { display: block; font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.25; }
.flow-step span.fs-sub { display: block; font-size: 12px; color: var(--gray-500); line-height: 1.35; margin-top: 2px; }
.flow-step--lemon .fs-ic { background: #FFF6F1; box-shadow: 0 0 0 1.5px #F4D7C8; }
.flow-step--you { background: #FFF1EA; border: 1px solid #F8DDCC; border-radius: 14px; padding: 11px 14px; }
.flow-step--you .fs-ic { background: var(--coral); color: #fff; box-shadow: 0 0 0 1.5px #F8DDCC; }
.flow-step--you b { color: var(--ink); }
.flow-step--you .fs-sub { color: var(--coral); font-weight: 700; }
.flow-merge { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 6px; margin: -2px 0 -2px 36px; font-size: 9.5px; font-weight: 800; letter-spacing: .1em; color: var(--gray-500); }
.fig-src { position: absolute; display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.94); border: 1px solid #E7E1ED; border-radius: 999px; padding: 7px 14px; font-size: 11px; font-weight: 700; color: var(--ink); box-shadow: 0 2px 5px rgba(30,2,53,.07), 0 12px 22px -10px rgba(30,2,53,.18); white-space: nowrap; }
.fig-src .dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }

/* membership card fan (row 2) */
.cardfan { position: relative; width: 100%; height: 352px; }
.cardfan::after {
  content: ""; position: absolute; left: 50%; bottom: 26px; width: 320px; height: 34px;
  transform: translateX(-50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(30,2,53,.18), transparent 72%);
  filter: blur(7px); pointer-events: none;
}
.mcard {
  position: absolute; left: 50%; top: 50%; z-index: 1;
  width: 302px; height: 184px; border-radius: 18px;
  border: 1px solid rgba(30,2,53,.16);
  padding: 15px 17px;
  display: flex; flex-direction: column;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    0 2px 4px rgba(30,2,53,.08),
    0 18px 32px -12px rgba(30,2,53,.3);
}
.mcard__top { display: flex; align-items: center; gap: 8px; font-size: 10.5px; font-weight: 800; letter-spacing: .12em; }
.mcard__top img { width: 20px; height: 20px; }
.mcard__tier { font-size: 25px; font-weight: 800; letter-spacing: -0.01em; margin-top: auto; }
.mcard__spend { font-size: 12px; opacity: .75; margin-top: 2px; }
.mcard__off { position: absolute; right: 18px; bottom: 16px; text-align: right; }
.mcard__off b { display: block; font-size: 28px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.mcard__off span { font-size: 9px; font-weight: 700; letter-spacing: .08em; opacity: .75; white-space: nowrap; }
.mcard--silver { transform: translate(-50%, -50%) translate(-86px, -42px) rotate(-9deg); background: linear-gradient(135deg, #F4F4F6, #D8D9DF); color: #45404E; }
.mcard--gold { transform: translate(-50%, -50%) translate(0, -6px) rotate(-2deg); background: linear-gradient(135deg, #FFE9A3, #EFBE45); color: #5C4708; }
.mcard--diamond { transform: translate(-50%, -50%) translate(86px, 40px) rotate(6deg); background: linear-gradient(140deg, #BFE0F5 0%, #7EB4DE 55%, #5B99C8 100%); color: #0F344D; box-shadow: inset 0 1px 0 rgba(255,255,255,.55), 0 3px 6px rgba(15,52,77,.16), 0 26px 48px -14px rgba(15,52,77,.45); }
.mcard--diamond .mcard__off b { color: #0F344D; }
.fan-cap { position: absolute; left: 0; right: 0; bottom: -6px; text-align: center; font-size: 12px; color: var(--gray-500); }

/* chat (row 3) */
.chat-card { width: min(452px, 96%); height: 308px; transform: rotate(1.2deg); }
.chat-head { position: absolute; left: 18px; top: 16px; right: 18px; display: flex; align-items: center; gap: 7px; }
.chat-head .avail { display: inline-flex; align-items: center; gap: 5px; background: rgba(46,158,107,.12); color: var(--success); font-size: 9.5px; font-weight: 800; letter-spacing: .06em; border-radius: 999px; padding: 4px 10px; }
.chat-head .avail i { width: 6px; height: 6px; border-radius: 50%; background: var(--success); }
.chat-head .who { font-size: 13px; font-weight: 700; color: var(--ink); }
.chat-bubble { position: absolute; max-width: 76%; border-radius: 14px; padding: 11px 14px; font-size: 12.5px; line-height: 1.5; }
.chat-bubble--in { left: 18px; background: #F4F1F7; color: var(--ink); border-bottom-left-radius: 4px; }
.chat-bubble--out { right: 18px; background: var(--ink); color: rgba(244,244,244,.92); border-bottom-right-radius: 4px; }
.chat-bubble b { font-weight: 700; }

/* ---- why figures: scroll-reveal animations ---- */
@media (prefers-reduced-motion: no-preference) {
  .flow-card, .chat-card { transition: opacity .6s ease, transform .7s cubic-bezier(.22,.8,.36,1); }
  .flow-step { transition: opacity .5s ease, transform .5s cubic-bezier(.22,.8,.36,1); }
  .mcard { transition: opacity .55s ease, transform .8s cubic-bezier(.22,.8,.36,1), box-shadow .8s ease; }
  .cardfan::after, .fan-cap { transition: opacity .7s ease; }
  .chat-bubble { transition: opacity .45s ease, transform .45s cubic-bezier(.22,.8,.36,1); }
  .chat-card .mini-pill { transition: opacity .45s ease, transform .45s ease; }

  #why.anim-ready .why-row:not(.in-view) .flow-card { opacity: 0; transform: rotate(-1.2deg) translateY(28px); }
  #why.anim-ready .why-row:not(.in-view) .flow-step { opacity: 0; transform: translateX(-16px); }
  #why.anim-ready .why-row:not(.in-view) .mcard { opacity: 0; }
  #why.anim-ready .why-row:not(.in-view) .mcard--silver { transform: translate(-50%, -50%) translate(0, 20px) rotate(-2deg); }
  #why.anim-ready .why-row:not(.in-view) .mcard--gold { transform: translate(-50%, -50%) translate(0, 14px) rotate(0deg); }
  #why.anim-ready .why-row:not(.in-view) .mcard--diamond { transform: translate(-50%, -50%) translate(0, 8px) rotate(2deg); }
  #why.anim-ready .why-row:not(.in-view) .cardfan::after,
  #why.anim-ready .why-row:not(.in-view) .fan-cap { opacity: 0; }
  #why.anim-ready .why-row:not(.in-view) .chat-card { opacity: 0; transform: rotate(1.2deg) translateY(28px); }
  #why.anim-ready .why-row:not(.in-view) .chat-bubble { opacity: 0; transform: translateY(12px) scale(.97); }
  #why.anim-ready .why-row:not(.in-view) .chat-card .mini-pill { opacity: 0; transform: translateY(8px); }

  .why-row.in-view .flow-step:nth-child(1) { transition-delay: .18s; }
  .why-row.in-view .flow-step:nth-child(2) { transition-delay: .3s; }
  .why-row.in-view .flow-step:nth-child(3) { transition-delay: .42s; }
  .why-row.in-view .flow-step:nth-child(4) { transition-delay: .54s; }
  .why-row.in-view .mcard--gold { transition-delay: .12s; }
  .why-row.in-view .mcard--diamond { transition-delay: .24s; }
  .why-row.in-view .cardfan::after { transition-delay: .4s; }
  .why-row.in-view .fan-cap { transition-delay: .55s; }
  .why-row.in-view .chat-bubble:nth-of-type(2) { transition-delay: .25s; }
  .why-row.in-view .chat-bubble:nth-of-type(3) { transition-delay: .55s; }
  .why-row.in-view .chat-bubble:nth-of-type(4) { transition-delay: .85s; }
  .why-row.in-view .chat-card .mini-pill { transition-delay: 1.05s; }

  .chat-head .avail i { animation: availPulse 2.2s ease-in-out infinite; }
  @keyframes availPulse { 50% { box-shadow: 0 0 0 5px rgba(46,158,107,.15); } }
}

/* guarantees strip */
.why-strip {
  margin-top: 56px;
  background: #fff; border: 1px solid #E7E1ED; border-radius: 22px;
  box-shadow: 0 1px 2px rgba(30,2,53,.04), 0 14px 32px -16px rgba(30,2,53,.12);
  display: grid; grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.why-strip > div { padding: 28px 30px; border-left: 1.5px dashed #E7E1ED; }
.why-strip > div:first-child { border-left: 0; }
.why-strip h4 { font-size: 16.5px; font-weight: 700; letter-spacing: -0.01em; display: flex; align-items: center; gap: 9px; }
.why-strip h4 svg { width: 17px; height: 17px; color: var(--coral); flex: none; }
.why-strip p { font-size: 13.5px; line-height: 1.55; color: var(--ink-secondary); margin-top: 7px; text-wrap: pretty; }

@media (max-width: 1024px) {
  .why-row { grid-template-columns: 1fr; gap: 32px; }
  .why-row--flip .why-copy { order: 1; }
  .why-row--flip .why-fig { order: 2; }
  .why-strip { grid-template-columns: repeat(2, 1fr); }
  .why-strip > div:nth-child(3) { border-left: 0; }
  .why-strip > div:nth-child(n+3) { border-top: 1.5px dashed #E7E1ED; }
}
@media (max-width: 560px) { .why-strip { grid-template-columns: 1fr; } .why-strip > div { border-left: 0 !important; } }

/* ============ SUPPORTED SITES — full-bleed stitched band ============ */
.sites {
  margin-top: 84px;
  padding: 46px 0 52px;
  position: relative; z-index: 2;
  background: #FCFBF8;
  border-top: 2.5px dashed #C9C2D0;
  border-bottom: 2.5px dashed #C9C2D0;
}
.sites__label { text-align: center; font-size: 13px; font-weight: 500; letter-spacing: .09em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 26px; }
.sites__label b { color: var(--ink); font-weight: 600; }
.marquee { overflow: clip; position: relative; padding-block: 4px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); }
.marquee__inner { display: flex; gap: 12px; width: max-content; animation: scroll 38s linear infinite; }
.marquee:hover .marquee__inner { animation-play-state: paused; }
.marquee--rev .marquee__inner { animation-direction: reverse; animation-duration: 44s; }
.marquee + .marquee { margin-top: 4px; }
@keyframes scroll { to { transform: translateX(-50%); } }
.site-pill {
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  background: #fff; border: 1px solid var(--border-subtle); border-radius: 999px;
  padding: 10px 20px 10px 14px; font-size: 14.5px; font-weight: 600; color: var(--gray-800);
  box-shadow: inset 0 -1px 0 rgba(30,2,53,.04);
  transition: border-color .15s ease, transform .15s ease, color .15s ease;
}
a.site-pill:hover { border-color: var(--coral); color: var(--ink); transform: translateY(-2px); }
.site-pill img { width: 18px; height: 18px; border-radius: 5px; flex: none; }
.site-pill em { font-style: normal; font-weight: 500; font-size: 12px; color: var(--gray-500); }

/* review marquee under payments */
.rev-marquee-wrap { margin-top: 40px; }
.rev-marquee .marquee__inner { gap: 14px; animation-duration: 46s; align-items: stretch; }
.rev-marquee .rev-card { flex: none; width: 292px; white-space: normal; border: 1px solid #C9E8D6; box-shadow: 0 1px 2px rgba(20,80,50,.07), 0 10px 22px -14px rgba(20,80,50,.18); }
.rev-marquee + .rev-foot, .rev-marquee-wrap .rev-foot { margin-top: 20px; }

/* ============ SECTION 4 — REVIEWS (Trustpilot) ============ */
.reviews { position: relative; padding: 118px 0 0; }
.rev-panel {
  position: relative; overflow: clip;
  background: linear-gradient(180deg, #E4F7EC 0%, #D2F0DF 100%);
  border: 1px solid #BFE5CF;
  border-radius: 30px;
  padding: 50px 56px 44px;
  box-shadow: 0 1px 3px rgba(20,80,50,.06), 0 24px 48px -24px rgba(20,80,50,.22);
}
.rev-panel .sec-head h2 { font-size: 32px; color: #00B67A; }
.rev-panel .sec-head .sec-lead { margin-top: 8px; }
.rev-scroller { position: relative; margin-top: 30px; }
.rev-nav button {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: 1px solid #CDE9D9; color: var(--ink);
  display: grid; place-items: center;
  box-shadow: 0 2px 8px rgba(20,80,50,.12);
  transition: background .15s ease, color .15s ease, opacity .15s ease;
}
.rev-nav button:hover { background: #00B67A; border-color: #00B67A; color: #fff; }
.rev-nav button[disabled] { opacity: 0; pointer-events: none; }
.rev-nav #rPrev { left: -16px; }
.rev-nav #rNext { right: -16px; }
.rev-nav svg { width: 16px; height: 16px; }
.rev-row { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x proximity; scroll-behavior: smooth; padding: 4px 2px 8px; scrollbar-width: none; }
.rev-row::-webkit-scrollbar { display: none; }
.rev-card {
  flex: 0 0 262px; scroll-snap-align: start;
  background: #fff; border: 1px solid rgba(20,80,50,.08); border-radius: 16px;
  padding: 18px 18px 16px;
  display: flex; flex-direction: column;
  box-shadow: 0 1px 2px rgba(20,80,50,.06), 0 10px 24px -14px rgba(20,80,50,.18);
}
.rev-card__top { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.tp-row { display: inline-flex; gap: 2px; }
.tp-row i { width: 18px; height: 18px; background: #00B67A; display: grid; place-items: center; border-radius: 2px; }
.tp-row svg { width: 12px; height: 12px; color: #fff; }
.rev-verified { margin-left: auto; display: inline-flex; align-items: center; gap: 4px; font-size: 11px; color: var(--gray-500); }
.rev-verified svg { width: 13px; height: 13px; color: #6C6C6C; }
.rev-card h4 { font-size: 14.5px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; margin-bottom: 6px; }
.rev-card .rev-txt { font-size: 12.5px; line-height: 1.55; color: var(--gray-800); flex: 1; text-wrap: pretty; }
.rev-card .rev-meta { display: flex; align-items: center; gap: 7px; margin-top: 14px; padding-top: 12px; border-top: 1px solid #F0F0F0; font-size: 11.5px; color: var(--gray-500); white-space: nowrap; }
.rev-meta img { width: 16px; height: 16px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(30,2,53,.1); }
.rev-meta b { color: var(--ink); font-weight: 600; }
.rev-foot { text-align: center; margin-top: 22px; font-size: 13.5px; color: var(--gray-800); }
.rev-foot b { font-weight: 700; }
.rev-foot .tp-mark { display: inline-flex; align-items: center; gap: 5px; font-weight: 700; color: var(--ink); margin-left: 6px; }
.rev-foot .tp-mark svg { width: 15px; height: 15px; color: #00B67A; }
@media (max-width: 720px) { .rev-panel { padding: 34px 22px 30px; } }

/* ============ TOP PROXY LOCATIONS ============ */
.toploc { position: relative; padding: 96px 0 0; }
.toploc h2 { text-align: center; font-size: 34px; font-weight: 800; letter-spacing: -0.025em; }
.toploc .toploc-sub { text-align: center; font-size: 15px; color: var(--ink-secondary); margin-top: 8px; }
.toploc-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-top: 36px; }
.loc-card {
  background: #fff; border: 1px solid var(--border-subtle); border-radius: 18px;
  padding: 22px 20px 20px;
  box-shadow: 0 1px 2px rgba(30,2,53,.04), 0 10px 24px -14px rgba(30,2,53,.1);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
a.loc-card:hover { transform: translateY(-4px); border-color: #CDB8E0; box-shadow: 0 2px 4px rgba(30,2,53,.05), 0 16px 30px -14px rgba(30,2,53,.16); }
.loc-card .lflag { width: 54px; height: 39px; object-fit: cover; border-radius: 8px; border: 1px solid rgba(30,2,53,.1); box-shadow: 0 2px 5px rgba(30,2,53,.12); display: block; }
.loc-card .lname { display: block; font-size: 16px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; margin-top: 16px; }
.loc-card .lips { display: block; font-size: 12.5px; color: var(--gray-500); margin-top: 3px; }
.toploc__cta { display: flex; justify-content: center; margin-top: 30px; }
.btn--outline-coral {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--coral); color: var(--coral);
  border-radius: 12px; padding: 13px 24px;
  font-size: 15px; font-weight: 600; line-height: 1; background: transparent;
  transition: background .15s ease, color .15s ease;
}
.btn--outline-coral:hover { background: var(--coral); color: #fff; }
.btn--outline-coral svg { width: 15px; height: 15px; }
@media (max-width: 1024px) { .toploc-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .toploc-grid { grid-template-columns: repeat(2, 1fr); } .toploc { padding-top: 64px; } .toploc h2 { font-size: 27px; } }

/* ============ CTA BOX ============ */
.ctabox { position: relative; padding: 96px 0 0; }
.cta-panel::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(30,2,53,.06) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(520px 260px at 50% 40%, #000 8%, transparent 74%);
  mask-image: radial-gradient(520px 260px at 50% 40%, #000 8%, transparent 74%);
}
.cta-panel > .orbit, .cta-panel > .deco, .cta-panel > .cta-logo, .cta-panel > .fig-src { z-index: 0; }
.cta-panel h2, .cta-panel .cta-sub, .cta-panel .cta-actions { position: relative; z-index: 1; }
.cta-logo { position: absolute; width: 88px; height: 88px; transform: rotate(-10deg); filter: drop-shadow(4px 6px 0 rgba(30,2,53,.13)); }
@media (max-width: 980px) { .cta-logo, .cta-panel .fig-src { display: none; } }
.cta-panel {
  position: relative; overflow: clip; text-align: center;
  background: #FCFBF8;
  border: 1px solid #ECE9E4;
  border-radius: 30px;
  padding: 68px 32px 64px;
  box-shadow: 0 1px 3px rgba(30,2,53,.05);
}
.cta-panel h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; letter-spacing: -0.025em; }
.cta-panel .cta-sub { font-size: 16px; color: var(--ink-secondary); margin-top: 10px; }
.cta-panel .cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.btn--discord { background: linear-gradient(180deg, #F0633F 0%, var(--coral) 52%, #DE4226 100%); color: #fff; box-shadow: inset 0 1px 0 rgba(255,255,255,.32), inset 0 -2px 3px rgba(140,30,10,.25), 0 1px 2px rgba(30,2,53,.14); }
.btn--discord:hover { background: linear-gradient(180deg, #E45434 0%, var(--coral-hover) 60%, #B23A22 100%); }
.btn--discord svg { width: 19px; height: 19px; }
.btn--ghost-light { background: #fff; border: 1px solid var(--border-subtle); color: var(--ink); }
.btn--ghost-light:hover { border-color: #CFCFCF; }
.cta-panel .orbit, .cta-panel .deco { pointer-events: none; }

/* ============ FAQ + CONTACT ============ */
.faq { padding: 96px 0 100px; }
.faq h2 { text-align: center; font-size: 34px; font-weight: 800; letter-spacing: -0.025em; margin-bottom: 44px; }
.faq-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 36px; align-items: start; }
.help-box {
  position: relative; overflow: clip;
  background: linear-gradient(165deg, #F6EFFC 0%, #FFE9DB 100%);
  border: 1px solid #EFE2E6; border-radius: 22px; padding: 30px;
  box-shadow: 0 1px 3px rgba(30,2,53,.05), 0 18px 38px -18px rgba(30,2,53,.16);
}
.help-box .orbit, .help-box .deco { pointer-events: none; }
.help-box > h4, .help-box > p, .help-box .help-actions, .help-box .help-link { position: relative; z-index: 1; }
.help-box h4 { font-size: 20px; font-weight: 800; letter-spacing: -0.015em; line-height: 1.25; }
.help-box p { font-size: 14px; line-height: 1.6; color: #5D5566; margin-top: 10px; }
.help-box .help-actions { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.help-box .btn { padding: 12px 20px; font-size: 14px; }
.help-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--coral); white-space: nowrap; }
.help-link:hover { color: var(--coral-hover); }
.help-link svg { width: 15px; height: 15px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff; border: 1px solid var(--border-subtle); border-radius: 15px;
  padding: 0 20px;
  box-shadow: 0 1px 2px rgba(30,2,53,.04), 0 8px 20px -14px rgba(30,2,53,.1);
  transition: border-color .16s ease;
}
.faq-item.is-open, .faq-item:hover { border-color: #CDB8E0; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: none; border: 0; text-align: left;
  padding: 19px 2px; font-size: 15.5px; font-weight: 600; color: var(--ink); font-family: inherit;
}
.faq-q .plus { width: 22px; height: 22px; flex: none; position: relative; color: var(--ink-secondary); transition: transform .2s ease, color .2s ease; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; }
.faq-q .plus::before { left: 4px; right: 4px; top: 10px; height: 2px; }
.faq-q .plus::after { top: 4px; bottom: 4px; left: 10px; width: 2px; transition: opacity .2s ease; }
.faq-item.is-open .faq-q .plus { transform: rotate(90deg); color: var(--coral); }
.faq-item.is-open .faq-q .plus::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { font-size: 14px; line-height: 1.65; color: var(--ink-secondary); padding: 0 30px 19px 0; }
@media (max-width: 880px) { .faq-grid { grid-template-columns: 1fr; } }

/* ============ FOOTER ============ */
.footer { background: var(--ink); color: rgba(244,244,244,.78); position: relative; overflow: clip; }
.footer .orbit { border-color: rgba(208,128,255,.18); }
.footer__top { display: grid; grid-template-columns: 1.25fr .95fr .95fr 1fr .95fr; gap: 30px; padding: 64px 0 48px; position: relative; z-index: 1; }
.footer__brand .logo-word { color: #fff; }
.footer__brand p { font-size: 14px; line-height: 1.6; margin-top: 14px; max-width: 30ch; color: rgba(244,244,244,.6); }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); display: grid; place-items: center; color: rgba(244,244,244,.85); transition: background .15s ease, color .15s ease; }
.footer__social a:hover { background: var(--coral); color: #fff; border-color: var(--coral); }
.footer__social svg { width: 17px; height: 17px; }
.footer__col h5 { font-size: 12px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: rgba(244,244,244,.45); margin-bottom: 16px; }
.footer__col a { display: block; font-size: 14.5px; color: rgba(244,244,244,.8); padding: 5px 0; transition: color .15s ease; }
.footer__col a:hover { color: #FFB48F; }
.footer__col .floc { display: flex; align-items: center; gap: 9px; }
.footer__col .floc img { width: 17px; height: 17px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(255,255,255,.18); flex: none; }
.footer__col .floc--all { color: #FFB48F; font-weight: 600; margin-top: 4px; }
.footer__col .floc--all svg { width: 14px; height: 14px; transition: transform .15s ease; }
.footer__col .floc--all:hover { color: #fff; }
.footer__col .floc--all:hover svg { transform: translateX(3px); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 20px 0 26px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; color: rgba(244,244,244,.5); position: relative; z-index: 1; }
.footer__legal { display: flex; gap: 18px; }
.footer__legal a { color: rgba(244,244,244,.6); }
.footer__legal a:hover { color: #fff; }
@media (max-width: 880px) { .footer__top { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   MOBILE & TABLET OPTIMIZATIONS (same design, tighter fit)
   ============================================================ */
@media (max-width: 768px) {
  .ribbon { font-size: 12px; }
  .ribbon__row { flex-wrap: wrap; gap: 4px 12px; padding-block: 8px; padding-right: 30px; text-align: center; }

  .hero { padding-top: 46px; }
  .display { font-size: clamp(37px, 10.5vw, 64px); }
  .hero__caption { font-size: 16.5px; margin-top: 18px; }
  .btn--xl { padding: 17px 28px; font-size: 16.5px; }
  .hero__micro { gap: 12px 18px; }
  .tp-badge { font-size: 12.5px; padding: 7px 14px 7px 10px; }

  .bento { margin-top: 52px; }
  .sites { margin-top: 56px; padding: 34px 0 38px; }

  .products { padding: 64px 0 0; }
  .products-end { padding-bottom: 72px; }
  .sec-head h2 { font-size: 29px; }
  .sec-head .sec-lead { font-size: 15px; }
  .plan-panel { margin-top: 26px; }
  .custom-strip { text-align: center; }
  .pay-strip { margin-top: 28px; }
  .rev-marquee-wrap { margin-top: 32px; }

  .why { padding: 60px 0 68px; }
  .why .sec-head--left h2 { font-size: 29px; }
  .why-rows { margin-top: 8px; }
  .why-row { padding: 32px 0; gap: 26px; }
  .why-copy h3 { font-size: 21px; }
  .why-copy p { font-size: 14.5px; }
  .why-fig { min-height: 0; }
  .flow-card { width: 100%; max-width: 416px; }
  .why-strip { margin-top: 36px; }
  .why-strip > div { padding: 20px 22px; }

  .ctabox { padding: 64px 0 0; }
  .cta-panel { padding: 48px 24px 46px; }
  .faq { padding: 64px 0 76px; }
  .faq h2 { font-size: 27px; margin-bottom: 28px; }
  .faq-q { font-size: 14.5px; padding: 16px 2px; }
  .footer__top { padding: 48px 0 34px; gap: 28px; }
}

@media (max-width: 560px) {
  .nav__row { height: 62px; }
  .logo-img { width: 34px; height: 34px; }
  .logo-word { font-size: 18px; }
  .nav__login { font-size: 14px; }
  .btn--nav { padding: 10px 14px; font-size: 14px; }

  .hero__actions { flex-direction: column; align-items: stretch; max-width: 340px; margin-inline: auto; }
  .hero__actions .btn { width: 100%; }

  .ptabs__rail { width: 100%; }
  .ptab { flex: 0 0 auto; padding: 10px 16px; font-size: 13.5px; }
  .plan { min-width: 100%; max-width: none; }
  .plan__price .amt { font-size: 30px; }
  .model-row .mspec { font-size: 12.5px; }

  /* loyalty card fan scales down */
  .cardfan { height: 296px; }
  .mcard { width: 236px; height: 148px; padding: 12px 14px; border-radius: 14px; }
  .mcard--silver { transform: translate(-50%, -50%) translate(-42px, -36px) rotate(-9deg); }
  .mcard--gold { transform: translate(-50%, -50%) translate(0, -6px) rotate(-2deg); }
  .mcard--diamond { transform: translate(-50%, -50%) translate(42px, 32px) rotate(6deg); }
  .mcard__top { font-size: 9px; }
  .mcard__top img { width: 16px; height: 16px; }
  .mcard__tier { font-size: 19px; }
  .mcard__spend { font-size: 10.5px; }
  .mcard__off { right: 13px; bottom: 12px; }
  .mcard__off b { font-size: 21px; }
  .fan-cap { bottom: -2px; }

  /* chat bubbles flow naturally so long wraps never overlap */
  .chat-card { height: auto; min-height: 0; padding: 48px 14px 14px; display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
  .chat-bubble { position: static; }
  .chat-bubble--out { align-self: flex-end; }
  .chat-card .mini-pill { position: static !important; align-self: flex-end; margin-top: 4px; }

  .why-strip > div + div { border-top: 1.5px dashed #E7E1ED; }

  .cta-panel h2 { font-size: 26px; }
  .cta-actions { flex-direction: column; align-items: stretch; max-width: 320px; margin-inline: auto; }
  .help-box { padding: 22px; }
  .footer__top { grid-template-columns: 1fr; gap: 26px; }
  .footer__bottom { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
