:root {
  --bg: #080015;
  --surface: #12002E;
  --text: #F0E7FF;
  --muted: #9D80C4;
  --primary: #FF00FF;
  --secondary: #00FFFF;
  --accent: #FFFF00;
  --border: rgba(255, 0, 255, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  background-image: linear-gradient(180deg, #080015 0%, #0E0028 55%, #080015 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 420px at 85% -5%, rgba(255, 0, 255, 0.08), transparent 70%),
    radial-gradient(700px 380px at 8% 12%, rgba(0, 255, 255, 0.05), transparent 70%);
  z-index: 0;
}

body::after {
  content: "ultra minimal, white space, calm, zen, silent UI";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  visibility: hidden;
  pointer-events: none;
}

#ageOverlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 0, 21, 0.92);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

#ageOverlay.active {
  display: flex;
}

.age-card {
  max-width: 460px;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px 36px;
  text-align: center;
}

.age-card h2 {
  font-weight: 200;
  font-size: 26px;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.age-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
}

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

.age-btn {
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid var(--primary);
  background: rgba(255, 0, 255, 0.12);
  color: var(--text);
  transition: background 0.25s;
}

.age-btn:hover {
  background: rgba(255, 0, 255, 0.22);
}

.age-btn-ghost {
  border: 1px solid rgba(157, 128, 196, 0.35);
  background: transparent;
  color: var(--muted);
}

.age-btn-ghost:hover {
  background: rgba(157, 128, 196, 0.1);
}

#cookieBanner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  z-index: 90;
  width: min(560px, calc(100% - 32px));
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 18px 22px;
  display: none;
}

#cookieBanner.active {
  display: block;
}

#cookieBanner p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}

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

.cookie-btn {
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid var(--primary);
  background: rgba(255, 0, 255, 0.12);
  color: var(--text);
}

.cookie-btn:hover {
  background: rgba(255, 0, 255, 0.22);
}

.cookie-btn-ghost {
  border-color: rgba(157, 128, 196, 0.35);
  background: transparent;
  color: var(--muted);
}

.cookie-btn-ghost:hover {
  background: rgba(157, 128, 196, 0.1);
}

.site-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-main {
  flex: 1 0 auto;
}

.disclosure {
  display: block;
  max-width: fit-content;
  margin: 8px auto;
  padding: 5px 18px;
  border-radius: 4px;
  background: rgba(255, 255, 0, 0.15);
  border: 1px solid rgba(255, 255, 0, 0.3);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--accent);
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-lockup img {
  width: 30px;
  height: 36px;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.25s;
}

.main-nav a:hover {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.burger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  width: 42px;
  height: 34px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.burger span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--text);
  transition: transform 0.25s, opacity 0.25s;
}

.burger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

#mobileMenu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--bg);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
}

#mobileMenu.active {
  display: flex;
}

.menu-link {
  display: block;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--text);
  text-decoration: none;
  padding: 12px 20px;
}

.menu-link:hover {
  color: var(--secondary);
}

.hero {
  position: relative;
  height: 60vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background-image: url("/images/decorative/decor_2.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 0, 21, 0) 0%, rgba(8, 0, 21, 0.7) 100%);
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px 56px;
}

.hero h1 {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 200;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero h1 em {
  font-style: normal;
  color: var(--secondary);
}

.hero-sub {
  max-width: 560px;
  color: var(--text);
  font-size: 15px;
  opacity: 0.85;
}

.section-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 24px;
  position: relative;
}

.section-shell::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  width: 420px;
  height: 260px;
  background: radial-gradient(closest-side, rgba(255, 0, 255, 0.07), transparent);
  pointer-events: none;
}

.section-shell:nth-of-type(even)::before {
  left: -10%;
  right: auto;
  background: radial-gradient(closest-side, rgba(0, 255, 255, 0.05), transparent);
}

.section-kicker {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 200;
  letter-spacing: 0.01em;
  line-height: 1.25;
  margin-bottom: 24px;
}

.section-title-thin {
  font-size: 28px;
  font-weight: 100;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 40px;
}

.lede {
  max-width: 640px;
  font-size: 17px;
  color: var(--text);
  opacity: 0.9;
}

.body-copy {
  color: var(--muted);
  font-size: 15px;
  max-width: 680px;
}

.body-copy + .body-copy {
  margin-top: 18px;
}

.soft-divider {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 0;
}

.stat {
  font-size: 34px;
  font-weight: 100;
  color: var(--text);
  line-height: 1.1;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

.stat-row {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 26px 24px;
}

.card h3 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--text);
}

.card p {
  font-size: 13.5px;
  color: var(--muted);
}

.mini-list {
  list-style: none;
  margin-top: 32px;
  border-top: 1px solid var(--border);
}

.mini-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
  display: flex;
  gap: 16px;
}

.mini-list li span {
  color: var(--secondary);
  font-size: 12px;
  font-weight: 500;
  flex: 0 0 auto;
  padding-top: 2px;
}

.callout {
  border-left: 2px solid var(--secondary);
  padding: 18px 24px;
  background: rgba(0, 255, 255, 0.04);
  font-size: 14px;
  color: var(--muted);
  margin-top: 36px;
  max-width: 680px;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.pull-quote {
  font-size: 22px;
  font-weight: 100;
  line-height: 1.5;
  color: var(--text);
  border-left: 2px solid var(--primary);
  padding-left: 28px;
  margin-top: 8px;
}

.pull-quote small {
  display: block;
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.numbers-list {
  list-style: none;
  counter-reset: step;
  margin-top: 8px;
}

.numbers-list li {
  counter-increment: step;
  position: relative;
  padding: 18px 0 18px 56px;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
  color: var(--muted);
}

.numbers-list li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 18px;
  font-size: 15px;
  font-weight: 200;
  color: var(--accent);
}

.two-col-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  margin-top: 32px;
}

.chip-list {
  list-style: none;
}

.chip-list li {
  font-size: 13.5px;
  color: var(--muted);
  padding: 10px 0 10px 22px;
  position: relative;
}

.chip-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 8px;
  height: 1px;
  background: var(--secondary);
}

.decor-frame {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: var(--surface);
}

.decor-frame img {
  width: 100%;
  height: auto;
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.decor-rail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 44px;
}

.decor-rail figure {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.decor-rail img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.decor-rail figcaption {
  padding: 12px 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.mosaic figure {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.mosaic img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.mosaic figcaption {
  padding: 12px 14px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.band-strip {
  position: relative;
  margin: 0;
  height: 240px;
  background-image: url("/images/decorative/decor_5.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.band-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 0, 21, 0.92) 0%, rgba(8, 0, 21, 0.55) 100%);
}

.band-strip-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.band-strip h3 {
  font-size: 22px;
  font-weight: 200;
  max-width: 520px;
  line-height: 1.4;
}

.band-strip p {
  margin-top: 12px;
  max-width: 520px;
  font-size: 14px;
  color: var(--muted);
}

.offers-section {
  position: relative;
  background-image: url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 0, 21, 0.9);
  pointer-events: none;
}

.offers-shell {
  position: relative;
}

.offers-shell h2 {
  font-size: 30px;
  font-weight: 200;
  margin-bottom: 12px;
}

.offers-shell .section-kicker {
  color: var(--accent);
}

.offers-note {
  color: var(--muted);
  font-size: 14px;
  max-width: 620px;
  margin-bottom: 48px;
}

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

.offer-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.offer-logo {
  width: 150px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 22px;
}

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

.offer-bonus {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  word-break: break-word;
  overflow-wrap: anywhere;
  margin-bottom: 8px;
}

.offer-terms {
  font-size: 11.5px;
  color: var(--muted);
  opacity: 0.8;
  margin-bottom: 16px;
}

.offer-desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 26px;
}

.offer-cta {
  margin-top: auto;
  display: inline-block;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--secondary);
  border: 1px solid var(--secondary);
  border-radius: 4px;
  padding: 11px 30px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}

.offer-cta:hover {
  background: rgba(0, 255, 255, 0.12);
  color: var(--text);
}

.section-cta {
  display: inline-block;
  margin-top: 36px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 0, 0.4);
  padding-bottom: 3px;
  transition: color 0.25s, border-color 0.25s;
}

.section-cta:hover {
  color: var(--text);
  border-color: var(--text);
}

.page-strip {
  position: relative;
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.page-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 240px at 80% 0%, rgba(255, 0, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.page-strip-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-strip h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 200;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}

.page-strip .page-sub {
  max-width: 640px;
  color: var(--muted);
  font-size: 15px;
}

.page-strip .section-kicker {
  color: var(--accent);
}

.prose {
  max-width: 760px;
}

.prose p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 20px;
}

.prose h2 {
  font-size: 22px;
  font-weight: 300;
  margin: 44px 0 16px;
  color: var(--text);
}

.prose h3 {
  font-size: 17px;
  font-weight: 400;
  margin: 32px 0 12px;
  color: var(--text);
}

.prose ul {
  list-style: none;
  margin: 0 0 24px;
}

.prose ul li {
  position: relative;
  padding: 10px 0 10px 24px;
  font-size: 14.5px;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 0, 255, 0.12);
}

.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 1px;
  background: var(--secondary);
}

.prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  color: var(--secondary);
}

.rail-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}

.rail-nav {
  position: sticky;
  top: 96px;
}

.rail-nav a {
  display: block;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  padding: 9px 0 9px 16px;
  border-left: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
}

.rail-nav a:hover {
  color: var(--text);
  border-color: var(--secondary);
}

.rail-nav .rail-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 0 12px 16px;
}

.article-layout {
  max-width: 820px;
  margin: 0 auto;
}

.article-layout .prose h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 200;
  margin-bottom: 40px;
}

.stat-band {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  margin: 48px 0;
}

.side-figures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0;
}

.side-figures figure {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.side-figures img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.side-figures figcaption {
  padding: 12px 16px;
  font-size: 12px;
  color: var(--muted);
}

.bento-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.bento-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 32px;
}

.bento-block h3 {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 16px;
  color: var(--text);
}

.bento-block p {
  font-size: 14px;
  color: var(--muted);
}

.bento-block + .bento-block {
  margin-top: 0;
}

.bento-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.contact-form label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  font-weight: 300;
  padding: 12px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--secondary);
}

.form-error {
  display: none;
  font-size: 13px;
  color: var(--primary);
}

.form-success {
  display: none;
  margin-top: 32px;
  border: 1px solid rgba(0, 255, 255, 0.35);
  background: rgba(0, 255, 255, 0.06);
  border-radius: 4px;
  padding: 22px 24px;
  font-size: 14.5px;
  color: var(--text);
}

.legal-toc {
  margin: 40px 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px 28px;
  background: var(--surface);
}

.legal-toc a {
  display: block;
  font-size: 13.5px;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 0;
}

.legal-toc a:hover {
  color: var(--text);
}

.legal-toc .toc-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0;
}

.mosaic-grid figure {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.mosaic-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.mosaic-grid figcaption {
  padding: 12px 14px;
  font-size: 12px;
  color: var(--muted);
}

.band-quote {
  position: relative;
  margin: 56px 0;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.band-quote::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(520px 200px at 15% 50%, rgba(0, 255, 255, 0.06), transparent 70%);
}

.band-quote blockquote {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 22px;
  font-weight: 100;
  line-height: 1.5;
  color: var(--text);
}

.band-quote cite {
  display: block;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .logo-lockup {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--muted);
}

.footer-cols {
  display: flex;
  gap: 72px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 13.5px;
  color: var(--muted);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-help {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 0, 255, 0.12);
  border-bottom: 1px solid rgba(255, 0, 255, 0.12);
  margin-bottom: 32px;
}

.help-logo {
  height: 40px;
  width: auto;
  display: block;
  filter: brightness(0.95);
}

.footer-rg {
  font-size: 13px;
  color: var(--muted);
  max-width: 860px;
  margin-bottom: 18px;
}

.footer-rg a {
  color: var(--secondary);
  text-decoration: none;
}

.footer-rg a:hover {
  text-decoration: underline;
}

.footer-meta {
  font-size: 12px;
  color: var(--muted);
  display: grid;
  gap: 6px;
  margin-bottom: 20px;
}

.footer-legal {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
}

.footer-au {
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(157, 128, 196, 0.75);
  max-width: 900px;
}

.go-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px;
  text-align: center;
}

.go-ad {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--accent);
  border: 1px solid rgba(255, 255, 0, 0.3);
  border-radius: 4px;
  padding: 4px 14px;
  background: rgba(255, 255, 0, 0.1);
}

.go-spinner {
  width: 42px;
  height: 42px;
  border: 2px solid var(--border);
  border-top-color: var(--secondary);
  border-radius: 50%;
  animation: go-spin 1s linear infinite;
}

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

.go-msg {
  font-size: 16px;
  font-weight: 300;
  color: var(--text);
}

.go-note {
  font-size: 12px;
  color: var(--muted);
  max-width: 460px;
  line-height: 1.6;
}

.go-help a {
  color: var(--secondary);
  text-decoration: none;
}

.go-help a:hover {
  text-decoration: underline;
}

.nf-wrap {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 120px 24px;
}

.nf-wrap h1 {
  font-size: 72px;
  font-weight: 100;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.nf-wrap p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 32px;
}

.nf-link {
  display: inline-block;
  font-size: 14px;
  color: var(--secondary);
  text-decoration: none;
  border: 1px solid var(--secondary);
  border-radius: 4px;
  padding: 12px 28px;
}

.nf-link:hover {
  background: rgba(0, 255, 255, 0.1);
}

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

  .burger {
    display: flex;
  }

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

  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .rail-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .rail-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 20px;
  }

  .rail-nav a {
    border-left: none;
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bento-layout {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 600px) {
  .site-header {
    clip-path: none;
  }

  .header-inner {
    padding-bottom: 16px;
  }

  .hero {
    height: 40vh;
    min-height: 340px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    padding: 0 24px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section-shell {
    padding: 64px 20px;
  }

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

  .two-col-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .decor-rail {
    grid-template-columns: 1fr;
  }

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

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

  .side-figures {
    grid-template-columns: 1fr;
  }

  .side-figures img,
  .decor-rail img {
    max-height: 200px;
  }

  .decor-frame img {
    max-height: 220px;
  }

  .band-strip {
    height: auto;
    padding: 40px 0;
  }

  .stat-row {
    gap: 32px;
  }

  .offer-logo {
    width: 130px;
    height: 56px;
  }

  .footer-top {
    flex-direction: column;
    gap: 36px;
  }

  .footer-cols {
    gap: 40px;
  }

  .page-strip {
    padding: 48px 0 40px;
  }
}
