:root {
  --bg: #2A0E05;
  --surface: #3A1408;
  --text: #FFF7ED;
  --muted: #FDBA74;
  --primary: #F97316;
  --secondary: #FB7185;
  --accent: #FACC15;
  --border: rgba(255,247,237,0.14);
  --max: 1200px;
  --font-display: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "Cascadia Code", "Segoe UI Mono", Consolas, monospace;
  --kw-nature: nature;
  --kw-future: future;
  --kw-lab: lab;
  --kw-hybrid: hybrid;
  --kw-glowing-plants: glowing-plants;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    linear-gradient(165deg, var(--bg) 0%, var(--surface) 42%, var(--bg) 100%),
    radial-gradient(ellipse 80% 50% at 88% -8%, rgba(249, 115, 22, 0.28), transparent 58%),
    radial-gradient(ellipse 55% 40% at 4% 96%, rgba(250, 204, 21, 0.1), transparent 52%);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: var(--kw-nature) " " var(--kw-future) " " var(--kw-lab);
  position: fixed;
  inset: 0;
  font-size: 0;
  line-height: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(250, 204, 21, 0.07), transparent 32%),
    radial-gradient(circle at 78% 68%, rgba(251, 113, 133, 0.08), transparent 36%);
  opacity: 0.95;
}

body::after {
  content: var(--kw-hybrid) " " var(--kw-glowing-plants);
  position: fixed;
  inset: 0;
  font-size: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cpath d='M20 200 C70 140 40 90 90 40' fill='none' stroke='%23FACC15' stroke-width='0.7' opacity='0.35'/%3E%3Cpath d='M180 210 C130 150 170 90 110 20' fill='none' stroke='%23F97316' stroke-width='0.6' opacity='0.28'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}

body > * {
  position: relative;
  z-index: 1;
}

body.is-locked {
  overflow: hidden;
}

main {
  flex: 1 0 auto;
}

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

a {
  color: var(--primary);
}

.nature,
.future,
.lab,
.hybrid,
.glowing-plants {
  position: relative;
}

.disclosure-banner {
  width: 100%;
  background: none;
  border: none;
  text-align: center;
  font-size: 10px;
  line-height: 1.45;
  color: rgba(255, 247, 237, 0.48);
  padding: 6px 16px;
}

.disclosure-banner p {
  max-width: 920px;
  margin: 0 auto 4px;
}

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: none;
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}

.brand-lockup img {
  width: 26px;
  height: 26px;
  display: block;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  padding: 4px 6px;
  display: inline-flex;
  align-items: center;
}

.nav-links a:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  color: rgba(255, 247, 237, 0.35);
  font-size: 0.85rem;
  font-weight: 400;
}

.nav-links a:hover {
  background: rgba(255, 247, 237, 0.08);
  color: var(--text);
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
}

.nav-scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(42, 14, 5, 0.62);
  z-index: 140;
}

.nav-scrim.is-open {
  display: block;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 86vw);
  height: 100%;
  background: var(--surface);
  z-index: 150;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: -18px 0 40px rgba(42, 14, 5, 0.45);
}

.nav-drawer.is-open {
  transform: translateX(0);
}

.nav-drawer-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  margin-bottom: 12px;
}

.nav-drawer a {
  font-family: var(--font-mono);
  text-decoration: none;
  color: var(--text);
  padding: 12px 8px;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: minmax(150px, 1fr) minmax(150px, 1fr);
  gap: 4px;
  min-height: 300px;
  max-width: var(--max);
  margin: 12px auto 0;
  width: 100%;
  padding: 0 12px;
}

.hero-cell {
  min-height: 150px;
  overflow: hidden;
  position: relative;
}

.hero-headline {
  background: var(--surface);
  display: flex;
  align-items: flex-end;
  padding: 28px 32px;
}

.hero-headline h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  animation: haze-in 0.9s ease both;
}

.hero-visual {
  background-color: var(--bg);
  background-size: cover;
  background-position: center;
  min-height: 150px;
  max-width: 100%;
  overflow: hidden;
}

.hero-visual-a {
  background-image: url("/images/decorative/decor_1.webp");
  animation: haze-in 1.1s ease both;
}

.hero-visual-b {
  background-image: url("/images/decorative/decor_2.webp");
  animation: haze-in 1.25s ease 0.1s both;
}

.hero-sub {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 24px 28px;
}

.hero-sub p {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 36ch;
  animation: haze-in 1s ease 0.15s both;
}

.hero-sub a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
  align-self: flex-start;
  padding: 8px 0;
}

.hero-sub a:hover {
  color: var(--primary);
}

.vine-grow {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.vine-left {
  left: 8px;
  top: 40px;
  width: 70px;
  height: 240px;
}

.vine-right {
  right: 10px;
  bottom: 20px;
  width: 70px;
  height: 220px;
}

.vine-path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  filter: drop-shadow(0 0 6px rgba(250, 204, 21, 0.55));
}

.vine-grow.is-grown .vine-path {
  animation: glowing-plants 2.4s ease forwards;
}

@keyframes glowing-plants {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes haze-in {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(250, 204, 21, 0);
  }
  50% {
    box-shadow: 0 0 28px rgba(250, 204, 21, 0.18);
  }
}

.offers-section {
  margin-top: 28px;
  padding: 56px 24px;
  background-color: var(--surface);
  background-image:
    linear-gradient(180deg, rgba(42, 14, 5, 0.72) 0%, rgba(42, 14, 5, 0.78) 100%),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  position: relative;
}

.offers-section::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: 6%;
  top: -40px;
  border-radius: 62% 38% 48% 52%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.22), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}

.offers-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

.offers-head {
  text-align: center;
  margin-bottom: 32px;
}

.offers-head .data-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.offers-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  font-weight: 700;
}

.offers-head p {
  color: var(--muted);
  margin-top: 10px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.offer-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  animation: haze-in 0.7s ease both;
}

.offer-card:nth-child(2) {
  animation-delay: 0.08s;
}

.offer-card:nth-child(3) {
  animation-delay: 0.16s;
}

.offer-card:nth-child(4) {
  animation-delay: 0.24s;
}

.offer-logo {
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 12px;
  background: #0d0d0d;
  padding: 10px;
}

.offer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  max-width: none;
}

.offer-name {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff7ed;
}

.offer-bonus-group {
  text-align: center;
}

.offer-bonus {
  margin: 0;
  color: #ffd700;
  font-weight: 700;
  font-size: clamp(0.82rem, 2.4vw, 1rem);
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.offer-terms {
  display: block;
  margin-top: 6px;
  font-size: 0.72rem;
  color: #9ca3af;
  font-family: var(--font-mono);
}

.offer-desc {
  font-size: 0.78rem;
  color: #9ca3af;
  line-height: 1.45;
  text-align: center;
  margin: 0;
}

.offer-cta {
  display: block;
  margin-top: auto;
  padding: 12px 16px;
  background: #22c55e;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  cursor: pointer;
}

.offer-cta:hover {
  filter: brightness(1.08);
  color: #ffffff;
}

.info-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 24px;
  position: relative;
}

.info-section::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: -40px;
  bottom: 10px;
  border-radius: 48% 52% 70% 30%;
  background: radial-gradient(circle, rgba(251, 113, 133, 0.12), transparent 68%);
  pointer-events: none;
}

.info-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.05rem);
  margin-bottom: 14px;
  color: var(--text);
}

.info-section p {
  margin-bottom: 14px;
  color: rgba(255, 247, 237, 0.9);
}

.info-kicker {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.info-cta {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bg);
  background: var(--primary);
  padding: 10px 18px;
}

.info-cta:hover {
  background: var(--accent);
  color: var(--bg);
}

.lab {
  background: rgba(58, 20, 8, 0.55);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  box-shadow:
    inset 0 0 40px rgba(250, 204, 21, 0.06),
    0 0 0 1px rgba(249, 115, 22, 0.08);
  animation: pulse-glow 6s ease-in-out infinite;
}

.hybrid {
  border-radius: 28px 8px 32px 12px;
}

.layout-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.layout-checklist {
  list-style: none;
  margin: 0;
  padding: 18px 20px;
}

.layout-checklist li {
  padding: 8px 0 8px 22px;
  position: relative;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.layout-checklist li:last-child {
  border-bottom: none;
}

.layout-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(250, 204, 21, 0.8);
}

.layout-steps {
  counter-reset: pay;
  list-style: none;
  margin: 18px 0 0;
}

.layout-steps li {
  counter-increment: pay;
  position: relative;
  padding: 14px 14px 14px 58px;
  margin-bottom: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.layout-steps li::before {
  content: counter(pay);
  position: absolute;
  left: 14px;
  top: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.layout-quote {
  border-left: 3px solid var(--accent);
  padding: 14px 18px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 1.05rem;
  background: rgba(250, 204, 21, 0.05);
}

.layout-mosaic {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 8px;
}

.mosaic-visual {
  min-height: 180px;
  background-size: cover;
  background-position: center;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
}

.layout-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 18px 0;
}

.stat-cell {
  text-align: center;
  padding: 18px 10px;
  background: var(--surface);
  border-top: 2px solid var(--primary);
}

.stat-cell strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stat-cell span {
  font-size: 0.8rem;
  color: var(--muted);
}

.layout-alt {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.alt-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  align-items: center;
  padding: 12px 14px;
  background: rgba(58, 20, 8, 0.7);
  border-left: 3px solid var(--primary);
}

.alt-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.layout-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.compare-box {
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.compare-box h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.compare-box p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.layout-timeline {
  position: relative;
  margin: 22px 0 8px;
  padding-left: 28px;
  border-left: 2px solid var(--primary);
}

.timeline-item {
  position: relative;
  margin-bottom: 20px;
  padding-left: 12px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(250, 204, 21, 0.7);
}

.timeline-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.layout-columns {
  columns: 2;
  column-gap: 28px;
  margin-top: 12px;
}

.layout-columns li {
  break-inside: avoid;
  margin-bottom: 8px;
  color: var(--muted);
}

.layout-band {
  margin-top: 16px;
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.layout-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(250, 204, 21, 0.06), transparent 70%);
  pointer-events: none;
}

.layout-band p {
  margin: 0;
  position: relative;
}

.layout-stack p + p {
  margin-top: 12px;
}

.decor-wrap {
  max-width: 100%;
  overflow: hidden;
}

.decor-img {
  display: block;
  max-width: min(500px, 100%);
  max-height: 320px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 16px 0;
}

.site-footer {
  background: var(--surface);
  padding: 48px 24px 32px;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  margin-bottom: 20px;
}

.footer-brand img {
  width: 32px;
  height: 32px;
  display: block;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 20px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-ontario {
  font-size: 12px;
  color: rgba(253, 186, 116, 0.85);
  max-width: 900px;
  margin-bottom: 20px;
  line-height: 1.55;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}

.footer-badges a,
.footer-badges span {
  display: inline-flex;
  align-items: center;
}

.footer-badges img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.footer-compliance,
.footer-helpline,
.footer-updated,
.footer-requisites {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 10px;
  max-width: 900px;
}

.footer-helpline a,
.footer-compliance a {
  color: var(--primary);
}

.page-hero {
  padding: 48px 24px 28px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -60px;
  top: -80px;
  border-radius: 58% 42% 38% 62%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.2), transparent 70%);
}

.page-hero h1,
.page-kicker {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

.page-hero p {
  max-width: var(--max);
  margin: 10px auto 0;
  color: var(--muted);
  position: relative;
}

.legal-content,
.contact-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}

.legal-content h1,
.contact-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}

.legal-content h2,
.subpage-content h2 {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1.25rem;
  margin: 28px 0 10px;
}

.legal-content h3,
.subpage-content h3 {
  font-family: var(--font-display);
  color: var(--secondary);
  font-size: 1.05rem;
  margin: 20px 0 8px;
}

.legal-content p,
.subpage-content p,
.contact-content p {
  margin-bottom: 12px;
}

.legal-content ul,
.subpage-content ul,
.legal-content ol,
.subpage-content ol {
  margin: 10px 0 16px 1.2rem;
  color: var(--muted);
}

.legal-content li,
.subpage-content li {
  margin-bottom: 6px;
}

.contact-form {
  margin-top: 28px;
  padding: 24px;
  display: grid;
  gap: 14px;
  max-width: 520px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--muted);
  font-family: var(--font-mono);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  padding: 12px 20px;
  background: var(--primary);
  color: var(--bg);
  border: none;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-display);
}

.form-error {
  display: none;
  color: var(--secondary);
  font-size: 0.85rem;
}

.form-error.visible {
  display: block;
}

.form-success {
  display: none;
  padding: 24px;
  color: var(--text);
  margin-top: 20px;
}

.form-success.visible {
  display: block;
}

.is-hidden {
  display: none;
}

.age-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(42, 14, 5, 0.92);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-overlay.active {
  display: flex;
}

.age-dialog {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px 28px;
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.age-dialog h2 {
  font-family: var(--font-display);
  margin-bottom: 12px;
}

.age-dialog p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.age-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-confirm,
.btn-decline {
  padding: 10px 18px;
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-body);
}

.btn-confirm {
  background: var(--primary);
  color: var(--bg);
  border: none;
}

.btn-decline {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}

.age-blocked {
  display: none;
  color: var(--text);
  text-align: center;
  max-width: 360px;
}

.age-blocked.visible {
  display: block;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 16px 20px;
}

.cookie-banner.active {
  display: block;
}

.cookie-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.cookie-inner p {
  flex: 1 1 260px;
  font-size: 0.88rem;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-body);
}

#cookie-accept {
  background: var(--primary);
  color: var(--bg);
  border: none;
}

#cookie-reject {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}

.go-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}

.go-ad {
  font-family: var(--font-mono);
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 0.14em;
}

.go-page h1 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.go-page p {
  color: var(--muted);
  max-width: 420px;
}

.go-spinner {
  width: 42px;
  height: 42px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  margin: 28px auto;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.go-compliance {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--muted);
}

.go-compliance a {
  color: var(--primary);
}

.error-page {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px;
}

.error-page h1 {
  font-family: var(--font-display);
  font-size: 3.4rem;
  color: var(--primary);
}

.error-page p {
  color: var(--muted);
  margin: 16px 0 24px;
}

.error-page a {
  display: inline-block;
  padding: 12px 22px;
  background: var(--primary);
  color: var(--bg);
  text-decoration: none;
  font-weight: 700;
}

.topic-strip {
  min-height: 180px;
  background-size: cover;
  background-position: center;
  max-width: 100%;
  overflow: hidden;
}

.topic-poker .topic-strip {
  background-image: url("/images/decorative/decor_5.webp");
}

.topic-roulette .topic-strip {
  background-image: url("/images/decorative/decor_7.webp");
}

.sub-rail {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 24px 64px;
  align-items: start;
}

.sub-rail-aside {
  position: sticky;
  top: 72px;
  padding: 18px;
}

.sub-rail-aside p {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
}

.sub-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 24px 8px;
  align-items: start;
}

.sub-split .split-copy {
  max-width: none;
  padding: 8px 0 0;
}

.sub-band {
  background: var(--surface);
  padding: 36px 24px;
}

.sub-band-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sub-band-inner strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.pull-quote-block {
  max-width: 720px;
  margin: 32px auto;
  padding: 28px;
  font-size: 1.25rem;
  color: var(--primary);
  text-align: center;
}

.img-rail {
  display: flex;
  gap: 12px;
  overflow: hidden;
  max-width: var(--max);
  margin: 24px auto;
  padding: 0 24px;
}

.img-rail .decor-img {
  margin: 0;
}

.wager-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 24px;
  font-size: 0.92rem;
}

.wager-table th,
.wager-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
}

.wager-table th {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.license-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 24px 8px;
  align-items: center;
}

.license-visual {
  min-height: 200px;
  background-image: url("/images/decorative/decor_10.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  max-width: 100%;
}

.subpage-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 24px 64px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }

  .hero-visual-b {
    display: none;
  }

  .hero-cell {
    min-height: 160px;
  }

  .hero-headline,
  .hero-sub {
    padding: 22px 18px;
  }

  .vine-left,
  .vine-right {
    display: none;
  }

  .layout-split,
  .layout-mosaic,
  .layout-compare,
  .layout-stats,
  .sub-rail,
  .sub-split,
  .license-hero,
  .sub-band-inner {
    grid-template-columns: 1fr;
  }

  .layout-columns {
    columns: 1;
  }

  .alt-row {
    grid-template-columns: 1fr;
  }

  .layout-steps li {
    padding-left: 54px;
  }
}

@media (max-width: 600px) {
  .nav-inner {
    padding: 14px 16px;
  }

  .info-section {
    padding: 44px 16px;
  }

  .offers-section {
    padding: 40px 16px;
  }

  .offer-logo {
    width: 160px;
    height: 80px;
  }

  .offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  .decor-img {
    max-width: 100%;
    max-height: 220px;
  }

  .hero-visual {
    max-width: 100%;
  }
}
