/* ===== SATOCROP SEEDS — website ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-deep);
  color: var(--fg1);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.page { position: relative; min-height: 100dvh; isolation: isolate;
  display: flex; flex-direction: column; }
.page > main { position: relative; z-index: 1; flex: 1 1 auto;
  display: flex; flex-direction: column; justify-content: center; }

/* ---------- ATMOSPHERE ---------- */
.atmos { position: fixed; inset: 0; z-index: -1; overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% -10%, #241608 0%, var(--rosin-900) 42%, var(--rosin-950) 100%); }
/* Background loop video — backmost layer, tinted warm to stay on-brand */
.bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 1; }
/* Honey wash + readability vignette painted over the video */
.atmos-wash { position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(70% 55% at 50% 36%, rgba(240,169,43,.10), transparent 64%),
    linear-gradient(180deg, rgba(14,10,5,.42) 0%, rgba(14,10,5,.08) 18%, rgba(14,10,5,.04) 40%, rgba(21,16,10,.58) 100%); }
.atmos-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

/* slow-rotating warm light shafts behind everything */
.atmos-shafts { position: absolute; left: 50%; top: 30%; width: 160vw; height: 160vw;
  transform: translate(-50%,-50%); opacity: .5; mix-blend-mode: screen;
  background: repeating-conic-gradient(from 0deg at 50% 50%,
    rgba(255,224,138,0) 0deg, rgba(255,224,138,.05) 5deg, rgba(255,224,138,0) 12deg,
    rgba(240,169,43,0) 18deg, rgba(240,169,43,.045) 24deg, rgba(240,169,43,0) 32deg);
  animation: shaftSpin 70s linear infinite; }

.atmos-glow { position: absolute; border-radius: 50%; filter: blur(48px); opacity: .8; }
.atmos-glow--center { width: 70vw; height: 70vw; max-width: 900px; max-height: 900px;
  left: 50%; top: 36%; transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(240,169,43,.30), rgba(240,169,43,0) 65%);
  animation: glowPulse 9s var(--ease-soft) infinite; }
.atmos-glow--tl { width: 40vw; height: 40vw; left: -8%; top: -6%;
  background: radial-gradient(circle, rgba(110,63,14,.30), transparent 70%);
  animation: glowDriftA 26s var(--ease-soft) infinite; }
.atmos-glow--br { width: 46vw; height: 46vw; right: -10%; bottom: -12%;
  background: radial-gradient(circle, rgba(92,122,61,.22), transparent 70%);
  animation: glowDriftB 32s var(--ease-soft) infinite; }

/* drifting soft bokeh orbs */
.bokeh { position: absolute; border-radius: 50%; filter: blur(20px); }
.bokeh--1 { width: 120px; height: 120px; left: 16%; top: 64%;
  background: radial-gradient(circle, rgba(255,200,87,.45), transparent 70%);
  animation: float1 19s ease-in-out infinite; }
.bokeh--2 { width: 70px; height: 70px; left: 72%; top: 30%;
  background: radial-gradient(circle, rgba(255,224,138,.5), transparent 70%);
  animation: float2 15s ease-in-out infinite; }
.bokeh--3 { width: 170px; height: 170px; left: 80%; top: 70%;
  background: radial-gradient(circle, rgba(240,169,43,.32), transparent 70%);
  animation: float3 24s ease-in-out infinite; }
.bokeh--4 { width: 54px; height: 54px; left: 40%; top: 22%;
  background: radial-gradient(circle, rgba(169,190,134,.4), transparent 70%);
  animation: float2 21s ease-in-out infinite reverse; }

@keyframes shaftSpin { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes glowPulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: .72; }
  50%     { transform: translate(-50%,-52%) scale(1.14); opacity: .92; } }
@keyframes glowDriftA {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(8%,6%) scale(1.12); } }
@keyframes glowDriftB {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-7%,-5%) scale(1.1); } }
@keyframes float1 {
  0%,100% { transform: translate(0,0); opacity: .7; }
  50%     { transform: translate(40px,-60px); opacity: 1; } }
@keyframes float2 {
  0%,100% { transform: translate(0,0); opacity: .6; }
  50%     { transform: translate(-34px,-46px); opacity: 1; } }
@keyframes float3 {
  0%,100% { transform: translate(0,0); opacity: .5; }
  50%     { transform: translate(-50px,36px); opacity: .85; } }
@media (prefers-reduced-motion: reduce) {
  .atmos-shafts, .atmos-glow--center, .atmos-glow--tl, .atmos-glow--br, .bokeh { animation: none; }
}

/* ---------- HERO GOLDEN-HOUR MEADOW ---------- */
/* Bright golden-hour field behind the hero that melts into the dark rosin body.
   Drop a real render at assets/field-bg.jpg to replace the CSS scene. */
.hero-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 0;
  overflow: hidden; pointer-events: none; background: transparent; }
/* video is now the site background; hide the old CSS meadow scene */
.hb-treeline, .hb-sun, .hb-meadow, .hb-flowers, .hero-photo { display: none; }

/* out-of-focus tree line behind the nav */
.hb-treeline { position: absolute; top: 0; left: 0; right: 0; height: 180px;
  background: linear-gradient(180deg, rgba(40,32,16,.85), rgba(60,48,22,.3) 70%, transparent);
  filter: blur(14px); }
/* warm sun bloom */
.hb-sun { position: absolute; left: 50%; top: 4%; width: 760px; height: 560px;
  transform: translateX(-50%); border-radius: 50%; mix-blend-mode: screen;
  background: radial-gradient(circle, rgba(255,247,220,.9), rgba(255,214,120,.35) 40%, transparent 68%);
  filter: blur(8px); animation: sunBreathe 8s var(--ease-soft) infinite; }
/* hazy meadow grass in the lower band */
.hb-meadow { position: absolute; left: 0; right: 0; bottom: 0; height: 56%;
  background:
    radial-gradient(120% 80% at 50% 120%, rgba(120,116,46,.55), transparent 60%),
    linear-gradient(180deg, transparent, rgba(74,66,28,.5) 60%, rgba(40,38,18,.7));
  filter: blur(2px); }

/* blurred wildflower bokeh */
.hb-flowers { position: absolute; inset: 0; }
.flower { position: absolute; border-radius: 50%; filter: blur(7px);
  animation-name: flowerFloat; animation-timing-function: ease-in-out; animation-iteration-count: infinite; }
.flower.f0 { background: radial-gradient(circle, rgba(255,221,120,.95), rgba(255,200,80,0) 70%); }
.flower.f1 { background: radial-gradient(circle, rgba(255,248,230,.95), rgba(255,248,230,0) 70%); }
.flower.f2 { background: radial-gradient(circle, rgba(255,150,60,.9),  rgba(255,150,60,0) 70%); }
.flower.f3 { background: radial-gradient(circle, rgba(200,210,120,.85), rgba(200,210,120,0) 70%); }
.flower.f4 { background: radial-gradient(circle, rgba(245,190,70,.92), rgba(245,190,70,0) 70%); }
.flower.f5 { background: radial-gradient(circle, rgba(170,195,110,.8),  rgba(170,195,110,0) 70%); }

/* readability veil behind hero text + bottom fade into the dark body */
.hb-veil { position: absolute; left: 0; right: 0; top: 0; height: 740px;
  background: radial-gradient(56% 50% at 50% 32%, rgba(14,10,5,.5), rgba(14,10,5,.14) 60%, transparent 80%); }
.hb-pollen { position: absolute; inset: 0; }
.airpollen { position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,247,214,.95), rgba(255,214,120,.5) 45%, transparent 72%);
  box-shadow: 0 0 8px rgba(255,224,138,.7);
  animation-name: flowerFloat; animation-timing-function: ease-in-out; animation-iteration-count: infinite; }
.hb-fade { position: absolute; left: 0; right: 0; bottom: 0; height: 320px;
  background: linear-gradient(180deg, transparent, var(--rosin-900) 86%); }

@keyframes sunBreathe { 0%,100% { opacity: .85; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.07); } }
@keyframes flowerFloat { 0%,100% { transform: translate(0,0); } 50% { transform: translate(10px,-16px); } }
@media (prefers-reduced-motion: reduce) { .hb-sun, .flower { animation: none; } }
.atmos-grain { position: absolute; inset: 0; opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* ---------- NAV ---------- */
.nav { position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 56px); background: transparent; }
.nav-brand { text-decoration: none; }
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo-word { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem;
  letter-spacing: -.01em; color: var(--cream-50); line-height: 1; text-shadow: 0 1px 10px rgba(14,10,5,.6); }
.logo-word__sub { color: var(--gold-300); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.nav-link { color: var(--cream-200); text-decoration: none; font-size: .98rem; font-weight: 500;
  letter-spacing: .01em; position: relative; padding: 6px 0; transition: color var(--dur-fast); text-shadow: 0 1px 8px rgba(14,10,5,.55); }
.nav-link:hover { color: var(--cream-50); }
.nav-link.is-active { color: var(--gold-300); }
.nav-link.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--gold-400); border-radius: 2px; }
.nav-cta-mobile { display: none; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.nav-burger span { width: 24px; height: 2px; background: var(--cream-100); border-radius: 2px;
  transition: transform var(--dur-fast), opacity var(--dur-fast); }
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- BUTTONS ---------- */
.btn { border: none; border-radius: var(--r-pill); font-weight: 600; font-size: .95rem; white-space: nowrap;
  padding: 10px 20px; transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast), box-shadow var(--dur-fast); }
.btn:active { transform: scale(.96); }
.btn--gold { background: linear-gradient(180deg, var(--gold-300), var(--gold-400));
  color: var(--fg-on-gold); box-shadow: var(--glow-soft); }
.btn--gold:hover { background: linear-gradient(180deg, var(--pollen-200), var(--gold-300));
  box-shadow: 0 0 34px rgba(240,169,43,.5); }
.btn--ghost { background: transparent; color: var(--cream-100); border: 1px solid var(--border-strong); }
.btn--ghost:hover { background: rgba(240,169,43,.08); border-color: var(--gold-400); color: var(--cream-50); }
.btn--lg { padding: 14px 28px; font-size: 1.02rem; }

/* ---------- HERO ---------- */
.hero { position: relative; padding: clamp(16px, 3vw, 36px) clamp(20px,4vw,56px) 16px;
  text-align: center; }
.hero-head { max-width: 760px; margin: 0 auto; }
.hero-title { font-size: var(--fs-display); margin: 14px 0 0; text-shadow: 0 2px 30px rgba(20,12,4,.7), 0 1px 4px rgba(20,12,4,.5); }
.hero-sub { max-width: 580px; margin: 16px auto 0; text-shadow: 0 1px 12px rgba(20,12,4,.7); }
.hero .eyebrow { text-shadow: 0 1px 10px rgba(20,12,4,.6); }
/* hot word needs a brighter gradient + glow to read over the golden meadow */
.hero .text-honey { background: linear-gradient(100deg, #FFFBF0, #FFE7AC 50%, #FFC15A);
  -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: none;
  filter: drop-shadow(0 2px 16px rgba(20,12,4,.75)); }

.stage { position: relative; height: clamp(250px, 42vh, 520px); margin: 6px auto 0;
  max-width: 1180px; perspective: 1600px; transform-style: preserve-3d; }
.bear-glow { position: absolute; left: 44%; top: 50%; width: 620px; height: 620px;
  transform: translate(-50%,-52%); border-radius: 50%;
  background: radial-gradient(circle, rgba(240,169,43,.55), rgba(255,200,87,.18) 45%, transparent 68%);
  filter: blur(14px); z-index: 1; }
.bear { position: absolute; left: 43%; top: 50%; width: clamp(260px, 34vw, 430px);
  transform: translate(-50%,-54%); z-index: 12;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.55)) drop-shadow(0 0 40px rgba(240,169,43,.35));
  animation: bob 6s var(--ease-soft) infinite; }
.bear-shadow { position: absolute; left: 50%; bottom: 8%; width: 320px; height: 46px;
  transform: translateX(-50%); border-radius: 50%; z-index: 2;
  background: radial-gradient(ellipse, rgba(0,0,0,.5), transparent 70%); filter: blur(10px); }
@keyframes bob { 0%,100% { transform: translate(-50%,-54%); } 50% { transform: translate(-50%,-58%); } }
@media (prefers-reduced-motion: reduce) { .bear { animation: none; } }

/* ---------- CAROUSEL + PANELS ---------- */
.carousel { position: absolute; inset: 0; transform-style: preserve-3d; z-index: 10; }
.panel { position: absolute; left: 50%; top: 50%; width: clamp(280px, 26vw, 340px);
  padding: 24px 24px 20px; border-radius: var(--r-lg);
  background: linear-gradient(155deg, var(--glass-bg), var(--glass-bg-2));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--sh-lg), var(--inset-glass);
  transition: transform var(--dur-slow) var(--ease-out), opacity var(--dur-slow) var(--ease-out), filter var(--dur-slow);
  text-align: left; cursor: pointer; overflow: hidden; }
.panel-sheen { position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(120deg, rgba(255,241,194,.16), transparent 40%); }
.panel.is-featured { cursor: default; border-color: rgba(255,224,138,.5);
  box-shadow: var(--sh-lg), var(--glow-soft), var(--inset-glass); }
.panel-top { display: flex; align-items: center; justify-content: space-between; }
.leaf-dot { width: 12px; height: 12px; border-radius: 50%; box-shadow: 0 0 12px currentColor; }
.leaf-dot--gold { background: var(--gold-300); color: var(--gold-300); }
.leaf-dot--amber { background: var(--amber-500); color: var(--amber-500); }
.leaf-dot--sage { background: var(--sage-300); color: var(--sage-300); }
.panel-name { font-size: clamp(1.6rem, 2.4vw, 2.1rem); margin: 14px 0 8px; color: var(--cream-50);
  line-height: 1; text-shadow: 0 2px 20px rgba(240,169,43,.4); }
.panel-blurb { font-size: .98rem; color: var(--cream-200); margin: 0 0 16px; line-height: 1.5; }
.panel-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.chip { font-size: .78rem; font-weight: 600; padding: 5px 11px; border-radius: var(--r-pill);
  background: rgba(255,224,138,.10); border: 1px solid var(--border); color: var(--cream-100); }
.chip--solid { background: linear-gradient(180deg, var(--gold-300), var(--gold-400)); color: var(--fg-on-gold); border-color: transparent; }
.panel-foot { display: flex; }
.panel-link { display: inline-flex; align-items: center; gap: 7px; color: var(--gold-300);
  font-weight: 600; font-size: .95rem; transition: gap var(--dur-fast); }
.panel.is-featured:hover .panel-link { gap: 12px; }

.stage-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 40;
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(28,22,16,.6); border: 1px solid var(--border-strong); color: var(--cream-100);
  backdrop-filter: blur(8px); transition: background var(--dur-fast), transform var(--dur-fast); }
.stage-arrow:hover { background: rgba(240,169,43,.18); color: var(--gold-300); }
.stage-arrow:active { transform: translateY(-50%) scale(.92); }
.stage-arrow--left { left: clamp(4px, 2vw, 24px); }
.stage-arrow--right { right: clamp(4px, 2vw, 24px); }

.dots { display: flex; justify-content: center; gap: 10px; margin-top: 18px; }
.dot { width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0;
  background: rgba(247,237,214,.25); transition: all var(--dur-fast); }
.dot.is-active { width: 28px; border-radius: 5px; background: var(--gold-400); box-shadow: var(--glow-soft); }

/* ---------- MARQUEE ---------- */
.marquee { position: relative; z-index: 1; overflow: hidden; border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider);
  padding: 13px 0; margin-top: 0; background: rgba(20,15,8,.4); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 0; width: max-content; animation: scroll 28s linear infinite; }
.marquee-item { display: inline-flex; align-items: center; gap: 19px; padding: 0 19px;
  font-size: .92rem; color: var(--gold-300); opacity: .9; white-space: nowrap; }
.marquee-bee { color: var(--amber-500); font-size: .9rem; }
@keyframes scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- PILLARS ---------- */
.pillars { max-width: 1120px; margin: 0 auto; padding: clamp(56px,8vw,110px) clamp(20px,4vw,56px) 30px; }
.pillars-head { text-align: center; margin-bottom: 48px; }
.pillars-head h2 { margin: 14px 0 0; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pcard { padding: 32px 28px; border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(37,28,18,.7), rgba(20,15,8,.5));
  border: 1px solid var(--border); transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-med); }
.pcard:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.pcard-num { display: block; font-size: 1.6rem; color: var(--gold-400); margin-bottom: 18px; }
.pcard h3 { margin: 0 0 10px; }
.pcard p { margin: 0; font-size: 1rem; }

/* ---------- DROP BAND ---------- */
.dropband { padding: clamp(40px,6vw,80px) clamp(20px,4vw,56px); }
.dropband-inner { position: relative; max-width: 880px; margin: 0 auto; text-align: center;
  padding: clamp(40px,6vw,72px) clamp(28px,5vw,64px); border-radius: var(--r-xl); overflow: hidden;
  background: linear-gradient(160deg, rgba(110,63,14,.35), rgba(37,28,18,.6));
  border: 1px solid var(--border-strong); box-shadow: var(--sh-lg); }
.dropband-glow { position: absolute; left: 50%; top: -30%; width: 80%; height: 120%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(240,169,43,.35), transparent 60%); filter: blur(20px); pointer-events: none; }
.dropband-title { margin: 14px 0 16px; position: relative; }
.dropband-form { position: relative; display: flex; gap: 10px; max-width: 480px; margin: 24px auto 12px; }
.field { flex: 1; padding: 14px 18px; border-radius: var(--r-pill); font-size: 1rem;
  background: rgba(14,10,5,.6); border: 1px solid var(--border-strong); color: var(--cream-50); }
.field::placeholder { color: var(--fg3); }
.field:focus { outline: none; border-color: var(--gold-400); box-shadow: var(--glow-soft); }

/* ---------- FOOTER ---------- */
.footer { border-top: 1px solid var(--divider); padding: clamp(48px,6vw,80px) clamp(20px,4vw,56px) 28px;
  background: linear-gradient(to bottom, transparent, rgba(14,10,5,.7)); }
.footer-top { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 2fr; gap: 48px; }
.footer-tag { max-width: 320px; margin: 16px 0 20px; color: var(--fg2); font-size: .98rem; }
.footer-socials { display: flex; gap: 10px; }
.social { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,224,138,.06); border: 1px solid var(--border); color: var(--cream-200);
  transition: all var(--dur-fast); }
.social:hover { background: rgba(240,169,43,.16); color: var(--gold-300); transform: translateY(-3px); }
.footer-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.footer-col h4 { font-family: var(--font-display); font-size: 1rem; color: var(--cream-50); margin: 0 0 14px; }
.footer-col a { display: block; color: var(--fg2); text-decoration: none; font-size: .95rem; margin-bottom: 10px;
  transition: color var(--dur-fast); }
.footer-col a:hover { color: var(--gold-300); }
.footer-bar { max-width: 1120px; margin: 40px auto 0; padding-top: 22px; border-top: 1px solid var(--divider);
  display: flex; justify-content: space-between; align-items: center; color: var(--fg3); font-size: .88rem; }
.footer-url { color: var(--gold-300); font-weight: 600; }

/* ---------- MOBILE ---------- */
@media (max-width: 760px) {
  .nav-actions { display: none; }
  .nav-burger { display: flex; }
  .nav-burger { position: relative; z-index: 210; }
  .nav-links { position: fixed; top: 0; right: 0; bottom: 0; left: auto; height: 100dvh;
    width: min(82vw, 320px); z-index: 200; flex-direction: column; align-items: flex-start;
    gap: 8px; padding: 90px 28px 28px; overflow-y: auto; background: #140F08;
    border-left: 1px solid var(--border); box-shadow: -24px 0 60px rgba(0,0,0,.55);
    transform: translateX(105%); transition: transform var(--dur-med) var(--ease-out); }
  .nav-links.is-open { transform: translateX(0); }
  .nav-link { font-size: 1.25rem; font-family: var(--font-display); text-shadow: none; }
  .nav-cta-mobile { display: flex; flex-direction: column; gap: 10px; width: 100%; margin-top: 24px; }
  .nav-cta-mobile .btn { width: 100%; }

  .stage { height: auto; min-height: 0; perspective: none; padding-bottom: 8px; }
  .bear { position: relative; left: auto; top: auto; transform: none; animation: none; margin: 0 auto;
    width: clamp(200px, 56vw, 280px); }
  .bear-glow { width: 86vw; height: 86vw; top: 32%; }
  .bear-shadow { display: none; }
  .carousel--mobile { position: relative; inset: auto; margin: 6px auto 0; display: flex; justify-content: center; }
  .panel--mobile { position: relative; left: auto; top: auto; transform: none; opacity: 1; filter: none;
    width: min(92vw, 380px); }
  .stage-arrow { top: auto; bottom: -4px; transform: none; width: 44px; height: 44px; }
  .stage-arrow--left { left: 16%; }
  .stage-arrow--right { right: 16%; }
  .stage-arrow:active { transform: scale(.92); }
  .dots { margin-top: 58px; }

  .pillars-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-cols { grid-template-columns: repeat(2,1fr); }
  .footer-bar { flex-direction: column; gap: 8px; text-align: center; }
  .dropband-form { flex-direction: column; }
  .dropband-form .btn { width: 100%; }
}
@media (max-width: 420px) {
  .footer-cols { grid-template-columns: 1fr; }
}
