/* ═══════════════════════════════════════
   RESET & TOKENS
═══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* brand */
  --pink:        #ec4899;
  --pink-hover:  #db2777;
  --pink-light:  #fce7f3;
  --pink-soft:   #fdf2f8;
  --pink-border: rgba(236,72,153,.2);

  /* neutrals */
  --dark:        #0f0f1a;
  --dark-2:      #1a1a2e;
  --white:       #ffffff;
  --gray-1:      #f8f8fc;
  --gray-2:      #f0f0f8;
  --text:        #374151;
  --text-muted:  #6b7280;
  --border:      #e5e7eb;

  /* shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:   0 4px 16px rgba(236,72,153,.10), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg:   0 12px 40px rgba(236,72,153,.14), 0 4px 16px rgba(0,0,0,.06);
  --shadow-pink: 0 8px 32px rgba(236,72,153,.35);

  /* misc */
  --radius-sm:  8px;
  --radius:    14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --trans:     .22s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* ═══════════════════════════════════════
   LAYOUT
═══════════════════════════════════════ */
.wrapper {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: var(--trans);
  white-space: nowrap;
  line-height: 1;
}
.btn--pink {
  background: var(--pink);
  color: #fff;
  box-shadow: var(--shadow-pink);
}
.btn--pink:hover { background: var(--pink-hover); transform: translateY(-2px); }

.btn--white {
  background: #fff;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
}
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

.btn--lg { padding: 14px 30px; font-size: 15px; font-weight: 700; }

/* ═══════════════════════════════════════
   PILLS / TAGS / EYEBROW
═══════════════════════════════════════ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}
.pill--outline {
  border: 1.5px solid var(--pink-border);
  background: var(--pink-soft);
  color: var(--pink);
}
.pill__icon { width: 16px; height: 16px; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}

.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.tag--update     { background: #fce7f3; color: var(--pink); }
.tag--event      { background: #ede9fe; color: #7c3aed; }
.tag--maintenance{ background: #dbeafe; color: #1d4ed8; }

/* ═══════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px) saturate(1.8);
  -webkit-backdrop-filter: blur(16px) saturate(1.8);
  border-bottom: 1px solid rgba(236,72,153,.08);
  transition: box-shadow var(--trans);
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.07); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  flex-shrink: 0;
}
.logo__icon { width: 28px; height: 28px; }
.logo--white { color: #fff; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav a {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: var(--trans);
}
.nav a:hover { background: var(--pink-soft); color: var(--pink); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--trans);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 12px 24px 18px;
  border-top: 1px solid var(--border);
  background: #fff;
  gap: 2px;
}
.mobile-nav a {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}
.mobile-nav a:hover { background: var(--pink-soft); color: var(--pink); }
.mobile-nav.open { display: flex; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 110px 0 80px;
  overflow: hidden;
  background: linear-gradient(150deg, #fff 0%, #fdf2f8 55%, #fce7f3 100%);
}

/* background decorations */
.hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .45;
}
.hero__blob--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #fbcfe8 0%, transparent 70%);
  top: -150px; right: -150px;
}
.hero__blob--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #f9a8d4 0%, transparent 70%);
  bottom: -100px; left: -100px;
}
.hero__dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(236,72,153,.08) 1px, transparent 1px);
  background-size: 36px 36px;
}

.hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ── hero text ── */
.hero__title {
  display: flex;
  flex-direction: column;
  margin: 16px 0 20px;
  line-height: 1;
}
.hero__line--sm {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 6px;
}
.hero__line--lg {
  font-size: 72px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -.03em;
  line-height: .95;
}
.hero__line--md {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 10px;
}

.hero__desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ip-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
  box-shadow: var(--shadow-sm);
}
.ip-box__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}
.ip-box__value {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  font-family: 'SF Mono', 'Fira Code', monospace;
  background: none;
}
.ip-box__copy {
  background: none;
  border: none;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  padding: 2px;
  transition: var(--trans);
}
.ip-box__copy:hover { color: var(--pink); transform: scale(1.15); }

/* ── season card (right side of hero) ── */
.hero__card-area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.season-card {
  background: #fff;
  border: 1.5px solid var(--pink-border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
}

.season-card__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.season-card__icon { font-size: 40px; line-height: 1; }
.season-card__sup {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 4px;
}
.season-card__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
}

.season-card__features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.scf { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--text); }
.scf__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
}

.season-card__note {
  font-size: 11px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin: 0;
}

/* stat badges floating over card */
.stat-badge {
  position: absolute;
  background: #fff;
  border: 1.5px solid var(--pink-border);
  border-radius: var(--radius);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: floatBadge 5s ease-in-out infinite;
}
.stat-badge--a { top: -18px; right: -18px; animation-delay: 0s; }
.stat-badge--b { bottom: -18px; left: -18px; animation-delay: 2.5s; }

.stat-badge__num {
  font-size: 22px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}
.stat-badge__lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ═══════════════════════════════════════
   SECTION SHARED
═══════════════════════════════════════ */
.section-head {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   WHY SECTION
═══════════════════════════════════════ */
.why {
  padding: 100px 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--gray-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--trans);
}
.why-card:hover {
  background: var(--white);
  border-color: var(--pink-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.why-card__icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}
.why-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   SEASON SECTION
═══════════════════════════════════════ */
.season {
  padding: 100px 0;
  background: var(--pink-soft);
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.season-item {
  background: var(--white);
  border: 1px solid var(--pink-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: var(--trans);
  box-shadow: var(--shadow-sm);
}
.season-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.season-item__icon {
  font-size: 34px;
  flex-shrink: 0;
  line-height: 1;
}
.season-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.season-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   NEWS
═══════════════════════════════════════ */
.news {
  padding: 100px 0;
  background: var(--white);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.news-card {
  background: var(--gray-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--trans);
}
.news-card:hover {
  background: var(--white);
  border-color: var(--pink-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.news-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.news-card__meta time {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.news-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.news-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   DOWNLOAD
═══════════════════════════════════════ */
.download {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  position: relative;
  overflow: hidden;
}
.download::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(236,72,153,.06) 1px, transparent 1px);
  background-size: 36px 36px;
}

.download__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}

.download__text h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}
.download__text p {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.75;
}
.download__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.download__note {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px !important;
  margin-bottom: 0 !important;
  font-size: 13px !important;
  color: rgba(255,255,255,.4) !important;
}

.download__art {
  position: relative;
  width: 220px;
  height: 220px;
  flex-shrink: 0;
}
.download__glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236,72,153,.3) 0%, transparent 70%);
  filter: blur(30px);
  animation: pulseGlow 3s ease-in-out infinite;
}
.download__emoji {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  animation: floatBadge 4s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: .5; }
  50%       { transform: scale(1.15); opacity: .8; }
}

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq {
  padding: 100px 0;
  background: var(--gray-1);
}

.faq-list {
  max-width: 700px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.faq-item[open] {
  border-color: var(--pink-border);
  box-shadow: var(--shadow-md);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  user-select: none;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--pink);
  flex-shrink: 0;
  transition: transform var(--trans);
  line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { background: var(--pink-soft); }

.faq-item__body {
  padding: 0 24px 20px;
  border-top: 1px solid var(--border);
}
.faq-item__body p {
  padding-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--dark);
  padding: 72px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer__brand .logo { margin-bottom: 16px; }
.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  max-width: 300px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer__socials {
  display: flex;
  gap: 14px;
}
.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.08);
  transition: var(--trans);
}
.footer__socials a:hover {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 18px;
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.45);
  margin-bottom: 10px;
  transition: var(--trans);
}
.footer__col a:hover { color: var(--pink); }

.footer__bottom {
  padding: 22px 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.25);
}

/* ═══════════════════════════════════════
   MODAL
═══════════════════════════════════════ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: rgba(15,15,26,.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans);
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }

.modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -46%);
  z-index: 850;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  width: min(480px, calc(100vw - 32px));
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans), transform var(--trans);
  text-align: center;
}
.modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%);
}

.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gray-1);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: var(--trans);
}
.modal__close:hover { background: var(--pink-light); color: var(--pink); }

.modal__icon { font-size: 52px; margin-bottom: 14px; }
.modal__title {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}
.modal__sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.modal__options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.modal-opt {
  background: var(--gray-1);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--trans);
}
.modal-opt:hover {
  border-color: var(--pink);
  background: var(--pink-soft);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.modal-opt__icon { font-size: 28px; }
.modal-opt__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}
.modal-opt__size {
  font-size: 12px;
  color: var(--text-muted);
}
.modal__note {
  font-size: 12px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════
   TOAST
═══════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  z-index: 1000;
  background: var(--dark);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__line--lg { font-size: 56px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .download__inner { grid-template-columns: 1fr; }
  .download__art { display: none; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .header__inner .btn--pink { display: none; }
  .hamburger { display: flex; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__card-area { display: none; }
  .hero__line--lg { font-size: 48px; }
  .hero__line--md { font-size: 13px; }

  .section-head h2 { font-size: 28px; }
  .season-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }

  .modal__options { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero__line--lg { font-size: 38px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .download__btns { flex-direction: column; }
  .footer__nav { grid-template-columns: 1fr; }
  .wrapper { padding-inline: 16px; }
}
