/* Squishit — homepage. Values are 1:1 from the design handoff (v2.dc). */

html { scroll-padding-top: 130px; }

body {
  margin: 0;
  background: #F7F3EB;
  color: #231D17;
  font-family: 'Nunito', sans-serif;
  -webkit-font-smoothing: antialiased;
  --accent: #E4572E;
  --accent-ink: #C13F1B;
  --ink: #231D17;
  --tint: #FBE3D8;
  --line: #E5DCCC;
}

a { color: var(--accent-ink); }
a:hover { color: #231D17; }

h1, h2, h3, p { margin: 0; }

/* ---------- keyframes ---------- */
@keyframes squishy {
  0%, 82%, 100% { transform: scale(1, 1); }
  88% { transform: scale(1.16, 0.72); }
  93% { transform: scale(0.94, 1.08); }
  97% { transform: scale(1.02, 0.98); }
}
@keyframes bigSquishA {
  0% { transform: scale(1, 1); }
  30% { transform: scale(1.28, 0.52); }
  55% { transform: scale(0.86, 1.16); }
  75% { transform: scale(1.07, 0.93); }
  100% { transform: scale(1, 1); }
}
@keyframes bigSquishB {
  0% { transform: scale(1, 1); }
  30% { transform: scale(1.28, 0.52); }
  55% { transform: scale(0.86, 1.16); }
  75% { transform: scale(1.07, 0.93); }
  100% { transform: scale(1, 1); }
}
@keyframes plusFloat {
  0% { opacity: 0; transform: translate(-50%, 6px) scale(0.8); }
  15% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, -74px) scale(1.15); }
}
@keyframes riseIn {
  from { opacity: 0; transform: translate(-50%, 10px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}
@keyframes cubeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: rgba(247, 243, 235, 0.93);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.announce {
  background: var(--ink);
  color: #F4EFE6;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.nav-row {
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
}
.logo {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 23px;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
  transition: transform 0.15s ease;
}
.logo:hover { transform: scale(1.08, 0.88); color: var(--ink); }
.logo-dot { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: #4A423A;
  text-decoration: none;
}
.nav-links a:hover { color: var(--accent-ink); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.squish-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--line);
  background: #FFFDF7;
  border-radius: 999px;
  padding: 8px 14px;
}
.squish-chip-dot {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  transform-origin: 50% 100%;
  animation: squishy 5s ease-in-out infinite;
}
.squish-chip-count {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stash-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--ink);
  background: transparent;
  border-radius: 999px;
  padding: 9px 18px;
  font-family: 'Nunito', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.15s ease;
}
.stash-btn:hover { background: var(--ink); color: #F7F3EB; transform: scale(1.05, 0.92); }
.stash-badge {
  background: var(--accent);
  color: #FFF8EF;
  border-radius: 999px;
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11.5px;
  font-weight: 700;
  padding: 0 5px;
}
.loading-bar { height: 6px; background: #EDE5D6; position: relative; overflow: hidden; }
.loading-fill {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 0%;
  background: var(--accent);
  transition: width 0.12s linear;
}
.loading-notches {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 32px, rgba(35, 29, 23, 0.14) 32px 33px);
}
.header-spacer { height: 114px; }

/* ---------- hero ---------- */
.hero {
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 56px;
  align-items: center;
  padding: 64px 0 84px;
}
.kicker-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--tint);
  border-radius: 999px;
  padding: 8px 16px;
}
.kicker-pill span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent-ink);
}
.hero h1 {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin: 22px 0 22px;
}
.title-squish {
  display: inline-block;
  color: var(--accent);
  cursor: pointer;
  transform-origin: 50% 85%;
  user-select: none;
  -webkit-user-select: none;
}
.hero-body {
  font-size: 18.5px;
  line-height: 1.55;
  color: #4A423A;
  max-width: 44ch;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.cta-primary {
  display: inline-block;
  background: var(--accent);
  color: #FFF8EF;
  text-decoration: none;
  border: none;
  padding: 17px 32px;
  border-radius: 999px;
  font-family: 'Nunito', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.cta-primary:hover {
  background: color-mix(in srgb, var(--accent) 82%, #000);
  color: #FFF8EF;
  transform: scale(1.06, 0.92);
}
.hero-cta-note { font-size: 13.5px; color: #7A7065; font-weight: 600; }

/* ---------- training area ---------- */
.hero-training {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}
.training-frame {
  position: relative;
  box-sizing: border-box;
  width: min(430px, 100%);
  padding: 26px 26px 28px;
}
.corner { position: absolute; width: 26px; height: 26px; }
.corner-tl { top: 0; left: 0; border-top: 3px solid var(--ink); border-left: 3px solid var(--ink); border-top-left-radius: 10px; }
.corner-tr { top: 0; right: 0; border-top: 3px solid var(--ink); border-right: 3px solid var(--ink); border-top-right-radius: 10px; }
.corner-bl { bottom: 0; left: 0; border-bottom: 3px solid var(--ink); border-left: 3px solid var(--ink); border-bottom-left-radius: 10px; }
.corner-br { bottom: 0; right: 0; border-bottom: 3px solid var(--ink); border-right: 3px solid var(--ink); border-bottom-right-radius: 10px; }
.training-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.training-top-left { display: flex; align-items: center; gap: 10px; }
.lvl-chip {
  background: var(--ink);
  color: #F7F3EB;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 13.5px;
  border-radius: 9px;
  padding: 3px 11px;
}
.training-label {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #7A7065;
}
.combo-chip {
  background: var(--tint);
  color: var(--accent-ink);
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 13.5px;
  border-radius: 999px;
  padding: 3px 13px;
}
.cube-zone { position: relative; height: 248px; margin-top: 6px; }

/* The WebGL blob. When it comes up it takes over from the CSS cube and draws
   its own shadow and caustic, so the CSS ones step aside. */
.jelly-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.webgl-on .jelly-canvas { opacity: 1; }
.webgl-on .cube-float,
.webgl-on .cube-shadow,
.webgl-on .cube-caustic { display: none; }
.plus-one {
  position: absolute;
  transform: translate(-50%, 0);
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--accent-ink);
  pointer-events: none;
  animation: plusFloat 0.9s ease-out forwards;
  z-index: 5;
}
/* A translucent body casts a soft, warm-edged shadow rather than a hard one. */
.cube-shadow {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: 62%;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(35, 29, 23, 0.13), rgba(122, 62, 40, 0.06) 55%, transparent 72%);
  filter: blur(1px);
  transition: all 2.4s cubic-bezier(0.16, 1.12, 0.28, 1);
}
.is-held .cube-shadow {
  width: 96%;
  background: radial-gradient(ellipse at center, rgba(35, 29, 23, 0.24), rgba(122, 62, 40, 0.1) 55%, transparent 72%);
  transition: all 0.14s ease;
}
.cube-hit {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  width: 190px;
  height: 190px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: none;
  perspective: 780px;
  z-index: 2;
}
.is-held .cube-hit { cursor: grabbing; }
.cube-float {
  width: 100%;
  height: 100%;
  animation: cubeFloat 5.5s ease-in-out infinite;
}
.is-held .cube-float { animation-play-state: paused; }
/* Two nested transforms on purpose: the squash flattens DOWN onto the surface
   (origin at the bottom edge), while the rotation has to turn the blob in place
   (origin at its centre). Sharing one origin makes an X-axis spin swing the cube
   out of its own footprint. */
.cube-squash {
  width: 150px;
  height: 150px;
  margin: 20px auto 0;
  transform-style: preserve-3d;
  transform-origin: 50% 100%;
  transform: scale3d(1, 1, 1);
  transition: transform 2.4s cubic-bezier(0.16, 1.12, 0.28, 1);
}
.cube {
  position: relative;
  width: 150px;
  height: 150px;
  transform-style: preserve-3d;
  transform-origin: 50% 50%;
  transform: rotateX(-24deg) rotateY(34deg);
  transition: transform 2.4s cubic-bezier(0.16, 1.12, 0.28, 1);
  will-change: transform;
}

/* Translucent gel. Every face is see-through, so the faces behind read as depth
   through the material; the cores are the dense centre light has to travel
   through; ::before is the Fresnel rim (grazing angles go bright, like real
   gel) and ::after is the chromatic split light picks up on the way out. */
.face {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 236, 220, 0.4),
    inset 0 0 22px rgba(255, 214, 180, 0.22),
    inset 0 -20px 34px color-mix(in srgb, var(--accent-ink) 55%, transparent);
}
.face::before,
.face::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  pointer-events: none;
}
/* Fresnel: gel goes bright only right at the grazing edge, not across the face */
.face::before {
  background: radial-gradient(ellipse at 50% 50%,
    transparent 62%,
    rgba(255, 232, 205, 0.1) 86%,
    rgba(255, 240, 220, 0.3) 100%);
  mix-blend-mode: screen;
}
/* Dispersion: a narrow amber-to-rose split where light exits the material */
.face::after {
  background: linear-gradient(118deg,
    rgba(255, 190, 110, 0) 42%,
    rgba(255, 199, 128, 0.22) 58%,
    rgba(255, 136, 170, 0.16) 70%,
    rgba(255, 190, 110, 0) 82%);
  mix-blend-mode: screen;
  opacity: 0.7;
}
.face-front {
  background: linear-gradient(155deg,
    color-mix(in srgb, #F0805B 80%, transparent) 0%,
    color-mix(in srgb, var(--accent) 78%, transparent) 55%,
    color-mix(in srgb, var(--accent-ink) 84%, transparent) 135%);
  transform: translateZ(75px);
}
.face-glint-front {
  position: absolute;
  top: 12%; left: 12%;
  width: 34%; height: 18%;
  background: rgba(255, 248, 239, 0.82);
  border-radius: 50%;
  transform: rotate(-14deg);
  filter: blur(2px);
  z-index: 2;
}
.face-back {
  background: color-mix(in srgb, var(--accent-ink) 74%, transparent);
  transform: rotateY(180deg) translateZ(75px);
}
.face-right {
  background: linear-gradient(200deg,
    color-mix(in srgb, var(--accent) 78%, transparent) 0%,
    color-mix(in srgb, var(--accent-ink) 84%, transparent) 90%);
  transform: rotateY(90deg) translateZ(75px);
}
.face-left {
  background: color-mix(in srgb, var(--accent-ink) 74%, transparent);
  transform: rotateY(-90deg) translateZ(75px);
}
.face-top {
  background: color-mix(in srgb, color-mix(in srgb, var(--accent) 58%, #FFD9C6) 82%, transparent);
  transform: rotateX(90deg) translateZ(75px);
}
.face-glint-top {
  position: absolute;
  top: 16%; left: 14%;
  width: 40%; height: 22%;
  background: rgba(255, 248, 239, 0.85);
  border-radius: 50%;
  filter: blur(3px);
  z-index: 2;
}
.face-bottom {
  background: color-mix(in srgb, var(--accent-ink) 80%, transparent);
  transform: rotateX(-90deg) translateZ(75px);
}
/* Two orthogonal discs inside the cube = a volumetric dense centre from any
   viewing angle. Squeezing thins the gel, so it transmits more light. */
.cube-core {
  position: absolute;
  top: 16%; left: 16%;
  width: 68%; height: 68%;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 34%,
    color-mix(in srgb, #FF9A6B 62%, transparent) 0%,
    color-mix(in srgb, var(--accent) 66%, transparent) 45%,
    color-mix(in srgb, var(--accent-ink) 58%, transparent) 100%);
  filter: blur(10px);
  pointer-events: none;
  transition: opacity 2.4s cubic-bezier(0.16, 1.12, 0.28, 1), filter 2.4s cubic-bezier(0.16, 1.12, 0.28, 1);
}
.cube-core-b { transform: rotateY(90deg); }
.is-held .cube-core {
  opacity: 0.72;
  filter: blur(13px);
  transition: opacity 0.16s ease, filter 0.16s ease;
}

/* Caustic: the warm pool of light that passes through the gel and lands on the
   surface below. Flattening the blob spreads and brightens it. */
.cube-caustic {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  width: 46%;
  height: 26px;
  background: radial-gradient(ellipse at center,
    color-mix(in srgb, #F0805B 62%, transparent) 0%,
    color-mix(in srgb, var(--accent) 34%, transparent) 45%,
    transparent 72%);
  filter: blur(7px);
  opacity: 0.5;
  pointer-events: none;
  transition: all 2.4s cubic-bezier(0.16, 1.12, 0.28, 1);
}
.is-held .cube-caustic {
  width: 84%;
  opacity: 0.85;
  filter: blur(9px);
  transition: all 0.14s ease;
}

.rank-block { margin-top: 4px; }
.rank-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.rank-name {
  font-family: 'Baloo 2', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
}
.rank-next {
  font-size: 12.5px;
  color: #7A7065;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.xp-bar {
  position: relative;
  height: 17px;
  background: #EDE5D6;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  margin-top: 8px;
  overflow: hidden;
}
.xp-fill {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 0%;
  background: var(--accent);
  transition: width 0.35s ease;
}
.xp-notches {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 32px, rgba(35, 29, 23, 0.22) 32px 33.5px);
}
.key-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.keycap {
  display: inline-block;
  padding: 9px 24px;
  background: #FFFDF7;
  border: 1.5px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  border-radius: 10px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--ink);
  transform: translateY(0);
  transition: all 0.1s ease;
}
.keycap.is-down { border-bottom-width: 1.5px; transform: translateY(3px); }
.key-hint { font-size: 13.5px; color: #4A423A; font-weight: 700; }
.training-caption {
  margin: 12px 0 0;
  font-size: 12.5px;
  color: #7A7065;
  text-align: center;
}

/* ---------- facts strip ---------- */
.facts-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.facts-inner {
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 0;
  flex-wrap: wrap;
}
.facts-inner > span { font-size: 13.5px; font-weight: 700; color: #4A423A; }
.facts-inner > .facts-dot { color: var(--accent); font-weight: 800; font-size: 16px; }

/* ---------- squad ---------- */
.squad {
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 96px 0 0;
}
h2 {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(32px, 3.8vw, 46px);
  font-weight: 800;
  letter-spacing: -0.005em;
  line-height: 1.08;
}
.squad-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.squad-sub { font-size: 16.5px; color: #4A423A; margin: 14px 0 0; }
.collect-tracker { display: flex; align-items: center; gap: 12px; }
.collect-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #7A7065;
}
.collect-slots { display: flex; align-items: center; gap: 8px; }
.slot {
  width: 18px;
  height: 18px;
  border: 2px solid var(--ink);
  box-sizing: border-box;
  display: inline-block;
  background: transparent;
  transition: background 0.2s ease;
}
.slot.owned { background: var(--accent); }
.slot-square { border-radius: 5px; }
.slot-circle { border-radius: 50%; }
.slot-ring { border-radius: 50%; position: relative; }
.slot-hole {
  position: absolute;
  inset: 4px;
  background: #F7F3EB;
  border-radius: 50%;
}
.squad-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 44px;
}
.prod-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: #FBF8F1;
  display: flex;
  flex-direction: column;
}
.prod-well {
  aspect-ratio: 1 / 1;
  background: #EDE5D6;
  cursor: pointer;
  transition: transform 0.25s ease;
  transform-origin: 50% 100%;
}
.prod-well:hover { transform: scale(1.04, 0.96); }
.prod-well:active { transform: scale(1.12, 0.84); }
.prod-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid var(--line);
}
.prod-kicker-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.prod-kicker {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.13em;
  color: var(--accent-ink);
}
.prod-chip {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #7A7065;
  background: var(--tint);
  border-radius: 999px;
  padding: 5px 10px;
}
.prod-card h3 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 26px;
  font-weight: 800;
  margin: 8px 0 0;
}
.prod-line {
  font-size: 14.5px;
  line-height: 1.5;
  color: #4A423A;
  margin: 8px 0 0;
}
.colorway-row {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
}
.colorway-row .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(35, 29, 23, 0.2);
  display: inline-block;
}
.colorway-names {
  font-size: 12.5px;
  color: #7A7065;
  margin-left: 4px;
  font-weight: 600;
}
.stat-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 16px;
}
.stat-row { display: flex; align-items: center; gap: 10px; }
.stat-label {
  width: 108px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #7A7065;
  flex-shrink: 0;
}
.stat-bar { flex: 1; display: flex; gap: 4px; }
.stat-bar .seg {
  height: 9px;
  flex: 1;
  border-radius: 3px;
  background: #EDE5D6;
}
.stat-bar .seg.on { background: var(--accent); }
.prod-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
}
.prod-price { font-size: 17px; font-weight: 800; }
.adopt-btn {
  background: var(--ink);
  color: #F7F3EB;
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.adopt-btn:hover { background: var(--accent); transform: scale(1.06, 0.92); }
.own-chip {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent-ink);
  background: var(--tint);
  border-radius: 999px;
  padding: 12px 22px;
}

/* ---------- image slots (placeholder wells) ---------- */
.img-slot {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px;
  text-align: center;
}
.img-slot-icon {
  width: 30px;
  height: 30px;
  color: #231D17;
  opacity: 0.45;
}
.img-slot-cap {
  max-width: 34ch;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.55;
  color: #7A7065;
}
.img-slot-dark .img-slot-icon { color: #F7F3EB; opacity: 0.4; }
.img-slot-dark .img-slot-cap { color: rgba(247, 243, 235, 0.55); }

/* ---------- bundle ---------- */
.bundle { background: var(--tint); margin-top: 96px; }
.bundle-inner {
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 56px;
  align-items: center;
  padding: 88px 0;
}
.bundle-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--accent-ink);
}
.bundle h2 { margin: 12px 0 0; }
.bundle-body {
  font-size: 16.5px;
  line-height: 1.6;
  color: #4A423A;
  margin: 16px 0 0;
  max-width: 52ch;
}
.bundle-toggle {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.toggle-btn {
  padding: 11px 20px;
  border-radius: 999px;
  font-family: 'Nunito', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid rgba(35, 29, 23, 0.3);
  background: transparent;
  color: var(--ink);
  transition: all 0.15s ease;
}
.toggle-btn.on {
  border-color: var(--ink);
  background: var(--ink);
  color: #F7F3EB;
}
.bundle-note {
  font-size: 13.5px;
  color: #4A423A;
  margin: 12px 0 0;
  font-weight: 600;
}
.bundle-cta { margin-top: 28px; }
.cta-bundle:hover { transform: scale(1.05, 0.93); }
.bundle-ship { font-size: 13.5px; color: #7A7065; margin: 14px 0 0; }
.bundle-well {
  aspect-ratio: 4 / 3.4;
  background: #F7F3EB;
  border: 1px solid rgba(35, 29, 23, 0.12);
  border-radius: 28px;
  overflow: hidden;
}

/* ---------- gel ---------- */
.gel { background: var(--ink); color: #F7F3EB; }
.gel-inner {
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 96px 0;
}
.gel-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #F0805B;
}
.gel h2 { margin: 12px 0 0; }
.gel-body {
  font-size: 16.5px;
  line-height: 1.6;
  color: rgba(247, 243, 235, 0.72);
  margin: 16px 0 0;
  max-width: 58ch;
}
.gel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px;
  margin-top: 52px;
  align-items: center;
}
.gel-well {
  aspect-ratio: 4 / 4.4;
  background: #3A322A;
  border: 1px solid rgba(247, 243, 235, 0.14);
  border-radius: 28px;
  overflow: hidden;
}
.gel-stat {
  padding: 22px 0;
  border-bottom: 1px solid rgba(247, 243, 235, 0.14);
}
.gel-stat-last { border-bottom: none; }
.gel-stat-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #F0805B;
}
.gel-stat h3 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin: 8px 0 0;
}
.gel-stat-body {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(247, 243, 235, 0.7);
  margin: 8px 0 0;
}
.gel-stat-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}
.gel-stat-label {
  width: 82px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(247, 243, 235, 0.6);
  flex-shrink: 0;
}
.gel-bar { max-width: 280px; }
.gel-bar .seg.dim,
.gel-bar .seg { background: rgba(247, 243, 235, 0.15); }
.gel-bar .seg.on { background: var(--accent); }
.gel-stat-aside {
  font-size: 12px;
  color: rgba(247, 243, 235, 0.55);
  font-weight: 600;
  font-style: italic;
}

/* ---------- saga ---------- */
.saga {
  width: min(760px, 92vw);
  margin: 0 auto;
  text-align: center;
  padding: 96px 0 0;
}
.saga-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--accent-ink);
}
.saga h2 { line-height: 1.1; margin: 12px 0 0; }
.saga-body {
  font-size: 17.5px;
  line-height: 1.7;
  color: #4A423A;
  margin: 24px 0 0;
}
.saga-mantra {
  font-family: 'Baloo 2', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin: 26px 0 0;
}
.mantra-accent { color: var(--accent); }

/* ---------- faq ---------- */
.faq {
  width: min(780px, 92vw);
  margin: 0 auto;
  padding: 96px 0 0;
}
/* the approved prototype leaves this h2 at the font's natural line-height */
.faq h2 { text-align: center; line-height: normal; }
.faq-list { margin-top: 40px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item-last { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 20px 0;
  cursor: pointer;
  text-align: left;
  font-family: 'Nunito', sans-serif;
}
.faq-q-text { font-size: 17px; font-weight: 650; color: var(--ink); }
.faq-icon { font-size: 22px; color: var(--accent-ink); line-height: 1; }
.faq-a {
  margin: 0;
  padding: 0 0 22px;
  font-size: 15.5px;
  line-height: 1.65;
  color: #7A7065;
  max-width: 65ch;
}

/* ---------- drop list ---------- */
.droplist { background: var(--tint); margin-top: 96px; }
.droplist-inner {
  width: min(680px, 92vw);
  margin: 0 auto;
  text-align: center;
  padding: 84px 0;
}
.droplist-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--accent-ink);
}
.droplist h2 {
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.1;
  margin: 12px 0 0;
}
.droplist-sub { font-size: 16px; color: #4A423A; margin: 14px 0 0; }
.droplist-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.droplist-form input {
  width: min(340px, 78vw);
  padding: 15px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(35, 29, 23, 0.2);
  background: #FFFDF7;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  color: var(--ink);
  outline: none;
}
.droplist-form input:focus { border-color: var(--accent); }
.drop-btn {
  background: var(--accent);
  color: #FFF8EF;
  border: none;
  border-radius: 999px;
  padding: 15px 28px;
  font-family: 'Nunito', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.drop-btn:hover {
  background: color-mix(in srgb, var(--accent) 82%, #000);
  transform: scale(1.05, 0.93);
}
.droplist-done {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--accent-ink);
  margin: 30px 0 0;
}
.droplist-fine { font-size: 13px; color: #7A7065; margin: 16px 0 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #F7F3EB; }
.footer-inner {
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}
.footer-logo {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.005em;
}
.footer-blurb {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(247, 243, 235, 0.65);
  margin: 14px 0 0;
  max-width: 30ch;
}
.footer-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}
.fdot { display: inline-block; transform-origin: 50% 100%; }
.fdot-square {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 3px;
  animation: squishy 6s ease-in-out infinite;
}
.fdot-circle {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  animation: squishy 6s ease-in-out 2s infinite;
}
.fdot-ring {
  width: 11px; height: 11px;
  border: 2.5px solid var(--accent);
  border-radius: 50%;
  box-sizing: border-box;
  animation: squishy 6s ease-in-out 4s infinite;
}
.footer-head {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  color: rgba(247, 243, 235, 0.5);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.footer-links a {
  font-size: 14.5px;
  color: rgba(247, 243, 235, 0.82);
  text-decoration: none;
}
.footer-links a:hover { color: #F7F3EB; }
.footer-bottom {
  border-top: 1px solid rgba(247, 243, 235, 0.14);
  margin-top: 52px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-count { font-size: 13px; color: rgba(247, 243, 235, 0.55); }
.pay-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-pills span {
  font-size: 11.5px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(247, 243, 235, 0.25);
  color: rgba(247, 243, 235, 0.75);
}

/* ---------- toast ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  background: var(--ink);
  color: #F7F3EB;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(35, 29, 23, 0.25);
  animation: riseIn 0.25s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.toast[hidden] { display: none; }
.toast-dot {
  width: 9px; height: 9px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

/* ---------- small screens ---------- */
@media (max-width: 860px) {
  .nav-links { display: none; }
}
@media (max-width: 480px) {
  .toast { white-space: normal; width: max-content; max-width: 88vw; text-align: left; }
}
