:root {
  --color-bg: #f4f7fb;
  --color-surface: #ffffff;
  --color-ink: #0f172a;
  --color-muted: #475569;
  --color-line: #e2e8f0;
  --color-brand: #059669;
  --color-brand-dark: #047857;
  --color-accent: #6366f1;
  --color-accent-soft: rgba(99, 102, 241, 0.12);
  --color-hero-1: #0f172a;
  --color-hero-2: #134e4a;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 18px 40px rgba(15, 23, 42, 0.12);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --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-10: 2.5rem;
  --space-12: 3rem;
  --maxw: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-ink);
  background: radial-gradient(1200px 600px at 10% -10%, rgba(5, 150, 105, 0.12), transparent 55%), radial-gradient(900px 500px at 100% 0%, rgba(99, 102, 241, 0.14), transparent 50%), var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

button {
  font: inherit;
  color: inherit;
}

.shell {
  width: min(100% - 2rem, var(--maxw));
  margin-inline: auto;
}

.site-root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  background: linear-gradient(90deg, #0f172a, #14532d 55%, #0f172a);
  color: #ecfdf5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar__inner {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding-block: var(--space-3);
}

.topbar__badge {
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.55);
}

.topbar__text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #e2e8f0;
}

.navbar {
  position: relative;
  z-index: 40;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-line);
}

.navbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-block: var(--space-4);
}

.navbar__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.navbar__logo {
  width: min(200px, 46vw);
  height: auto;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  cursor: pointer;
}

.navbar__toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  border-radius: 2px;
  background: var(--color-ink);
}

.navbar__nav {
  display: block;
}

.navbar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.navbar__item {
  margin: 0;
}

.navbar__link {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-muted);
  border: 1px solid transparent;
}

.navbar__link:hover {
  color: var(--color-ink);
  background: rgba(15, 23, 42, 0.04);
}

.navbar__link--active {
  color: var(--color-brand-dark);
  background: rgba(5, 150, 105, 0.1);
  border-color: rgba(5, 150, 105, 0.25);
}

.navbar__backdrop {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-line);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, var(--color-hero-1) 0%, #1e293b 42%, var(--color-hero-2) 100%);
  opacity: 1;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.35), transparent 45%), radial-gradient(circle at 80% 10%, rgba(99, 102, 241, 0.35), transparent 40%);
  mix-blend-mode: screen;
  opacity: 0.9;
}

.hero__inner {
  position: relative;
  padding-block: var(--space-8);
}

.hero__title {
  margin: 0 0 var(--space-3);
  max-width: 22ch;
  font-family: 'Fraunces', 'Georgia', serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: clamp(1.85rem, 4.2vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #f8fafc;
}

.hero__subtitle {
  margin: 0;
  max-width: 52ch;
  font-weight: 500;
  font-size: clamp(0.95rem, 2.1vw, 1.05rem);
  line-height: 1.55;
  color: #cbd5f5;
}

.main-content {
  flex: 1;
  padding-block: var(--space-10);
}

.main-content--compact {
  padding-block: var(--space-8);
}

.grid-intro {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-surface {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-sm);
}

.card-surface--accent {
  background: linear-gradient(145deg, #ffffff, #eef2ff);
  border-color: #c7d2fe;
}

.card-surface--muted {
  background: #f8fafc;
}

.section-title {
  margin: 0 0 var(--space-3);
  font-family: 'Syne', 'Outfit', system-ui, sans-serif;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.body-text {
  margin: 0;
  color: var(--color-muted);
}

.lede {
  margin: 0;
  font-size: 1.05rem;
  color: var(--color-muted);
}

.listings {
  padding-block: var(--space-10) var(--space-6);
}

.listings__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.listings__title {
  margin: 0;
  font-family: 'Syne', 'Outfit', system-ui, sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  letter-spacing: -0.03em;
}

.listings__kicker {
  margin: 0;
  max-width: 36ch;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.listings__board {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.offer-card {
  position: relative;
  border-radius: calc(var(--radius-lg) + 6px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 242, 255, 0.92));
  border: 1px solid rgba(99, 102, 241, 0.22);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.offer-card__ribbon {
  position: absolute;
  inset: 0 auto 0 -40%;
  width: 55%;
  background: linear-gradient(120deg, rgba(5, 150, 105, 0.2), rgba(99, 102, 241, 0.05));
  transform: skewX(-12deg);
  pointer-events: none;
}

.offer-card__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(2.5rem, 3rem) minmax(4.75rem, 6.75rem) minmax(7rem, 1.05fr) minmax(4.5rem, 0.55fr) minmax(10rem, 1.35fr) minmax(4.5rem, 0.55fr) minmax(7.5rem, 0.75fr);
  gap: var(--space-4) var(--space-5);
  align-items: center;
  padding: var(--space-6);
}

.offer-cell {
  min-width: 0;
}

.offer-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: var(--space-2);
  font-weight: 600;
}

.offer-cell--num {
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.85rem;
  font-weight: 800;
  font-size: 1rem;
  color: #ecfdf5;
  background: radial-gradient(circle at 30% 20%, #34d399, #047857 70%);
  box-shadow: 0 10px 22px rgba(4, 120, 87, 0.35);
}

.offer-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.offer-thumb__img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

@media (min-width: 1025px) {
  .offer-card__grid {
    grid-template-columns: minmax(2.5rem, 3rem) minmax(4.25rem, 5.75rem) minmax(7rem, 1.05fr) minmax(4.5rem, 0.55fr) minmax(10rem, 1.35fr) minmax(4.5rem, 0.55fr) minmax(7.5rem, 0.75fr);
  }

  .offer-thumb {
    padding: 0.35rem 0.45rem;
    max-width: 5.75rem;
    width: 100%;
    box-sizing: border-box;
  }

  .offer-thumb__img {
    max-height: 56px;
    max-width: 100%;
  }
}

.offer-name {
  display: block;
  font-family: 'Syne', 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.offer-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: #0f172a;
  background: #e0f2fe;
  border: 1px solid #7dd3fc;
}

.offer-bonus {
  display: block;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #334155;
}

.offer-score {
  display: inline-flex;
  align-items: baseline;
  gap: 0.1rem;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-md);
  background: #0f172a;
  color: #e2e8f0;
}

.offer-score__value {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.offer-score__max {
  font-size: 0.75rem;
  color: #94a3b8;
}

.offer-visit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 11rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(120deg, #059669, #4f46e5);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 28px rgba(79, 70, 229, 0.28);
}

.offer-visit:hover {
  filter: brightness(1.05);
}

.offer-card__disclaimer {
  position: relative;
  padding: var(--space-4) var(--space-6) var(--space-5);
  border-top: 1px dashed rgba(15, 23, 42, 0.14);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.9), rgba(241, 245, 249, 0.95));
}

.offer-card__disclaimer p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: #64748b;
}

@media (max-width: 1024px) and (min-width: 640px) {
  .offer-card__grid {
    grid-template-columns: minmax(2.5rem, 3rem) minmax(3.25rem, 5.5rem) minmax(0, 1fr);
    grid-template-areas:
      'num visual name'
      'num visual reg'
      'bonus bonus bonus'
      'score score cta';
    gap: var(--space-4);
  }

  .offer-cell--num {
    grid-area: num;
    align-self: center;
  }

  .offer-cell--visual {
    grid-area: visual;
  }

  .offer-cell--name {
    grid-area: name;
  }

  .offer-cell--reg {
    grid-area: reg;
  }

  .offer-cell--bonus {
    grid-area: bonus;
  }

  .offer-cell--score {
    grid-area: score;
  }

  .offer-cell--cta {
    grid-area: cta;
    justify-self: end;
  }

  .offer-visit {
    width: auto;
  }

  .offer-thumb__img {
    max-height: 80px;
  }
}

@media (max-width: 639px) {
  .listings {
    padding-block: var(--space-8) var(--space-4);
  }

  .offer-card {
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.2);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.16);
    background: #f8fafc;
  }

  .offer-card__ribbon {
    display: none;
  }

  .offer-card__grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto auto auto auto;
    gap: 0;
    padding: 0;
    align-items: stretch;
  }

  .offer-card__grid > .offer-cell {
    min-width: 0;
  }

  .offer-cell .offer-label {
    display: none;
  }

  .offer-cell--visual {
    grid-column: 1 / -1;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-6) var(--space-4) var(--space-5);
    background: linear-gradient(155deg, #020617 0%, #0f172a 40%, #14532d 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .offer-thumb {
    width: 100%;
    justify-content: center;
    background: rgba(2, 6, 23, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 14px 32px rgba(0, 0, 0, 0.28);
    padding: var(--space-3);
    border-radius: 16px;
  }

  .offer-thumb__img {
    max-height: 112px;
    max-width: min(100%, 220px);
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
  }

  .offer-cell--num {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4) var(--space-3);
    background: #1e293b;
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  }

  .offer-num {
    width: 2rem;
    height: 2rem;
    font-size: 0.9rem;
    border-radius: 0.75rem;
    box-shadow: none;
  }

  .offer-cell--name {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    align-items: center;
    padding: var(--space-4) var(--space-3);
    background: #1e293b;
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  }

  .offer-name {
    font-size: 1.2rem;
    color: #f8fafc;
  }

  .offer-cell--score {
    grid-column: 3;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4) var(--space-3);
    background: #1e293b;
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  }

  .offer-score {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0.4rem 0.55rem;
    border-radius: 0.75rem;
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(148, 163, 184, 0.35);
  }

  .offer-score__value {
    font-size: 1.1rem;
    line-height: 1;
  }

  .offer-score__max {
    font-size: 0.62rem;
    margin-top: 0.1rem;
  }

  .offer-cell--reg {
    grid-column: 1 / -1;
    grid-row: 3;
    display: flex;
    justify-content: center;
    padding: var(--space-3) var(--space-4);
    background: #e2e8f0;
  }

  .offer-pill {
    font-size: 0.75rem;
    background: #ffffff;
    border-color: #cbd5e1;
  }

  .offer-cell--bonus {
    grid-column: 1 / -1;
    grid-row: 4;
    padding: var(--space-4);
    background: #f8fafc;
  }

  .offer-bonus {
    margin: 0;
    padding: var(--space-4);
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.45;
    border-radius: 14px;
    background: linear-gradient(135deg, #ecfdf5 0%, #e0f2fe 100%);
    border: 1px solid rgba(5, 150, 105, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  }

  .offer-cell--cta {
    grid-column: 1 / -1;
    grid-row: 5;
    padding: var(--space-4);
    background: #f1f5f9;
    border-top: 1px solid #e2e8f0;
  }

  .offer-visit {
    width: 100%;
    max-width: none;
    padding: 0.85rem 1.1rem;
    font-size: 1rem;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(5, 150, 105, 0.35);
  }

  .offer-card__disclaimer {
    padding: var(--space-4);
    border-top: 1px solid #e2e8f0;
    background: #ffffff;
  }

  .offer-card__disclaimer p {
    font-size: 0.72rem;
    line-height: 1.5;
    color: #64748b;
  }
}

@media (max-width: 900px) {
  .grid-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar__toggle {
    display: inline-flex;
  }

  .navbar__nav {
    position: absolute;
    inset-inline: 1rem;
    top: calc(100% + 0.5rem);
    padding: var(--space-3);
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .navbar__nav--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .navbar__list {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-1);
  }

  .navbar__link {
    width: 100%;
    justify-content: flex-start;
  }

  .navbar__backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 30;
    border: 0;
    padding: 0;
    margin: 0;
    background: rgba(15, 23, 42, 0.35);
    cursor: pointer;
  }

  .hero__inner {
    padding-block: var(--space-6);
  }
}

@media (min-width: 769px) {
  .navbar__nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    position: static;
    inset: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
}

.age-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(10px);
}

.age-modal {
  position: fixed;
  inset: 0;
  z-index: 201;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  pointer-events: none;
}

.age-modal__card {
  width: min(100%, 26rem);
  pointer-events: auto;
  padding: var(--space-8) var(--space-6);
  border-radius: 20px;
  background: linear-gradient(165deg, #ffffff 0%, #f1f5f9 100%);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.28);
}

.age-modal__title {
  margin: 0 0 var(--space-3);
  font-family: 'Syne', 'Outfit', system-ui, sans-serif;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  color: var(--color-ink);
}

.age-modal__body {
  margin: 0 0 var(--space-6);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.age-modal__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.age-modal__btn {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
}

.age-modal__btn--primary {
  color: #ffffff;
  background: linear-gradient(120deg, #059669, #4f46e5);
  box-shadow: 0 12px 26px rgba(5, 150, 105, 0.35);
}

.age-modal__btn--ghost {
  color: var(--color-ink);
  background: #ffffff;
  border-color: var(--color-line);
}

.age-restrict {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6) var(--space-4);
  background: radial-gradient(900px 500px at 50% 0%, rgba(5, 150, 105, 0.12), transparent 55%), #0f172a;
  color: #e2e8f0;
}

.age-restrict__panel {
  max-width: 32rem;
  padding: var(--space-8);
  border-radius: 20px;
  background: rgba(30, 41, 59, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.age-restrict__title {
  margin: 0 0 var(--space-4);
  font-family: 'Syne', 'Outfit', system-ui, sans-serif;
  font-size: 1.5rem;
  color: #f8fafc;
}

.age-restrict__text {
  margin: 0 0 var(--space-4);
  line-height: 1.6;
  color: #cbd5e1;
}

.age-restrict__hint {
  margin: 0;
  font-size: 0.85rem;
  color: #94a3b8;
}

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  padding: var(--space-4);
  padding-bottom: max(var(--space-4), env(safe-area-inset-bottom));
  background: rgba(15, 23, 42, 0.94);
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.25);
}

.cookie-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.cookie-bar__text {
  margin: 0;
  flex: 1 1 16rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #e2e8f0;
}

.cookie-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.cookie-bar__btn {
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  border: 1px solid transparent;
}

.cookie-bar__btn--primary {
  color: #0f172a;
  background: #34d399;
}

.cookie-bar__btn--ghost {
  color: #f8fafc;
  background: transparent;
  border-color: rgba(248, 250, 252, 0.35);
}

@media (max-width: 560px) {
  .cookie-bar__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-bar__actions {
    width: 100%;
  }

  .cookie-bar__btn {
    flex: 1;
    text-align: center;
  }
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--color-line);
  background: #f8fafc;
}

.site-footer__strip {
  padding-block: var(--space-8);
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.site-footer__strip:last-child {
  border-bottom: 0;
}

.site-footer__strip--tone {
  background: linear-gradient(120deg, rgba(5, 150, 105, 0.08), rgba(99, 102, 241, 0.08));
}

.site-footer__strip--soft {
  background: #ffffff;
}

.site-footer__strip--dark {
  background: linear-gradient(95deg, #0f172a 0%, #14532d 55%, #0f172a 100%);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.site-footer__strip--base {
  padding-block: var(--space-6);
  background: #0f172a;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.site-footer__lead {
  margin: 0;
  max-width: 62ch;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #334155;
}

.site-footer__agecopy {
  margin: 0;
  max-width: 62ch;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #64748b;
}

.site-footer__badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-4) var(--space-6);
}

.site-footer__badges-item {
  margin: 0;
}

.site-footer__strip--badges {
  background: linear-gradient(180deg, #020617 0%, #0f172a 55%, #0f172a 100%);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.site-footer__badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: clamp(5.75rem, 18vw, 7.75rem);
  height: clamp(2.5rem, 8vw, 2.875rem);
  padding: 0.35rem 0.45rem;
  border-radius: var(--radius-md);
  background: linear-gradient(165deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 10px 26px rgba(0, 0, 0, 0.35);
  text-decoration: none;
}

.site-footer__badge-link:hover {
  border-color: rgba(52, 211, 153, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 32px rgba(0, 0, 0, 0.45);
}

.site-footer__badge-link--static {
  cursor: default;
}

.site-footer__badge-link--static:hover {
  border-color: rgba(148, 163, 184, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 10px 26px rgba(0, 0, 0, 0.35);
}

.site-footer__badge-img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-8) var(--space-6);
}

.site-footer__col--wide {
  grid-column: span 1;
}

.site-footer__heading {
  margin: 0 0 var(--space-3);
  font-family: 'Syne', 'Outfit', system-ui, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.site-footer__link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
}

.site-footer__link:hover {
  color: var(--color-brand-dark);
}

.site-footer__disclose {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #475569;
}

.site-footer__agebar {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.site-footer__ageicon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.25rem;
  padding: 0.45rem 0.65rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: #0f172a;
  background: linear-gradient(145deg, #fde047, #f97316);
  border: 2px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

.site-footer__agebar-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #e2e8f0;
}

.site-footer__strong {
  color: #f8fafc;
  font-weight: 700;
}

.site-footer__meta {
  text-align: center;
}

.site-footer__copy {
  margin: 0 0 var(--space-2);
  font-size: 0.85rem;
  color: #cbd5e1;
}

.site-footer__micro {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #94a3b8;
}

@media (max-width: 900px) {
  .site-footer__cols {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__col--wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .site-footer__cols {
    grid-template-columns: 1fr;
  }

  .site-footer__agebar {
    flex-direction: column;
    align-items: flex-start;
  }
}

.page-prose {
  max-width: 46rem;
}

.page-head {
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-line);
}

.page-title {
  margin: 0 0 var(--space-3);
  font-family: 'Syne', 'Outfit', system-ui, sans-serif;
  font-size: clamp(1.65rem, 3.6vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--color-ink);
}

.page-lede {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-muted);
}

.page-body {
  padding-bottom: var(--space-10);
}

.page-section {
  margin-bottom: var(--space-8);
}

.page-section:last-child {
  margin-bottom: 0;
}

.page-section h2 {
  margin: 0 0 var(--space-3);
  font-family: 'Syne', 'Outfit', system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}

.page-section p {
  margin: 0 0 var(--space-4);
  font-size: 0.98rem;
  line-height: 1.65;
  color: #334155;
}

.page-section p:last-child {
  margin-bottom: 0;
}

.page-list {
  margin: 0 0 var(--space-4);
  padding-left: 1.2rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #334155;
}

.page-list li {
  margin-bottom: var(--space-3);
}

.page-list li:last-child {
  margin-bottom: 0;
}

.page-mail {
  display: inline-block;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-brand-dark);
  text-decoration: none;
  word-break: break-all;
}

.page-mail:hover {
  text-decoration: underline;
}

.page-inline-link {
  font-weight: 600;
  color: var(--color-brand-dark);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.page-inline-link:hover {
  color: var(--color-ink);
}
