:root {
  --bg: #0F0F0F;
  --surface: #1A1A1A;
  --text: #FFFFFF;
  --muted: #9CA3AF;
  --primary: #E5E7EB;
  --secondary: #6B7280;
  --accent: #EF4444;
  --border: rgba(255, 255, 255, 0.16);
  --nav-bg: #0F0F0F;
  --max-w: 1200px;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 15px;
}

main {
  flex: 1;
}

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

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

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

.disclosure-banner {
  width: 100%;
  margin: 0;
  padding: 10px 16px;
  text-align: center;
  font-size: 11px;
  line-height: 1.5;
  color: #FFFFFF;
  background: linear-gradient(90deg, #0a0a0a 0%, #2a2d31 100%);
}

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

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

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

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

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

.nav-desktop a {
  border-radius: 999px;
  padding: 6px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--primary);
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s ease;
}

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

.burger-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  cursor: pointer;
}

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

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(15, 15, 15, 0.95);
  cursor: pointer;
}

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  padding: 80px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
  background: var(--nav-bg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-drawer a {
  border-radius: 999px;
  padding: 10px 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--primary);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  min-width: 200px;
  transition: background 0.2s ease;
}

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

.drawer-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  padding: 8px;
}

.nav-toggle:checked ~ .nav-overlay {
  display: block;
}

.nav-toggle:checked ~ .nav-drawer {
  opacity: 1;
  visibility: visible;
}

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

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

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

@media (min-width: 900px) {
  .burger-label {
    display: none;
  }

  .nav-desktop {
    display: flex;
  }

  .nav-overlay,
  .nav-drawer {
    display: none;
  }
}

.hero {
  position: relative;
  height: 120px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 24px;
  background: var(--bg);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
}

.hero-blob-a {
  width: 280px;
  height: 280px;
  background: var(--accent);
  top: -120px;
  right: 10%;
}

.hero-blob-b {
  width: 200px;
  height: 200px;
  background: var(--secondary);
  bottom: -80px;
  left: 5%;
}

.hero-headline {
  position: relative;
  z-index: 1;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
  color: var(--text);
  margin-bottom: -0.05em;
}

.hero-subtitle-strip {
  height: 40px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.hero-subtitle-strip p {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

@media (max-width: 768px) {
  .hero {
    height: 80px;
  }

  .hero-subtitle-strip p {
    font-size: 12px;
    white-space: normal;
    line-height: 1.3;
  }
}

.wave-divider {
  width: 100%;
  height: 32px;
  background-repeat: repeat-x;
  background-size: 64px 32px;
}

.wave-divider-top {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 32'%3E%3Cpath fill='%231A1A1A' d='M0 16 Q16 0 32 16 T64 16 V32 H0Z'/%3E%3C/svg%3E");
}

.wave-divider-bottom {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 32'%3E%3Cpath fill='%230F0F0F' d='M0 16 Q16 32 32 16 T64 16 V0 H0Z'/%3E%3C/svg%3E");
}

.offers-section {
  padding: 48px 24px 56px;
  background: var(--surface);
  position: relative;
}

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

.offers-title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text);
  font-weight: 700;
  margin-bottom: 36px;
  letter-spacing: -0.02em;
}

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

.offer-card {
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 2px solid rgba(63, 29, 34, 0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(251, 113, 133, 0.25);
}

.offer-card-header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-logo {
  width: 180px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

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

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

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

.offer-bonus {
  font-size: 1.05rem;
  font-weight: 700;
  color: #3F1D22;
  line-height: 1.35;
  overflow-wrap: break-word;
  word-break: break-word;
}

.offer-terms {
  font-size: 0.7rem;
  color: #9F5F68;
}

.offer-desc {
  font-size: 0.78rem;
  color: #9F5F68;
  line-height: 1.5;
}

.offer-cta {
  display: inline-block;
  text-align: center;
  padding: 12px 20px;
  background: linear-gradient(135deg, #34D399 0%, #10b981 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: auto;
  transition: opacity 0.2s, box-shadow 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.offer-cta:hover {
  opacity: 0.9;
  box-shadow: 0 4px 12px rgba(52, 211, 153, 0.4);
  color: #fff;
}

.info-section {
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
}

#info-1,
#info-3,
#info-5,
#info-7,
#info-9 {
  background: var(--bg);
}

#info-2,
#info-4,
#info-6,
#info-8,
#info-10 {
  background: var(--surface);
}

.info-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  pointer-events: none;
}

.info-blob-1 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  top: -100px;
  right: -100px;
}

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

.info-title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text);
  border-radius: 8px;
}

.info-section p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

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

.info-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
}

.info-panel-accent {
  border-color: rgba(239, 68, 68, 0.3);
  box-shadow: 0 0 40px rgba(239, 68, 68, 0.08);
}

.info-panel-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  margin-bottom: 4px;
}

.info-panel-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}

.layout-centered-card {
  display: flex;
  justify-content: center;
}

.info-card {
  max-width: 720px;
  background: linear-gradient(135deg, rgba(229, 231, 235, 0.06) 0%, rgba(239, 68, 68, 0.04) 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 40px;
  text-align: center;
}

.layout-columns .info-title {
  text-align: center;
  margin-bottom: 28px;
}

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

.info-col {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
}

.info-col-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 8px;
}

.info-col p {
  font-size: 0.88rem;
}

.info-columns-foot {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.layout-banner {
  display: flex;
  gap: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.info-banner-stripe {
  width: 6px;
  flex-shrink: 0;
  background: linear-gradient(180deg, var(--accent) 0%, var(--secondary) 100%);
}

.info-banner-body {
  padding: 32px 36px;
}

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

.info-stagger-block {
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.info-stagger-left {
  background: var(--surface);
  margin-top: 0;
}

.info-stagger-right {
  background: var(--bg);
  margin-top: 40px;
}

.layout-timeline .info-title {
  margin-bottom: 28px;
}

.info-timeline {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
}

.info-timeline li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-left: 2px solid var(--border);
  margin-left: 16px;
  padding-left: 28px;
  position: relative;
}

.timeline-step {
  position: absolute;
  left: -17px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.timeline-text {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.layout-grid-icons .info-title {
  text-align: center;
  margin-bottom: 28px;
}

.info-pay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.info-pay-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}

.info-pay-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(229, 231, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
}

.info-pay-desc {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.layout-quote {
  display: flex;
  justify-content: center;
}

.info-quote {
  max-width: 760px;
  border-left: 4px solid var(--accent);
  padding: 8px 0 8px 32px;
  margin: 0;
}

.info-quote .info-title {
  margin-bottom: 12px;
}

.layout-definition .info-title {
  margin-bottom: 24px;
}

.info-dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px 24px;
}

.info-dl dt {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
}

.info-dl dd {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.layout-zigzag .info-title {
  text-align: center;
  margin-bottom: 32px;
}

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

.info-zigzag-item {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.info-zigzag-item:nth-child(1) {
  background: var(--surface);
  transform: translateY(0);
}

.info-zigzag-item:nth-child(2) {
  background: var(--bg);
  transform: translateY(20px);
}

.info-zigzag-item:nth-child(3) {
  background: var(--surface);
  transform: translateY(0);
}

.info-zigzag-item h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.info-zigzag-item p {
  font-size: 0.88rem;
}

@media (max-width: 768px) {
  .offer-logo {
    width: 160px;
    height: 50px;
  }

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

  .offer-bonus {
    font-size: 0.95rem;
  }

  .layout-split,
  .layout-stagger,
  .info-columns-grid,
  .info-pay-grid,
  .info-zigzag-row {
    grid-template-columns: 1fr;
  }

  .info-stagger-right {
    margin-top: 0;
  }

  .info-zigzag-item:nth-child(2) {
    transform: none;
  }

  .info-dl {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .info-dl dt {
    margin-top: 12px;
  }
}

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

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

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

.footer-logo img {
  height: 36px;
  width: auto;
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

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

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

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.footer-badge img {
  height: 36px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-badge:hover img {
  opacity: 1;
}

.footer-disclosure {
  font-size: 11px;
  color: var(--secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-copy {
  font-size: 11px;
  color: var(--secondary);
}

.subpage-header .header-inner {
  justify-content: flex-start;
}

.page-main {
  padding: 48px 24px 72px;
}

.page-main .wrap {
  max-width: 720px;
  margin: 0 auto;
}

.page-main h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.page-main h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 28px 0 10px;
  color: var(--primary);
}

.page-main h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 18px 0 6px;
  color: var(--text);
}

.page-main p,
.page-main li {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.page-main ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.contact-form-block {
  margin-top: 32px;
}

.form-success-panel {
  display: none;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: center;
}

.form-success-panel p {
  color: var(--text);
  margin: 0 0 8px;
}

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

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

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

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

.contact-form label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  transition: border-color 0.2s;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(229, 231, 235, 0.4);
}

.field-error {
  display: none;
  font-size: 12px;
  color: var(--accent);
}

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

.form-submit {
  align-self: flex-start;
  padding: 12px 28px;
  background: var(--primary);
  color: var(--bg);
  border: none;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.form-submit:hover {
  opacity: 0.9;
}

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

.error-page h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}

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

.error-page a {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--primary);
  font-weight: 500;
  transition: background 0.2s;
}

.error-page a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary);
}
