/* Loopin KICKOFF — full-screen campaign game (/kickoff).
   Loader flow + solid mood-colour blocks. Reuses tokens from /styles.css.
   Sized up for US-friendly readability + big tap targets; auto-adapts mobile. */

.kickbody { background: #7A1FA2; overflow-x: hidden; transition: background .45s var(--ease); }

/* ─────────────── brand lockup: [logo] Loopin KICKOFF ─────────────── */
.kick-brand { display: inline-flex; align-items: center; gap: 10px; color: #fff; }
.kick-brand__mark { width: 30px; display: inline-flex; }
.kick-brand__mark svg { width: 100%; height: auto; display: block; }
.kick-brand__txt { font-size: 1.15rem; font-weight: 400; letter-spacing: .01em; }
.kick-brand__txt b { font-weight: 800; letter-spacing: .02em; }
.kick-brand--stack { flex-direction: column; gap: 12px; }
.kick-brand--stack .kick-brand__mark { width: 54px; }
.kick-brand--stack .kick-brand__txt { font-size: 1.45rem; }

/* ─────────────── loader → let's begin ─────────────── */
.kick-loader {
  position: fixed; inset: 0; z-index: 100; display: flex; flex-direction: column;
  background: #7A1FA2; transition: background .3s linear, opacity .5s var(--ease);
  padding: max(20px, env(safe-area-inset-top)) clamp(22px, 5vw, 56px) max(28px, env(safe-area-inset-bottom));
  color: #fff;
}
.kick-loader.is-gone { opacity: 0; pointer-events: none; }
.kick-loader__bartop { display: flex; justify-content: space-between; align-items: center; }
.kick-loader__bword { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.01em; }
.kick-loader__blogo { width: 30px; display: inline-flex; color: #fff; }
.kick-loader__blogo svg { width: 100%; height: auto; }
.kick-loader__center { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: clamp(40px, 8vh, 90px); }
.kick-loader__hype {
  font-size: clamp(2.1rem, 6vw, 3.8rem); font-weight: 800; line-height: 1.1;
  letter-spacing: -0.02em; max-width: 17ch; margin: 0; text-wrap: balance;
}
.kick-loader__prog { width: min(320px, 78vw); height: 6px; border-radius: 6px; background: rgba(255,255,255,.28); overflow: hidden; }
.kick-loader__prog i { display: block; height: 100%; width: 0; background: #fff; border-radius: 6px; animation: kickFill 4s linear forwards; }
@keyframes kickFill { to { width: 100%; } }
.kick-begin {
  border: none; outline: none; cursor: pointer; background: #fff; color: #111;
  font-family: var(--font); font-weight: 700; font-size: 1.25rem;
  padding: 18px 64px; border-radius: 999px; box-shadow: 0 16px 40px -16px rgba(0,0,0,.5);
  transition: transform .2s var(--ease);
}
.kick-begin:focus, .kick-begin:focus-visible { outline: none; }
.kick-begin:hover { transform: translateY(-2px); }

/* ─────────────── the game (full screen) ─────────────── */
.kick {
  position: relative; height: 100vh; height: 100dvh; width: 100%;
  display: flex; flex-direction: column; align-items: center; color: #fff; overflow: hidden;
  background: #7A1FA2; transition: background .45s var(--ease);
  padding: max(18px, env(safe-area-inset-top)) clamp(18px, 5vw, 40px) calc(64px + max(22px, env(safe-area-inset-bottom)));
}
.kick__top { width: 100%; display: flex; justify-content: center; padding-top: 4px; }

.kick__stage { flex: 1; width: 100%; max-width: 760px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: clamp(26px, 4.5vh, 48px); }
.kick__words { text-align: center; display: flex; flex-direction: column; gap: .02em; }
.kick__word { font-size: clamp(3rem, 9vw, 5.6rem); font-weight: 300; line-height: 1.04; letter-spacing: -0.02em; }
@keyframes kickWordIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.kick__bpm { display: flex; align-items: center; justify-content: center; gap: 24px; }
.kick__bpm-step { width: 52px; height: 52px; border-radius: 50%; border: none; background: rgba(255,255,255,.18); color: #fff; font-size: 1.5rem; font-weight: 300; cursor: pointer; transition: background .15s; }
.kick__bpm-step:hover { background: rgba(255,255,255,.3); }
.kick__bpmwrap { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.kick__bpmval { font-size: 3.4rem; font-weight: 300; }
.kick__bpmwrap small { font-size: .62rem; letter-spacing: .3em; opacity: .8; margin-top: 6px; padding-left: .3em; }

.kick__divs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.kick__div { padding: 11px 24px; border-radius: 999px; border: none; background: rgba(255,255,255,.18); color: #fff; font-size: .95rem; font-weight: 600; cursor: pointer; transition: background .15s, color .15s; }
.kick__div.is-on { background: #fff; color: #111; }
.kick__div--mixer { background: rgba(255,255,255,.1); }

.kick__select {
  width: min(420px, 90%); border: none; cursor: pointer; color: #fff;
  background: rgba(0,0,0,.28); border-radius: 16px; padding: 18px 24px;
  font-family: var(--font); font-size: 1.15rem; font-weight: 700; transition: background .15s, transform .1s;
}
.kick__select:hover { background: rgba(0,0,0,.4); }
.kick__select:active { transform: scale(.99); }

.kick__timer { font-size: 1rem; font-variant-numeric: tabular-nums; }
.kick__timer::before { content: ""; display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: #fff; margin-right: 8px; vertical-align: middle; animation: kickBlink 1s steps(2) infinite; }
@keyframes kickBlink { 50% { opacity: .25; } }

.kick__controls { width: 100%; max-width: 520px; display: flex; align-items: center; justify-content: space-around; padding: 18px 0 6px; }
.kick__dice, .kick__metro { width: 60px; height: 60px; border-radius: 50%; border: none; background: rgba(255,255,255,.18); color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: background .15s, transform .1s; }
.kick__dice:hover, .kick__metro:hover { background: rgba(255,255,255,.3); }
.kick__dice:active { transform: rotate(-18deg) scale(.92); }
.kick__dice svg, .kick__metro svg { width: 26px; height: 26px; }
.kick__metro.is-on { background: #fff; color: #111; }
.kick__rec { width: 88px; height: 88px; border-radius: 50%; border: none; background: rgba(0,0,0,.22); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 0 0 3px rgba(255,255,255,.6); transition: box-shadow .2s; }
.kick__rec-dot { width: 38px; height: 38px; border-radius: 50%; background: #ff3b3b; transition: border-radius .2s, width .2s, height .2s; }
.kick.is-rec .kick__rec { box-shadow: 0 0 0 3px #fff, 0 0 30px -2px rgba(255,59,59,.85); }
.kick.is-rec .kick__rec-dot { width: 30px; height: 30px; border-radius: 8px; }

/* mode segmented control — Beat / A cappella */
.kick__mode { display: inline-flex; gap: 4px; margin: 12px auto 0; padding: 4px; border-radius: 999px; background: rgba(0,0,0,.22); }
.kick__mode-opt { border: none; cursor: pointer; background: transparent; color: rgba(255,255,255,.7); font: inherit; font-weight: 700; font-size: .9rem; padding: 8px 18px; border-radius: 999px; transition: background .15s, color .15s; }
.kick__mode-opt.is-on { background: #fff; color: #111; }

/* the panel under the mode control (beat picker, or metronome) */
.kick__panel { display: flex; flex-direction: column; align-items: center; margin-top: 12px; }

/* beat picker — tap to open the beat list */
.kick__beat { display: inline-flex; align-items: center; gap: 9px; padding: 10px 16px 10px 18px; border-radius: 999px; border: none; background: rgba(255,255,255,.16); color: #fff; font: inherit; font-weight: 700; font-size: 1rem; cursor: pointer; transition: background .15s, transform .1s; }
.kick__beat:hover { background: rgba(255,255,255,.28); }
.kick__beat:active { transform: scale(.96); }
.kick__beat svg { width: 18px; height: 18px; opacity: .9; }
.kick__beat-caret { width: 16px !important; height: 16px !important; opacity: .7 !important; }

/* read-only beat info (BPM · Key) */
.kick__info { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 8px 0 0; font-size: .85rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; opacity: .8; }
.kick__info-sep { opacity: .55; }

/* a cappella metronome controls */
.kick__metrobtn { display: inline-flex; align-items: center; gap: 9px; padding: 10px 18px; border-radius: 999px; border: none; background: rgba(255,255,255,.16); color: #fff; font: inherit; font-weight: 700; font-size: 1rem; cursor: pointer; transition: background .15s, opacity .15s; }
.kick__metrobtn:hover { background: rgba(255,255,255,.28); }
.kick__metrobtn svg { width: 18px; height: 18px; opacity: .9; }
.kick__metrobtn:not(.is-on) { opacity: .5; }
.kick__bpm { display: inline-flex; align-items: center; gap: 14px; margin-top: 10px; font-size: .85rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; opacity: .85; }
.kick__bpm-step { width: 32px; height: 32px; border-radius: 50%; border: none; cursor: pointer; background: rgba(255,255,255,.16); color: #fff; font-size: 1.25rem; line-height: 1; display: inline-flex; align-items: center; justify-content: center; }
.kick__bpm-step:hover { background: rgba(255,255,255,.28); }
.kick__bpm-val b { font-size: 1.05rem; }

/* keep it clean while recording */
.kick.is-rec .kick__mode { display: none; }

/* pause: hidden until recording, then swaps pause/resume icon */
.kick__pause { width: 60px; height: 60px; border-radius: 50%; border: none; background: rgba(255,255,255,.18); color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: background .15s, transform .1s; visibility: hidden; opacity: 0; }
.kick__pause:hover { background: rgba(255,255,255,.3); }
.kick__pause svg { width: 24px; height: 24px; }
.kick.is-rec .kick__pause { visibility: visible; opacity: 1; }
.kick__pause .ic-resume { display: none; }
.kick__pause.is-paused .ic-pause { display: none; }
.kick__pause.is-paused .ic-resume { display: inline; }

/* discard: only while recording */
.kick__discard { display: none; margin: 12px auto 0; padding: 8px 18px; border-radius: 999px; border: 1px solid rgba(255,255,255,.4); background: transparent; color: #fff; font: inherit; font-size: .85rem; font-weight: 600; cursor: pointer; opacity: .9; transition: background .15s; }
.kick__discard:hover { background: rgba(255,255,255,.14); }
.kick.is-rec .kick__discard { display: block; }

.kick__status { text-align: center; margin-top: 10px; font-size: .9rem; opacity: .92; min-height: 1.1em; }

/* takes list */
.kick-takes { width: 100%; max-width: 520px; margin: 8px auto 0; }
.kick-takes__title { font-size: 1rem; font-weight: 700; margin: 0 0 10px; text-align: center; }
.kick-takes__list { display: flex; flex-direction: column; gap: 10px; }
.kick-take { display: flex; align-items: center; gap: 12px; background: rgba(0,0,0,.24); border-radius: 14px; padding: 10px 12px; }
.kick-take__n { flex: none; font-weight: 700; font-size: .85rem; width: 56px; }
.kick-take audio { flex: 1; height: 36px; min-width: 0; }
.kick-take__dl { flex: none; width: 40px; height: 40px; border-radius: 50%; background: #fff; color: #111; display: inline-flex; align-items: center; justify-content: center; }
.kick-take__dl svg { width: 18px; height: 18px; }

/* ─────────────── beat bottom sheet ─────────────── */
/* takes peek sheet — docked at the bottom, drag/tap to open (only once the game is up) */
.kick-peek { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 110; pointer-events: none; }
.kick-live .kick-peek { display: block; }
.kick-peek__scrim { position: fixed; inset: 0; background: rgba(0,0,0,.5); backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.kick-peek.is-open .kick-peek__scrim { opacity: 1; visibility: visible; pointer-events: auto; }
.kick-peek__panel {
  position: relative; pointer-events: auto; width: 100%; max-width: 560px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--line); border-bottom: none; border-radius: 24px 24px 0 0;
  color: var(--ink); display: flex; flex-direction: column; max-height: 80vh;
  box-shadow: 0 -10px 40px -12px rgba(0,0,0,.5);
  transform: translateY(calc(100% - var(--peek-head, 60px)));
  transition: transform .34s var(--ease);
}
.kick-peek.is-open .kick-peek__panel { transform: translateY(0); }
.kick-peek__head { width: 100%; flex: none; min-height: var(--peek-head, 60px); background: none; border: none; color: var(--ink); font: inherit; cursor: grab; display: flex; flex-direction: column; align-items: center; gap: 7px; padding: 10px 20px 6px; touch-action: none; }
.kick-peek__head:active { cursor: grabbing; }
.kick-peek__grab { width: 44px; height: 5px; border-radius: 5px; background: var(--line-2); }
.kick-peek__title { font-size: 1.05rem; font-weight: 700; }
.kick-peek__title b { font-weight: 800; opacity: .55; margin-left: 2px; }
.kick-peek__body { overflow-y: auto; padding: 4px 20px max(24px, env(safe-area-inset-bottom)); }
.kick-peek__empty { text-align: center; color: var(--ink-soft); font-size: .9rem; margin: 8px 0 18px; }
.kick-peek__list { display: flex; flex-direction: column; gap: 10px; padding-bottom: 6px; }

/* beat picker sheet */
.kick-bsheet { position: fixed; inset: 0; z-index: 120; display: flex; align-items: flex-end; justify-content: center; }
.kick-bsheet[hidden] { display: none; }
.kick-bsheet__scrim { position: absolute; inset: 0; background: rgba(0,0,0,.5); backdrop-filter: blur(4px); }
.kick-bsheet__panel { position: relative; z-index: 1; width: 100%; max-width: 560px; background: var(--surface); border: 1px solid var(--line); border-bottom: none; border-radius: 24px 24px 0 0; padding: 12px 20px max(24px, env(safe-area-inset-bottom)); color: var(--ink); max-height: 80vh; display: flex; flex-direction: column; animation: kickSheetUp .3s var(--ease) both; }
@keyframes kickSheetUp { from { transform: translateY(100%); } to { transform: none; } }
.kick-bsheet__grab { width: 44px; height: 5px; border-radius: 5px; background: var(--line-2); margin: 2px auto 12px; cursor: pointer; }
.kick-bsheet__title { font-size: 1.15rem; font-weight: 700; margin: 0 0 12px; text-align: center; }
.kick-bsheet__list { display: flex; flex-direction: column; gap: 8px; overflow-y: auto; }
.kick-bitem { display: flex; align-items: center; gap: 12px; cursor: pointer; background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px; padding: 10px 14px; color: var(--ink); }
.kick-bitem:hover { border-color: var(--line-2); }
.kick-bitem.is-on { border-color: var(--accent, #1763E8); box-shadow: inset 0 0 0 1px var(--accent, #1763E8); }
.kick-bitem__play { flex: none; width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer; background: #fff; color: #111; display: inline-flex; align-items: center; justify-content: center; }
.kick-bitem__play svg { width: 16px; height: 16px; }
.kick-bitem__play .ic-stop { display: none; }
.kick-bitem.is-playing .kick-bitem__play .ic-play { display: none; }
.kick-bitem.is-playing .kick-bitem__play .ic-stop { display: inline; }
.kick-bitem__meta { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.kick-bitem__name { font-size: 1rem; font-weight: 600; }
.kick-bitem__bpm { font-size: .8rem; color: var(--ink-faint); }

/* ─────────────── app popup (only after a download) ─────────────── */
.kick-modal { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 22px; }
.kick-modal[hidden] { display: none; }
.kick-modal__scrim { position: absolute; inset: 0; background: rgba(5,7,6,.7); backdrop-filter: blur(6px); }
.kick-modal__card { position: relative; z-index: 1; width: min(440px, 100%); text-align: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 38px 30px 32px; box-shadow: 0 40px 100px -30px rgba(0,0,0,.8); animation: kickModalIn .3s var(--ease) both; }
@keyframes kickModalIn { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
.kick-modal__close { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%; border: none; background: rgba(255,255,255,.06); color: var(--ink-soft); cursor: pointer; display: grid; place-items: center; }
.kick-modal__close:hover { color: var(--ink); }
.kick-modal__close svg { width: 16px; height: 16px; }
.kick-modal__mark { display: block; width: 46px; margin: 0 auto 16px; color: var(--ink); }
.kick-modal__mark svg { width: 100%; height: auto; }
.kick-modal__title { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 8px; }
.kick-modal__sub { color: var(--ink-soft); font-size: 1rem; margin: 0 0 24px; }
.kick-modal__card .btn--store { width: 100%; justify-content: center; }

/* desktop: roomier, the words command the screen */
@media (min-width: 760px) {
  .kick__stage { gap: 46px; }
  .kick__controls { max-width: 560px; }
}
@media (max-width: 380px) { .kick__controls { padding-bottom: 2px; } .kick__rec { width: 76px; height: 76px; } }

/* ─────────── selected-beat bar (play before recording) ─────────── */
.kick__beatbar { width: min(420px, 90%); display: flex; align-items: center; gap: 12px; background: rgba(0,0,0,.28); border-radius: 16px; padding: 10px 14px; }
.kick__beatplay { flex: none; width: 46px; height: 46px; border-radius: 50%; border: none; background: #fff; color: #111; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.kick__beatplay svg { width: 20px; height: 20px; }
.kick__beatplay .ic-s { display: none; }
.kick__beatplay.is-playing .ic-p { display: none; }
.kick__beatplay.is-playing .ic-s { display: block; }
.kick__beatname { flex: 1; min-width: 0; font-weight: 700; font-size: 1rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.kick__beatchange { flex: none; border: none; background: rgba(255,255,255,.2); color: #fff; font: inherit; font-size: .82rem; font-weight: 600; padding: 8px 14px; border-radius: 999px; cursor: pointer; }
.kick__beatchange:hover { background: rgba(255,255,255,.32); }

/* ─────────── recording controls: pause / stop / discard ─────────── */
.kick__reccontrols { width: 100%; max-width: 520px; display: flex; align-items: flex-start; justify-content: space-around; padding: 14px 0 6px; }
.kick__reccontrols[hidden] { display: none; }
.kick-rc { display: flex; flex-direction: column; align-items: center; gap: 8px; border: none; background: none; color: #fff; cursor: pointer; font: inherit; }
.kick-rc__ic { width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.18); display: inline-flex; align-items: center; justify-content: center; transition: background .15s, transform .1s; }
.kick-rc:hover .kick-rc__ic { background: rgba(255,255,255,.3); }
.kick-rc:active .kick-rc__ic { transform: scale(.94); }
.kick-rc__ic svg { width: 26px; height: 26px; }
.kick-rc__label { font-size: .82rem; font-weight: 600; opacity: .9; }
.kick-rc--stop .kick-rc__ic { width: 88px; height: 88px; background: #ff3b3b; box-shadow: 0 0 0 3px #fff, 0 0 30px -2px rgba(255,59,59,.85); }
.kick-rc--stop:hover .kick-rc__ic { background: #ff5050; }
.kick-rc--stop .kick-rc__ic svg { width: 34px; height: 34px; }
.kick.is-paused .kick__timer::before { animation: none; opacity: .5; }

/* take row: player + download + delete */
.kick-take__btn { flex: none; width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; border: none; }
.kick-take__btn svg { width: 18px; height: 18px; }
.kick-take__dl { background: #fff; color: #111; }
.kick-take__del { background: rgba(255,255,255,.16); color: #fff; }
.kick-take__del:hover { background: rgba(255,59,59,.85); }

/* ─────────── beat sheet rows: [preview] Category // Name · BPM ─────────── */
.kick-beatitem { display: flex; align-items: center; gap: 12px; width: 100%; background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px; padding: 10px 12px; }
.kick-beatitem:hover { border-color: var(--line-2); }
.kick-beatitem__play { flex: none; width: 44px; height: 44px; border-radius: 50%; border: none; background: var(--ink); color: var(--bg); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.kick-beatitem__play svg { width: 18px; height: 18px; }
.kick-beatitem__play .ic-s { display: none; }
.kick-beatitem__play.is-playing .ic-p { display: none; }
.kick-beatitem__play.is-playing .ic-s { display: block; }
.kick-beatitem__pick { flex: 1; min-width: 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; background: none; border: none; color: var(--ink); cursor: pointer; font: inherit; text-align: left; padding: 6px 4px; }
.kick-beatitem__name { font-size: 1.02rem; font-weight: 600; }
.kick-beatitem__name .sep { color: var(--ink-faint); font-weight: 400; margin: 0 2px; }
.kick-beatitem__bpm { flex: none; font-size: .82rem; color: var(--ink-faint); }
.kick-sheet__list { max-height: 60vh; overflow-y: auto; }

/* ─────── fixes: no-scroll, hidden, declutter while recording ─────── */
/* the hidden attribute must beat display:flex rules */
.kickbody [hidden] { display: none !important; }
/* while recording, strip everything but the words, timer and the 3 buttons */
.kick.is-rec .kick__bpm, .kick.is-rec .kick__divs, .kick.is-rec .kick__beatbar, .kick.is-rec .kick__select { display: none; }
/* no focus rings on the game controls */
.kick button:focus, .kick button:focus-visible, .kick-peek button:focus, .kick-rc:focus, .kick-begin:focus { outline: none; }
/* bigger words on phones; tighter so it never scrolls */
@media (max-width: 600px) {
  .kick__word { font-size: clamp(3.2rem, 13.5vw, 5rem); }
  .kick__stage { gap: clamp(18px, 3vh, 30px); }
  .kick__controls, .kick__reccontrols { padding-top: 10px; }
}

/* while recording, hide the interactive pickers (keep the BPM·Key info) */
.kick.is-rec .kick__beat, .kick.is-rec .kick__metrobtn, .kick.is-rec .kick__bpm { display: none; }

/* ─────── 3-2-1 count-in overlay ─────── */
.kick-count { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; background: rgba(0,0,0,.28); }
.kick-count[hidden] { display: none !important; }
.kick-count span { font-size: clamp(7rem, 34vw, 18rem); font-weight: 800; line-height: 1; color: #fff; animation: kickCountPop .6s var(--ease); }
@keyframes kickCountPop { 0% { transform: scale(.5); opacity: 0; } 35% { transform: scale(1.08); opacity: 1; } 100% { transform: scale(1); opacity: .96; } }

/* ─────── crawlable about section (below the full-screen game) ─────── */
.kick-about { background: #0d0d10; color: #e8e8ea; border-top: 1px solid rgba(255,255,255,.08); padding: 64px 20px 96px; }
.kick-about__wrap { max-width: 720px; margin: 0 auto; }
.kick-about h1 { font-size: clamp(1.8rem, 5vw, 2.6rem); font-weight: 800; margin: 0 0 16px; }
.kick-about h2 { font-size: clamp(1.2rem, 3.5vw, 1.5rem); font-weight: 700; margin: 32px 0 10px; }
.kick-about p { line-height: 1.65; margin: 0 0 14px; color: #c4c4c8; }
.kick-about ol, .kick-about ul { line-height: 1.7; color: #c4c4c8; padding-left: 22px; margin: 0 0 14px; }
.kick-about li { margin: 0 0 6px; }
.kick-about a { color: #6ea8ff; text-decoration: none; }
.kick-about a:hover { text-decoration: underline; }
