/* BAMSI Landing v1 — Hero + seamless onboarding transition */

:root {
  --blue: #165DFF;
  --blue-dark: #104BD6;
  --yellow: #ffd51f;
  --yellow-deep: #f2bd00;
  --ink: #0b0b0c;
  --muted: #66666d;
  --paper: #ffffff;
  --line: #e8e8ec;
  --soft: #f5f6f8;
  --radius: 28px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

button, input { font: inherit; }

a { color: inherit; text-decoration: none; }

.page-shell { min-height: 100vh; }

.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 24px clamp(24px, 4vw, 72px) 28px;
  isolation: isolate;
}

.nav {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.07em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 700;
}

.nav-links a {
  transition: opacity .2s ease, transform .2s ease;
}

.nav-links a:hover {
  opacity: .55;
  transform: translateY(-1px);
}

.nav-login {
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 11px 18px;
}

.hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(460px, 1.06fr);
  align-items: center;
  gap: 32px;
  min-height: 710px;
}

.hero-copy {
  position: relative;
  z-index: 8;
  max-width: 860px;
  padding: 42px 0 48px;
  transition:
    opacity .4s ease,
    transform .6s cubic-bezier(.2,.8,.2,1),
    filter .4s ease;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .13em;
}

h1 {
  margin: 0;
  max-width: 920px;
  font-family: Impact, "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(68px, 8.35vw, 142px);
  font-stretch: condensed;
  font-weight: 950;
  line-height: .80;
  letter-spacing: -0.042em;
  text-transform: none;
}

h1 span { display: block; white-space: nowrap; }

.hero-kicker {
  margin: 30px 0 0;
  font-size: clamp(24px, 2.3vw, 42px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.hero-description {
  max-width: 590px;
  margin: 22px 0 0;
  color: #35353a;
  font-size: clamp(17px, 1.18vw, 20px);
  line-height: 1.45;
  font-weight: 540;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px 24px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.primary-cta {
  appearance: none;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-width: min(100%, 440px);
  padding: 20px 24px 20px 27px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 13px 32px rgba(21, 87, 255, .20);
  cursor: pointer;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: .015em;
  transition:
    background .2s ease,
    transform .22s ease,
    box-shadow .22s ease;
}

.primary-cta:hover {
  transform: translateY(-3px);
  background: var(--blue-dark);
  box-shadow: 0 18px 38px rgba(21, 87, 255, .28);
}

.primary-cta:active { transform: translateY(0) scale(.985); }

.cta-arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: -10px -11px -10px 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-size: 25px;
  line-height: 1;
}

.trial-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.hero-art {
  position: relative;
  z-index: 4;
  align-self: stretch;
  min-height: 620px;
  display: grid;
  place-items: center;
  transition:
    opacity .5s ease,
    transform .7s cubic-bezier(.2,.8,.2,1);
}

.banana-tip,
.hero-footer {
  position: relative;
  z-index: 12;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  color: #85858b;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}

/* Seamless start state */

.onboarding-card {
  position: absolute;
  z-index: 14;
  left: 0;
  top: 50%;
  width: min(760px, 56vw);
  padding: clamp(34px, 5vw, 70px);
  border-radius: 38px;
  background: var(--paper);
  box-shadow: 0 28px 90px rgba(13, 18, 33, .13);
  border: 1px solid rgba(0, 0, 0, .055);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-42%) scale(.96);
  transition:
    opacity .45s ease,
    transform .65s cubic-bezier(.2,.8,.2,1);
}

.onboarding-card h2 {
  margin: 0;
  font-family: Impact, "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(52px, 5.8vw, 95px);
  line-height: .83;
  letter-spacing: -.045em;
  font-weight: 950;
}

.onboarding-card > p:not(.eyebrow):not(.tiny-note) {
  max-width: 570px;
  margin: 25px 0 0;
  color: #3b3b40;
  font-size: 19px;
  line-height: 1.42;
}

.back-button {
  position: absolute;
  right: 25px;
  top: 24px;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  background: #fff;
  cursor: pointer;
  font-size: 23px;
}

.business-form { margin-top: 34px; }

.business-form label {
  display: block;
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 850;
}

.url-field {
  display: grid;
  grid-template-columns: 1fr auto;
  overflow: hidden;
  border-radius: 999px;
  background: var(--soft);
  border: 2px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.url-field:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 5px rgba(21, 87, 255, .09);
}

.url-field input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 20px 7px 20px 22px;
  color: var(--ink);
  font-size: 17px;
}

.url-field button {
  width: 59px;
  height: 59px;
  margin: 4px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  cursor: pointer;
  font-size: 25px;
  font-weight: 900;
  transition: transform .2s ease;
}

.url-field button:hover { transform: rotate(-4deg) scale(1.05); }

.tiny-note {
  margin: 16px 0 0;
  color: #86868d;
  font-size: 12px;
  line-height: 1.45;
}

body.starting .hero-copy {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(-22px) scale(.97);
  pointer-events: none;
}

body.starting .hero-art {
  transform: translateX(14%) scale(.78);
  opacity: .68;
}

body.starting body.starting .onboarding-card {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
}

.future-anchor {
  height: 1px;
  width: 1px;
}

50% { transform: translate(5%, -3.2%) rotate(.55deg); }
}
  50% { transform: translate(5%, -3.2%) rotate(.55deg); }
}
  50% { transform: translate(5%, -3.2%) rotate(.55deg); }
}
  50% { transform: translate(5%, -1.5%) rotate(.6deg); }
}
50% { transform: translate(1%, 0%) rotate(1.4deg); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 960px) {
  .hero {
    padding: 20px 22px 22px;
  }

  .nav-links > a:not(.nav-login) { display: none; }

  .hero-stage {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: auto;
    padding: 54px 0 26px;
  }

  .hero-copy {
    padding: 0;
    max-width: 100%;
  }

  h1 {
    font-size: clamp(63px, 15.5vw, 118px);
    line-height: .8;
  }

  h1 span { white-space: normal; }

  .hero-description { max-width: 560px; }

  .hero-art {
    min-height: 430px;
    margin-top: -12px;
  }

  .onboarding-card {
    top: 50%;
    width: 100%;
    max-width: 700px;
  }

  body.starting .hero-art {
    transform: translate(18%, 18%) scale(.72);
    opacity: .24;
  }
}

@media (max-width: 620px) {
  .hero { min-height: 100svh; }

  .brand { font-size: 25px; }

  .nav-login {
    padding: 9px 15px;
    font-size: 13px;
  }

  .hero-stage {
    padding-top: 42px;
    gap: 10px;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 10px;
  }

  h1 {
    font-size: clamp(58px, 18.5vw, 92px);
  }

  .hero-kicker {
    margin-top: 22px;
    font-size: 25px;
  }

  .hero-description {
    margin-top: 16px;
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 25px;
    display: block;
  }

  .primary-cta {
    width: 100%;
    min-width: 0;
  }

  .trial-note {
    margin-top: 13px;
    text-align: center;
  }

  .hero-art {
    min-height: 300px;
    margin: -6px -18px 0;
  }

  .hero-footer {
    margin-top: 5px;
    font-size: 10px;
  }

  .hero-footer span:last-child { display: none; }

  .onboarding-card {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 50%;
    width: auto;
    padding: 30px 22px 26px;
    border-radius: 30px;
  }

  .onboarding-card h2 {
    font-size: clamp(48px, 15vw, 76px);
  }

  .onboarding-card > p:not(.eyebrow):not(.tiny-note) {
    font-size: 16px;
  }
}


/* v2 hero refinements */
.hero-art::before {
  content: "";
  position: absolute;
  width: 64%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(255,213,31,.22), rgba(255,213,31,0) 66%);
  right: 4%;
  bottom: 0;
  z-index: -2;
}

.primary-cta {
  position: relative;
  overflow: hidden;
}

.primary-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 42%, rgba(255,255,255,.15) 52%, transparent 62%);
  transform: translateX(-120%);
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}

.primary-cta:hover::before {
  transform: translateX(120%);
}

@media (min-width: 961px) {
  .hero-copy { padding-top: 58px; }
  .hero-art { transform: translateY(10px); }
}

@media (max-width: 620px) {
  }


/* ===== Бамси Hero v4: accepted fixes ===== */

/* External font only; no font file is bundled. */
.hero-footer {
  display: none;
}

.hero-description {
  max-width: 560px;
}

.trial-note {
  color: #696970;
  font-weight: 620;
}

/* Arrow is deliberately black/white, never yellow. */
/* No yellow decorative circles/lines anywhere in Hero. */
.hero-copy::after,
.hero-art::before,
.yellow-orbit,
.orbit-one,
/* Shadow stays on the floor. Only the banana flies. */
@media (min-width: 961px) {
  .hero-stage {
    grid-template-columns: minmax(0, .94fr) minmax(500px, 1.06fr);
  }

  .hero-art {
    overflow: visible;
    transform: translateY(4px);
  }
}

@media (max-width: 960px) {
  }

@media (max-width: 620px) {
  }


/* ===== Бамси Hero v5 ===== */

/* Natural shadow breathes opposite to banana height. */
50% {
    transform: translateX(-50%) scaleX(.72) scaleY(.66);
    opacity: .38;
  }
}

/* Crisp sticker overlays the low-resolution baked sticker completely. */
/* Force CTA arrow to accepted black/white treatment. */
/* No decorative yellow artifacts. */
.hero-copy::after,
.hero-art::before,
.yellow-orbit,
.orbit-one,
@media (max-width: 960px) {
  }

@media (max-width: 620px) {
  }


/* ===== Бамси Hero v7 ===== */

/* No forced uppercase anywhere on the hero title. */
h1, h1 span {
  text-transform: none !important;
}

/* Old raster shadow was removed from PNG; this is the only shadow. */
50% {
    transform: translateX(-50%) scaleX(.68) scaleY(.58);
    opacity: .32;
  }
}

/* Crisp badge. Slightly larger with a white backing so it fully covers
   the old low-res sticker baked into the source image. */
/* Accepted CTA treatment. */
/* Align the note with the point where the rounded button edge ends /
   where the button text begins. */
.trial-note {
  margin-left: 28px !important;
}

/* No yellow decorative artifacts. */
.hero-copy::after,
.hero-art::before,
.yellow-orbit,
.orbit-one,
.orbit-two {
  display: none !important;
  content: none !important;
}

@media (max-width: 960px) {
  .trial-note {
    margin-left: 24px !important;
  }
}

@media (max-width: 620px) {
  .trial-note {
    margin-left: 20px !important;
  }
}


/* ===== Бамси Hero v9: clean fix ===== */

h1, h1 span {
  text-transform: none !important;
}

/* Only one live CSS shadow. */
50% {
    transform: translateX(-50%) scaleX(.66) scaleY(.58);
    opacity: .28;
  }
}

/* White cover completely hides the old baked sticker.
   The blue badge sits above it. No PNG inpainting. */
/* Note aligns with button text, not rounded edge. */
.trial-note {
  margin-left: 28px !important;
}

.hero-copy::after,
.hero-art::before,
.yellow-orbit,
.orbit-one,
.orbit-two {
  display: none !important;
  content: none !important;
}

@media (max-width: 960px) {
  .trial-note {
    margin-left: 24px !important;
  }
}

@media (max-width: 620px) {
  .trial-note {
    margin-left: 20px !important;
  }
}


/* ===== Бамси Hero v10 ===== */

/* Large white mask fully hides the old baked blue sticker.
   It is intentionally wider and shifted right compared with v9. */
/* Only visible sticker. */
/* CTA text is no longer bold-heavy. */
.primary-cta {
  font-weight: 600 !important;
}

/* Black circle remains; arrow itself is visually lighter/thinner. */
.primary-cta .cta-arrow {
  color: #fff !important;
  background: #0b0b0c !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: 300 !important;
  font-size: 27px !important;
  line-height: 1 !important;
}

/* Supporting line under button is regular weight. */
.trial-note {
  margin-left: 28px !important;
  font-weight: 400 !important;
}

/* No hidden decoration can reappear. */
.hero-copy::after,
.hero-art::before,
.yellow-orbit,
.orbit-one,
.orbit-two {
  display: none !important;
  content: none !important;
}

@media (max-width: 960px) {
  .trial-note {
    margin-left: 24px !important;
  }
}

@media (max-width: 620px) {
  .trial-note {
    margin-left: 20px !important;
  }
}


/* ===== Бамси Hero v11 ===== */

h1, h1 span {
  text-transform: none !important;
}

/* Single blue badge, no white rim or wrapper. */
/* Button text: normal case and lighter weight. */
.primary-cta {
  text-transform: none !important;
  font-weight: 500 !important;
}

/* Supporting note remains regular. */
.trial-note {
  font-weight: 400 !important;
}

/* Thin arrow look. */
.primary-cta .cta-arrow {
  color: #fff !important;
  background: #0b0b0c !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: 300 !important;
  font-size: 25px !important;
}

@media (max-width: 960px) {
  }

@media (max-width: 620px) {
  }


/* ===== Бамси Hero v12 ===== */

h1, h1 span {
  text-transform: none !important;
}

/* Clean HTML sticker. No white rim because banana PNG is now clean. */
/* Button: normal case and regular weight. */
.primary-cta {
  text-transform: none !important;
  font-weight: 500 !important;
}

/* Restore former arrow form; only slightly thinner. */
.primary-cta .cta-arrow {
  color: #fff !important;
  background: #0b0b0c !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: 400 !important;
  font-size: 25px !important;
  line-height: 1 !important;
  transform: scaleX(.94);
}

/* Supporting text remains regular. */
.trial-note {
  font-weight: 400 !important;
  margin-left: 28px !important;
}

/* Never show decorative yellow elements. */
.hero-copy::after,
.hero-art::before,
.yellow-orbit,
.orbit-one,
.orbit-two {
  display: none !important;
  content: none !important;
}

@media (max-width: 960px) {
  .trial-note {
    margin-left: 24px !important;
  }
}

@media (max-width: 620px) {
  .trial-note {
    margin-left: 20px !important;
  }
}


/* ===== Бамси Hero v13: restore approved composition ===== */

/* Real banana: smaller and lifted back into the right column. */
.banana {
  position: relative;
  z-index: 3;
  width: min(84%, 640px);
  max-width: none;
  transform-origin: 50% 58%;
  animation: banana-float 5.5s ease-in-out infinite;
  user-select: none;
  -webkit-user-drag: none;
}

@keyframes banana-float {
  0%, 100% {
    transform: translate(11%, -1%) rotate(0deg);
  }
  50% {
    transform: translate(11%, -5%) rotate(.45deg);
  }
}

/* Natural live floor shadow: stationary in position, breathes with height. */
.banana-shadow {
  position: absolute;
  z-index: 1;
  left: 58%;
  bottom: 16.5%;
  width: min(42%, 315px);
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(24,19,11,.25) 0%,
    rgba(24,19,11,.14) 34%,
    rgba(24,19,11,.05) 58%,
    rgba(24,19,11,0) 78%
  );
  filter: blur(7px);
  transform-origin: center center;
  pointer-events: none;
  animation: banana-shadow-breathe 5.5s ease-in-out infinite;
}

@keyframes banana-shadow-breathe {
  0%, 100% {
    transform: translateX(-50%) scaleX(1.08) scaleY(1);
    opacity: .76;
  }
  50% {
    transform: translateX(-50%) scaleX(.70) scaleY(.60);
    opacity: .30;
  }
}

/* One clean blue sticker, attached visually to the banana. */
.banana-badge {
  position: absolute;
  z-index: 8;
  top: 32.5%;
  right: 7.5%;
  width: clamp(136px, 9.3vw, 164px);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #165DFF;
  color: #fff;
  box-shadow: 0 12px 26px rgba(22,93,255,.18);
  transform: rotate(-3deg);
  text-align: center;
  pointer-events: none;
}

.banana-badge-number {
  display: block;
  margin-top: -3px;
  font-family: Impact, "Arial Narrow", Arial, sans-serif;
  font-size: clamp(49px, 3.7vw, 64px);
  line-height: .82;
  letter-spacing: -.04em;
  font-weight: 400;
}

.banana-badge-text {
  display: block;
  margin-top: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(13px, .95vw, 16px);
  line-height: .9;
  font-weight: 700;
  letter-spacing: -.02em;
}

/* Keep accepted button typography and original arrow geometry. */
.primary-cta {
  text-transform: none !important;
  font-weight: 500 !important;
}

.primary-cta .cta-arrow {
  color: #fff !important;
  background: #0b0b0c !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: 400 !important;
  font-size: 25px !important;
  line-height: 1 !important;
  transform: scaleX(.97);
}

.trial-note {
  font-weight: 400 !important;
  margin-left: 28px !important;
}

/* No yellow decorative artifacts. */
.hero-copy::after,
.hero-art::before,
.yellow-orbit,
.orbit-one,
.orbit-two {
  display: none !important;
  content: none !important;
}

@media (max-width: 960px) {
  .banana {
    width: min(78vw, 590px);
  }

  .banana-shadow {
    left: 55%;
    bottom: 12%;
    width: min(43vw, 295px);
  }

  .banana-badge {
    top: 31%;
    right: 8%;
    width: 126px;
  }

  .trial-note {
    margin-left: 24px !important;
  }
}

@media (max-width: 620px) {
  .banana {
    width: 95vw;
    max-width: 520px;
  }

  .banana-shadow {
    left: 52%;
    bottom: 8%;
    width: 50vw;
    height: 16px;
  }

  .banana-badge {
    top: 28%;
    right: 5%;
    width: 102px;
  }

  .banana-badge-number {
    font-size: 41px;
  }

  .banana-badge-text {
    font-size: 10px;
  }

  .trial-note {
    margin-left: 20px !important;
  }
}


/* ===== Бамси Hero v15: ONLY arrow thickness ===== */

.primary-cta .cta-arrow {
  color: #fff !important;
  background: #0b0b0c !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 25px !important;
  line-height: 1 !important;
  font-weight: 300 !important;
  transform: none !important;
}


/* ===== Бамси Hero v16: restore original arrow shape ===== */

/* Circle geometry remains exactly as before. */
.primary-cta .cta-arrow {
  color: #fff !important;
  background: #0b0b0c !important;
  transform: none !important;
  font-size: 0 !important;
}

/* Original arrow proportions from the first Hero:
   long shaft + large open chevron.
   Only stroke is reduced slightly (~1/3 mm visually). */
.cta-arrow-icon {
  width: 31px;
  height: 24px;
  display: block;
  overflow: visible;
}

.cta-arrow-icon path {
  fill: none;
  stroke: #fff;
  stroke-width: 2.75px;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}


/* ===== Бамси Hero v17: mobile levitation only ===== */
@media (max-width: 620px) {
  .hero-art {
    min-height: 360px !important;
    margin: 12px -8px 0 !important;
    overflow: visible !important;
  }

  .banana {
    width: 82vw !important;
    max-width: 390px !important;
    animation: banana-float-mobile 5.2s ease-in-out infinite !important;
  }

  .banana-shadow {
    left: 63% !important;
    bottom: 25% !important;
    width: 38vw !important;
    max-width: 150px !important;
    height: 14px !important;
    filter: blur(6px) !important;
    animation: banana-shadow-breathe-mobile 5.2s ease-in-out infinite !important;
  }

  .banana-badge {
    top: 24% !important;
    right: 8% !important;
    width: 92px !important;
  }

  .banana-badge-number {
    font-size: 39px !important;
  }

  .banana-badge-text {
    font-size: 10px !important;
  }
}

@keyframes banana-float-mobile {
  0%, 100% {
    transform: translate(16%, -9%) rotate(0deg);
  }
  50% {
    transform: translate(16%, -15%) rotate(.55deg);
  }
}

@keyframes banana-shadow-breathe-mobile {
  0%, 100% {
    transform: translateX(-50%) scaleX(1.03) scaleY(1);
    opacity: .62;
  }
  50% {
    transform: translateX(-50%) scaleX(.74) scaleY(.62);
    opacity: .24;
  }
}

/* ===== Бамси Hero v18: mobile final composition only ===== */
@media (max-width: 620px) {
  /* CTA: clean flat blue, move button + note slightly lower as one block. */
  .hero-actions {
    margin-top: 34px !important;
  }

  .primary-cta {
    background: #165DFF !important;
    box-shadow: none !important;
  }

  .primary-cta:hover,
  .primary-cta:active {
    background: #165DFF !important;
    box-shadow: none !important;
  }

  /* Keep the whole banana visible inside the mobile viewport area. */
  .hero-art {
    min-height: 350px !important;
    height: min(41svh, 390px) !important;
    margin: 8px -8px 0 !important;
    overflow: visible !important;
  }

  /* Same banana asset, shape and tilt; only scale/position changes. */
  .banana {
    width: min(76vw, 350px) !important;
    max-width: none !important;
    animation: banana-float-mobile-v18 5.2s ease-in-out infinite !important;
  }

  .banana-shadow {
    left: 55% !important;
    bottom: 9% !important;
    width: min(34vw, 145px) !important;
    height: 13px !important;
    filter: blur(6px) !important;
    animation: banana-shadow-mobile-v18 5.2s ease-in-out infinite !important;
  }

  .banana-badge {
    top: 25% !important;
    right: 14% !important;
    width: 92px !important;
  }
}

@keyframes banana-float-mobile-v18 {
  0%, 100% { transform: translate(0, -3%) rotate(0deg); }
  50%      { transform: translate(0, -10%) rotate(.45deg); }
}

@keyframes banana-shadow-mobile-v18 {
  0%, 100% {
    transform: translateX(-50%) scaleX(1.05) scaleY(1);
    opacity: .58;
  }
  50% {
    transform: translateX(-50%) scaleX(.72) scaleY(.62);
    opacity: .22;
  }
}

/* Published landing: coming soon */
.soon-title {
  display: none;
  position: absolute;
  left: 3.4%;
  top: 53%;
  transform: translateY(-50%);
  z-index: 10;
  margin: 0;
  font-family: Impact, "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(72px, 8vw, 138px);
  line-height: .9;
  font-weight: 400;
  letter-spacing: -.025em;
  color: #000;
}

body.starting .hero-copy {
  visibility: hidden;
}

body.starting .soon-title {
  display: block;
}

body.starting #onboarding-card {
  display: none !important;
}

@media (max-width: 620px) {
  .soon-title {
    left: 7%;
    top: 48%;
    font-size: clamp(58px, 19vw, 82px);
  }
}
