:root {
  --ink: #fff8fd;
  --muted: #d8bfd1;
  --night: #15000f;
  --night-2: #26001c;
  --pink: #ff2fa4;
  --hot-pink: #ff007a;
  --violet: #a82cff;
  --acid: #f7ff64;
  --glass: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.17);
  --radius: 24px;
  --shadow: 0 24px 80px rgba(77, 0, 49, 0.45);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--night);
}

body {
  margin: 0;
  min-width: 280px;
  color: var(--ink);
  font-family: "Manrope", "Ubuntu", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% 7%, rgba(255, 0, 122, 0.82), transparent 25rem),
    radial-gradient(circle at 88% 29%, rgba(168, 44, 255, 0.54), transparent 30rem),
    linear-gradient(145deg, #42002f 0%, var(--night) 42%, #2a001e 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(16px);
  pointer-events: none;
}

body::before {
  width: 18rem;
  height: 18rem;
  right: -7rem;
  top: 38vh;
  background: rgba(255, 47, 164, 0.28);
}

body::after {
  width: 14rem;
  height: 14rem;
  left: -7rem;
  bottom: 10vh;
  background: rgba(168, 44, 255, 0.24);
}

a { color: inherit; }

button,
a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 100;
  left: 1rem;
  top: -5rem;
  padding: 0.8rem 1rem;
  color: #210019;
  background: #fff;
  border-radius: 0 0 12px 12px;
  font-weight: 800;
}

.skip-link:focus { top: 0; }

.announcement {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.65rem 1rem;
  color: #210019;
  background: var(--acid);
  font-size: clamp(0.72rem, 2.8vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
}

.announcement__dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--hot-pink);
  box-shadow: 0 0 0 5px rgba(255, 0, 122, 0.15);
}

.page-shell {
  width: min(100% - 2rem, 1200px);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.5rem 0 3.5rem;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(63vw, 560px);
  aspect-ratio: 1;
  right: -13%;
  top: 10%;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 39% 61% 56% 44% / 55% 42% 58% 45%;
  background:
    radial-gradient(circle at 34% 32%, rgba(255,255,255,.3), transparent 12%),
    linear-gradient(145deg, rgba(255,47,164,.55), rgba(168,44,255,.1));
  box-shadow: inset 0 0 70px rgba(255,255,255,.06), 0 0 90px rgba(255,0,122,.24);
  transform: rotate(-11deg);
}

.hero__topline {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.4rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.age-pill {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 28px;
  color: var(--acid);
  border: 1px solid rgba(247,255,100,.5);
  border-radius: 999px;
}

.wordmark {
  margin: 0 0 1.5rem;
  font-size: clamp(1.5rem, 5vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.07em;
}

.wordmark span { color: var(--acid); }

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.1rem, 11vw, 7.4rem);
  line-height: 0.91;
  letter-spacing: -0.075em;
  font-weight: 800;
}

.hero h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.78);
  text-shadow: 0 0 34px rgba(255, 47, 164, 0.58);
}

.hero__copy {
  max-width: 560px;
  margin: 1.7rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 3vw, 1.18rem);
  line-height: 1.65;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 3rem;
}

.trust-row > div {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

.trust-row b {
  color: var(--pink);
  font-size: 0.68rem;
}

.trust-row span {
  color: var(--muted);
  font-size: clamp(0.62rem, 2.3vw, 0.8rem);
  font-weight: 700;
  line-height: 1.35;
}

.categories {
  padding: 3.75rem 0 5rem;
}

.section-heading { margin-bottom: 1.5rem; }

.section-heading p,
.callout > div:first-child > p {
  margin: 0 0 0.5rem;
  color: var(--acid);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading h2,
.callout h2 {
  margin: 0;
  font-size: clamp(2rem, 7vw, 3.65rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.card-grid {
  display: grid;
  gap: 0.75rem;
}

.link-card {
  position: relative;
  min-height: 106px;
  display: grid;
  grid-template-columns: 56px 1fr 30px;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem;
  overflow: hidden;
  color: var(--ink);
  text-decoration: none;
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
}

.link-card::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: -40px;
  top: -45px;
  border-radius: 50%;
  background: rgba(255, 47, 164, 0.18);
  filter: blur(4px);
}

.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 102, 191, 0.75);
  background: linear-gradient(135deg, rgba(255,47,164,.23), rgba(255,255,255,.08));
  box-shadow: 0 16px 40px rgba(80, 0, 53, 0.28), inset 0 1px 0 rgba(255,255,255,.12);
  outline: none;
}

.link-card--featured {
  color: #210019;
  background: linear-gradient(135deg, #ff8bd0, var(--pink));
  border-color: transparent;
}

.link-card--featured .card-icon {
  color: var(--hot-pink);
  background: rgba(255,255,255,.78);
}

.link-card--featured .card-copy small { color: rgba(33,0,25,.7); }

.link-card--offer {
  color: #210019;
  background: var(--acid);
  border-color: var(--acid);
}

.link-card--offer .card-icon {
  color: var(--acid);
  background: #210019;
  font-size: 0.72rem;
}

.link-card--offer .card-copy small { color: rgba(33,0,25,.66); }

.card-icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--acid);
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.13);
  font-size: 1.35rem;
  font-weight: 800;
}

.card-copy { min-width: 0; }

.card-copy strong,
.card-copy small { display: block; }

.card-copy strong {
  font-size: clamp(0.9rem, 3.5vw, 1.08rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.card-copy small {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.3;
}

.card-arrow {
  position: relative;
  z-index: 1;
  font-size: 1.3rem;
  text-align: center;
}

.callout {
  display: grid;
  gap: 2rem;
  margin-bottom: 5rem;
  padding: clamp(1.45rem, 6vw, 3.25rem);
  background:
    radial-gradient(circle at 92% 8%, rgba(247,255,100,.24), transparent 12rem),
    linear-gradient(135deg, rgba(255,0,122,.92), rgba(117,0,87,.92));
  border: 1px solid rgba(255,255,255,.2);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
}

.call-buttons {
  display: grid;
  gap: 0.7rem;
}

.call-button {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  color: var(--ink);
  text-decoration: none;
  background: #210019;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  font-size: 0.98rem;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}

.call-button:hover,
.call-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(33,0,25,.28);
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.call-button > span:first-child {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 14px;
  background: rgba(255,255,255,.11);
}

.call-button small {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
}

.call-button--bright {
  color: #210019;
  background: var(--acid);
  border-color: var(--acid);
}

.call-button--bright small { color: rgba(33,0,25,.65); }
.call-button--bright > span:first-child { background: rgba(33,0,25,.1); }

.site-footer {
  padding: 1rem 0 calc(2rem + env(safe-area-inset-bottom));
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.wordmark--footer { margin: 0; }

.footer-brand > p:last-child {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.6;
}

.footer-grid {
  display: grid;
  gap: 1.8rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.footer-grid h2 {
  margin: 0 0 0.65rem;
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid address,
.footer-grid a {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-style: normal;
  line-height: 1.65;
  text-decoration: none;
}

.footer-grid a:hover,
.footer-grid a:focus-visible,
.policy-links a:hover,
.policy-links a:focus-visible,
.privacy-settings:hover,
.privacy-settings:focus-visible {
  color: var(--acid);
  outline: none;
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  padding: 1.5rem 0 1rem;
}

.policy-links a,
.privacy-settings {
  color: var(--muted);
  font: inherit;
  font-size: 0.67rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease;
}

.privacy-settings {
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}

.copyright {
  margin: 0;
  color: rgba(216,191,209,.65);
  font-size: 0.65rem;
}

.cookie-banner {
  position: fixed;
  z-index: 50;
  left: max(0.75rem, env(safe-area-inset-left));
  right: max(0.75rem, env(safe-area-inset-right));
  bottom: max(0.75rem, env(safe-area-inset-bottom));
  width: min(calc(100% - 1.5rem), 720px);
  margin: 0 auto;
  padding: 1rem;
  color: var(--ink);
  background: rgba(28, 0, 21, 0.96);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
  backdrop-filter: blur(18px);
}

.cookie-banner[hidden] { display: none; }

.cookie-banner h2 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.cookie-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.cookie-button {
  min-height: 44px;
  padding: 0.65rem 0.75rem;
  color: #210019;
  background: var(--acid);
  border: 1px solid var(--acid);
  border-radius: 13px;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 800;
  cursor: pointer;
}

.cookie-button--secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.cookie-button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
  .hero {position: relative;min-height: fit-content;display: flex;flex-direction: column;justify-content: flex-start;padding: 20px 0px;}
  .hero__copy {display: none;}
  .section-heading p {display: none;}
  .categories {padding: 20px 0px;}

@media (min-width: 680px) {
  .page-shell { width: min(100% - 3rem, 1200px); }
  .hero { min-height: 720px; }
  .hero__copy { margin-left: 3px; }
  .trust-row { max-width: 720px; gap: 1.25rem; }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .link-card--featured,
  .link-card--offer { grid-column: span 2; }
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-brand { flex-direction: row; align-items: end; justify-content: space-between; }
  .cookie-banner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 1.2rem; padding: 1.1rem 1.2rem; }
  .cookie-banner[hidden] { display: none; }
  .cookie-actions { min-width: 275px; margin-top: 0; }
  .hero {position: relative;min-height: fit-content;display: flex;flex-direction: column;justify-content: flex-start;padding: 20px 0px;}
  .hero__copy {display: none;}
  .section-heading p {display: none;}
  .categories {padding: 20px 0px;}
}

@media (min-width: 960px) {
  .hero { min-height: 760px; padding-top: 5.5rem; }
  .hero::after { right: 0; top: 5%; }
  .categories { padding-top: 5rem; }
  .section-heading { display: flex; align-items: end; justify-content: space-between; }
  .section-heading p { order: 2; margin-bottom: 0.35rem; }
  .card-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
  .link-card { min-height: 210px; grid-template-columns: 1fr 32px; grid-template-rows: 1fr auto; align-items: end; padding: 1.25rem; }
  .link-card--featured,
  .link-card--offer { grid-column: span 2; }
  .link-card--featured .card-copy strong,
  .link-card--offer .card-copy strong { font-size: 1.35rem; }
  .card-icon { grid-column: 1 / 3; align-self: start; }
  .card-copy { grid-column: 1; grid-row: 2; }
  .card-arrow { grid-column: 2; grid-row: 2; }
  .callout { grid-template-columns: 1fr minmax(360px, .8fr); align-items: end; }
  .footer-brand { padding-bottom: 2.5rem; }
}

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

@media (prefers-contrast: more) {
  :root { --line: rgba(255,255,255,.5); --muted: #f2deeb; }
  .link-card { background: #2b001f; }
}
