/* ============ TOKENS & BASE ============ */
:root {
  --ink: #0c0c0c;
  --text: #1c1c1c;
  --slate: #3d495b;
  --slate-2: #526279;
  --slate-3: #5c6f89;
  --border: #dde5ed;
  --card-bg: #f8fafc;
  --pale: #f4f7f9;
  --dark: #1c1c1c;
  --green: #4ADE80;
  --font-head: "Bricolage Grotesque", sans-serif;
  --font-body: "Inter", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: #fff;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input { font-family: inherit; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  border-radius: 100px;
  padding: 12px 24px;
  transition: transform .3s var(--ease), background .3s, color .3s, box-shadow .3s;
  white-space: nowrap;
}
.btn:hover { transform: scale(1.04); }
.btn:active { transform: scale(0.97); }
.btn-white { background: #fff; color: var(--ink); }
.btn-black { background: var(--ink); color: #fff; }
.btn-black:hover { background: #2a2a2a; }

/* ============ LOADING SPLASH ============ */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #3C88C6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease;
  /* safety fallback: auto-hide even if JS fails */
  animation: splashFallback 0s linear 3s forwards;
}
.splash.hide { opacity: 0; pointer-events: none; }
@keyframes splashFallback { to { opacity: 0; visibility: hidden; pointer-events: none; } }
.splash-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: splashPulse 1.15s ease-in-out infinite;
}
.splash-logo img { height: 74px; width: auto; display: block; }
@keyframes splashPulse {
  0%, 100% { opacity: .3; transform: scale(.96); }
  50% { opacity: 1; transform: scale(1); }
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-scale {
  opacity: 0;
  transform: translateY(50px) scale(0.96);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal-scale.in { opacity: 1; transform: translateY(0) scale(1); }

/* ============ NAVBAR (morphing pill) ============ */
.nav {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: max-content;
  max-width: calc(100% - 32px);
  z-index: 100;
  animation: navDrop .9s var(--ease) both;
}
@keyframes navDrop {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-inner {
  display: flex;
  align-items: center;
  width: max-content;
  background: var(--dark);
  border-radius: 100px;
  padding: 9px 10px 9px 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.14);
  transition: padding .55s var(--ease);
}
.nav.scrolled .nav-inner { padding: 9px 14px 9px 18px; }

/* brand */
.nav-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-brand-logo { height: 30px; width: auto; display: block; transition: transform .6s var(--ease); }
.nav-brand:hover .nav-brand-logo { transform: rotate(180deg); }
.nav-brand-name { color: #fff; font-weight: 700; font-size: 20px; font-family: var(--font-head); letter-spacing: -.01em; }

/* expanded menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: 34px;
  width: max-content;
  max-width: 600px;
  overflow: hidden;
  transition: width .8s var(--ease), max-width .8s var(--ease), opacity .55s var(--ease), margin .8s var(--ease);
}
.nav.scrolled .nav-menu { width: 0; max-width: 0; opacity: 0; margin-left: 0; }
.nav-links { display: flex; gap: 26px; }
.nav-link { color: rgba(255,255,255,.72); font-size: 15px; font-weight: 500; white-space: nowrap; transition: color .25s; }
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-signin { color: #fff; font-size: 15px; font-weight: 500; white-space: nowrap; opacity: .95; transition: opacity .25s; }
.nav-signin:hover { opacity: .6; }
.nav-cta { padding: 12px 20px; white-space: nowrap; }
/* no scale here: the menu is overflow-hidden for the collapse, so a scaled button would clip */
.nav-cta:hover { transform: none; background: #ececec; }
.nav-cta:active { transform: none; }

/* collapsed status pill (section label + scroll ring) */
.nav-status {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 0;
  opacity: 0;
  margin-left: 0;
  overflow: hidden;
  cursor: pointer;
  transition: width .8s var(--ease), opacity .55s var(--ease), margin .8s var(--ease);
}
.nav.scrolled .nav-status { width: max-content; opacity: 1; margin-left: 18px; }
.nav-status-label { color: #fff; font-size: 16px; font-weight: 500; white-space: nowrap; }
.nav-status-label.swap { animation: labelSwap .42s var(--ease); }
@keyframes labelSwap {
  0% { opacity: 0; transform: translateY(-9px); filter: blur(2px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.nav-ring { width: 22px; height: 22px; flex-shrink: 0; display: block; }
.nav-ring svg { width: 22px; height: 22px; transform: rotate(-90deg); }
.nav-ring-track { fill: none; stroke: rgba(255,255,255,.18); stroke-width: 2.5; }
.nav-ring-fill {
  fill: none; stroke: #3C88C6; stroke-width: 2.5; stroke-linecap: round;
  stroke-dasharray: 56.55; stroke-dashoffset: 56.55;
  transition: stroke-dashoffset .12s linear;
}

/* hover the collapsed pill re-opens the full menu */
@media (hover: hover) {
  .nav.scrolled:hover .nav-inner { padding: 9px 10px 9px 22px; }
  .nav.scrolled:hover .nav-menu { width: max-content; max-width: 600px; opacity: 1; margin-left: 34px; }
  .nav.scrolled:hover .nav-status { width: 0; opacity: 0; margin-left: 0; }
}

/* burger (mobile) */
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 12px; margin-left: 8px; }
.nav-burger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav.open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 8px;
  background: var(--dark);
  border-radius: 24px;
  margin-top: 10px;
  padding: 18px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .3s, transform .3s;
}
.nav.open .nav-mobile { opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav-mobile-link { color: #fff; font-size: 16px; font-weight: 500; padding: 10px 12px; border-radius: 12px; }
.nav-mobile-link:hover { background: rgba(255,255,255,.08); }

/* ============ HERO ============ */
.hero {
  max-width: 1000px;
  margin: 0 auto;
  padding: 190px 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 68px;
  line-height: 1.2;
  color: var(--ink);
}
.hero-title .line { display: block; }
.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(26px);
  filter: blur(6px);
  animation: wordIn .7s var(--ease) forwards;
  animation-delay: var(--wd, 0s);
}
@keyframes wordIn {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.underline-wrap { position: relative; display: inline-block; }
.underline-wrap .brush {
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 105%;
  max-width: none;
  clip-path: inset(0 100% 0 0);
  animation: brushDraw .8s var(--ease) forwards;
  animation-delay: .9s;
}
@keyframes brushDraw { to { clip-path: inset(0 0 0 0); } }
.cycling-emoji {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px) scale(.7);
  transition: opacity .6s ease-out, transform .6s ease-out;
}
.cycling-emoji.appeared { opacity: 1; transform: translateY(0) scale(1); }
.cycling-emoji.pop { animation: emojiPop .35s var(--ease); }
@keyframes emojiPop {
  0% { transform: scale(.6) rotate(-8deg); }
  60% { transform: scale(1.15) rotate(4deg); }
  100% { transform: scale(1) rotate(0); }
}
.hero-sub {
  margin-top: 26px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--slate);
  max-width: 700px;
}

/* URL signup field */
.url-field {
  margin-top: 36px;
  width: 560px;
  max-width: 100%;
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 999px;
  padding: 6px 6px 6px 24px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 18px 45px -18px rgba(13,23,38,.14);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  transition: box-shadow .3s, border-color .3s;
}
.url-field:focus-within { border-color: rgba(0,0,0,.3); box-shadow: 0 1px 2px rgba(0,0,0,.06), 0 22px 50px -18px rgba(13,23,38,.22); }
.url-field.error { border-color: #e53935; }
.url-row { display: flex; align-items: center; flex: 1; min-width: 0; }
.url-prefix { font-weight: 600; font-size: 16px; color: #111; white-space: nowrap; }
.url-field input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  font-size: 16px;
  color: #111;
  background: transparent;
  padding: 8px 4px;
}
.url-field input::placeholder { color: #9aa7b8; }
.url-btn { width: auto; flex-shrink: 0; border-radius: 999px; padding: 13px 26px; }
.url-error { color: #e53935; font-size: 13px; margin-top: 8px; min-height: 16px; }

/* Social proof badge */
.social-proof {
  position: relative;
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 9px 22px 9px 10px;
  box-shadow: 0 12px 30px -12px rgba(13,23,38,.14);
  cursor: pointer;
}
.proof-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.proof-icon img { width: 100%; height: 100%; }
.proof-text {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 500;
  color: var(--slate);
}
.burst-layer { position: absolute; inset: 0; pointer-events: none; }
.burst-particle {
  position: absolute;
  font-size: 22px;
  pointer-events: none;
  animation: burst var(--dur, 1000ms) ease-out forwards;
}
@keyframes burst {
  0%   { transform: translate(-50%, -50%) rotate(0deg); opacity: 1; }
  100% { transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) rotate(var(--rot)); opacity: 0; }
}
.shake { animation: shakeX .4s ease-in-out; }
@keyframes shakeX {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-3.6px); }
  80% { transform: translateX(3.6px); }
}

/* ============ SHOWCASE (dashboard + band) ============ */
.showcase {
  max-width: 1200px;
  margin: 64px auto 0;
  padding: 0 20px;
  position: relative;
}
.ui-wrap {
  position: relative;
  z-index: 2;
  width: min(1044px, 100%);
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(13,23,38,.25);
  background: #fff;
}
.ui-img { width: 100%; }
.band {
  position: relative;
  z-index: 1;
  margin-top: -180px;
  background: var(--ink);
  border-radius: 48px;
  padding: 220px 40px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.band-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: 10px 22px;
  color: #fff;
  font-size: 17px;
  line-height: 1.5;
  text-align: center;
}
.band-spark { width: 20px; height: 20px; flex-shrink: 0; }
.band-tabs {
  margin-top: 40px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.band-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 8px 20px;
  border-left: 1px solid rgba(255,255,255,.09);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  max-width: 200px;
  justify-self: center;
  cursor: default;
}
.band-tab:first-child { border-left: none; }
.band-tab .band-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  transition: background .35s, transform .35s var(--ease), box-shadow .35s;
}
.band-tab .band-icon img { width: 26px; height: 26px; }
.band-tab:hover .band-icon {
  background: rgba(255,255,255,.14);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,.4);
}

/* ============ SECTIONS COMMON ============ */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 130px 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  box-shadow: 0 4px 14px -6px rgba(13,23,38,.12);
}
.badge img { width: 18px; height: 18px; }
.section-title {
  margin-top: 22px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 68px;
  line-height: 1.2;
  color: var(--ink);
  text-align: center;
}
.section-sub {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--slate);
  text-align: center;
}

/* ============ BENTO ============ */
.bento {
  margin-top: 64px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(217,224,232,.15);
  transition: transform .5s var(--ease), box-shadow .5s;
  grid-column: span 4;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -20px rgba(13,23,38,.18);
}
.card-visual {
  position: relative;
  background: var(--card-bg) url("assets/card-bg-grid.svg") center/cover no-repeat;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}
.card-illus { width: 100%; transition: transform .6s var(--ease); }
.card:hover .card-illus { transform: scale(1.045); }
.card-visual-wide {
  background-image: url("assets/card-bg-wide.svg");
  min-height: 0;
  aspect-ratio: 460 / 256;
}
.card-visual-affiliates {
  background-image: url("assets/card-bg-affiliates.png");
  min-height: 0;
  flex: 1 1 auto;
}
.card-visual-wide .card-illus,
.card-visual-affiliates .card-illus {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* HTML pill overlaying (and hiding) the illustration's baked-in label */
.upload-pill {
  position: absolute;
  left: 50%;
  top: 85.4%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  padding: 11px 20px;
  border-radius: 100px;
  box-shadow: 0 8px 20px -6px rgba(13,23,38,.28), 0 1px 2px rgba(13,23,38,.1);
  transition: transform .6s var(--ease);
}
.card:hover .upload-pill { transform: translate(-50%, -50%) scale(1.045); }
.upload-plus { font-size: 17px; font-weight: 500; line-height: 1; }
.card-text { position: relative; padding: 22px 14px 14px; }
.card-text .plus-shape {
  position: absolute;
  top: 22px; right: 14px;
  width: 26px;
  opacity: .9;
  transition: transform .5s var(--ease);
}
.card:hover .plus-shape { transform: rotate(90deg); }
.card-text h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
}
.card-text p {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--slate-2);
  max-width: 92%;
}
.card-wide { grid-column: span 5; }
.card-wide + .card { grid-column: span 4; }
.bento-col {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stat-card { padding: 24px; justify-content: center; }
.bento-col > .stat-card:nth-child(1) { flex: 213 1 0; }
.bento-col > .stat-card:nth-child(2) { flex: 160 1 0; }
.stat-num {
  font-family: var(--font-head);
  font-size: 50px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.stat-label { margin-top: 8px; font-size: 16px; font-weight: 500; color: var(--slate-2); }
.stat-stars { margin-top: 16px; width: 116px; }
.stat-note { margin-top: 8px; font-size: 13px; font-weight: 500; color: var(--slate-3); }
.stat-dark { background: var(--dark); border-color: var(--dark); position: relative; }
.stat-dark .stat-num { color: #fff; }
.stat-dark .stat-label { color: rgba(255,255,255,.65); }
.stat-discord {
  position: absolute;
  top: 20px; right: 20px;
  width: 34px; height: 34px;
  border-radius: 50%;
  overflow: hidden;
}
.stat-discord img { width: 100%; height: 100%; }

/* ============ CALCULATOR ============ */
.calc {
  margin-top: 20px;
  width: 100%;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.025) 0px, rgba(255,255,255,.025) 1px, transparent 1px, transparent 7px),
    #161616;
  border-radius: 28px;
  padding: 56px 64px;
}
.calc-eyebrow { font-size: 17px; font-weight: 600; color: rgba(255,255,255,.55); margin-bottom: 6px; }
.calc-amount {
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 28px;
}
.calc-slash { color: rgba(255,255,255,.55); }
.calc-per { font-size: 32px; }
.calc-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 44px;
}
.calc-chip {
  background: rgba(255,255,255,.12);
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 8px;
}
.calc-price {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
}
.calc-price input {
  border: none; outline: none; background: transparent;
  width: 56px;
  font-weight: 700;
  font-size: 15px;
  margin-left: 4px;
  color: #fff;
}
.calc-dd { position: relative; }
.calc-dd-btn {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  white-space: nowrap;
  transition: background .25s;
}
.calc-dd-btn:hover { background: rgba(255,255,255,.12); }
.calc-dd-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #1c1c1c;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  overflow: hidden;
  z-index: 10;
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.calc-dd.open .calc-dd-menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
.calc-dd-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
}
.calc-dd-opt:hover { background: rgba(255,255,255,.05); }
.calc-dd-opt.selected { background: rgba(255,255,255,.08); }
.calc-dd-opt .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.calc-slider { position: relative; padding: 30px 4px 0; }
.calc-tooltip {
  position: absolute;
  top: -6px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 13px;
  transform: translateX(-50%);
  white-space: nowrap;
}
.calc-slider input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(to right, var(--green) 0%, var(--green) var(--fill, 44%), rgba(255,255,255,.22) var(--fill, 44%), rgba(255,255,255,.22) 100%);
  outline: none;
  cursor: pointer;
}
.calc-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid #161616;
  box-shadow: 0 0 0 2px var(--green);
  transition: transform .2s;
}
.calc-slider input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.2); }
.calc-slider input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid #161616;
  box-shadow: 0 0 0 2px var(--green);
}

/* ============ PRICING ============ */
.toggle-row {
  position: relative;
  margin-top: 44px;
  display: flex;
  align-items: center;
}
.toggle {
  position: relative;
  display: flex;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 5px;
  box-shadow: 0 4px 14px -6px rgba(13,23,38,.1);
}
.toggle-thumb {
  position: absolute;
  top: 5px; left: 5px;
  height: calc(100% - 10px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(13,23,38,.12);
  transition: left .35s var(--ease), width .35s var(--ease);
  z-index: 0;
}
.toggle-opt {
  position: relative;
  z-index: 1;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--slate-2);
  transition: color .3s;
}
.toggle-opt.active { color: var(--ink); font-weight: 600; }
.toggle-note {
  position: absolute;
  left: calc(100% + 8px);
  top: 6px;
  display: flex;
  align-items: flex-start;
  gap: 4px;
  width: 220px;
}
.toggle-note img { width: 60px; margin-top: 4px; }
.toggle-note span {
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-2);
  transform: rotate(6deg);
  white-space: nowrap;
}
.plans {
  margin-top: 56px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.plan {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(217,224,232,.1);
  transition: transform .5s var(--ease), box-shadow .5s;
}
.plan:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -20px rgba(13,23,38,.16); }
.plan-inner {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.plan-head { display: flex; align-items: center; justify-content: space-between; }
.plan-head h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
}
.plan-chip {
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 100px;
  padding: 6px 12px;
}
.plan-price { margin-top: 18px; display: flex; align-items: baseline; gap: 8px; }
.plan-amount {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 700;
  color: var(--ink);
  display: inline-block;
}
.plan-amount.swap, .plan-period.swap { animation: priceSwap .45s var(--ease); }
@keyframes priceSwap {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}
.plan-period { font-size: 14px; font-weight: 500; color: var(--slate-2); }
.plan-btn { margin-top: 22px; width: 100%; border-radius: 12px; padding: 14px; }
.plan-fee {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 16px 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.plan-fee img { width: 20px; }

/* ============ FAQ ============ */
.faq-grid {
  margin-top: 60px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.faq-col { display: flex; flex-direction: column; gap: 20px; }
.faq-item {
  background: var(--pale);
  border-radius: 16px;
  overflow: hidden;
  transition: background .3s;
}
.faq-item:hover { background: #eef3f7; }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 16px 16px 24px;
  min-height: 72px;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  font-family: var(--font-body);
}
.faq-icon {
  position: relative;
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #333;
  transition: transform .4s var(--ease), background .3s;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: #fff;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform .4s var(--ease), opacity .3s;
}
.faq-icon::before { width: 14px; height: 2px; }
.faq-icon::after { width: 2px; height: 14px; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
}
.faq-a p {
  padding: 0 70px 20px 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate-2);
}

/* ============ CTA ============ */
.cta-section { padding-bottom: 0; }
.cta {
  width: 100%;
  background: var(--dark) url("assets/cta-bg.svg") center/cover no-repeat;
  border-radius: 20px;
  padding: 56px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-left { max-width: 560px; }
.cta-left h2 {
  font-family: var(--font-head);
  font-size: 58px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.cta-left p {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,.75);
  max-width: 430px;
}
.cta-chips { margin-top: 24px; display: flex; gap: 10px; flex-wrap: wrap; }
.cta-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}
.cta-chip img { width: 18px; }
.cta-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.cta-arrow { width: 120px; animation: arrowFloat 2.6s ease-in-out infinite; }
@keyframes arrowFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(6px, 4px); }
}
.cta-btn { padding: 15px 28px; border-radius: 12px; }

/* ============ FOOTER ============ */
.footer { padding: 120px 10px 10px; }
.footer-inner {
  max-width: 1420px;
  margin: 0 auto;
  background: var(--ink) url("assets/footer-bg.png") bottom center/cover no-repeat;
  border-radius: 24px;
  padding: 70px 64px 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr .8fr;
  gap: 40px;
}
.footer-logo { width: 151px; }
.footer-brand p { margin-top: 22px; color: #fff; font-size: 15px; font-weight: 500; }
.footer-email {
  position: relative;
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 14px;
  transition: transform .3s var(--ease);
}
.footer-email:hover { transform: scale(1.04); }
.footer-email img { width: 18px; }
.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col-title { color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.footer-col a {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  transition: color .25s, transform .25s;
}
.footer-col a:hover { color: #fff; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, transform .3s var(--ease);
}
.footer-socials a:hover { background: rgba(255,255,255,.22); transform: translateY(-3px); }
.footer-socials img { width: 18px; }
.footer-bottom {
  margin-top: 70px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
}
.footer-bottom a { color: rgba(255,255,255,.5); font-size: 13px; transition: color .25s; }
.footer-bottom a:hover { color: #fff; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-title, .section-title { font-size: 52px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .card, .card-wide, .card-wide + .card { grid-column: span 1; }
  .bento-col { grid-column: span 2; flex-direction: row; }
  .bento-col .card { flex: 1; }
  .band-tabs { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
  .band-tab:nth-child(3) { border-left: none; }
  .plans { grid-template-columns: 1fr; max-width: 480px; }
  .cta { flex-direction: column; align-items: flex-start; }
  .cta-arrow { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav { width: calc(100% - 32px); }
  .nav-inner { justify-content: space-between; padding: 8px 8px 8px 18px; }
  .nav-menu, .nav-status { display: none; }
  .nav-burger { display: flex; margin-left: 0; }
  .nav-mobile { display: flex; }
  .nav-brand-name { font-size: 18px; }
  .hero { padding-top: 140px; }
  .hero-title { font-size: 38px; }
  .hero-title .brush { bottom: -8px; }
  .url-field {
    flex-direction: column;
    align-items: stretch;
    width: 360px;
    border-radius: 20px;
    padding: 14px 16px;
    gap: 10px;
  }
  .url-btn { width: 100%; border-radius: 14px; padding: 13px 16px; }
  .section-title { font-size: 36px; }
  .section { padding-top: 90px; }
  .proof-text { font-size: 15px; }
  .band { border-radius: 28px; padding: 160px 20px 36px; margin-top: -120px; }
  .band-pill { font-size: 14px; padding: 10px 16px; }
  .band-tabs { grid-template-columns: 1fr; gap: 24px; }
  .band-tab { border-left: none; }
  .bento { grid-template-columns: 1fr; }
  .bento-col { grid-column: span 1; flex-direction: column; }
  .calc { padding: 24px 20px; border-radius: 18px; }
  .calc-amount { font-size: 34px; }
  .calc-per { font-size: 18px; }
  .calc-controls { font-size: 13px; gap: 8px; }
  .toggle-note { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-a p { padding-right: 24px; }
  .cta { padding: 36px 24px; }
  .cta-left h2 { font-size: 36px; }
  .footer-inner { padding: 48px 28px 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
