@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --mf-bg: #030b18;
  --mf-panel: #08172b;
  --mf-border: rgba(148, 184, 219, 0.17);
  --mf-text: #f5f9ff;
  --mf-muted: #9fb2c9;
  --mf-cyan: #5de4ff;
  --mf-green: #a7f432;
  --mf-danger: #ff7187;
}

* { box-sizing: border-box; }

.match-finder-body {
  min-width: 320px;
  margin: 0;
  color: var(--mf-text);
  background:
    radial-gradient(circle at 18% 18%, rgba(23, 116, 203, 0.12), transparent 31rem),
    radial-gradient(circle at 88% 46%, rgba(119, 227, 43, 0.06), transparent 29rem),
    var(--mf-bg);
  font-family: 'Manrope', system-ui, sans-serif;
}

.match-finder-body footer { margin-top: 0; }

.match-finder-page {
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  padding-bottom: clamp(3rem, 7vw, 6.5rem);
}

.match-finder-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 45%);
}

.match-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 3rem;
  max-width: 1180px;
  min-height: 330px;
  margin: 0 auto;
  padding: clamp(3.6rem, 7vw, 6.8rem) clamp(1.25rem, 4vw, 2.5rem) clamp(4rem, 8vw, 7.2rem);
}

.hero-copy { position: relative; z-index: 2; max-width: 780px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--mf-cyan);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .22em;
}

.eyebrow::before {
  content: "";
  width: 2.1rem;
  height: 2px;
  background: linear-gradient(90deg, var(--mf-green), var(--mf-cyan));
  box-shadow: 0 0 12px rgba(93, 228, 255, .75);
}

.match-hero h1 {
  max-width: 740px;
  margin: .95rem 0 1rem;
  font-size: clamp(2.35rem, 5.2vw, 4.55rem);
  line-height: 1.02;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.match-hero p {
  max-width: 670px;
  margin: 0;
  color: #b7c8da;
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  line-height: 1.72;
}

.hero-badge {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(155px, 19vw, 220px);
  aspect-ratio: 1;
  border: 1px solid rgba(93, 228, 255, .24);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 30%, rgba(93, 228, 255, .17), transparent 32%), rgba(7, 23, 43, .65);
  box-shadow: inset 0 0 40px rgba(41, 140, 255, .10), 0 0 55px rgba(41, 140, 255, .09);
  transform: rotate(-5deg);
}

.hero-badge::before,
.hero-badge::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(167, 244, 50, .2);
  border-radius: 50%;
}

.hero-badge::before { inset: 11px; }
.hero-badge::after { inset: -14px; border-style: dashed; animation: badge-spin 24s linear infinite; }
.hero-badge strong { margin-top: 1rem; color: var(--mf-green); font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; letter-spacing: -.08em; }
.hero-badge > span:last-child { margin-top: -2.7rem; color: #afc8df; font-size: .62rem; font-weight: 800; letter-spacing: .18em; }

.hero-badge-ball {
  position: absolute;
  top: 18%;
  right: 10%;
  width: 19%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--mf-green);
  box-shadow: 0 0 26px rgba(167, 244, 50, .45);
}

.hero-badge-ball::before { content: ""; position: absolute; inset: 20%; border: 1px solid rgba(6, 30, 16, .4); border-radius: 50%; }
.hero-orb { position: absolute; z-index: -1; border-radius: 50%; pointer-events: none; }
.hero-orb-one { width: 24rem; height: 24rem; top: -9rem; left: -12rem; background: rgba(40, 141, 255, .12); filter: blur(70px); }
.hero-orb-two { width: 16rem; height: 16rem; right: 9%; bottom: 0; background: rgba(167, 244, 50, .07); filter: blur(60px); }

.finder-shell { position: relative; z-index: 3; max-width: 1120px; margin: 0 auto; padding: 0 clamp(1rem, 3vw, 2rem); }

.finder-shell form {
  overflow: hidden;
  border: 1px solid var(--mf-border);
  border-radius: 25px;
  background: linear-gradient(155deg, rgba(10, 28, 50, .98), rgba(5, 17, 33, .98));
  box-shadow: 0 32px 90px rgba(0, 0, 0, .39), inset 0 1px 0 rgba(255,255,255,.03);
}

.progress-rail { display: flex; align-items: center; max-width: 480px; margin: 0 auto -1px; padding: 0 1.5rem 1.5rem; }
.progress-step { display: grid; flex: 0 0 auto; place-items: center; width: 2rem; height: 2rem; color: #7f94aa; font-size: .7rem; font-weight: 800; border: 1px solid rgba(143,177,210,.24); border-radius: 50%; background: #071426; }
.progress-step.is-active { color: #06110c; border-color: var(--mf-green); background: var(--mf-green); box-shadow: 0 0 22px rgba(167,244,50,.26); }
.progress-rail i { flex: 1; height: 1px; background: rgba(143,177,210,.2); }

.form-section { padding: clamp(2rem, 5vw, 3.8rem); border-bottom: 1px solid var(--mf-border); }
.identity-section { background: linear-gradient(90deg, rgba(38, 123, 206, .055), transparent); }

.section-heading { display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: start; gap: 1rem; margin-bottom: 2rem; }
.section-number { display: grid; place-items: center; width: 2.6rem; height: 2.6rem; color: var(--mf-cyan); font-size: .72rem; font-weight: 800; border: 1px solid rgba(93, 228, 255, .35); border-radius: 11px; background: rgba(93, 228, 255, .065); }
.section-heading h2 { margin: 0 0 .35rem; color: #f7fbff; font-size: clamp(1.3rem, 2.5vw, 1.8rem); line-height: 1.2; letter-spacing: -.025em; }
.section-heading p { margin: 0; color: var(--mf-muted); font-size: .88rem; line-height: 1.55; }
.heading-with-summary { grid-template-columns: auto minmax(0, 1fr) auto; }
.selection-summary { align-self: center; padding: .48rem .8rem; color: #102107; font-size: .72rem; font-weight: 800; white-space: nowrap; border-radius: 999px; background: var(--mf-green); }

.field-grid { display: grid; gap: 1rem; }
.two-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field { display: grid; gap: .55rem; color: #c7d5e5; font-size: .78rem; font-weight: 700; }
.field-title { display: flex; align-items: center; justify-content: space-between; gap: .65rem; }
.field-title small { color: #7890a9; font-size: .66rem; font-weight: 600; }
.input-wrap { position: relative; display: block; }
.input-wrap svg { position: absolute; top: 50%; left: 1rem; width: 1.1rem; fill: none; stroke: #7890a9; stroke-width: 1.7; transform: translateY(-50%); pointer-events: none; }
.field input, .notes-field textarea { width: 100%; color: var(--mf-text); font: inherit; border: 1px solid rgba(132, 167, 201, .22); border-radius: 12px; outline: none; background: rgba(3, 13, 27, .69); transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease; }
.field input { min-height: 3.25rem; padding: .8rem 1rem .8rem 3rem; }
.field input::placeholder, .notes-field textarea::placeholder { color: #63788e; }
.field input:focus, .notes-field textarea:focus { border-color: rgba(93, 228, 255, .72); background: rgba(4, 17, 33, .95); box-shadow: 0 0 0 3px rgba(93, 228, 255, .09); }
.field input[aria-invalid="true"] { border-color: var(--mf-danger); }
.trap-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.days-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .85rem; }
.day-card { min-width: 0; overflow: hidden; border: 1px solid rgba(132, 167, 201, .18); border-radius: 15px; background: rgba(3, 13, 27, .48); }
.day-card.has-selection { border-color: rgba(167,244,50,.4); box-shadow: 0 0 0 1px rgba(167,244,50,.06); }
.day-head { display: flex; justify-content: space-between; align-items: center; gap: .65rem; min-height: 4.25rem; padding: .9rem 1rem; border-bottom: 1px solid rgba(132, 167, 201, .15); background: rgba(13, 35, 61, .62); }
.day-head div { min-width: 0; }
.day-head strong { display: block; overflow: hidden; color: #f2f8ff; font-size: .87rem; text-overflow: ellipsis; white-space: nowrap; }
.day-head small { display: block; margin-top: .18rem; color: #8199b1; font-size: .67rem; text-transform: capitalize; }
.day-count { flex: 0 0 auto; min-width: 1.8rem; padding: .2rem .45rem; color: #9db2c7; font-size: .63rem; font-weight: 800; text-align: center; border: 1px solid rgba(132, 167, 201, .2); border-radius: 999px; }
.has-selection .day-count { color: #102107; border-color: var(--mf-green); background: var(--mf-green); }
.time-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .38rem; max-height: 252px; overflow-y: auto; padding: .75rem; scrollbar-color: #35526d transparent; scrollbar-width: thin; }
.time-chip { min-height: 2.15rem; padding: .38rem .15rem; color: #aec0d2; font: 700 .72rem 'Manrope', sans-serif; cursor: pointer; border: 1px solid rgba(132, 167, 201, .15); border-radius: 8px; background: rgba(13, 32, 54, .65); transition: color 130ms ease, border-color 130ms ease, background 130ms ease, transform 130ms ease; }
.time-chip:hover { color: #fff; border-color: rgba(93, 228, 255, .45); background: rgba(28, 70, 106, .58); transform: translateY(-1px); }
.time-chip:focus-visible { outline: 2px solid var(--mf-cyan); outline-offset: 2px; }
.time-chip .tick { display: none; margin-right: .18rem; font-size: .68rem; }
.time-chip[aria-pressed="true"] { color: #102107; border-color: var(--mf-green); background: var(--mf-green); box-shadow: 0 0 14px rgba(167, 244, 50, .13); }
.time-chip[aria-pressed="true"] .tick { display: inline; }
.no-slots { display: grid; place-items: center; min-height: 150px; padding: 1.5rem; color: #8198ae; font-size: .78rem; line-height: 1.6; text-align: center; }

.time-legend { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; color: #879db3; font-size: .68rem; }
.time-legend > span { display: inline-flex; align-items: center; gap: .38rem; }
.time-legend .athens-time { margin-left: auto; }
.legend-dot { display: grid; place-items: center; width: .9rem; height: .9rem; font-style: normal; border: 1px solid rgba(132,167,201,.25); border-radius: 3px; background: #10243b; }
.legend-dot.selected { color: #102107; font-size: .58rem; font-weight: 900; border-color: var(--mf-green); background: var(--mf-green); }

.clubs-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .72rem; }
.club-card { position: relative; min-width: 0; cursor: pointer; }
.club-card input { position: absolute; opacity: 0; pointer-events: none; }
.club-card > span { position: relative; display: flex; align-items: center; gap: .75rem; min-height: 4.7rem; height: 100%; padding: .75rem; border: 1px solid rgba(132,167,201,.18); border-radius: 13px; background: rgba(3,13,27,.48); transition: border-color 150ms ease, background 150ms ease, transform 150ms ease; }
.club-card:hover > span { border-color: rgba(93,228,255,.42); background: rgba(13,41,67,.65); transform: translateY(-2px); }
.club-card input:focus-visible + span { outline: 2px solid var(--mf-cyan); outline-offset: 2px; }
.club-card input:checked + span { border-color: var(--mf-green); background: linear-gradient(135deg, rgba(167,244,50,.13), rgba(10,35,44,.72)); box-shadow: inset 0 0 0 1px rgba(167,244,50,.08), 0 8px 28px rgba(0,0,0,.16); }
.club-logo { display: grid; flex: 0 0 auto; place-items: center; width: 3rem; height: 3rem; overflow: hidden; color: var(--mf-cyan); font-size: .75rem; font-weight: 800; border-radius: 11px; background: #eef5fa; }
.club-logo img { width: 100%; height: 100%; object-fit: contain; padding: .2rem; }
.club-card strong { min-width: 0; color: #e5eef8; font-size: .76rem; line-height: 1.35; }
.club-location { color: #8299b1; font-size: .68rem; font-weight: 650; white-space: nowrap; }
.club-check { position: absolute; top: .45rem; right: .45rem; display: grid; place-items: center; width: 1.15rem; height: 1.15rem; color: transparent; font-size: .62rem; font-style: normal; font-weight: 900; border: 1px solid rgba(132,167,201,.25); border-radius: 50%; }
.club-card input:checked + span .club-check { color: #102107; border-color: var(--mf-green); background: var(--mf-green); }
.loading-card { grid-column: 1 / -1; display: flex; align-items: center; justify-content: center; gap: .7rem; min-height: 5rem; color: var(--mf-muted); font-size: .8rem; border: 1px dashed rgba(132,167,201,.22); border-radius: 13px; }
.loading-spinner, .button-spinner { width: 1rem; height: 1rem; border: 2px solid rgba(255,255,255,.25); border-top-color: currentColor; border-radius: 50%; animation: spinner .75s linear infinite; }

.levels-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: .65rem; }
.level-card { position: relative; display: flex; align-items: center; gap: .65rem; min-width: 0; min-height: 5.1rem; padding: .7rem; cursor: pointer; border: 1px solid rgba(132,167,201,.17); border-radius: 13px; background: rgba(3,13,27,.48); transition: border-color 150ms ease, background 150ms ease, transform 150ms ease; }
.level-card:hover { border-color: rgba(93,228,255,.4); transform: translateY(-2px); }
.level-card input { position: absolute; opacity: 0; pointer-events: none; }
.level-letter { display: grid; flex: 0 0 auto; place-items: center; width: 2.35rem; height: 2.35rem; color: #07121f; font-size: 1.05rem; font-weight: 900; border-radius: 10px; background: var(--level-color, #70e9ff); }
.level-card > span:nth-of-type(2) { min-width: 0; }
.level-card strong { display: block; overflow: hidden; color: #e7f0fa; font-size: .7rem; text-overflow: ellipsis; white-space: nowrap; }
.level-card small { display: block; overflow: hidden; margin-top: .24rem; color: #778ea5; font-size: .58rem; text-overflow: ellipsis; white-space: nowrap; }
.level-card > i { position: absolute; top: .42rem; right: .42rem; display: grid; place-items: center; width: 1rem; height: 1rem; color: transparent; font-size: .55rem; font-style: normal; font-weight: 900; border: 1px solid rgba(132,167,201,.23); border-radius: 50%; }
.level-card:has(input:checked) { border-color: var(--level-color, var(--mf-green)); background: rgba(18, 42, 55, .94); box-shadow: 0 8px 25px rgba(0,0,0,.15); }
.level-card:has(input:focus-visible) { outline: 2px solid var(--mf-cyan); outline-offset: 2px; }
.level-card:has(input:checked) > i { color: #07121f; border-color: var(--level-color, var(--mf-green)); background: var(--level-color, var(--mf-green)); }
.level-a { --level-color: #f9c74f; }
.level-b { --level-color: #ff8c5a; }
.level-c { --level-color: #74e6ff; }
.level-d { --level-color: #87e889; }
.level-e { --level-color: #b8f14c; }

.final-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .85rem; background: rgba(3,13,27,.3); }
.option-panel { display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: .85rem; min-height: 7rem; padding: 1.15rem; border: 1px solid rgba(132,167,201,.16); border-radius: 15px; background: rgba(10,30,52,.64); }
.option-icon { display: grid; place-items: center; width: 2.8rem; height: 2.8rem; color: var(--mf-cyan); border-radius: 11px; background: rgba(93,228,255,.09); }
.option-icon svg { width: 1.4rem; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.trophy-icon { color: var(--mf-green); background: rgba(167,244,50,.08); }
.option-copy h3 { margin: 0 0 .22rem; color: #edf5fd; font-size: .85rem; }
.option-copy p { margin: 0; color: #8298ae; font-size: .65rem; line-height: 1.45; }
.player-count { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); gap: .35rem; }
.player-count label { position: relative; cursor: pointer; }
.player-count input { position: absolute; opacity: 0; pointer-events: none; }
.player-count span { display: grid; place-items: center; min-height: 2.1rem; color: #94aabd; font-size: .72rem; font-weight: 800; border: 1px solid rgba(132,167,201,.18); border-radius: 8px; background: rgba(2,12,25,.52); }
.player-count input:checked + span { color: #102107; border-color: var(--mf-green); background: var(--mf-green); }
.player-count input:focus-visible + span { outline: 2px solid var(--mf-cyan); outline-offset: 2px; }
.rated-panel { grid-template-columns: auto minmax(0,1fr) auto; }
.switch-control { display: flex; flex-direction: column; align-items: center; gap: .28rem; cursor: pointer; }
.switch-control input { position: absolute; opacity: 0; pointer-events: none; }
.switch-track { position: relative; display: block; width: 3rem; height: 1.65rem; border: 1px solid rgba(132,167,201,.28); border-radius: 999px; background: #10243b; transition: background 160ms ease, border-color 160ms ease; }
.switch-track i { position: absolute; top: .18rem; left: .18rem; width: 1.15rem; height: 1.15rem; border-radius: 50%; background: #8298ad; transition: transform 160ms ease, background 160ms ease; }
.switch-control input:checked + .switch-track { border-color: var(--mf-green); background: rgba(167,244,50,.17); }
.switch-control input:checked + .switch-track i { background: var(--mf-green); transform: translateX(1.3rem); }
.switch-control input:focus-visible + .switch-track { outline: 2px solid var(--mf-cyan); outline-offset: 2px; }
.switch-label { color: #8095aa; font-size: .6rem; font-weight: 800; }
.switch-control input:checked ~ .switch-label { color: var(--mf-green); }

.notes-field { position: relative; display: grid; gap: .55rem; padding: clamp(2rem,5vw,3.8rem); color: #c7d5e5; font-size: .78rem; font-weight: 700; border-bottom: 1px solid var(--mf-border); }
.notes-field textarea { min-height: 6.2rem; padding: .9rem 1rem; resize: vertical; line-height: 1.55; }
.notes-field small { position: absolute; right: calc(clamp(2rem,5vw,3.8rem) + .8rem); bottom: calc(clamp(2rem,5vw,3.8rem) + .65rem); color: #60778e; font-size: .62rem; }
.submit-area { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; padding: clamp(1.4rem,4vw,2.3rem) clamp(2rem,5vw,3.8rem); background: rgba(2,11,23,.55); }
.privacy-note { display: flex; align-items: center; gap: .6rem; max-width: 500px; margin: 0; color: #7890a8; font-size: .66rem; line-height: 1.5; }
.privacy-note svg { flex: 0 0 auto; width: 1rem; fill: none; stroke: var(--mf-cyan); stroke-width: 1.6; }
.submit-button { display: inline-flex; align-items: center; justify-content: center; gap: .7rem; min-width: 220px; min-height: 3.35rem; padding: .8rem 1.35rem; color: #091407; font: 800 .78rem 'Manrope', sans-serif; cursor: pointer; border: 0; border-radius: 12px; background: linear-gradient(110deg, #baff45, #7bdc20); box-shadow: 0 12px 30px rgba(116,211,28,.18); transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease; }
.submit-button:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(116,211,28,.27); }
.submit-button:focus-visible { outline: 3px solid rgba(93,228,255,.62); outline-offset: 3px; }
.submit-button:disabled { cursor: wait; opacity: .72; transform: none; }
.submit-button svg { width: 1.2rem; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.submit-button .button-spinner { display: none; }
.submit-button.is-loading .button-spinner { display: block; }
.submit-button.is-loading > svg { display: none; }
.form-status { margin: 0 clamp(2rem,5vw,3.8rem) clamp(2rem,5vw,3rem); padding: 1rem 1.2rem; font-size: .78rem; line-height: 1.55; border-radius: 11px; }
.form-status.is-success { color: #dfffc3; border: 1px solid rgba(167,244,50,.38); background: rgba(86,154,22,.16); }
.form-status.is-error { color: #ffdbe1; border: 1px solid rgba(255,113,135,.38); background: rgba(181,45,68,.13); }
.field-error { margin: .8rem 0 0; color: var(--mf-danger); font-size: .72rem; font-weight: 700; }

@keyframes spinner { to { transform: rotate(360deg); } }
@keyframes badge-spin { to { transform: rotate(360deg); } }

@media (max-width: 980px) {
  .clubs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .levels-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .level-card:last-child { grid-column: span 2; }
  .hero-badge { opacity: .72; }
}

@media (max-width: 760px) {
  .match-hero { grid-template-columns: 1fr; min-height: 0; gap: 0; padding-top: 3.3rem; }
  .hero-badge { position: absolute; right: -3.6rem; bottom: 1.5rem; width: 145px; opacity: .23; }
  .match-hero p { max-width: 88%; }
  .days-grid { grid-template-columns: 1fr; }
  .time-grid { grid-template-columns: repeat(4, minmax(0,1fr)); max-height: 205px; }
  .final-options, .two-columns { grid-template-columns: 1fr; }
  .submit-area { align-items: stretch; flex-direction: column; }
  .submit-button { width: 100%; }
  .time-legend .athens-time { width: 100%; margin-left: 0; }
}

@media (max-width: 520px) {
  .match-finder-page { padding-bottom: 3rem; }
  .match-hero { padding-right: 1.1rem; padding-bottom: 3.5rem; padding-left: 1.1rem; }
  .match-hero h1 { font-size: clamp(2.25rem, 12vw, 3.15rem); }
  .finder-shell { padding: 0 .65rem; }
  .finder-shell form { border-radius: 19px; }
  .progress-rail { max-width: 350px; padding-bottom: 1rem; }
  .form-section, .notes-field { padding: 1.55rem 1rem; }
  .section-heading { gap: .7rem; margin-bottom: 1.35rem; }
  .section-number { width: 2.2rem; height: 2.2rem; border-radius: 9px; }
  .heading-with-summary { grid-template-columns: auto minmax(0,1fr); }
  .selection-summary { grid-column: 2; justify-self: start; margin-top: -.55rem; }
  .time-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .clubs-grid, .levels-grid { grid-template-columns: 1fr; }
  .level-card:last-child { grid-column: auto; }
  .option-panel { padding: .9rem; }
  .submit-area { padding: 1.25rem 1rem; }
  .form-status { margin: 0 1rem 1.5rem; }
  .notes-field small { right: 1.8rem; bottom: 2rem; }
}

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