:root {
  /* Canvas e acentos extraídos do CSS público do marketplace (tokens, sem marca) */
  --background: #f8f8fd;
  --foreground: #3a3960;
  --rosa: #e81e75;
  --rosa-hover: #c4165f;
  --rosa-light: #fce7f0;
  --rosa-glow: rgb(232 30 117 / 0.08);
  --navy: #06055b;
  --navy-soft: #1a1968;
  --purple: #541fe4;
  --purple-light: #8b5cf6;
  --blue: #3b82f6;
  --bg: #f8f8fd;
  --white: #ffffff;
  --gray-50: #f8f8fd;
  --gray-100: #f0f0f8;
  --gray-200: #e2e1ef;
  --gray-300: #c5c4d6;
  --gray-400: #9593b0;
  --gray-500: #6e6c8a;
  --gray-700: #3a3960;
  --gray-900: #06055b;
  --jbl: #ff4713;
  --magenta: var(--rosa);
  --muted: var(--gray-500);
  --line: var(--gray-200);
  --card: var(--white);
  --accent: var(--rosa);
  --radius: 0.9rem;
  --max: 1120px;
  --nav-h: 3.75rem;
  --font: "Space Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Poppins", var(--font);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --section-y: clamp(1.5rem, 3.2vw, 2.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--rosa) var(--gray-100);
}

::selection {
  background: var(--rosa);
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--rosa);
  outline-offset: 3px;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--foreground);
  background: var(--background);
  line-height: 1.55;
  letter-spacing: 0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.skip {
  position: absolute;
  inset-inline-start: 1rem;
  top: 0;
  transform: translateY(-120%);
  z-index: 80;
  background: var(--rosa);
  color: var(--white);
  padding: 0.55rem 1rem;
  border-radius: 0 0 0.5rem 0.5rem;
  text-decoration: none;
}

.skip:focus {
  transform: none;
}

header.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--navy);
  border-bottom: 1px solid rgb(255 255 255 / 0.12);
}

header.nav .wrap {
  position: relative;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-h);
  padding-block: 0.55rem;
}

.nav__brands {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.nav__brands img {
  height: 28px;
  width: auto;
}

.nav__jbl {
  height: 26px;
  background: var(--jbl);
  border-radius: 4px;
  padding: 4px 6px;
}

.nav__plus {
  color: rgb(255 255 255 / 0.55);
  font-size: 0.85rem;
}

.nav__tools {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

nav.links {
  display: flex;
  gap: 1.1rem;
  font-size: 0.95rem;
}

nav.links a {
  text-decoration: none;
  color: rgb(255 255 255 / 0.88);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.mf-nav-link {
  position: relative;
  transition: color 0.2s;
}

.mf-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.55rem;
  height: 2px;
  background: var(--rosa);
  transform: scaleX(0);
  transform-origin: 0;
  transition: transform 0.22s var(--ease);
}

.mf-nav-link:hover::after,
.mf-nav-link:focus-visible::after {
  transform: scaleX(1);
}

.nav__toggle {
  display: none;
  font: inherit;
  color: var(--white);
  background: transparent;
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: 999px;
  min-height: 44px;
  padding: 0 0.9rem;
  cursor: pointer;
}

.lang {
  display: flex;
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: 999px;
  overflow: hidden;
}

.lang button {
  font: inherit;
  border: 0;
  background: transparent;
  color: rgb(255 255 255 / 0.62);
  min-height: 44px;
  min-width: 44px;
  padding: 0 0.7rem;
  cursor: pointer;
}

.lang button[aria-pressed="true"] {
  background: var(--rosa);
  color: var(--white);
}

/* —— Hero: light canvas, JBL mark —— */
.hero {
  position: relative;
  overflow: hidden;
  min-height: min(28rem, calc(100svh - var(--nav-h)));
  display: grid;
  align-items: center;
  padding-block: clamp(2rem, 5vw, 3.5rem) 1.75rem;
  background: var(--background);
}

.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__blob {
  position: absolute;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: rgb(232 30 117 / 0.14);
  filter: blur(64px);
  right: -6rem;
  top: -4rem;
}

.hero__blob--2 {
  background: rgb(84 31 228 / 0.12);
  left: -8rem;
  top: auto;
  bottom: 8%;
  right: auto;
  width: 22rem;
  height: 22rem;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.15rem, 5vw, 3.85rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 18ch;
  margin: 0;
  font-weight: 700;
  color: var(--navy);
  text-wrap: balance;
}

.hero__lead {
  max-width: 38rem;
  color: var(--foreground);
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  margin-top: 0.85rem;
}

.hero__meta {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.hero__visual {
  position: relative;
  margin: 0;
  display: grid;
  place-items: center;
}

.hero__visual img {
  width: min(86%, 22rem);
  height: auto;
  object-fit: contain;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  min-height: 44px;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn--mag {
  background: var(--rosa);
  color: var(--white);
}

.btn--mag:hover {
  background: var(--rosa-hover);
}

.btn--ghost {
  border-color: var(--gray-200);
  color: var(--navy);
  background: transparent;
}

.btn--dl {
  font-size: 0.88rem;
  padding: 0.5rem 0.95rem;
  min-height: 44px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  color: var(--navy);
}

h2 {
  font-family: var(--display);
  font-size: clamp(1.65rem, 3.1vw, 2.3rem);
  letter-spacing: -0.03em;
  line-height: 1.18;
  margin: 0;
  color: var(--navy);
  text-wrap: balance;
}

.lede {
  color: var(--foreground);
  max-width: 58ch;
  margin-top: 0.5rem;
}

/* —— Trail: one coastline gesture —— */
.trail {
  padding-block: var(--section-y);
  background: var(--background);
}

.trail-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.trail-card {
  position: relative;
  display: block;
  text-decoration: none;
  border-radius: 0.85rem;
  overflow: hidden;
  min-height: 7.5rem;
  isolation: isolate;
  background: var(--gray-200);
  border: 0;
  color: var(--white);
  transition: transform 0.25s var(--ease);
}

.trail-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.05) contrast(1.06) brightness(0.86);
}

.trail-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgb(6 5 91 / 0.08) 8%, rgb(6 5 91 / 0.78) 100%);
}

.trail-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 7.5rem;
  padding: 0.65rem 0.75rem;
}

.trail-card strong {
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.trail-card span {
  color: rgb(255 255 255 / 0.78);
  font-size: 0.78rem;
}

.chapter__map {
  margin-top: var(--space-5);
}

.city-gmap {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
}

.city-gmap__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: var(--gray-100);
}

.city-gmap iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--gray-100);
}

.city-gmap__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  padding: 0.45rem 0.7rem;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.nsc-links {
  margin: 0;
  padding: 0.35rem 0.7rem 0.65rem;
  font-size: 0.92rem;
  color: var(--muted);
  background: var(--white);
}

.nsc-links a {
  color: var(--purple);
  text-underline-offset: 3px;
}

.dot {
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  margin-right: 0.35rem;
  vertical-align: middle;
}

.dot--city {
  background: var(--rosa);
  box-shadow: 0 0 0 3px rgb(232 30 117 / 0.22);
}

.dot--beach {
  background: var(--jbl);
}

/* —— Sticky coastline index —— */
.markets {
  padding-block: 0 0;
  background: var(--background);
}

.markets__intro {
  padding-block: var(--section-y) 0.85rem;
}

.coast-stick {
  position: sticky;
  top: var(--nav-h);
  z-index: 30;
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.45rem 1rem;
  background: rgb(255 255 255 / 0.92);
  backdrop-filter: blur(16px);
  border-block: 1px solid var(--gray-200);
  scrollbar-width: thin;
}

.coast-stick a {
  flex: none;
  text-decoration: none;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 0.88rem;
  color: var(--foreground);
  white-space: nowrap;
  background: var(--white);
}

.coast-stick a.is-on {
  background: var(--rosa);
  border-color: var(--rosa);
  color: var(--white);
}

/* —— City chapter: cover photo + copy, then 16:9 map —— */
.chapter {
  scroll-margin-top: calc(var(--nav-h) + 3.2rem);
  padding-block: var(--section-y);
}

.chapter:nth-child(odd) {
  background: var(--background);
}

.chapter:nth-child(even) {
  background: var(--white);
}

.chapter__open {
  display: grid;
  gap: var(--space-5);
  align-items: start;
}

.chapter__notes {
  margin-top: 0.75rem;
}

.tip {
  position: relative;
  display: inline-block;
  margin-top: 0.75rem;
  z-index: 8;
}

.tip__btn {
  font: inherit;
  cursor: pointer;
  color: var(--rosa);
  background: var(--rosa-light);
  border: 1px solid rgb(232 30 117 / 0.28);
  border-radius: 999px;
  min-height: 44px;
  padding: 0.4rem 0.95rem;
  font-size: 0.9rem;
}

.tip__btn:hover,
.tip__btn:focus-visible {
  background: rgb(232 30 117 / 0.18);
}

.tip__panel {
  position: absolute;
  left: 0;
  top: calc(100% + 0.55rem);
  z-index: 24;
  width: min(28rem, 86vw);
  max-height: min(22rem, 60vh);
  overflow-y: auto;
  padding: 1rem 1.1rem 1.05rem;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: 0 18px 40px -18px rgb(6 5 91 / 0.35);
  color: var(--foreground);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.tip__panel::before {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: -6px;
  width: 12px;
  height: 12px;
  background: var(--white);
  border-left: 1px solid var(--gray-200);
  border-top: 1px solid var(--gray-200);
  transform: rotate(45deg);
}

.tip:hover .tip__panel,
.tip:focus-within .tip__panel,
.tip.is-open .tip__panel {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.tip__panel .chapter__facts {
  margin-top: 0;
}

#trail,
#markets,
#close,
#contact {
  scroll-margin-top: calc(var(--nav-h) + 0.6rem);
}

.chapter__visual {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  width: 100%;
  height: auto;
  min-height: 0;
  background: var(--gray-200);
  box-shadow: 0 16px 32px -18px rgb(6 5 91 / 0.28);
}

.chapter__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(1.06) contrast(1.04);
}

.chapter__copy h3 {
  margin: 0.15rem 0 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--navy);
}

.chapter__region,
.chapter__label {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.chapter__label {
  margin-top: 0.85rem;
}

.chapter__lead {
  max-width: 36rem;
  margin-top: 0.55rem;
  font-size: 1.05rem;
  color: var(--foreground);
}

.chapter__pop {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 0.5rem;
}

.chapter__pop a {
  color: var(--purple);
  text-underline-offset: 3px;
}

.chapter__hub {
  margin: 0.55rem 0 0;
  max-width: 36rem;
  color: var(--foreground);
  font-size: 0.95rem;
}

.chapter__facts {
  display: grid;
  gap: 0.7rem;
  margin: 0.85rem 0 0;
  padding: 0;
}

.chapter__facts div {
  border-top: 1px solid var(--gray-200);
  padding-top: 0.45rem;
}

.chapter__facts dt {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rosa);
}

.chapter__facts dd {
  margin: 0.25rem 0 0;
  font-size: 0.95rem;
  color: var(--foreground);
}

.beach-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.65rem;
}

.beach-chip {
  font-size: 0.88rem;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  text-decoration: none;
  background: var(--white);
}

.chapter__stations {
  margin-top: var(--space-6);
}

.radios {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.65rem;
}

.radio {
  --accent: var(--jbl);
  background: var(--card);
  border-radius: 1rem;
  padding: 1rem 1.1rem 1.1rem;
  border: 1px solid var(--gray-200);
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
  min-width: 0;
}

.radio__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.radio__logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border-radius: 12px;
  padding: 0.35rem;
  flex-shrink: 0;
  border: 1px solid var(--gray-200);
}

.radio h4 {
  margin: 0.12rem 0 0;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--navy);
}

.radio__station {
  margin: 0;
  font-size: 0.92rem;
  color: var(--foreground);
}

.radio__dial {
  color: var(--muted);
  font-weight: 500;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.7rem 0 0.35rem;
}

.radio__body .chips {
  margin-top: 0.15rem;
}

.chip {
  font-size: 0.72rem;
  border-radius: 999px;
  padding: 0.16rem 0.5rem;
  background: var(--rosa-light);
  color: var(--rosa-hover);
}

.chip--warn {
  background: rgb(255 71 19 / 0.12);
  color: #b1330e;
}

.radio__essence {
  margin: 0.35rem 0 0;
  color: var(--foreground);
  font-size: 0.92rem;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.stat {
  background: var(--gray-50);
  border-radius: 10px;
  padding: 0.5rem 0.6rem;
  min-width: 0;
}

.stat small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.stat b {
  font-family: var(--display);
  font-size: 0.95rem;
  word-break: break-word;
  color: var(--navy);
}

.share b {
  color: var(--navy);
}

.note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.45rem;
}

.radio__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.sources {
  margin-top: 0.85rem;
  font-size: 0.8rem;
}

.sources summary {
  cursor: pointer;
  color: var(--muted);
}

.sources ul {
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
}

.sources a {
  color: var(--purple);
}

.chapter__notes .chapter__facts {
  margin-top: 0.75rem;
}

.close {
  background: var(--white);
  padding-block: var(--section-y) 0;
}

.close__files {
  padding-block: 0 1.5rem;
}

.kit-grid {
  display: grid;
  gap: 0;
  margin-top: 1.1rem;
  border-top: 1px solid var(--gray-200);
}

.kit-card {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 0.75rem 1rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-200);
  background: transparent;
  border-radius: 0;
}

.kit-card img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  background: var(--white);
  border-radius: 8px;
  padding: 0.2rem;
  border: 1px solid var(--gray-200);
}

.kit-card strong {
  font-size: 1rem;
  display: block;
  color: var(--navy);
}

.kit-card span {
  color: var(--muted);
  font-size: 0.88rem;
  display: block;
}

.kit-card .radio__cta {
  margin-top: 0;
  justify-self: end;
}

.cta {
  text-align: center;
  background: var(--navy);
  color: var(--white);
  padding: clamp(2.75rem, 6vw, 4.5rem) 1rem;
  border-start-start-radius: 2.4rem;
}

.cta h2 {
  max-width: 18ch;
  margin-inline: auto;
  color: var(--white);
}

.cta .lede {
  margin-inline: auto;
  color: rgb(255 255 255 / 0.86);
}

.cta .btn--ghost {
  border-color: rgb(255 255 255 / 0.28);
  color: var(--white);
}

footer {
  border-top: 1px solid var(--gray-200);
  padding: 1.4rem 0 2rem;
  color: var(--muted);
  font-size: 0.9rem;
  background: var(--background);
}

.credits {
  margin-top: 1.1rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
}

.credits a {
  color: var(--purple);
  text-underline-offset: 3px;
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.foot a {
  color: var(--navy);
}

.hero__blob {
  animation: 16s ease-in-out infinite alternate blob-drift;
}

.btn--mag::after {
  content: "";
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  margin-inline-start: 0.5em;
  margin-bottom: 0.1em;
  border-bottom: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
}

@keyframes blob-drift {
  from {
    transform: translate(0) scale(1);
  }
  to {
    transform: translate(-28px, 18px) scale(1.06);
  }
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
  }

  .chapter__open {
    grid-template-columns: 0.96fr 1.04fr;
    gap: var(--space-6);
  }

  .radios > .radio:only-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.1rem 1.4rem;
    align-items: start;
  }

  .radios > .radio:only-child .radio__head {
    grid-column: 1;
  }

  .radios > .radio:only-child .radio__body {
    grid-column: 2;
    min-width: 0;
  }
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .radio:hover,
  .trail-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px -16px rgb(6 5 91 / 0.28);
  }
  .trail-card:hover {
    border-color: transparent;
  }
  .btn:hover {
    filter: brightness(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero__blob,
  .btn--mag::after {
    animation: none !important;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 0;
    padding-block: 2.4rem 1.5rem;
  }

  .hero__visual img {
    max-height: 8.5rem;
  }

  .chapter__visual {
    aspect-ratio: 16 / 9;
  }

  .radios {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav__toggle {
    display: inline-flex;
    align-items: center;
  }

  nav.links {
    display: none;
    position: absolute;
    inset-inline: 0;
    top: 100%;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 1rem 1rem;
    background: var(--navy);
    border-bottom: 1px solid rgb(255 255 255 / 0.12);
  }

  .nav.is-open nav.links {
    display: flex;
  }

  nav.links a {
    padding-inline: 0.2rem;
  }

  .trail-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .kit-card {
    grid-template-columns: 48px 1fr;
  }

  .kit-card .radio__cta {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .radio__logo {
    width: 56px;
    height: 56px;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    max-width: none;
  }

  .coast-stick {
    padding-inline: 1rem;
  }
}
