/* ==========================================================================
   Discover CUS Verona – Landing corsi Ultimate Frisbee
   Mobile first · vanilla CSS · palette dal volantino
   ========================================================================== */

/* ---------- Font ---------- */
@font-face { font-family: "Dotties"; font-weight: 500; font-style: normal; font-display: swap;
  src: url("../font/WOFF2/DottiesVanilla-Medium.woff2") format("woff2"), url("../font/WOFF/DottiesVanilla-Medium.woff") format("woff"); }
@font-face { font-family: "Dotties"; font-weight: 700; font-style: normal; font-display: swap;
  src: url("../font/WOFF2/DottiesVanilla-Bold.woff2") format("woff2"), url("../font/WOFF/DottiesVanilla-Bold.woff") format("woff"); }
@font-face { font-family: "Dotties"; font-weight: 700; font-style: italic; font-display: swap;
  src: url("../font/WOFF2/DottiesVanilla-BoldItalic.woff2") format("woff2"), url("../font/WOFF/DottiesVanilla-BoldItalic.woff") format("woff"); }
@font-face { font-family: "Dotties"; font-weight: 900; font-style: normal; font-display: swap;
  src: url("../font/WOFF2/DottiesVanilla-Ultra.woff2") format("woff2"), url("../font/WOFF/DottiesVanilla-Ultra.woff") format("woff"); }
@font-face { font-family: "Fjalla One"; font-weight: 400; font-style: normal; font-display: swap;
  src: url("../font/web/FjallaOne-400-latin.woff2") format("woff2"); }
@font-face { font-family: "Roboto"; font-weight: 100 900; font-style: normal; font-display: swap;
  src: url("../font/web/Roboto-var-latin.woff2") format("woff2"); }
@font-face { font-family: "Roboto"; font-weight: 400; font-style: italic; font-display: swap;
  src: url("../font/web/Roboto-400i-latin.woff2") format("woff2"); }

/* ---------- Token ---------- */
:root {
  --yellow: #f5bc36;
  --yellow-deep: #d9a740;
  --yellow-light: #feebab;
  --yellow-pale: #fff5d5;
  --blue: #243d73;
  --blue-dark: #1b2f5a;
  --white: #ffffff;
  --ink: #1f2a44;
  --muted: #5b6785;

  --font-display: "Dotties", "Arial Black", sans-serif;
  --font-title: "Fjalla One", "Arial Narrow", Impact, sans-serif;
  --font-body: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1120px;
  --radius: 14px;
  --shadow-3d: 0 6px 0 var(--blue);
  --ease: cubic-bezier(.2,.8,.2,1);

}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }
body { margin: 0; font-family: var(--font-body); font-size: 1.0625rem; line-height: 1.6; color: var(--ink); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); }
button { font: inherit; cursor: pointer; }
p { margin: 0 0 1em; }
ul { padding-left: 1.2em; }
[hidden] { display: none !important; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--blue); color: #fff; padding: .6em 1em; z-index: 100; }
.skip-link:focus { left: 8px; top: 8px; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.container--narrow { max-width: 780px; }
.section { padding-block: clamp(3rem, 8vw, 5.5rem); }

/* ---------- Tipografia ---------- */
.eyebrow { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .18em; font-size: .8rem; color: var(--yellow-deep); margin: 0 0 .4em; }
.h2 { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; color: var(--blue); font-size: clamp(2.2rem, 6vw, 3.4rem); line-height: 1; letter-spacing: .01em; margin: 0 0 .35em; }
.h2--white { color: #fff; }
.h3 { font-family: var(--font-display); font-weight: 700; color: var(--blue); font-size: clamp(1.25rem, 3vw, 1.5rem); line-height: 1.15; margin: 1.6em 0 .6em; }
.subtitle { font-family: var(--font-display); font-weight: 700; font-style: italic; color: var(--blue); font-size: clamp(1.1rem, 2.6vw, 1.4rem); line-height: 1.25; margin: 0 0 1.8em; }
.lead { font-size: clamp(1.15rem, 2.4vw, 1.35rem); line-height: 1.5; }

/* ---------- Bottoni ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .6em; min-height: 3.1rem; padding: .7em 1.5em; border-radius: 999px; border: 0; text-decoration: none; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: 1rem; line-height: 1.1; transition: transform .15s var(--ease), box-shadow .15s var(--ease), background .15s; position: relative; }
.btn:active { transform: translateY(3px); }
.btn--primary { background: var(--yellow); color: var(--blue); box-shadow: var(--shadow-3d); }
.btn--primary:hover { background: #ffc946; }
.btn--primary:active { box-shadow: 0 3px 0 var(--blue); }
.btn--blue { background: var(--blue); color: #fff; box-shadow: 0 6px 0 var(--blue-dark); }
.btn--blue:hover { background: #2b4a8c; }
.btn--blue:active { box-shadow: 0 3px 0 var(--blue-dark); }
.btn--big { font-size: 1.15rem; min-height: 3.6rem; padding-inline: 2em; }
.btn--full { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

/* ==========================================================================
   HERO – 100% viewport al primo caricamento
   ========================================================================== */
.hero { position: relative; background: var(--yellow); color: var(--blue); overflow: hidden; isolation: isolate; display: flex; flex-direction: column; }
.hero__badge { position: absolute; top: clamp(.6rem, 2vh, 1.4rem); z-index: 1; width: clamp(130px, 36vw, 260px); }
.hero__badge img { width: 100%; height: auto; }
.hero__badge--left { left: calc(-.27 * clamp(130px, 36vw, 260px)); }
.hero__badge--right { right: calc(-.27 * clamp(130px, 36vw, 260px)); }
.hero__inner { position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; justify-content: flex-start; width: min(100% - 1.5rem, var(--container)); margin-inline: auto; padding-bottom: 2.4rem; }

/* Kicker centrato tra i due badge */
.kicker { text-align: center; padding-top: .5rem; }
.kicker__brand { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .2em; color: #fff; font-size: clamp(.6rem, 2.2vw, .95rem); margin: 0 0 .15em; white-space: nowrap; }
.kicker__band { margin: 0; }
.kicker__band img { width: min(46vw, 300px); margin-inline: auto; filter: drop-shadow(0 2px 3px rgba(36,61,115,.2)); }

/* Main: titolo + giocatore + nastri (griglia condivisa mobile/desktop) */
.hero__main { position: relative; display: grid; grid-template-columns: 40% 20% 40%; grid-template-areas: "title title player" "ribbon1 ribbon1 ribbon1" "addr ribbon2 ribbon2"; align-items: end; margin-top: .2rem; }
.hero__title { grid-area: title; position: relative; margin: 0; width: 100%; aspect-ratio: 392 / 328; align-self: start; z-index: 1; }
.hero__title img { position: absolute; top: 0; right: 0; width: 176.5%; max-width: none; height: auto; }
.hero__player { position: absolute; top: 0; right: -9vw; margin: 0; z-index: 2; pointer-events: none; }
.hero__player img { height: clamp(360px, 60vh, 640px); width: auto; filter: drop-shadow(0 6px 12px rgba(36,61,115,.25)); }
.hero__ribbon { position: relative; z-index: 3; }
.hero__ribbon img { width: 100%; height: auto; filter: drop-shadow(0 4px 6px rgba(36,61,115,.25)); }
.hero__ribbon--openday { grid-area: ribbon1; margin-top: 4vh; }
.hero__address { grid-area: addr; position: relative; z-index: 2; margin: .2rem 0 0; font-style: normal; font-family: var(--font-title); text-transform: uppercase; font-size: clamp(.95rem, 3.6vw, 1.5rem); line-height: 1.15; }
.hero__address a { color: #fff; text-decoration: none; display: inline-block; background: var(--blue); padding: .45em .65em .5em; border-radius: 6px; transform: skewX(-6deg); }
.hero__address a > * { transform: skewX(6deg); }
.hero__address small { display: block; font-size: .72em; margin-top: .15em; letter-spacing: .02em; }
.hero__address a:hover { background: var(--blue-dark); }
.hero__ribbon--vieni { grid-area: ribbon2; width: 100%; margin: 0; align-self: center; }
.ribbon-btn { display: block; width: 100%; padding: 0; border: 0; background: none; transition: transform .2s var(--ease); }
.ribbon-btn:hover { transform: scale(1.03) rotate(-1deg); }

/* Card corsi + CTA */
.hero__bottom { margin-top: .7rem; }
.cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; position: relative; z-index: 5; width: calc(100% - 1.4rem); margin-inline: auto; }
.card { position: relative; background: #fff; padding: .8rem .4rem .7rem; text-align: center; border-radius: 10px; box-shadow: 0 8px 24px rgba(36,61,115,.14); }
.card__title { margin: 0; font-family: var(--font-display); font-weight: 900; text-transform: uppercase; color: var(--blue); font-size: clamp(1.15rem, 5.2vw, 2.4rem); line-height: 1; letter-spacing: .02em; }
.card__time { margin: .15em 0 .35em; font-family: var(--font-display); font-weight: 700; font-style: italic; color: var(--blue); font-size: clamp(.72rem, 2.8vw, 1.3rem); white-space: nowrap; }
.card__desc { color: var(--ink); margin: 0 auto .5rem; max-width: 30ch; line-height: 1.3; font-size: clamp(.72rem, 2.8vw, 1rem); }
.card__link { display: inline-block; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: clamp(.68rem, 2.6vw, .85rem); color: var(--blue); text-decoration: none; border-bottom: 3px solid var(--yellow); padding-bottom: .1em; }
.card__link:hover { border-color: var(--blue); }
.hero__cta { margin-top: .6rem; text-align: center; position: relative; z-index: 5; }
.hero__cta .btn--big { font-size: clamp(.95rem, 3.6vw, 1.15rem); min-height: 3.2rem; }
.hero__cta-note { margin: .5rem 0 0; font-family: var(--font-display); font-weight: 700; font-style: italic; color: var(--blue); font-size: clamp(.8rem, 3vw, 1rem); }

/* Telefoni stretti: giocatore un filo più a destra e in basso per non coprire il titolo */
@media (max-width: 599px) {
  .hero__player { top: 3vh; right: -17vw; }
  .hero__player img { height: clamp(340px, 56vh, 640px); }
}

/* Desktop hero */
@media (min-width: 900px) {
  .hero { min-height: 100vh; min-height: min(100svh, 1150px); }
  .hero__inner { width: min(100% - 4rem, var(--container)); padding-bottom: 2.8rem; }
  .kicker { padding-top: 1rem; }
  .hero__main { grid-template-columns: 22% 33% 45%; column-gap: 1rem; margin-top: 0; }
  .hero__title { width: min(100%, 60vh); }
  .hero__player { top: -1vh; right: -6vw; }
  .hero__player img { height: clamp(700px, 108vh, 1200px); }
  .hero__ribbon--openday { margin-top: 0; width: 96%; }
  .hero__address { margin-top: .4rem; }
  .hero__ribbon--vieni { margin-top: 0; }
  .hero__bottom { margin-top: clamp(.8rem, 2vh, 1.4rem); }
  .hero__cta { margin-top: 1rem; }
  .kicker { padding-top: 1rem; }
  .cards { gap: 2.2rem; width: 88%; }
  .card { padding: 1.1rem 1.4rem 1rem; }
  .hero__cta { display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-top: 1rem; }
  .hero__cta-note { margin: 0; }
}

/* ==========================================================================
   INTRO
   ========================================================================== */
.intro { position: relative; background: #e6e9ef; overflow: hidden; }
.intro::before { content: ""; position: absolute; inset: 0; background: url("../img/creativita-1000.webp") center top / cover no-repeat; opacity: .28; pointer-events: none; }
.intro__wrap { position: relative; }
.intro__text { max-width: 62ch; margin-inline: auto; text-align: center; }
.intro .btn-row { flex-wrap: nowrap; justify-content: center; }
.intro .btn-row .btn { flex: 1 1 0; font-size: clamp(.72rem, 2.9vw, 1rem); padding-inline: .8em; text-align: center; }
@media (min-width: 900px) { .intro__text { max-width: 70ch; } .intro .btn-row .btn { flex: 0 0 auto; } }

/* ==========================================================================
   CORSI
   ========================================================================== */
.course--u17 { background: var(--yellow-pale); }
.course--beg { background: #fff; }
.course__grid { display: grid; gap: 2rem; }
.course__body p { max-width: 62ch; }
.course__figure { margin: 2rem auto 0; width: 60%; }
.checklist { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.checklist li { position: relative; padding-left: 2rem; margin-bottom: .6rem; }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 1.4rem; height: 1.4rem; border-radius: 50%; background: var(--yellow); color: var(--blue); font-weight: 700; font-size: .85rem; display: grid; place-items: center; margin-top: .2rem; }
.checklist--compact li { margin-bottom: .35rem; }

.infobox { background: #fff; border: 3px solid var(--blue); border-radius: var(--radius); padding: 1.5rem 1.4rem; box-shadow: 8px 8px 0 var(--yellow); align-self: start; }
.course--beg .infobox { background: var(--yellow-pale); }
.infobox__title { margin: 0 0 1rem; font-family: var(--font-display); font-weight: 900; text-transform: uppercase; color: var(--blue); font-size: 1.35rem; }
.infobox__list { margin: 0 0 1.2rem; }
.infobox__list > div { display: grid; grid-template-columns: 7.5rem 1fr; gap: .5rem; padding: .55rem 0; border-top: 1px solid rgba(36,61,115,.18); }
.infobox__list > div:last-child { border-bottom: 1px solid rgba(36,61,115,.18); }
.infobox__list dt { font-family: var(--font-display); font-weight: 700; color: var(--blue); font-size: .95rem; }
.infobox__list dd { margin: 0; }
.infobox__sub { margin: 1.2rem 0 .5rem; font-family: var(--font-display); font-weight: 700; color: var(--blue); font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; }
.infobox__note { font-size: .9rem; color: var(--muted); margin: .8rem 0 1.2rem; }

.tryout { margin-top: 3rem; padding: 1.8rem 1.4rem; background: var(--blue); color: #fff; border-radius: var(--radius); }
.tryout .h3 { color: var(--yellow); margin-top: 0; }
.tryout a { color: var(--yellow); }
.tryout p { max-width: 70ch; }
.tryout__when { display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; align-items: baseline; margin: 1.2rem 0 .4rem; }
.tryout__date { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.6rem, 5vw, 2.2rem); color: var(--yellow); line-height: 1; }
.tryout__date small { font-family: var(--font-body); font-weight: 400; font-size: .5em; color: #fff; }
.tryout__time { font-family: var(--font-display); font-weight: 700; font-style: italic; font-size: clamp(1.3rem, 4vw, 1.7rem); }
.tryout__where { font-weight: 500; }
.tryout__alt { font-size: .92rem; opacity: .85; }
.tryout .btn { margin: .6rem 0 1.4rem; }
.tryout__contact { font-size: .95rem; margin: 0; }

@media (min-width: 900px) {
  .course__grid { grid-template-columns: 1.3fr .9fr; gap: 3.5rem; }
  .course__figure { width: 50%; margin-left: 0; }
  .tryout { padding: 2.5rem 2.5rem; }
}

/* ==========================================================================
   OPEN DAY + MAPPA
   ========================================================================== */
.openday { background: var(--blue); color: #fff; position: relative; overflow: hidden; }
.openday::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 15% 20%, rgba(245,188,54,.18), transparent 40%), radial-gradient(circle at 90% 90%, rgba(245,188,54,.14), transparent 45%); pointer-events: none; }
.openday .container { position: relative; }
.openday__ribbon { max-width: 700px; margin: 0 auto 2rem; filter: drop-shadow(0 6px 10px rgba(0,0,0,.25)); }
.openday__grid { display: grid; gap: 2rem; align-items: center; }
.openday__info p { max-width: 50ch; }
.slots { list-style: none; padding: 0; margin: 1.2rem 0; display: grid; gap: .5rem; }
.slots li { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: .6rem 1rem; background: rgba(255,255,255,.08); border-left: 4px solid var(--yellow); border-radius: 6px; }
.slots__label { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: 1.2rem; }
.slots__time { font-family: var(--font-display); font-weight: 700; font-style: italic; font-size: 1.15rem; color: var(--yellow); }
.openday__addr { font-family: var(--font-title); text-transform: uppercase; font-size: 1.3rem; line-height: 1.75; margin: 1rem 0 1.5rem; }
.openday__addr a { color: #fff; text-decoration: none; border-bottom: 3px solid var(--yellow); }
.openday__addr a:hover { color: var(--yellow); }
.openday__map { border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 30px rgba(0,0,0,.3); border: 4px solid #fff; background: #ddd; }
.openday__map iframe { display: block; width: 100%; height: clamp(260px, 60vw, 420px); }
@media (min-width: 900px) { .openday__grid { grid-template-columns: 1fr 1.1fr; gap: 3.5rem; } }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { background: #fff; }
.faq .h2 { text-align: center; margin-bottom: 1.2em; }
.faq__item { border: 2px solid rgba(36,61,115,.18); border-radius: 12px; margin-bottom: .8rem; background: #fff; transition: border-color .2s; }
.faq__item[open] { border-color: var(--yellow); box-shadow: 6px 6px 0 var(--yellow-light); }
.faq__item summary { cursor: pointer; list-style: none; padding: 1rem 3rem 1rem 1.2rem; font-family: var(--font-display); font-weight: 700; color: var(--blue); font-size: 1.1rem; position: relative; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 1.1rem; top: 50%; transform: translateY(-50%); width: 1.7rem; height: 1.7rem; border-radius: 50%; background: var(--yellow); color: var(--blue); display: grid; place-items: center; font-size: 1.3rem; line-height: 1; transition: transform .2s var(--ease); }
.faq__item[open] summary::after { content: "–"; }
.faq__item p { margin: 0; padding: 0 1.2rem 1.2rem; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--blue-dark); color: #fff; padding: 2.5rem 0 6rem; }
.footer__grid { display: grid; gap: 1.5rem; }
.footer__brand { display: flex; align-items: center; gap: 1rem; }
.footer__logo { position: relative; width: 68px; height: 68px; border-radius: 50%; background: #fff; flex: none; }
.footer__logo img { position: absolute; left: 50%; top: 50%; width: 62px; max-width: none; height: auto; transform: translate(-50%, -50%); }
.footer__brand p { margin: 0; line-height: 1.3; }
.footer__links { display: flex; flex-wrap: wrap; gap: .5rem 1.6rem; }
.footer__links a { color: var(--yellow); text-decoration: none; font-weight: 500; border-bottom: 2px solid transparent; }
.footer__links a:hover { border-color: var(--yellow); }
.footer__legal { margin: 0; font-size: .85rem; opacity: .7; }
@media (min-width: 900px) { .footer { padding-bottom: 2.5rem; } .footer__grid { grid-template-columns: auto 1fr auto; align-items: center; } }

/* ==========================================================================
   STICKY CTA (mobile)
   ========================================================================== */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom)); background: linear-gradient(to top, rgba(255,255,255,.98), rgba(255,255,255,.9)); box-shadow: 0 -6px 20px rgba(36,61,115,.15); z-index: 50; transform: translateY(110%); transition: transform .3s var(--ease); }
.sticky-cta.is-visible { transform: translateY(0); }
@media (min-width: 900px) { .sticky-cta { display: none; } }

/* ==========================================================================
   FORM (dialog bottom-sheet)
   ========================================================================== */
.sheet { border: 0; padding: 0; margin: 0; max-width: none; max-height: none; width: 100%; background: transparent; color: var(--ink); position: fixed; inset: auto 0 0 0; }
.sheet::backdrop { background: rgba(27,47,90,.65); backdrop-filter: blur(2px); }
.sheet__inner { position: relative; background: #fff; border-radius: 22px 22px 0 0; padding: 1.5rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom)); max-height: 92vh; max-height: 92dvh; overflow-y: auto; box-shadow: 0 -10px 40px rgba(0,0,0,.25); }
.sheet[open] .sheet__inner { animation: sheetUp .32s var(--ease); }
@keyframes sheetUp { from { transform: translateY(40px); opacity: 0; } to { transform: none; opacity: 1; } }
.sheet__close { position: absolute; top: .8rem; right: .8rem; width: 2.4rem; height: 2.4rem; border-radius: 50%; border: 0; background: var(--yellow-pale); color: var(--blue); font-size: 1.6rem; line-height: 1; display: grid; place-items: center; }
.sheet__close:hover { background: var(--yellow); }
.sheet__head { padding-right: 2.5rem; margin-bottom: 1.2rem; }
.sheet__title { margin: 0 0 .3em; font-family: var(--font-display); font-weight: 900; text-transform: uppercase; color: var(--blue); font-size: clamp(1.5rem, 5.5vw, 1.9rem); line-height: 1.05; }
.sheet__sub { margin: 0; color: var(--muted); }

.form { display: grid; gap: 1.1rem; }
.field label, .field legend { display: block; font-family: var(--font-display); font-weight: 700; color: var(--blue); margin-bottom: .35rem; font-size: .95rem; }
.field input[type="text"], .field input[type="tel"] { width: 100%; min-height: 3.2rem; padding: .7em 1em; font: inherit; font-size: 1.05rem; border: 2px solid rgba(36,61,115,.3); border-radius: 12px; background: #fff; color: var(--ink); transition: border-color .15s, box-shadow .15s; }
.field input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(245,188,54,.4); outline: none; }
.field.is-invalid input[type="text"], .field.is-invalid input[type="tel"] { border-color: #c62828; }
.field__error { display: none; margin: .35rem 0 0; font-size: .88rem; color: #c62828; font-weight: 500; }
.field.is-invalid .field__error { display: block; }
.field--radio { border: 0; padding: 0; margin: 0; }
.field--radio legend { padding: 0; }
.radio, .check { display: flex; gap: .7rem; align-items: flex-start; font-family: var(--font-body); font-weight: 400; color: var(--ink); cursor: pointer; padding: .55rem .8rem; border: 2px solid rgba(36,61,115,.18); border-radius: 12px; margin-bottom: .5rem; font-size: 1rem; line-height: 1.35; }
.radio:has(input:checked) { border-color: var(--blue); background: var(--yellow-pale); }
.radio input, .check input { width: 1.3rem; height: 1.3rem; margin: .1rem 0 0; accent-color: var(--blue); flex: none; }
.radio small { color: var(--muted); }
.check { font-size: .9rem; color: var(--muted); }
.field--check label { margin: 0; }
.hp { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }
.form__error { margin: 0; padding: .8rem 1rem; background: #fdecea; color: #8a1c1c; border-radius: 10px; font-size: .95rem; }
.form__hint { margin: -.3rem 0 0; text-align: center; font-size: .85rem; color: var(--muted); }

.btn__spinner { display: none; width: 1.1em; height: 1.1em; border: 3px solid rgba(36,61,115,.3); border-top-color: var(--blue); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.btn.is-loading { pointer-events: none; opacity: .85; }
.btn.is-loading .btn__spinner { display: inline-block; }

.success { text-align: center; padding: 1rem 0 .5rem; }
.success__icon { width: 4rem; height: 4rem; margin: 0 auto 1rem; border-radius: 50%; background: var(--yellow); color: var(--blue); display: grid; place-items: center; font-size: 2rem; font-weight: 700; box-shadow: var(--shadow-3d); }
.success__title { margin: 0 0 .5em; font-family: var(--font-display); font-weight: 900; text-transform: uppercase; color: var(--blue); font-size: 1.7rem; }
.success__small { color: var(--muted); font-size: .92rem; }

@media (min-width: 700px) {
  .sheet { inset: 0; margin: auto; width: min(100%, 560px); height: fit-content; }
  .sheet__inner { border-radius: 22px; padding: 2rem 2rem 2rem; max-height: 90vh; }
}
