:root {
  --bg: #1B0F1E;
  --surface: #2A1533;
  --text: #FDF4FF;
  --muted: #F5D0FE;
  --primary: #E879F9;
  --secondary: #22D3EE;
  --accent: #FACC15;
  --border: rgba(253, 244, 255, 0.12);
  --mono: ui-monospace, "SF Mono", "Cascadia Code", "Roboto Mono", Menlo, Consolas, monospace;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --wrap: 1200px;
  --nav-h: 80px;
}

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

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

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1 0 auto;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

img:not(.offer-card__logo) {
  max-width: 100%;
  display: block;
  height: auto;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.mono {
  font-family: var(--mono);
}

.disclosure-bar {
  display: block;
  width: 100%;
  padding: 6px 16px;
  text-align: center;
  font-size: 10px;
  line-height: 1.5;
  color: rgba(245, 208, 254, 0.55);
}

.nav-check {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.site-header {
  position: static;
  background-color: var(--bg);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  border-bottom: 2px solid var(--accent);
}

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

.logo-link img {
  max-height: 36px;
  width: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-desktop a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 16px;
  border-radius: 20px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-desktop a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.burger-label {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.burger-label span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-check:checked ~ .site-header .burger-label span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-check:checked ~ .site-header .burger-label span:nth-child(2) {
  opacity: 0;
}

.nav-check:checked ~ .site-header .burger-label span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100vh;
  background: var(--surface);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 88px 28px 28px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-drawer a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  padding: 12px 16px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

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

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: pointer;
}

.nav-check:checked ~ .nav-drawer {
  transform: translateX(0);
}

.nav-check:checked ~ .drawer-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(250, 204, 21, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--text);
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.offers-section {
  padding: 56px 0;
  background: var(--bg);
}

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

.offers-head h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
}

.offers-head p {
  font-size: 14px;
  color: var(--muted);
  font-family: var(--mono);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  justify-items: center;
}

.offer-card {
  width: 100%;
  max-width: 360px;
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.offer-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(239, 68, 68, 0.15);
}

.offer-card__logo-wrap {
  width: 200px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  flex-shrink: 0;
}

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

.offer-card__name {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
}

.offer-card__bonus-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offer-card__bonus {
  font-size: 0.875rem;
  color: #fbbf24;
  font-weight: 600;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.offer-card__terms {
  font-size: 11px;
  color: #B6C2E2;
}

.offer-card__desc {
  font-size: 12px;
  color: #B6C2E2;
  line-height: 1.5;
  margin: 0;
}

.offer-card__btn {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  border: 1px solid #3B82F6;
  color: #3B82F6;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-top: auto;
  font-family: inherit;
}

.offer-card__btn:hover {
  background: #3B82F6;
  color: #0f172a;
  transform: scale(1.05);
}

.info-section {
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
}

.info-section:nth-child(even) {
  background: var(--surface);
}

.info-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.info-section h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.info-text {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

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

.data-cards {
  display: grid;
  gap: 12px;
}

.data-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.data-card:hover {
  border-color: var(--primary);
  transform: translateX(4px);
}

.data-card strong {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--secondary);
  margin-bottom: 6px;
  letter-spacing: 0.06em;
}

.data-card span {
  font-size: 13px;
  color: var(--muted);
}

.lyt-accent {
  background: linear-gradient(135deg, rgba(232, 121, 249, 0.12) 0%, rgba(34, 211, 238, 0.08) 100%);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: 10px;
  padding: 32px;
}

.lyt-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.stat-block {
  text-align: center;
  padding: 20px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.stat-block:hover {
  transform: translateY(-3px);
}

.stat-block .num {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}

.stat-block .lbl {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lyt-timeline {
  position: relative;
  padding-left: 28px;
}

.lyt-timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
}

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

.timeline-item::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--surface);
}

.lyt-zigzag--flip {
  direction: rtl;
}

.lyt-zigzag--flip > * {
  direction: ltr;
}

.lyt-zigzag {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.zigzag-aside {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}

.zigzag-aside ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zigzag-aside li {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--secondary);
  padding: 8px 12px;
  background: rgba(34, 211, 238, 0.06);
  border-radius: 4px;
  border-left: 2px solid var(--secondary);
}

.lyt-bento {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.bento-main {
  grid-row: span 2;
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.bento-side {
  padding: 20px;
  background: rgba(232, 121, 249, 0.08);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--muted);
}

.bento-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  padding: 3px 8px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 3px;
  margin-bottom: 8px;
}

.lyt-centered {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.badge {
  font-family: var(--mono);
  font-size: 11px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--muted);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.badge:hover {
  border-color: var(--primary);
  color: var(--text);
}

.lyt-cols3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.col-card {
  padding: 22px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.col-card:hover {
  transform: translateY(-4px);
  border-color: var(--secondary);
}

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

.lyt-reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.indicator-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.indicator-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}

.indicator-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 6px;
}

.lyt-responsible {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.responsible-card {
  padding: 24px;
  background: rgba(250, 204, 21, 0.06);
  border: 1px solid rgba(250, 204, 21, 0.25);
  border-radius: 10px;
}

.responsible-card h3 {
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--accent);
}

.responsible-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.responsible-card li {
  font-size: 13px;
  color: var(--muted);
}

.responsible-card a {
  color: var(--secondary);
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
  margin-top: auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.footer-logo img {
  max-height: 32px;
  margin-bottom: 12px;
}

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

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 14px;
  color: var(--muted);
}

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

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 24px 0;
}

.footer-badges img {
  height: 40px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer-badges a:hover img {
  opacity: 1;
}

.footer-au-disclosure {
  font-size: 11px;
  line-height: 1.65;
  color: rgba(245, 208, 254, 0.6);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.footer-copy {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(245, 208, 254, 0.45);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}

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

.cookie-banner p a {
  color: var(--primary);
}

.cookie-accept {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--bg);
  background: var(--accent);
  border-radius: 6px;
  padding: 9px 18px;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  text-decoration: none;
  display: inline-block;
}

.cookie-banner:target {
  display: none;
}

.page-main {
  padding: 48px 0 32px;
}

.legal {
  max-width: 860px;
  margin: 0 auto;
}

.legal h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.legal h2 {
  font-size: 19px;
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--text);
}

.legal h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 18px 0 10px;
  color: var(--muted);
}

.legal p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.legal ul {
  margin: 0 0 16px 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

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

.legal code {
  font-family: var(--mono);
  font-size: 12px;
  background: rgba(232, 121, 249, 0.1);
  padding: 2px 6px;
  border-radius: 3px;
}

.legal strong {
  color: var(--text);
}

.contact-form-wrap {
  max-width: 520px;
  margin-top: 28px;
}

.form-success {
  display: none;
  padding: 24px;
  border: 1px solid var(--accent);
  background: rgba(250, 204, 21, 0.08);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  border-radius: 8px;
}

.form-success:focus {
  outline: none;
}

#form-sent:target {
  display: block;
}

#form-sent:target ~ .contact-form {
  display: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 10px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  border-radius: 6px;
}

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

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

.field-error {
  display: none;
  font-size: 11px;
  color: #f87171;
  font-family: var(--mono);
}

.form-field input:user-invalid:not(:focus) + .field-error {
  display: block;
}

.form-field textarea:user-invalid:not(:focus) + .field-error {
  display: block;
}

.form-submit {
  align-self: flex-start;
  padding: 10px 24px;
  background: var(--primary);
  border: 1px solid var(--primary);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.form-submit:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.03);
}

.error-page {
  text-align: center;
  padding: 80px 24px;
}

.error-page h1 {
  font-family: var(--mono);
  font-size: 72px;
  color: var(--primary);
  margin-bottom: 12px;
}

.error-page p {
  color: var(--muted);
  margin-bottom: 28px;
}

.btn-home {
  display: inline-block;
  padding: 12px 28px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  border-radius: 6px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-home:hover {
  background: var(--accent);
  color: var(--bg);
  transform: scale(1.03);
}

.subpage-header .nav-desktop {
  display: none;
}

@media (max-width: 900px) {
  .lyt-split,
  .lyt-zigzag,
  .lyt-reverse,
  .lyt-responsible,
  .lyt-bento {
    grid-template-columns: 1fr;
  }

  .bento-main {
    grid-row: auto;
  }

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

  .lyt-cols3 {
    grid-template-columns: 1fr;
  }
}

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

  .burger-label {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 32px 20px;
  }

  .offer-card__logo-wrap {
    width: 180px;
    height: 56px;
  }

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