:root {
  --bg: #06110e;
  --bg-soft: #091a15;
  --surface: #0d211a;
  --surface-2: #123127;
  --surface-3: #173c30;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(114, 229, 142, 0.32);
  --text: #f6f8f5;
  --muted: #aebdb5;
  --green: #72e58e;
  --green-strong: #3ed36a;
  --green-deep: #1d8e49;
  --yellow: #f4e35b;
  --yellow-soft: #fff4a6;
  --danger: #ff7a88;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 12px 32px rgba(0, 0, 0, 0.22);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1240px;
}

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

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 85% -10%, rgba(68, 211, 106, 0.14), transparent 34rem),
    radial-gradient(circle at -10% 32%, rgba(244, 227, 91, 0.06), transparent 28rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img,
iframe {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 999px;
  color: #06110e;
  background: var(--yellow);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 36px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 36px), 860px);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
  content: "";
}

.kicker {
  color: var(--yellow);
  font-weight: 800;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.35rem, 5.8vw, 5.6rem);
}

h2 {
  font-size: clamp(1.75rem, 3.6vw, 3.15rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

p {
  margin: 0 0 1rem;
}

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

.affiliate-note {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #c9d4ce;
  background: #04100c;
  font-size: 0.75rem;
  text-align: center;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 17, 14, 0.88);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 178px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.main-nav a,
.mobile-nav a {
  border-radius: 999px;
  color: #ced8d2;
  font-size: 0.9rem;
  font-weight: 750;
  transition: color 160ms ease, background 160ms ease;
}

.main-nav a {
  padding: 9px 12px;
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(114, 229, 142, 0.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #06110e;
  background: linear-gradient(135deg, var(--yellow), #d8ff6b);
  box-shadow: 0 10px 28px rgba(244, 227, 91, 0.16);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(244, 227, 91, 0.25);
  filter: brightness(1.04);
}

.button-green {
  color: #04100c;
  background: linear-gradient(135deg, var(--green), var(--green-strong));
  box-shadow: 0 10px 28px rgba(62, 211, 106, 0.2);
}

.button-outline {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
}

.button-outline:hover {
  border-color: var(--line-strong);
  background: rgba(114, 229, 142, 0.1);
  box-shadow: none;
}

.button-small {
  min-height: 40px;
  padding: 9px 16px;
  font-size: 0.84rem;
}

.button-wide {
  min-width: 190px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.mobile-nav {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  right: 18px;
  left: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 0 0 20px 20px;
  background: rgba(8, 24, 18, 0.98);
  box-shadow: var(--shadow);
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a {
  padding: 12px 14px;
}

.mobile-nav .button {
  margin-top: 6px;
  color: #06110e;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 34px;
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(6, 17, 14, 0) 30%, rgba(114, 229, 142, 0.06)),
    repeating-linear-gradient(130deg, transparent 0 26px, rgba(255, 255, 255, 0.012) 26px 27px);
  pointer-events: none;
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: clamp(36px, 7vw, 92px);
}

.hero h1 span {
  color: var(--green);
}

.hero-lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: #cad5cf;
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-meta span::before {
  color: var(--green);
  content: "\2713";
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 460px;
  padding: 16px;
  border: 1px solid var(--line-strong);
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(114, 229, 142, 0.12), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  inset: 12% 5% -7%;
  border-radius: 50%;
  background: rgba(62, 211, 106, 0.28);
  filter: blur(70px);
  content: "";
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 426px;
  border-radius: 24px;
  object-fit: cover;
}

.floating-chip {
  position: absolute;
  right: -18px;
  bottom: 30px;
  max-width: 250px;
  padding: 15px 17px;
  border: 1px solid rgba(244, 227, 91, 0.4);
  border-radius: 18px;
  color: #0a130f;
  background: rgba(244, 227, 91, 0.94);
  box-shadow: var(--shadow-soft);
  font-weight: 850;
  line-height: 1.25;
}

.floating-chip small {
  display: block;
  margin-top: 4px;
  font-size: 0.68rem;
  font-weight: 750;
}

.trust-strip {
  padding: 8px 0 38px;
}

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

.trust-item {
  min-height: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
}

.trust-item strong {
  display: block;
  margin-bottom: 3px;
  color: var(--green);
}

.trust-item span {
  color: var(--muted);
  font-size: 0.84rem;
}

.section {
  padding: 68px 0;
}

.section-tight {
  padding: 46px 0;
}

.section-alt {
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section-head > div:first-child {
  max-width: 760px;
}

.section-head p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
}

.lobby-toolbar {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(180px, 230px);
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(9, 26, 21, 0.92);
}

.search-field {
  position: relative;
}

.search-field::before {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: var(--muted);
  content: "\2315";
  font-size: 1.3rem;
}

.search-field input,
.lobby-toolbar select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--text);
  background: #0a1a15;
}

.search-field input {
  padding: 10px 15px 10px 44px;
}

.lobby-toolbar select {
  padding: 10px 38px 10px 13px;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.filter-pill {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 800;
}

.filter-pill:hover,
.filter-pill[aria-pressed="true"] {
  color: #07110e;
  background: var(--green);
}

.results-line {
  display: flex;
  justify-content: space-between;
  margin: -4px 2px 18px;
  color: var(--muted);
  font-size: 0.82rem;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.slot-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.slot-card:hover {
  z-index: 2;
  transform: translateY(-6px);
  border-color: rgba(114, 229, 142, 0.48);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.38);
}

.slot-card-link {
  display: block;
  height: 100%;
}

.slot-art {
  position: relative;
  display: grid;
  overflow: hidden;
  aspect-ratio: 1 / 0.82;
  place-items: center;
  background:
    radial-gradient(circle at 75% 20%, hsla(var(--h2), 85%, 62%, 0.82), transparent 32%),
    radial-gradient(circle at 18% 85%, hsla(var(--h1), 85%, 48%, 0.78), transparent 42%),
    linear-gradient(145deg, hsl(var(--h1), 64%, 20%), hsl(var(--h2), 60%, 12%));
}

.slot-art::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(3, 11, 8, 0.82), transparent 58%),
    repeating-linear-gradient(130deg, transparent 0 20px, rgba(255, 255, 255, 0.025) 20px 21px);
  content: "";
}

.generated-cover .generated-glyphs {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.72;
}

.generated-glyphs i {
  position: absolute;
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(4, 14, 10, 0.24);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
  font-style: normal;
  place-items: center;
  transform: rotate(-12deg);
}

.generated-glyphs i:nth-child(1) {
  top: 17%;
  left: 13%;
}

.generated-glyphs i:nth-child(2) {
  top: 12%;
  right: 13%;
  transform: rotate(13deg);
}

.generated-glyphs i:nth-child(3) {
  right: 18%;
  bottom: 18%;
  transform: rotate(-5deg);
}

.generated-cover-title {
  position: absolute;
  z-index: 2;
  right: 48px;
  bottom: 14px;
  left: 12px;
  overflow: hidden;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.15;
  text-overflow: ellipsis;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
}

.slot-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.slot-card:hover .slot-art img {
  transform: scale(1.045);
}

.slot-art.image-failed img {
  display: none;
}

.slot-monogram {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
}

.slot-ribbon {
  position: absolute;
  z-index: 3;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #06110e;
  background: var(--yellow);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.slot-play {
  position: absolute;
  z-index: 3;
  right: 11px;
  bottom: 11px;
  display: grid;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #06110e;
  background: var(--green);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
  font-size: 0;
  place-items: center;
}

.slot-play::before {
  margin-left: 3px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid currentColor;
  content: "";
}

.slot-copy {
  padding: 13px 14px 15px;
}

.slot-copy h3 {
  overflow: hidden;
  min-height: 2.45em;
  font-size: 0.96rem;
  line-height: 1.22;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.slot-copy p {
  overflow: hidden;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.73rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.slot-stats {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.slot-stats span {
  padding: 4px 7px;
  border-radius: 7px;
  color: #cfe1d7;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.64rem;
  font-weight: 800;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.empty-state {
  padding: 48px 20px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
  color: var(--muted);
  text-align: center;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.provider-card {
  display: flex;
  align-items: center;
  min-height: 84px;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.provider-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background: rgba(114, 229, 142, 0.07);
}

.provider-mark {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  color: #06110e;
  background: linear-gradient(145deg, hsl(var(--h1), 78%, 72%), hsl(var(--h2), 75%, 55%));
  font-weight: 950;
  place-items: center;
}

.provider-card strong {
  display: block;
  overflow: hidden;
  font-size: 0.82rem;
  line-height: 1.2;
  text-overflow: ellipsis;
}

.provider-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
}

.promo-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(244, 227, 91, 0.32);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 85% 50%, rgba(244, 227, 91, 0.18), transparent 24rem),
    linear-gradient(120deg, #123127, #0a1e17 70%);
  box-shadow: var(--shadow-soft);
}

.promo-panel::after {
  position: absolute;
  right: 6%;
  bottom: -68px;
  width: 180px;
  height: 180px;
  border: 32px solid rgba(114, 229, 142, 0.06);
  border-radius: 50%;
  content: "";
}

.promo-panel h2 {
  max-width: 760px;
}

.promo-panel p {
  max-width: 760px;
  margin: 14px 0 0;
  color: #c8d4ce;
}

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

.feature-card,
.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.032);
}

.feature-card {
  padding: 24px;
}

.feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: #06110e;
  background: var(--green);
  font-size: 1.15rem;
  font-weight: 950;
  place-items: center;
}

.feature-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: var(--green);
  font-weight: 850;
}

.text-link::after {
  content: "\2192";
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(3px);
}

.page-hero {
  padding: 62px 0 36px;
}

.page-hero-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 6vw, 62px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 88% 18%, rgba(114, 229, 142, 0.18), transparent 22rem),
    linear-gradient(135deg, var(--surface-2), #0a1d17);
}

.page-hero-card h1 {
  max-width: 900px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}

.page-hero-card > p:not(.eyebrow) {
  max-width: 800px;
  margin: 20px 0 0;
  color: #cad5cf;
  font-size: 1.08rem;
}

.page-hero-card .hero-actions {
  margin-top: 24px;
}

.breadcrumbs {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.82rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 7px;
  color: #5f756a;
  content: "/";
}

.breadcrumbs a:hover {
  color: var(--green);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: start;
  gap: 34px;
}

.article-section {
  margin-bottom: 18px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.025);
}

.article-section h2 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.article-section h3 {
  margin: 26px 0 12px;
}

.article-section p,
.article-section li {
  color: #cad5cf;
}

.article-section a:not(.button) {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: rgba(114, 229, 142, 0.4);
  text-underline-offset: 3px;
}

.article-section ul,
.article-section ol {
  padding-left: 22px;
}

.article-section li + li {
  margin-top: 9px;
}

.side-card {
  position: sticky;
  top: 104px;
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  box-shadow: var(--shadow-soft);
}

.side-card strong {
  display: block;
  font-size: 1.05rem;
}

.side-card p {
  margin: 9px 0 17px;
  color: var(--muted);
  font-size: 0.84rem;
}

.side-card .button {
  width: 100%;
}

.side-links {
  display: grid;
  gap: 5px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.side-links a {
  padding: 7px 0;
  color: #d3ddd8;
  font-size: 0.82rem;
}

.side-links a:hover {
  color: var(--green);
}

.data-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.data-table th,
.data-table td {
  padding: 13px 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  color: var(--text);
  background: rgba(114, 229, 142, 0.08);
}

.data-table tr:last-child td,
.data-table tr:last-child th {
  border-bottom: 0;
}

.callout {
  margin: 22px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--yellow);
  border-radius: 0 14px 14px 0;
  background: rgba(244, 227, 91, 0.07);
}

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

.steps-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0 !important;
  counter-reset: steps;
  list-style: none;
}

.steps-list li {
  position: relative;
  min-height: 48px;
  padding: 11px 12px 11px 58px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
  counter-increment: steps;
}

.steps-list li::before {
  position: absolute;
  top: 10px;
  left: 12px;
  display: grid;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  color: #06110e;
  background: var(--green);
  content: counter(steps);
  font-weight: 950;
  place-items: center;
}

.faq-list {
  display: grid;
  gap: 11px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.faq-list details[open] {
  border-color: var(--line-strong);
  background: rgba(114, 229, 142, 0.04);
}

.faq-list summary {
  position: relative;
  padding: 17px 52px 17px 18px;
  font-weight: 850;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  color: var(--green);
  content: "+";
  font-size: 1.4rem;
}

.faq-list details[open] summary::after {
  content: "\2212";
}

.faq-answer {
  padding: 0 18px 18px;
  color: #c5d1ca;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.slot-page {
  padding: 34px 0 64px;
}

.slot-hero {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, var(--surface-2), #091b15);
  box-shadow: var(--shadow-soft);
}

.slot-hero-art {
  position: relative;
  display: grid;
  min-height: 380px;
  overflow: hidden;
  place-items: center;
  background:
    radial-gradient(circle at 75% 20%, hsla(var(--h2), 85%, 62%, 0.85), transparent 32%),
    radial-gradient(circle at 20% 82%, hsla(var(--h1), 85%, 48%, 0.8), transparent 42%),
    linear-gradient(145deg, hsl(var(--h1), 64%, 20%), hsl(var(--h2), 60%, 12%));
}

.slot-hero-art::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 11, 8, 0.8), transparent 60%);
  content: "";
}

.slot-hero-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slot-hero-art.image-failed img {
  display: none;
}

.slot-hero-art .slot-monogram {
  font-size: 5rem;
}

.slot-hero-art .generated-glyphs i {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  font-size: 1.5rem;
}

.slot-hero-art .generated-cover-title {
  right: 20px;
  bottom: 48px;
  left: 20px;
  font-size: 1rem;
  white-space: normal;
}

.provider-overlay {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: #e5ece8;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.slot-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 52px);
}

.slot-hero-copy h1 {
  font-size: clamp(2.1rem, 4.7vw, 4.4rem);
}

.slot-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: #cad5cf;
}

.fact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.fact-pill {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #dbe3df;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.75rem;
  font-weight: 800;
}

.demo-shell {
  overflow: hidden;
  margin: 22px 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background: #050b09;
  box-shadow: var(--shadow);
}

.demo-cover {
  position: relative;
  display: grid;
  min-height: min(62vw, 620px);
  padding: clamp(28px, 7vw, 72px);
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 20%, hsla(var(--h2), 82%, 55%, 0.26), transparent 28rem),
    radial-gradient(circle at 20% 85%, hsla(var(--h1), 82%, 48%, 0.24), transparent 28rem),
    #07120e;
}

.demo-cover::before {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(130deg, transparent 0 28px, rgba(255, 255, 255, 0.018) 28px 29px);
  content: "";
}

.demo-cover-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.demo-cover h2 {
  font-size: clamp(2rem, 5vw, 4.2rem);
}

.demo-cover p {
  margin: 16px auto 0;
  color: var(--muted);
}

.demo-cover .demo-publish-note {
  max-width: 650px;
  padding: 10px 12px;
  border: 1px solid rgba(244, 227, 91, 0.2);
  border-radius: 10px;
  color: #d9d4a5;
  background: rgba(244, 227, 91, 0.055);
  font-size: 0.76rem;
  line-height: 1.5;
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.demo-toolbar {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.demo-shell.is-active .demo-cover {
  display: none;
}

.demo-shell.is-active .demo-toolbar {
  display: flex;
}

.demo-frame-wrap {
  display: none;
  aspect-ratio: 16 / 9;
  min-height: 420px;
  background: #000;
}

.demo-shell.is-active .demo-frame-wrap {
  display: block;
}

.demo-frame {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.demo-status {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.slot-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  align-items: start;
  gap: 20px;
}

.slot-sidebar {
  display: grid;
  gap: 16px;
}

.slot-sidebar .info-card {
  padding: 22px;
}

.facts-list {
  display: grid;
  gap: 0;
  margin: 14px 0 0;
}

.facts-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.facts-list div:last-child {
  border-bottom: 0;
}

.facts-list dt {
  color: var(--muted);
  font-size: 0.78rem;
}

.facts-list dd {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 850;
  text-align: right;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.related-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.related-card:hover {
  border-color: var(--line-strong);
}

.related-card strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.25;
}

.related-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.7rem;
}

.related-card span {
  display: inline-block;
  margin-top: 12px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 850;
}

.site-footer {
  padding: 52px 0 28px;
  border-top: 1px solid var(--line);
  background: #04100c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
}

.footer-intro p {
  max-width: 360px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-column h2 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-column a {
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-column a:hover {
  color: var(--green);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #82958b;
  font-size: 0.72rem;
}

.age-mark {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 2px solid var(--danger);
  border-radius: 50%;
  color: var(--danger);
  font-weight: 950;
  place-items: center;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1120px) {
  .main-nav a {
    padding-inline: 8px;
    font-size: 0.82rem;
  }

  .slot-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .provider-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 1020px) {
  .main-nav,
  .header-actions .button-outline {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.82fr;
    gap: 34px;
  }

  .hero-visual {
    min-height: 380px;
  }

  .hero-visual img {
    min-height: 346px;
  }

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

  .slot-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .provider-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lobby-toolbar {
    grid-template-columns: 1fr 220px;
  }

  .filter-pills {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .content-layout,
  .slot-content-grid {
    grid-template-columns: 1fr;
  }

  .side-card {
    position: static;
  }

  .slot-hero {
    grid-template-columns: 300px minmax(0, 1fr);
  }

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

  .footer-column:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 740px) {
  body {
    padding-bottom: 68px;
  }

  .container,
  .narrow {
    width: min(calc(100% - 24px), var(--container));
  }

  .affiliate-note {
    padding-inline: 10px;
    text-align: left;
  }

  .brand img {
    width: 142px;
  }

  .header-inner {
    min-height: 66px;
    gap: 8px;
  }

  .header-actions .button-green {
    display: none;
  }

  .hero {
    padding-top: 34px;
  }

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

  .hero-visual {
    min-height: 330px;
  }

  .hero-visual img {
    min-height: 296px;
  }

  .floating-chip {
    right: 10px;
    bottom: 24px;
  }

  .section {
    padding: 52px 0;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .lobby-toolbar {
    grid-template-columns: 1fr;
  }

  .filter-pills {
    grid-column: auto;
    grid-row: auto;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 3px;
  }

  .filter-pill {
    flex: 0 0 auto;
  }

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

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

  .promo-panel {
    grid-template-columns: 1fr;
  }

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

  .slot-hero {
    grid-template-columns: 1fr;
  }

  .slot-hero-art {
    min-height: 300px;
  }

  .demo-frame-wrap,
  .demo-frame {
    min-height: 360px;
  }

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

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

  .footer-intro {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 8px;
    padding: 9px 12px max(9px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(5, 15, 11, 0.96);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }

  .mobile-sticky-cta .button {
    min-height: 44px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 2.45rem;
  }

  .hero-actions,
  .demo-actions {
    display: grid;
  }

  .hero-actions .button,
  .demo-actions .button {
    width: 100%;
  }

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

  .slot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .slot-copy {
    padding: 11px;
  }

  .slot-copy h3 {
    font-size: 0.84rem;
  }

  .slot-stats span:nth-child(2) {
    display: none;
  }

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

  .provider-card {
    min-height: 76px;
    padding: 10px;
  }

  .provider-mark {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .page-hero {
    padding-top: 34px;
  }

  .page-hero-card,
  .article-section {
    padding: 22px;
  }

  .slot-page {
    padding-top: 22px;
  }

  .demo-cover {
    min-height: 500px;
    padding: 24px;
  }

  .demo-toolbar {
    overflow-x: auto;
  }

  .demo-status {
    display: none;
  }

  .demo-frame-wrap,
  .demo-frame {
    min-height: 520px;
    aspect-ratio: 9 / 14;
  }

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

  .footer-intro,
  .footer-column:last-child {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
