/* ==========================================================================
   Konjo landing — section layouts: intro, features scrolly, instructors
   bento, belt band, CTA + signup, footer, responsive. Base in site.css.
   ========================================================================== */

main { position: relative; z-index: 2; }
.section-inner { max-width: 1180px; margin-inline: auto; }

/* ================================ Intro =============================== */
.intro {
  position: relative;
  z-index: 3;
  background:
    radial-gradient(rgba(17, 17, 17, 0.07) 1.3px, transparent 1.3px) 0 0 / 18px 18px,
    var(--paper);
  color: var(--t-on-light);
  padding: var(--section-gap) var(--pad);
  overflow: clip;
}
.intro-statement {
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.015em;
  line-height: 1.18;
  font-size: clamp(1.7rem, 3.6vw, 3.1rem);
  max-width: 21ch;
}
.intro-sub {
  margin-top: 1.6rem;
  color: var(--t2-on-light);
  font-size: 1.02rem;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 3vw, 3rem);
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 2px solid #131313;
  padding-top: 2rem;
}
.stat dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}
.stat dd { margin: 0.4rem 0 0; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7vw, 6rem);
  line-height: 1;
  color: #131313;
}
.stat-cap {
  margin-top: 0.5rem;
  color: var(--t2-on-light);
  font-size: 0.92rem;
  max-width: 26ch;
}
.intro-mascot {
  position: absolute;
  right: clamp(8px, 6vw, 90px);
  top: clamp(24px, 6vw, 70px);
  width: clamp(110px, 16vw, 220px);
  rotate: 8deg;
  z-index: 2;
  filter: drop-shadow(8px 10px 0 rgba(214, 40, 40, 0.25));
}
.starburst {
  position: absolute;
  right: clamp(-10px, 3vw, 60px);
  top: clamp(0px, 2vw, 30px);
  width: clamp(150px, 20vw, 290px);
  aspect-ratio: 1;
  z-index: 1;
  background: var(--yellow);
  clip-path: polygon(50% 0%, 59% 35%, 93% 22%, 70% 50%, 100% 64%, 63% 65%, 72% 100%, 50% 72%, 28% 100%, 37% 65%, 0% 64%, 30% 50%, 7% 22%, 41% 35%);
  rotate: -10deg;
}

/* =============================== Features ============================= */
.features {
  position: relative;
  z-index: 3;
  background: var(--ink);
  padding: var(--section-gap) 0 0;
}
.features-head {
  padding-inline: var(--pad);
  max-width: 1180px;
  margin-inline: auto;
}
.features-stage {
  position: relative;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
}

/* --- Desktop stage (activated via body.js-stage) ---------------------- */
body.js-stage .features-stage {
  display: grid;
  grid-template-columns: minmax(200px, 0.75fr) minmax(280px, 0.95fr) minmax(360px, 1.3fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  min-height: 100vh;
  padding: 4vh var(--pad);
  max-width: 1320px;
  margin-inline: auto;
}
.feature-rail { display: none; list-style: none; padding: 0; }
body.js-stage .feature-rail {
  display: block;
  transform: skewY(var(--skew));
}
.rail-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  appearance: none;
  width: calc(100% + 12px);
  border: 0;
  cursor: pointer;
  padding: 0 1.2rem;
  height: 58px;
  margin-inline: -6px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  background: var(--ink-2);
  color: var(--t2-on-dark);
  border-left: 4px solid transparent;
  transition: background 300ms, color 300ms, border-color 300ms, transform 300ms var(--ease-expo);
}
.rail-strip i { font-style: normal; opacity: 0; transition: opacity 300ms, transform 300ms var(--ease-expo); transform: translateX(-8px); }
.rail-strip:hover, .rail-strip:focus-visible {
  background: var(--ink-3);
  color: var(--white);
  border-left-color: var(--red);
  transform: translateX(6px);
}
.rail-strip:hover i, .rail-strip:focus-visible i { opacity: 1; transform: none; }
.rail-strip:focus-visible { outline: 3px solid var(--yellow); outline-offset: -3px; }
.rail-strip.is-active {
  background: var(--red);
  color: var(--white);
  border-left-color: var(--yellow);
  transform: translateX(10px);
}
.rail-strip.is-active i { opacity: 1; transform: none; }

.feature-phone { display: none; }
body.js-stage .feature-phone {
  display: block;
  justify-self: center;
  width: min(320px, 24vw);
  rotate: -3deg;
}
body.js-stage .feature-phone .phone-screen img { opacity: 0; transition: opacity 360ms ease; }
body.js-stage .feature-phone .phone-screen img.is-on { opacity: 1; }

body.js-stage .feature-copy {
  position: relative;
  min-height: 420px;
  /* Neutralize the stacked-flow centering: with only absolutely positioned
     children, margin-inline auto + padding collapses the grid item to its
     padding width and the copy overflows at min-content. */
  margin-inline: 0;
  padding-inline: 0;
  max-width: none;
}
body.js-stage .feature-item {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  opacity: 0;
  visibility: hidden;
}
body.js-stage .feature-item.is-active { opacity: 1; visibility: visible; }
body.js-stage .feature-item-phone { display: none; }

/* --- Stacked flow (mobile / reduced motion / no JS) -------------------- */
.feature-copy { display: grid; gap: clamp(3.5rem, 9vw, 6rem); padding-inline: var(--pad); max-width: 1180px; margin-inline: auto; }
.feature-item { display: grid; gap: 1rem; justify-items: start; }
.feature-item-phone { justify-self: center; margin-top: 1.4rem; rotate: -3deg; }

.feature-tag {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  padding: 0.35em 0.9em;
  transform: skew(var(--skew));
  color: var(--white);
}
.tag-train { background: #131313; box-shadow: 6px 6px 0 0 var(--red); }
.tag-learn { background: var(--red); box-shadow: 6px 6px 0 0 var(--yellow); }
.tag-events { background: var(--yellow); color: #131313; box-shadow: 6px 6px 0 0 #131313; }
.tag-social { background: var(--steel); color: #131313; box-shadow: 6px 6px 0 0 var(--red); }

.feature-item h3 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: 1;
}
.feature-item > p { color: var(--t2-on-dark); max-width: 46ch; }
.feature-item ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  color: var(--t-on-dark);
  font-size: 0.98rem;
}
.feature-item ul li {
  padding-left: 1.4rem;
  position: relative;
}
.feature-item ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--red-bright);
  font-weight: 700;
}

/* ============================= Instructors ============================ */
.instructors {
  position: relative;
  z-index: 3;
  background:
    radial-gradient(rgba(17, 17, 17, 0.07) 1.3px, transparent 1.3px) 0 0 / 18px 18px,
    var(--paper);
  color: var(--t-on-light);
  padding: var(--section-gap) var(--pad);
}
.instructors h2 { color: #131313; }
.instructors-sub {
  margin-top: 1.4rem;
  color: var(--t2-on-light);
  max-width: 56ch;
}
.bento {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.4rem);
  margin-top: clamp(2.4rem, 5vw, 4rem);
}
.bento-cell {
  background: var(--white);
  border: 2px solid #131313;
  padding: clamp(1.3rem, 2.6vw, 2.2rem);
  box-shadow: 8px 8px 0 0 rgba(19, 19, 19, 0.9);
  transition: box-shadow var(--dur) var(--ease-expo), translate var(--dur) var(--ease-expo);
}
.bento-cell:hover {
  translate: -3px -3px;
  box-shadow: 12px 12px 0 0 var(--red);
}
.bento-cell h3 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.bento-cell p { margin-top: 0.6rem; color: var(--t2-on-light); font-size: 0.97rem; }
.bento-wide {
  grid-column: 1 / -1;
  background: #131313;
  color: var(--white);
  border-color: #131313;
  box-shadow: 8px 8px 0 0 var(--red);
  display: grid;
  gap: 0.7rem;
  justify-items: start;
}
.bento-wide p { color: var(--t2-on-dark); max-width: 64ch; }
.bento-wide .btn { margin-top: 0.8rem; background: var(--red); }
.bento-wide .btn:hover { background: var(--red-dark); box-shadow: 8px 8px 0 0 var(--yellow); }

/* =============================== Studio =============================== */
.studio {
  position: relative;
  z-index: 3;
  background: var(--ink-2);
  padding: var(--section-gap) var(--pad);
  overflow: clip;
  border-top: 3px solid #131313;
}
.studio h2 { color: var(--white); }
.studio-sub {
  margin-top: 1.4rem;
  color: var(--t2-on-dark);
  max-width: 60ch;
  font-size: 1.05rem;
}
.studio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.4rem);
  margin-top: clamp(2.4rem, 5vw, 4rem);
}
.studio-card {
  background: var(--ink-3);
  border: 2px solid var(--line-dark);
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
  box-shadow: 8px 8px 0 0 rgba(19, 19, 19, 0.9);
  transition: box-shadow var(--dur) var(--ease-expo), translate var(--dur) var(--ease-expo);
}
.studio-card:hover, .studio-card:focus-within {
  translate: -3px -3px;
  box-shadow: 12px 12px 0 0 var(--yellow);
}
.studio-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-top: 1.1rem;
  color: var(--white);
}
.studio-card p { margin-top: 0.6rem; color: var(--t2-on-dark); font-size: 0.97rem; }

/* CSS-only "browser chrome" mock frames — no screenshots (see plan §11). */
.mock-frame {
  border: 2px solid #131313;
  border-radius: 8px;
  background: #0C0C0E;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--line-dark);
}
.mock-dots {
  display: flex;
  gap: 6px;
  padding: 8px 10px;
  background: #131316;
  border-bottom: 1px solid var(--line-dark);
}
.mock-dots i { width: 8px; height: 8px; border-radius: 50%; background: #3A3A40; }
.mock-dots i:first-child { background: var(--red); }
.mock-dots i:nth-child(2) { background: var(--yellow); }
.mock-body {
  min-height: 118px;
  padding: 14px;
  display: grid;
  align-content: center;
  gap: 8px;
}
/* Billing: MRR metric + revenue bars */
.mock-billing { align-content: end; }
.mock-metric { display: flex; align-items: baseline; gap: 8px; }
.mock-metric b { font-family: var(--font-display); font-size: 1.5rem; color: var(--yellow); }
.mock-metric em { font-style: normal; font-size: 0.62rem; letter-spacing: 0.18em; color: var(--t2-on-dark); text-transform: uppercase; }
.mock-bar { height: 8px; border-radius: 3px; background: linear-gradient(90deg, var(--red), var(--red-bright)); width: var(--w, 60%); }
/* Booking: schedule rows, one full */
.mock-booking { gap: 7px; }
.mock-row { display: flex; gap: 8px; align-items: center; }
.mock-row i:first-child { width: 30%; height: 9px; border-radius: 3px; background: #34343A; }
.mock-row i:last-child { flex: 1; height: 9px; border-radius: 3px; background: #26262B; }
.mock-row.is-full i:last-child { background: var(--red); }
/* Leads: list with unread dots */
.mock-lead { display: flex; align-items: center; gap: 9px; }
.mock-lead .dot { width: 9px; height: 9px; border-radius: 50%; background: #34343A; flex: none; }
.mock-lead .dot-new { background: var(--yellow); }
.mock-lead .line { flex: 1; height: 8px; border-radius: 3px; background: #26262B; }
/* Reports: sparkline + legend */
.mock-reports { align-content: center; }
.mock-spark {
  height: 52px;
  border-radius: 4px;
  background:
    linear-gradient(120deg, transparent 0 8%, var(--red-bright) 8% 9%, transparent 9%) 0 100% / 100% 46% no-repeat,
    repeating-linear-gradient(90deg, var(--line-dark) 0 1px, transparent 1px 25%),
    #131316;
  box-shadow: inset 0 -2px 0 0 var(--red);
}
.mock-legend { display: flex; gap: 10px; margin-top: 8px; }
.mock-legend i { width: 26px; height: 6px; border-radius: 3px; }
.mock-legend i:first-child { background: var(--red); }
.mock-legend i:nth-child(2) { background: var(--yellow); }
.mock-legend i:last-child { background: var(--steel); }

.studio-signup {
  margin-top: clamp(2.6rem, 6vh, 4.5rem);
  max-width: 640px;
  border-top: 2px solid var(--yellow);
  padding-top: 2rem;
}
.studio-signup-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: 0.04em;
  color: var(--white);
}
.studio-signup-sub { color: var(--t2-on-dark); margin-top: 0.5rem; font-size: 0.95rem; max-width: 54ch; }

/* ============================= How it works ========================== */
.how {
  position: relative;
  z-index: 3;
  background:
    radial-gradient(rgba(17, 17, 17, 0.07) 1.3px, transparent 1.3px) 0 0 / 18px 18px,
    var(--paper);
  color: var(--t-on-light);
  padding: var(--section-gap) var(--pad);
}
.how h2 { color: #131313; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 2rem);
  margin-top: clamp(2.4rem, 5vw, 4rem);
}
.how-col {
  background: var(--white);
  border: 2px solid #131313;
  padding: clamp(1.3rem, 2.6vw, 2rem);
  box-shadow: 8px 8px 0 0 rgba(19, 19, 19, 0.9);
  display: grid;
  gap: 0.7rem;
  align-content: start;
}
.how-role {
  justify-self: start;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  padding: 0.35em 0.9em;
  transform: skew(var(--skew));
}
.how-col h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #131313;
}
.how-col > p { color: var(--t2-on-light); font-size: 0.97rem; }
.how-col ul {
  list-style: none;
  padding: 0;
  margin-top: 0.4rem;
  display: grid;
  gap: 0.5rem;
  font-size: 0.94rem;
  color: var(--t-on-light);
}
.how-col ul li { padding-left: 1.4rem; position: relative; }
.how-col ul li::before { content: "→"; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* =============================== Pricing ============================== */
.pricing {
  position: relative;
  z-index: 3;
  background: var(--ink);
  padding: var(--section-gap) var(--pad);
  overflow: clip;
}
.pricing h2 { color: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.4rem);
  margin-top: clamp(2.4rem, 5vw, 3.5rem);
}
.pricing-card {
  border: 2px solid var(--line-dark);
  background: var(--ink-2);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  display: grid;
  gap: 0.6rem;
  align-content: start;
}
.pricing-studio { border-color: var(--yellow); box-shadow: 8px 8px 0 0 rgba(255, 214, 10, 0.28); }
.pricing-free { box-shadow: 8px 8px 0 0 rgba(19, 19, 19, 0.9); }
.pricing-kicker { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red-bright); }
.pricing-amount {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
}
.pricing-amount span { display: block; font-size: 0.32em; letter-spacing: 0.14em; color: var(--t2-on-dark); margin-top: 0.3em; }
.pricing-note { color: var(--t2-on-dark); font-size: 0.95rem; max-width: 42ch; }
.pricing .btn-big { margin-top: clamp(2rem, 4vw, 2.8rem); }
.pricing-fine { margin-top: 1.2rem; color: #6A6A70; font-size: 0.85rem; max-width: 54ch; }

/* ============================ Testimonials =========================== */
.testimonials {
  position: relative;
  z-index: 3;
  background: var(--ink-2);
  padding: var(--section-gap) var(--pad);
  border-top: 1px solid var(--line-dark);
}
.quote-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 1.6rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.quote-card {
  background: var(--ink-3);
  border: 2px solid var(--line-dark);
  border-left: 4px solid var(--red);
  padding: clamp(1.3rem, 2.6vw, 2rem);
  display: grid;
  gap: 1.2rem;
}
.quote-card blockquote {
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--t-on-dark);
  font-style: italic;
}
.quote-card figcaption { display: grid; gap: 0.15rem; }
.quote-name { font-family: var(--font-display); letter-spacing: 0.04em; color: var(--white); text-transform: uppercase; font-size: 1.05rem; }
.quote-role { font-size: 0.82rem; color: var(--t2-on-dark); letter-spacing: 0.04em; }

/* ============================== Belt band ============================= */
.belt-band {
  position: relative;
  z-index: 3;
  background: var(--red);
  color: var(--white);
  transform: skewY(var(--skew));
  margin-block: clamp(40px, 7vh, 80px) 0;
  padding: clamp(70px, 11vh, 130px) var(--pad) 0;
  border-block: 4px solid #131313;
}
.belt-band > * { transform: skewY(calc(var(--skew) * -1)); }
.belt-band-inner {
  max-width: 1180px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: end;
}
.belt-band h2 { color: var(--white); text-shadow: 6px 6px 0 rgba(19, 19, 19, 0.45); }
.belt-band-inner p { color: rgba(255, 255, 255, 0.88); max-width: 44ch; }
.belt-ticker {
  margin-top: clamp(2.4rem, 5vh, 4rem);
  margin-inline: calc(var(--pad) * -1);
  overflow: clip;
  border-top: 3px solid rgba(19, 19, 19, 0.85);
  background: rgba(19, 19, 19, 0.92);
}
.belt-ticker-track {
  display: flex;
  gap: 2.8rem;
  width: max-content;
  padding: 13px 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  white-space: nowrap;
}
.belt-ticker-track span:nth-child(19n + 10),
.belt-ticker-track span:nth-child(19n + 11) { color: var(--yellow); }
body.js-anim .belt-ticker-track { animation: marquee 38s linear infinite; }

/* ================================= CTA ================================ */
.cta {
  position: relative;
  z-index: 3;
  background: var(--ink);
  padding: calc(var(--section-gap) + 30px) var(--pad) var(--section-gap);
  overflow: clip;
}
.cta h2 { font-size: clamp(3rem, 8.5vw, 7.5rem); }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2.4rem;
}
.store-chip {
  padding: 0.9em 1.3em;
  transform: skew(var(--skew));
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--t2-on-dark);
  box-shadow: inset 0 0 0 2px var(--line-dark);
}
.signup-block {
  margin-top: clamp(3rem, 7vh, 5rem);
  max-width: 620px;
  border-top: 2px solid var(--red);
  padding-top: 2rem;
}
.signup-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: 0.04em;
}
.signup-sub { color: var(--t2-on-dark); margin-top: 0.5rem; font-size: 0.95rem; }
.signup {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.3rem;
}
.signup-input {
  flex: 1 1 260px;
  min-height: 54px;
  padding: 0 1.1rem;
  background: var(--ink-2);
  border: 2px solid var(--line-dark);
  color: var(--t-on-dark);
  font: 500 1rem var(--font-body);
  transform: skew(var(--skew));
  transition: border-color var(--dur);
}
.signup-input::placeholder { color: #6A6A70; }
.signup-input:focus-visible {
  outline: none;
  border-color: var(--yellow);
}
.signup-input.is-invalid { border-color: var(--red-bright); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.signup-status {
  margin-top: 0.9rem;
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 1.4em;
}
.signup-status.is-ok { color: var(--yellow); }
.signup-status.is-err { color: var(--red-bright); }
.cta-mascot {
  position: absolute;
  right: clamp(10px, 7vw, 110px);
  bottom: clamp(20px, 9vh, 90px);
  width: clamp(110px, 14vw, 200px);
  rotate: -7deg;
  filter: drop-shadow(8px 10px 0 rgba(255, 214, 10, 0.3));
}

/* =============================== Footer =============================== */
.site-footer {
  position: relative;
  z-index: 3;
  background: #0A0A0C;
  border-top: 1px solid var(--line-dark);
  padding: 2.2rem var(--pad) 2.6rem;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
.footer-kanji { color: var(--red-bright); font-size: 1rem; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 1.6rem; font-size: 0.9rem; }
.site-footer nav a {
  color: var(--t2-on-dark);
  text-decoration: none;
}
.site-footer nav a:hover, .site-footer nav a:focus-visible { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.footer-fine {
  margin-top: 1.4rem;
  color: #6A6A70;
  font-size: 0.82rem;
}

/* ============================== Responsive ============================ */
@media (max-width: 1100px) {
  body.js-stage .features-stage {
    grid-template-columns: minmax(180px, 0.7fr) minmax(250px, 0.9fr) minmax(330px, 1.25fr);
  }
}

@media (max-width: 899px) {
  .nav-links { display: none; }
  .btn-nav { margin-left: auto; }

  .hero { padding-top: 120px; padding-bottom: 80px; align-content: start; }
  .hero-inner { max-width: 100%; }
  .hero-phone-fallback {
    position: relative;
    right: auto;
    top: auto;
    translate: none;
    rotate: 5deg;
    margin: 3.5rem auto 0;
  }
  /* GL never runs <900px, so the fallback phone is always the hero phone here. */
  .hero-kanji { display: none; }
  .scroll-cue { display: none; }

  .belt-band-inner { grid-template-columns: 1fr; align-items: start; }
  .intro-mascot { position: relative; inset: auto; margin: 2.5rem 0 0 auto; }
  .starburst { display: none; }
  .stat-row { grid-template-columns: 1fr; gap: 2rem; }
  .bento { grid-template-columns: 1fr; }
  .cta-mascot { display: none; }

  .studio-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .quote-strip { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .btn-big { width: 100%; justify-content: center; }
  .phone { width: min(260px, 78vw); }
}

/* Reduced motion: kill the looping CSS animations too. */
@media (prefers-reduced-motion: reduce) {
  .marquee-track, .belt-ticker-track, .scroll-cue i { animation: none !important; }
}
