:root {
  --bg: #FAFAFA;
  --surface: #FFFFFF;
  --text: #111827;
  --muted: #6B7280;
  --primary: #111827;
  --secondary: #374151;
  --accent: #EF4444;
  --border: rgba(17, 24, 39, 0.12);
  --carbon: #0a0a0a;
  --nav-bg: #0d0d0d;
  --max-w: 1200px;
  --sans: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "Cascadia Mono", "Segoe UI Mono", Consolas, monospace;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
  overflow-x: hidden;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  font-stretch: condensed;
  letter-spacing: -0.01em;
}

body.nav-open {
  overflow: hidden;
}

main {
  flex: 1 0 auto;
}

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

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

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

.disclosure-bar {
  display: flex;
  width: 100%;
  flex-shrink: 0;
  border-bottom: 0.5px solid var(--border);
}

.disclosure-bar__icon {
  width: 40px;
  flex-shrink: 0;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
}

.disclosure-bar__text {
  flex: 1;
  background: #FEF2F2;
  padding: 8px 16px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--secondary);
  text-align: left;
}

.disclosure-bar__text p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--nav-bg);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header__logo img {
  height: 36px;
  width: auto;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.12s ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  cursor: pointer;
  padding: 8px;
}

.burger-btn span {
  display: block;
  height: 2px;
  background: #fff;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.burger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.burger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 250;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--nav-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 80px 24px;
  transform: translateX(100%);
  transition: transform 0.18s ease;
}

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

.mobile-nav a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  max-width: 280px;
  text-align: center;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(239, 68, 68, 0.03) 2px,
    rgba(239, 68, 68, 0.03) 4px
  );
  pointer-events: none;
  animation: radar-scan 4s linear infinite;
}

@keyframes radar-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

.hero__left {
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
  position: relative;
}

.hero__left::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.04) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255,255,255,0.04) 25%, transparent 25%);
  background-size: 12px 12px;
  opacity: 0.5;
}

.hero__left h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: #fff;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.hero__right {
  background: var(--surface);
  display: flex;
  align-items: center;
  padding: 48px 40px;
  border-left: 2px solid var(--accent);
  position: relative;
}

.hero__right p {
  font-family: var(--mono);
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

.offers-section {
  position: relative;
  padding: 64px 24px;
  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(10, 10, 10, 0.88);
}

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

.offers-header {
  text-align: center;
  margin-bottom: 40px;
}

.offers-header span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.offers-header h2 {
  font-size: 2rem;
  color: #fff;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

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

.offer-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  transition: transform 0.12s ease;
}

.offer-card:hover {
  transform: translateY(-3px);
}

.offer-card-logo {
  width: 200px;
  height: 100px;
  margin: 0 auto;
  padding: 0;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

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

.offer-card-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.offer-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.offer-bonus-wrap {
  margin-bottom: 12px;
}

.offer-bonus {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: break-word;
}

.offer-terms {
  display: block;
  font-size: 10px;
  color: #888;
  margin-top: 4px;
}

.offer-desc {
  font-size: 11px;
  color: #777;
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: #1a1a1a;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  width: 100%;
  font-family: inherit;
  transition: background 0.12s ease;
}

.offer-cta:hover {
  background: #333;
}

.info-section {
  position: relative;
  overflow: hidden;
}

.info-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.5px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}

.info-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 24px;
}

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

.info-section h2 {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.info-section p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.decor-wrap {
  max-width: 500px;
  max-height: 320px;
  overflow: hidden;
  border-radius: 4px;
  border: 0.5px solid var(--border);
  position: relative;
}

.decor-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) contrast(1.15);
  max-width: 100%;
}

.info-1 {
  background: var(--surface);
}

.info-1__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.info-2 {
  background: var(--carbon);
  color: #fff;
}

.info-2 h2,
.info-2 .info-tag {
  color: #fff;
}

.info-2 p {
  color: rgba(255, 255, 255, 0.7);
}

.info-2__band {
  text-align: center;
  max-width: 720px;
}

.info-2__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.info-2__badge {
  font-family: var(--mono);
  font-size: 11px;
  padding: 8px 16px;
  border: 0.5px solid rgba(239, 68, 68, 0.5);
  color: var(--accent);
  border-radius: 2px;
}

.info-3 {
  background: var(--bg);
}

.info-3__columns {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.info-3__aside {
  background: var(--primary);
  color: #fff;
  padding: 24px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.8;
}

.info-4 {
  background: var(--surface);
}

.info-4__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.info-4__step {
  padding: 20px;
  border: 0.5px solid var(--border);
  background: var(--bg);
}

.info-4__step strong {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.info-4__step span {
  font-size: 13px;
  color: var(--muted);
}

.info-5 {
  background: var(--bg);
}

.info-5__split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  align-items: stretch;
  border: 0.5px solid var(--border);
}

.info-5__text {
  padding: 40px;
  background: var(--surface);
}

.info-5__visual {
  background-image: url("/images/decorative/decor_3.webp");
  background-size: cover;
  background-position: center;
  filter: grayscale(40%) contrast(1.15);
  min-height: 200px;
}

.info-6 {
  background: var(--surface);
}

.info-6__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.info-6__card {
  padding: 24px;
  background: var(--bg);
  border-left: 2px solid var(--accent);
}

.info-6__card h3 {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.info-6__card p {
  font-size: 13px;
}

.info-7 {
  background: var(--carbon);
}

.info-7 h2 {
  color: #fff;
}

.info-7 p {
  color: rgba(255, 255, 255, 0.7);
}

.info-7__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.info-7__list {
  list-style: none;
  margin-top: 20px;
}

.info-7__list li {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 0;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
}

.info-8 {
  background: var(--bg);
}

.info-8__quote {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.info-8__mark {
  font-size: 4rem;
  line-height: 1;
  color: var(--accent);
  font-family: Georgia, serif;
  opacity: 0.6;
}

.info-9 {
  background: var(--surface);
}

.info-9__feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
}

.info-9__badge {
  font-family: var(--mono);
  font-size: 10px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 4px;
  border: 0.5px solid var(--accent);
}

.info-10 {
  background: var(--primary);
  color: #fff;
}

.info-10 h2 {
  color: #fff;
}

.info-10 p {
  color: rgba(255, 255, 255, 0.75);
}

.info-10__banner {
  text-align: center;
  max-width: 800px;
}

.info-10__decor {
  margin: 32px auto 0;
  max-width: 400px;
}

.site-footer {
  background: var(--carbon);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 24px 32px;
  border-top: 0.5px solid rgba(239, 68, 68, 0.3);
  flex-shrink: 0;
  margin-top: auto;
}

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

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

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

.footer-brand p {
  font-size: 13px;
  line-height: 1.6;
}

.footer-brand a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
  padding-top: 24px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.1);
}

.footer-badges img {
  height: 40px;
  width: auto;
  filter: grayscale(20%);
}

.footer-disclosure {
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-copy {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-cookie-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  color: var(--accent);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.92);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: var(--surface);
  border: 0.5px solid var(--border);
  max-width: 440px;
  width: 100%;
  padding: 32px;
  text-align: center;
}

.modal-box h2 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.modal-box p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.12s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background: var(--secondary);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  background: var(--surface);
  border-top: 0.5px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.18s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

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

.cookie-inner > p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

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

.cookie-panel {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 0.5px solid var(--border);
}

.cookie-panel.visible {
  display: block;
}

.cookie-panel p {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

.legal-page {
  padding: 48px 24px 80px;
}

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

.legal-inner h1 {
  font-size: 2rem;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.legal-updated {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 32px;
}

.legal-inner h2 {
  font-size: 1.1rem;
  margin: 28px 0 10px;
  text-transform: uppercase;
}

.legal-inner p,
.legal-inner li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-inner ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.contact-form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 0.5px solid var(--border);
  background: var(--surface);
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
}

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

.form-error {
  font-size: 12px;
  color: var(--accent);
  display: none;
  margin-top: 4px;
}

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

.contact-success {
  display: none;
  padding: 24px;
  background: #F0FDF4;
  border: 0.5px solid #86EFAC;
  margin-top: 24px;
}

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

.contact-success p {
  color: #166534;
  font-size: 14px;
  margin: 0;
}

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

.error-page h1 {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 16px;
}

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

.go-redirect {
  background: var(--carbon);
  color: #fff;
  min-height: 100vh;
}

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

.go-ad {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 24px;
}

.go-spinner {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-bottom: 24px;
}

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

.go-page h1 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.go-page > p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

.go-compliance {
  max-width: 480px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

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

@media (min-width: 900px) {
  .site-nav {
    display: flex;
  }

  .burger-btn {
    display: none;
  }

  .nav-overlay {
    display: none !important;
  }

  .mobile-nav {
    display: none;
  }
}

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

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

  .hero__right {
    border-left: none;
    border-top: 2px solid var(--accent);
  }

  .info-1__layout,
  .info-3__columns,
  .info-5__split,
  .info-6__cards,
  .info-7__grid,
  .info-9__feature {
    grid-template-columns: 1fr;
  }

  .info-4__steps {
    grid-template-columns: 1fr;
  }

  .info-5__visual {
    min-height: 180px;
  }

  .info-9__badge {
    writing-mode: horizontal-tb;
    transform: none;
    display: inline-block;
    margin-bottom: 16px;
  }

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

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

@media (max-width: 375px) {
  .info-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .decor-wrap img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: cover;
  }

  .info-5__visual {
    max-width: 100%;
    overflow: hidden;
    min-height: 140px;
    max-height: 200px;
  }

  .info-10__decor {
    max-width: 100%;
    width: 100%;
  }

  .offers-section {
    padding-left: 16px;
    padding-right: 16px;
  }
}
