:root {
  --ink: #12151c;
  --ink-soft: #4b5568;
  --coral: #ff4d3a;
  --coral-deep: #e03826;
  --cobalt: #1f4fd6;
  --sky: #e8eefc;
  --fog: #f2f4f8;
  --line: rgba(18, 21, 28, 0.12);
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(18, 21, 28, 0.12);
  --font-display: "Unbounded", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--fog);
  background-image:
    linear-gradient(135deg, rgba(31, 79, 214, 0.05) 25%, transparent 25%),
    linear-gradient(225deg, rgba(31, 79, 214, 0.05) 25%, transparent 25%),
    linear-gradient(45deg, rgba(31, 79, 214, 0.05) 25%, transparent 25%),
    linear-gradient(315deg, rgba(31, 79, 214, 0.05) 25%, transparent 25%),
    radial-gradient(900px 420px at 0% 0%, rgba(255, 77, 58, 0.12), transparent 55%),
    linear-gradient(180deg, #f7f8fb 0%, #eef1f7 100%);
  background-size: 28px 28px, 28px 28px, 28px 28px, 28px 28px, auto, auto;
  background-position: 0 0, 14px 0, 14px -14px, 0 14px, 0 0, 0 0;
  min-height: 100vh;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--cobalt);
  text-decoration: none;
}

a:hover {
  color: var(--coral-deep);
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
}

.site-nav {
  padding: 0.95rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  text-decoration: none;
}

.brand:hover,
.brand:focus {
  color: var(--ink);
}

.brand-mark {
  display: inline-flex;
  color: var(--ink);
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: var(--sky);
  border: 2px solid var(--ink);
}

.brand-mark svg {
  display: block;
}

.brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: 0.08rem;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.brand-tld {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--coral);
}

.nav-toggle {
  border: 2px solid var(--ink);
  border-radius: 0;
  padding: 0.55rem 0.65rem;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  background: var(--white);
}

.nav-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(31, 79, 214, 0.2);
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.navbar-nav .nav-link {
  position: relative;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding: 0.45rem 0.7rem;
  margin: 0 0.1rem;
  border-radius: 0;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.15rem;
  height: 2px;
  background: transparent;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--ink);
  background: transparent;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after {
  background: var(--cobalt);
}

.navbar-nav .nav-link.active {
  color: var(--ink);
  background: transparent;
}

.navbar-nav .nav-link.active::after {
  background: var(--coral);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 2.4rem;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 21, 28, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(18, 21, 28, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 90%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 860px;
  padding: 1.75rem 1.6rem 1.85rem;
  border: 2px solid var(--ink);
  background:
    linear-gradient(120deg, #12151c 0%, #1a2744 58%, #243a6b 100%);
  color: var(--white);
  box-shadow: 10px 10px 0 var(--coral);
}

.hero-eyebrow {
  margin: 0 0 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffb4ab;
}

.hero-eyebrow::before {
  content: "";
  width: 18px;
  height: 3px;
  background: var(--coral);
}

.hero h1 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.55rem, 3.2vw, 2.45rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--white);
  max-width: 16ch;
}

.hero h2 {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 62ch;
}

.listing {
  position: relative;
  padding: 0.4rem 0 3.2rem;
}

.listing-head {
  margin-bottom: 1.35rem;
  max-width: 720px;
}

.listing-eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-deep);
}

.listing-title {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  letter-spacing: -0.04em;
  color: var(--ink);
}

.listing-sub {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 58ch;
}

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.offer-item {
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 6px 6px 0 rgba(31, 79, 214, 0.18);
}

.offer-item:nth-child(odd) {
  box-shadow: 6px 6px 0 rgba(255, 77, 58, 0.22);
}

.offer-row {
  display: grid;
  grid-template-columns: 64px 110px minmax(120px, 1.1fr) minmax(180px, 1.4fr) 84px 170px;
  align-items: center;
  gap: 0.85rem 1rem;
  padding: 1rem 1.05rem;
  background:
    linear-gradient(90deg, rgba(31, 79, 214, 0.05) 0%, transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}

.offer-col {
  min-width: 0;
}

.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.04em;
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--coral);
}

.offer-media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0.35rem;
  border: 2px solid #0b0d12;
  background:
    linear-gradient(145deg, #1a1f2b 0%, #0f1218 55%, #171b24 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.offer-media img {
  display: block;
  max-width: 100%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.offer-name strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.25;
}

.bonus-label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cobalt);
}

.bonus-value {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.3;
  color: var(--ink);
}

.score-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 3px solid var(--coral);
  background:
    radial-gradient(circle at 30% 30%, #fff 0%, #ffe9e6 70%);
  box-shadow: inset 0 0 0 3px var(--white);
}

.score-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}

.btn-visit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 0.65rem 0.9rem;
  border: 2px solid var(--ink);
  background: var(--coral);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 3px 3px 0 var(--ink);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-visit:hover,
.btn-visit:focus {
  background: var(--cobalt);
  color: var(--white);
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--ink);
}

.offer-disclaimer {
  border-top: 2px dashed rgba(18, 21, 28, 0.16);
  padding: 0.7rem 1.05rem 0.85rem;
  background: #f3f5fa;
}

.offer-disclaimer p {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.5;
  color: #5b6575;
}

@media (max-width: 1199.98px) {
  .offer-row {
    grid-template-columns: 56px 96px minmax(110px, 1fr) minmax(160px, 1.3fr) 74px 150px;
    gap: 0.7rem 0.8rem;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 0.85rem;
    padding: 0.65rem;
    border: 2px solid var(--ink);
    background: var(--white);
    box-shadow: 6px 6px 0 var(--sky);
  }

  .navbar-nav .nav-link {
    padding: 0.7rem 0.85rem;
  }

  .navbar-nav .nav-link::after {
    left: 0.85rem;
    right: auto;
    width: 28px;
    bottom: 0.45rem;
  }

  .offer-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }

  .offer-rank {
    grid-column: 1 / 2;
  }

  .offer-media {
    grid-column: 2 / 3;
    justify-self: end;
    width: 120px;
  }

  .offer-name,
  .offer-bonus,
  .offer-score,
  .offer-cta {
    grid-column: 1 / -1;
  }

  .offer-col::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }

  .offer-rank::before,
  .offer-media::before,
  .offer-bonus .bonus-label {
    display: none;
  }

  .offer-score {
    display: flex;
    align-items: center;
    gap: 0.65rem;
  }

  .btn-visit {
    max-width: 220px;
  }
}

@media (max-width: 575.98px) {
  .brand-name {
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-mark svg {
    width: 34px;
    height: 34px;
  }

  .hero {
    padding: 1.4rem 0 1.9rem;
  }

  .hero-inner {
    padding: 1.35rem 1.15rem 1.45rem;
    box-shadow: 6px 6px 0 var(--coral);
  }

  .hero h1 {
    max-width: none;
  }

  .listing {
    padding-bottom: 2.4rem;
  }

  .offer-item {
    box-shadow: 4px 4px 0 rgba(31, 79, 214, 0.18);
  }

  .offer-item:nth-child(odd) {
    box-shadow: 4px 4px 0 rgba(255, 77, 58, 0.22);
  }

  .offer-row {
    padding: 0.9rem;
  }

  .offer-disclaimer {
    padding: 0.65rem 0.9rem 0.8rem;
  }

  .btn-visit {
    max-width: none;
  }
}

body.is-age-locked,
body.is-age-blocked {
  overflow: hidden;
}

body.is-age-locked .site-wrap,
body.is-age-blocked .site-wrap {
  display: none;
}

.age-gate,
.age-restricted {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background:
    radial-gradient(700px 360px at 15% 10%, rgba(255, 77, 58, 0.22), transparent 55%),
    radial-gradient(700px 360px at 90% 90%, rgba(31, 79, 214, 0.25), transparent 50%),
    rgba(10, 12, 18, 0.92);
}

.age-gate[hidden],
.age-restricted[hidden] {
  display: none;
}

.age-gate-card,
.age-restricted-card {
  width: min(100%, 460px);
  padding: 1.6rem 1.4rem 1.45rem;
  border: 2px solid #ffffff;
  background: linear-gradient(160deg, #171b24 0%, #12151c 100%);
  color: #ffffff;
  box-shadow: 10px 10px 0 #ff4d3a;
  text-align: center;
}

.age-gate-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 58px;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.55rem;
  border: 2px solid #ff4d3a;
  background: rgba(255, 77, 58, 0.12);
  color: #ff4d3a;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.age-gate-card h2,
.age-restricted-card h2 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.age-gate-card p,
.age-restricted-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.55;
}

.age-gate-actions {
  display: grid;
  gap: 0.65rem;
  margin: 1.15rem 0 0.9rem;
}

.age-btn {
  appearance: none;
  border: 2px solid #ffffff;
  min-height: 46px;
  padding: 0.65rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
}

.age-btn-yes {
  background: #ff4d3a;
  color: #ffffff;
  box-shadow: 3px 3px 0 #1f4fd6;
}

.age-btn-no {
  background: transparent;
  color: #ffffff;
}

.age-gate-note {
  font-size: 0.75rem !important;
  color: rgba(255, 255, 255, 0.58) !important;
}

.site-footer {
  margin-top: 1rem;
  padding: 2.4rem 0 1.6rem;
  background:
    linear-gradient(180deg, #151922 0%, #0f1218 100%);
  color: rgba(255, 255, 255, 0.84);
  border-top: 3px solid #ff4d3a;
}

.footer-safe {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.4rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.footer-safe-copy p {
  margin: 0 0 0.7rem;
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer-age-line {
  margin-bottom: 0 !important;
}

.age-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  padding: 0.1rem 0.35rem;
  margin: 0 0.15rem;
  border: 1px solid #ff4d3a;
  background: rgba(255, 77, 58, 0.16);
  color: #ffb4ab;
  font-weight: 800;
  font-size: 0.85rem;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem 1.25rem;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
}

.footer-logo-link img {
  display: block;
  max-height: 36px;
  width: auto;
  height: 36px;
  object-fit: contain;
}

.footer-logo-link[href="/responsible-play"] img {
  max-height: 42px;
  height: 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1.4rem;
  margin-bottom: 1.4rem;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
}

.footer-brand span {
  color: #ff4d3a;
}

.footer-brand:hover {
  color: #ffffff;
}

.footer-brand-block p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 36ch;
}

.footer-col h3 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li + li {
  margin-top: 0.4rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: #9db4ff;
}

.footer-disclosure {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.footer-disclosure p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
}

.footer-age-bar {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border: 2px solid rgba(255, 77, 58, 0.55);
  background: rgba(255, 77, 58, 0.1);
}

.footer-age-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border: 2px solid #ff4d3a;
  background: #ff4d3a;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  box-shadow: 3px 3px 0 #1f4fd6;
}

.footer-age-bar p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #ffe3df;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 1.2rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.45;
}

.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3500;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
  padding: 1rem 1.1rem;
  border: 2px solid #12151c;
  background: #ffffff;
  box-shadow: 6px 6px 0 rgba(31, 79, 214, 0.25);
}

.cookie-copy strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: -0.03em;
  color: #12151c;
}

.cookie-copy p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.45;
  color: #4b5568;
}

.cookie-copy a {
  color: #1f4fd6;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.55rem 0.9rem;
  border: 2px solid #12151c;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.cookie-btn-accept {
  appearance: none;
  background: #ff4d3a;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 3px 3px 0 #12151c;
}

.cookie-btn-link {
  background: #ffffff;
  color: #12151c;
}

.cookie-btn-link:hover {
  color: #1f4fd6;
}

@media (max-width: 991.98px) {
  .footer-safe,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-logos {
    justify-content: flex-start;
  }

  .cookie-consent-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}

@media (max-width: 575.98px) {
  .age-gate-card,
  .age-restricted-card {
    box-shadow: 6px 6px 0 #ff4d3a;
    padding: 1.35rem 1.1rem 1.25rem;
  }

  .footer-age-bar {
    align-items: flex-start;
  }

  .cookie-consent {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
  }

  .page-hero {
    padding: 1.4rem 0 1.6rem;
  }

  .page-panel {
    padding: 1.25rem 1.1rem;
    box-shadow: 6px 6px 0 var(--coral);
  }
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 1.8rem;
}

.page-hero .hero-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 21, 28, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(18, 21, 28, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 90%);
  pointer-events: none;
}

.page-panel {
  position: relative;
  max-width: 860px;
  padding: 1.6rem 1.5rem;
  border: 2px solid var(--ink);
  background:
    linear-gradient(120deg, #12151c 0%, #1a2744 58%, #243a6b 100%);
  color: var(--white);
  box-shadow: 10px 10px 0 var(--coral);
}

.page-panel .hero-eyebrow {
  margin: 0 0 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffb4ab;
}

.page-panel .hero-eyebrow::before {
  content: "";
  width: 18px;
  height: 3px;
  background: var(--coral);
}

.page-panel h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--white);
}

.page-content {
  padding: 0 0 3rem;
}

.page-card {
  max-width: 860px;
  padding: 1.5rem 1.4rem;
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 6px 6px 0 rgba(31, 79, 214, 0.16);
}

.page-card + .page-card {
  margin-top: 1rem;
}

.page-card h2 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.page-card h3 {
  margin: 1.1rem 0 0.45rem;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.page-card p,
.page-card li {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.6;
}

.page-card p {
  margin: 0 0 0.85rem;
}

.page-card p:last-child,
.page-card ul:last-child {
  margin-bottom: 0;
}

.page-card ul {
  margin: 0 0 0.85rem;
  padding-left: 1.15rem;
}

.page-card li + li {
  margin-top: 0.35rem;
}

.page-card a {
  color: var(--cobalt);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  margin-top: 0.35rem;
  padding: 0.75rem 1rem;
  border: 2px solid var(--ink);
  background: var(--sky);
  color: var(--ink);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 3px 3px 0 var(--coral);
}

.contact-email:hover {
  color: var(--ink);
  background: #dce6fb;
}

.faq-item + .faq-item {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.faq-item h3 {
  margin-top: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1rem;
  border: 2px solid var(--ink);
  background: var(--coral);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 3px 3px 0 var(--ink);
}

.cta-link:hover {
  background: var(--cobalt);
  color: var(--white);
}

.cta-link-alt {
  background: var(--white);
  color: var(--ink);
}

.cta-link-alt:hover {
  background: var(--sky);
  color: var(--ink);
}
