:root {
  --navy: #16324f;
  --navy-deep: #0f2438;
  --teal: #1a9b8e;
  --teal-deep: #127a70;
  --coral: #e05a45;
  --amber: #e8a317;
  --sky: #3b82a0;
  --violet: #5c4d8a;
  --ink: #1a2430;
  --muted: #5a6b7d;
  --line: #d8e1ea;
  --paper: #fbfcfe;
  --tint: #f3f7fa;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 12px 40px rgba(22, 50, 79, 0.08);
  --font-display: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

html.age-pending body {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--coral);
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.container--narrow {
  width: min(760px, calc(100% - 2.5rem));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  color: inherit;
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: linear-gradient(135deg, var(--teal), #2bb3a4 45%, var(--sky));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(26, 155, 142, 0.28);
}

.btn--primary:hover {
  color: var(--white);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(22, 50, 79, 0.18);
  color: var(--navy);
  backdrop-filter: blur(6px);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--muted);
}

.btn--light {
  background: var(--white);
  color: var(--navy);
}

.btn--platform {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
}

.btn--platform:hover {
  background: var(--teal-deep);
  color: var(--white);
}

.btn--platform-secondary {
  width: 100%;
  background: transparent;
  color: var(--navy);
  border-color: rgba(22, 50, 79, 0.2);
  border-radius: 12px;
}

.btn--platform-secondary:hover {
  background: var(--tint);
  border-color: var(--teal);
  color: var(--teal-deep);
}

.platform__actions {
  display: grid;
  gap: 0.55rem;
  margin-top: auto;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(26, 155, 142, 0.35), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(224, 90, 69, 0.28), transparent 45%),
    rgba(15, 36, 56, 0.88);
  backdrop-filter: blur(8px);
}

.age-gate[hidden] {
  display: none !important;
}

html:not(.age-pending) .age-gate {
  display: none !important;
}

.age-gate__panel,
.age-gate__denied {
  width: min(440px, 100%);
  background: var(--white);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  text-align: center;
  animation: rise 0.5s var(--ease);
}

.age-gate__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--amber));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
}

.age-gate__actions {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 1rem;
}

.age-gate__note {
  font-size: 0.85rem;
  color: var(--muted);
}

.age-gate__denied .btn {
  margin-top: 1rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(251, 252, 254, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(216, 225, 234, 0.7);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--navy);
}

.logo__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.logo__text em {
  font-style: normal;
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.35rem;
}

.site-nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  padding: 3.5rem 0 4.5rem;
  overflow: clip;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 20%, rgba(26, 155, 142, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 45% at 90% 10%, rgba(232, 163, 23, 0.16), transparent 55%),
    radial-gradient(ellipse 55% 50% at 70% 90%, rgba(224, 90, 69, 0.12), transparent 50%),
    linear-gradient(180deg, #eef6f5 0%, var(--paper) 70%);
  z-index: -1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.brand-signal {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  letter-spacing: -0.04em;
  margin: 0 0 0.85rem;
  background: linear-gradient(100deg, var(--teal) 0%, var(--sky) 35%, var(--amber) 70%, var(--coral) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: brand-in 0.8s var(--ease) both;
}

.hero h1 {
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  margin-bottom: 1rem;
  animation: fade-up 0.7s var(--ease) 0.08s both;
}

.hero__lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 36ch;
  animation: fade-up 0.7s var(--ease) 0.16s both;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
  animation: fade-up 0.7s var(--ease) 0.24s both;
}

.hero__visual {
  margin: 0;
  animation: fade-up 0.9s var(--ease) 0.2s both;
}

.hero__visual img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(22, 50, 79, 0.14);
}

@keyframes brand-in {
  from {
    opacity: 0;
    letter-spacing: 0.08em;
    filter: blur(4px);
  }
  to {
    opacity: 1;
    letter-spacing: -0.04em;
    filter: none;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.section {
  padding: 4.5rem 0;
}

.section--tint {
  background:
    linear-gradient(180deg, rgba(243, 247, 250, 0.95), rgba(238, 246, 245, 0.9));
}

.section__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.section__head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.section__head p {
  color: var(--muted);
}

.platforms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  justify-items: stretch;
}

.platform {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}

.platform::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--accent, var(--teal));
}

.platform[data-accent="navy"] { --accent: var(--navy); }
.platform[data-accent="violet"] { --accent: var(--violet); }
.platform[data-accent="coral"] { --accent: var(--coral); }
.platform[data-accent="amber"] { --accent: var(--amber); }

.platform:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(22, 50, 79, 0.12);
}

.platform__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.platform__logo {
  width: 140px;
  height: auto;
  border-radius: 10px;
}

.rating {
  text-align: right;
}

.rating__score {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--navy);
  line-height: 1;
}

.rating__stars {
  color: var(--amber);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.platform__desc {
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}

.platform__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  font-size: 0.88rem;
}

.platform__meta span {
  display: inline-block;
  min-width: 5.2rem;
  font-weight: 700;
  color: var(--navy);
}

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

.why__item {
  padding: 0.25rem 0.5rem;
}

.why__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--white);
}

.why__icon--teal { background: linear-gradient(135deg, var(--teal), var(--sky)); }
.why__icon--coral { background: linear-gradient(135deg, var(--coral), #f08a5a); }
.why__icon--amber { background: linear-gradient(135deg, var(--amber), #f0c14a); color: var(--navy); }
.why__icon--sky { background: linear-gradient(135deg, var(--sky), var(--violet)); }

.why__item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.why__item p {
  color: var(--muted);
  font-size: 0.95rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.compare th,
.compare td {
  padding: 1rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.compare thead th {
  background: linear-gradient(90deg, rgba(26, 155, 142, 0.1), rgba(232, 163, 23, 0.1), rgba(224, 90, 69, 0.1));
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.compare tbody th {
  font-weight: 700;
  color: var(--navy);
}

.compare tbody tr:last-child th,
.compare tbody tr:last-child td {
  border-bottom: 0;
}

.compare tbody tr:hover td,
.compare tbody tr:hover th {
  background: rgba(26, 155, 142, 0.04);
}

.compare a {
  font-weight: 700;
  text-decoration: none;
  color: var(--teal-deep);
}

.compare a:hover {
  color: var(--coral);
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.review__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.9rem;
}

.review__head img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.review cite {
  font-style: normal;
  font-weight: 700;
  color: var(--navy);
  display: block;
}

.review time {
  font-size: 0.82rem;
  color: var(--muted);
}

.review p {
  color: var(--muted);
  font-size: 0.98rem;
}

.faq {
  display: grid;
  gap: 0.75rem;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  color: var(--navy);
  position: relative;
  padding-right: 3rem;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s var(--ease);
}

.faq__item[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq__body {
  padding: 0 1.25rem 1.2rem;
  color: var(--muted);
}

.regs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.regs a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 0.75rem;
  transition: transform 0.3s var(--ease), border-color 0.25s ease;
}

.regs a:hover {
  transform: translateY(-3px);
  border-color: var(--teal);
  color: var(--navy);
}

.regs img {
  width: 140px;
  height: 64px;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0.65rem 0.85rem;
  box-sizing: border-box;
  background: var(--navy-deep);
  border-radius: 8px;
}

.regs span {
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
}

.responsible {
  padding: 1.5rem 0 4rem;
}

.responsible__inner {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3.25rem);
  color: var(--white);
  background:
    linear-gradient(125deg, rgba(22, 50, 79, 0.94), rgba(26, 155, 142, 0.88) 45%, rgba(224, 90, 69, 0.85));
  box-shadow: var(--shadow);
  text-align: center;
}

.responsible__inner::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% 40%;
  height: 180%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 60%);
  pointer-events: none;
}

.responsible__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
}

.responsible h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.responsible p {
  max-width: 46rem;
  margin: 0 auto 1.5rem;
  opacity: 0.95;
}

.profile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  color: var(--muted);
}

.profile strong {
  color: var(--navy);
}

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.82);
  padding: 3rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1.1fr 1.1fr 0.9fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.logo--footer {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer__nav {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.footer__nav-title {
  margin: 0 0 0.15rem;
  font-weight: 700;
  color: var(--white);
}

.footer__nav a,
.footer__contact a,
.footer__legal-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 600;
}

.footer__nav a:hover,
.footer__contact a:hover,
.footer__legal-links a:hover {
  color: #f0c14a;
}

.footer__contact p {
  margin-bottom: 0.4rem;
  font-weight: 700;
  color: var(--white);
}

.footer__legal {
  padding-top: 1.35rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.68);
}

.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  margin-bottom: 0.85rem;
}

.footer__legal p {
  margin-bottom: 0.5rem;
}

.footer__copy {
  opacity: 0.75;
}

.legal-hero {
  padding: calc(var(--header-h) + 2.5rem) 0 2rem;
  background:
    radial-gradient(ellipse 60% 70% at 100% 0%, rgba(26, 155, 142, 0.14), transparent 55%),
    linear-gradient(180deg, var(--tint) 0%, var(--paper) 100%);
}

.legal-hero h1 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 0.55rem;
}

.legal-meta {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.legal-lede {
  max-width: 40rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-prose h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
}

.legal-prose h2:first-child {
  margin-top: 0;
}

.legal-prose h3 {
  font-size: 1.05rem;
  margin: 1.25rem 0 0.5rem;
  color: var(--navy);
}

.legal-prose p,
.legal-prose li {
  color: var(--muted);
}

.legal-prose ul {
  margin: 0 0 1em;
  padding-left: 1.2rem;
}

.legal-prose li {
  margin-bottom: 0.4rem;
}

.legal-prose code {
  font-size: 0.9em;
  padding: 0.1em 0.35em;
  border-radius: 4px;
  background: var(--tint);
  color: var(--navy);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    order: -1;
    max-width: 560px;
    margin-inline: auto;
  }

  .hero__lead {
    max-width: none;
  }

  .why {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .regs {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 900px) {
  .platforms {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: grid;
    gap: 0;
    background: rgba(251, 252, 254, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.25rem 1rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.25s ease;
  }

  .site-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--line);
  }

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

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

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

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

  .hero {
    padding-top: 2rem;
  }

  .section {
    padding: 3.25rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.detail-hero {
  --accent: var(--teal);
  position: relative;
  padding: calc(var(--header-h) + 2.5rem) 0 3.5rem;
  overflow: hidden;
  color: var(--ink);
}

.detail-hero[data-accent="navy"] { --accent: var(--navy); }
.detail-hero[data-accent="violet"] { --accent: var(--violet); }
.detail-hero[data-accent="coral"] { --accent: var(--coral); }
.detail-hero[data-accent="amber"] { --accent: var(--amber); }

.detail-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 55%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(26, 155, 142, 0.12), transparent 50%),
    linear-gradient(180deg, var(--tint) 0%, var(--paper) 100%);
  z-index: 0;
}

.detail-hero > .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.55rem;
  margin-bottom: 1.75rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--teal-deep);
}

.breadcrumb [aria-current="page"] {
  color: var(--navy);
  font-weight: 600;
}

.detail-hero__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.detail-kicker {
  display: inline-block;
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.detail-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 0.65rem;
}

.detail-hero__lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 38rem;
  margin-bottom: 1.35rem;
}

.detail-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
  margin-bottom: 1.5rem;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.detail-tags li {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 12%, var(--white));
  border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
}

.detail-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.detail-hero__brand {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  text-align: center;
}

.detail-hero__brand img {
  width: min(220px, 100%);
  height: auto;
  object-fit: contain;
}

.detail-facts {
  width: 100%;
  margin: 0;
  display: grid;
  gap: 0.85rem;
  text-align: left;
}

.detail-facts > div {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 0.5rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.detail-facts dt {
  margin: 0;
  font-weight: 700;
  color: var(--navy);
}

.detail-facts dd {
  margin: 0;
  color: var(--muted);
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.25rem;
  align-items: start;
}

.detail-content h2 {
  font-size: 1.55rem;
  margin-top: 2rem;
}

.detail-content h2:first-child {
  margin-top: 0;
}

.detail-content p {
  color: var(--muted);
}

.detail-list {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.detail-list li {
  position: relative;
  padding: 0.65rem 0.85rem 0.65rem 2.35rem;
  background: var(--tint);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 0.95rem;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 50%;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--teal);
  transform: translateY(-50%);
}

.detail-aside {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.detail-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: 0 8px 28px rgba(22, 50, 79, 0.05);
}

.detail-panel h3 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.detail-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.detail-panel li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.detail-panel li::before {
  content: "＋";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.75rem;
}

.detail-panel--muted li::before {
  content: "–";
  color: var(--coral);
}

.detail-panel--cta {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy));
  border-color: transparent;
  color: var(--white);
}

.detail-panel--cta p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1rem;
  font-weight: 600;
}

.detail-panel--cta .btn--platform {
  background: var(--white);
  color: var(--navy);
}

.detail-panel--cta .btn--platform:hover {
  background: var(--teal);
  color: var(--white);
}

.detail-scores {
  display: grid;
  gap: 1rem;
  max-width: 720px;
  margin-inline: auto;
}

.detail-score {
  display: grid;
  grid-template-columns: 11rem 1fr 2.5rem;
  gap: 0.75rem;
  align-items: center;
}

.detail-score__label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
}

.detail-score__bar {
  height: 10px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
}

.detail-score__bar span {
  display: block;
  height: 100%;
  width: var(--v, 50%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--sky));
}

.detail-score__val {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  text-align: right;
}

.detail-related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.detail-related__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding: 1.35rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), border-color 0.25s ease;
}

.detail-related__card:hover {
  transform: translateY(-3px);
  border-color: var(--teal);
  color: var(--teal-deep);
}

.detail-related__card img {
  width: 120px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 900px) {
  .detail-hero__grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-aside {
    position: static;
    grid-template-columns: 1fr;
  }

  .detail-related {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .detail-hero {
    padding-top: calc(var(--header-h) + 1.5rem);
    padding-bottom: 2.5rem;
  }

  .detail-score {
    grid-template-columns: 1fr auto;
    gap: 0.4rem 0.75rem;
  }

  .detail-score__bar {
    grid-column: 1 / -1;
    order: 3;
  }

  .detail-facts > div {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .detail-aside {
    gap: 0.85rem;
  }
}
