.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
  border-bottom: 2px solid var(--accent);
}

.hero-headline {
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
}

.hero-headline h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--bg);
  line-height: 1.2;
  max-width: 480px;
}

.hero-subtitle {
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  border-left: 2px solid var(--accent);
}

.hero-subtitle p {
  font-family: var(--font-system);
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.7;
}

.offers-section {
  position: relative;
  padding: 64px 24px;
  background-image: url('/images/offers_bg/offers_bg.svg');
  background-size: cover;
  background-position: center;
  background-color: var(--surface);
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.85) 0%, rgba(2, 15, 47, 0.92) 100%);
  pointer-events: none;
}

.offers-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

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

.offers-header h2 {
  font-size: 1.75rem;
  color: var(--text);
  margin-bottom: 8px;
}

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

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

.offer-card {
  background: rgba(2, 15, 47, 0.9);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}

.offer-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.offer-logo-wrap {
  width: 120px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 16px;
  flex-shrink: 0;
}

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

.offer-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

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

.offer-bonus {
  font-family: var(--font-system);
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  word-break: break-word;
  line-height: 1.4;
  display: block;
}

.offer-terms {
  display: block;
  font-family: var(--font-system);
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
  opacity: 0.8;
}

.offer-desc {
  font-family: var(--font-system);
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 16px;
  opacity: 0.85;
}

.offer-cta {
  display: inline-block;
  font-family: var(--font-system);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  background: var(--secondary);
  color: var(--text);
  border-radius: 6px;
  border: none;
  cursor: pointer;
  margin-top: auto;
  transition: background 0.2s;
}

.offer-cta:hover {
  background: var(--primary);
  color: var(--bg);
}

.info-sections {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  overflow-x: hidden;
}

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

.info-block:last-child {
  border-bottom: none;
}

.info-block h2 {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 20px;
}

.info-block p {
  margin-bottom: 14px;
  color: var(--text);
}

.info-cta {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--font-system);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 6px;
  color: var(--primary);
  transition: background 0.2s, color 0.2s;
}

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

.layout-prose {
  max-width: 720px;
}

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

.layout-split img {
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
}

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

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

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

.info-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.layout-list-panel {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
}

.layout-list-panel ul {
  list-style: none;
  margin: 0;
}

.layout-list-panel li {
  padding: 12px 16px;
  border-left: 3px solid var(--accent);
  margin-bottom: 8px;
  background: rgba(2, 15, 47, 0.5);
  font-family: var(--font-system);
  font-size: 14px;
}

.layout-aside {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}

.layout-aside .data-mono {
  display: block;
  margin-bottom: 12px;
}

.layout-timeline {
  position: relative;
  padding-left: 32px;
  margin-top: 20px;
}

.layout-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
}

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

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

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

.layout-stat-band {
  display: flex;
  gap: 24px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.stat-item .data-mono {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 4px;
}

.stat-item span:last-child {
  font-family: var(--font-system);
  font-size: 12px;
  color: var(--muted);
}

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

.pull-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--accent);
  border-left: 4px solid var(--accent);
  padding: 16px 24px;
  background: rgba(34, 211, 238, 0.06);
}

.layout-table-wrap {
  overflow-x: auto;
  margin-top: 20px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-system);
  font-size: 14px;
}

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

.data-table th {
  background: var(--surface);
  color: var(--primary);
  font-weight: 600;
}

.data-table td {
  color: var(--muted);
}

.layout-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: center;
}

.mosaic-img {
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
}

.layout-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
  list-style: none;
}

.layout-checklist li {
  padding: 10px 14px 10px 36px;
  background: var(--surface);
  border-radius: 6px;
  font-family: var(--font-system);
  font-size: 13px;
  position: relative;
}

.layout-checklist li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  color: var(--accent);
  font-weight: 700;
}

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

.compare-col {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.compare-col h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--primary);
}

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

.rail-img {
  max-width: 220px;
  max-height: 320px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.layout-footnote-block {
  background: var(--surface);
  padding: 28px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.layout-footnote-block .papers-footnote {
  margin-top: 20px;
  border: none;
  padding: 0;
}

@media (max-width: 768px) {
  .hero-split {
    grid-template-columns: 1fr;
  }

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

  .offer-logo-wrap {
    width: 120px;
    height: 60px;
  }

  .offer-logo-wrap img {
    object-fit: contain;
    object-position: center;
  }

  .layout-split,
  .layout-list-panel,
  .layout-quote,
  .layout-mosaic,
  .layout-rail,
  .layout-cards,
  .layout-compare,
  .layout-checklist {
    grid-template-columns: 1fr;
  }

  .layout-split img,
  .mosaic-img,
  .rail-img {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 375px) {
  .info-sections {
    padding: 0 16px;
  }

  .layout-split,
  .layout-quote,
  .layout-mosaic,
  .layout-rail {
    overflow: hidden;
  }

  .layout-split img,
  .mosaic-img,
  .rail-img {
    max-width: 100%;
    max-height: 220px;
    object-fit: cover;
  }
}
