.hero {
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  filter: contrast(1.02);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: 10%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  filter: blur(40px);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 5%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(192, 132, 252, 0.25);
  filter: blur(50px);
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: var(--font-mono);
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.tech-hero-glow {
  box-shadow: inset 0 -1px 0 rgba(192, 132, 252, 0.3);
}

.offers-section {
  padding: 64px 24px;
  position: relative;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, transparent 49%, rgba(139, 92, 246, 0.06) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(139, 92, 246, 0.06) 50%, transparent 51%);
  background-size: 60px 60px;
  opacity: 0.5;
}

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

.offers-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text);
  margin-bottom: 8px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.offers-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
  font-family: var(--font-mono);
}

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

.offer-card {
  background: linear-gradient(145deg, #2a2018, #1a1510);
  border: 1px solid rgba(250, 204, 21, 0.12);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(250, 204, 21, 0.3);
}

.offer-card-logo {
  width: 280px;
  height: 90px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.offer-card-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FAF7F2;
}

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

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

.offer-terms {
  font-size: 11px;
  color: #98C1D9;
}

.offer-cta {
  margin-top: auto;
  display: inline-block;
  padding: 12px 20px;
  background: var(--primary);
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  font-family: var(--font-sans);
  transition: background 0.2s ease;
}

.offer-cta:hover {
  background: var(--accent);
  color: #fff;
}

.info-section {
  padding: 64px 24px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

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

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

.info-section h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  margin-bottom: 16px;
  color: var(--text);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

.cyber-circuit-bg {
  position: relative;
}

.cyber-circuit-bg::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  opacity: 0.5;
  pointer-events: none;
}

.neon-glow-panel {
  box-shadow: 0 0 0 1px rgba(192, 132, 252, 0.2), 0 0 20px rgba(139, 92, 246, 0.1);
}

.high-contrast-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  font-family: var(--font-mono);
}

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

.info-1-aside {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(192, 132, 252, 0.1), 0 0 16px rgba(139, 92, 246, 0.08);
}

.info-1-aside ul {
  list-style: none;
  padding: 0;
}

.info-1-aside li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

.info-1-aside li:last-child {
  border-bottom: none;
}

.info-2-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-2-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.info-2-chip {
  padding: 10px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-mono);
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.1);
}

.info-2-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

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

.info-3-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 4px;
  border-top: 3px solid var(--accent);
}

.info-3-card h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-family: var(--font-mono);
  text-transform: uppercase;
}

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

.info-4-timeline {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-4-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}

.info-4-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--primary);
  min-width: 24px;
}

.info-5-layout {
  max-width: 720px;
}

.info-5-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 14px;
}

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

.info-5-table th {
  background: var(--bg);
  color: var(--primary);
  font-weight: 600;
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 12px;
}

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

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

.info-6-visual {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

.info-6-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 8px,
    rgba(139, 92, 246, 0.05) 8px,
    rgba(139, 92, 246, 0.05) 9px
  );
  animation: cyber-glow 4s ease-in-out infinite;
}

.info-6-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-size: 12px;
  color: var(--primary);
  font-family: var(--font-mono);
  position: relative;
  z-index: 1;
}

.info-6-caption {
  color: var(--muted);
  font-size: 14px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.info-7-layout {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.info-7-hex {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--primary);
  font-weight: 700;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(139, 92, 246, 0.08);
  box-shadow: 0 0 16px rgba(192, 132, 252, 0.25);
}

.info-7-list {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}

.info-7-list li {
  padding: 8px 0 8px 20px;
  position: relative;
  color: var(--muted);
}

.info-7-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.info-8-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.info-8-block {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 24px;
  border-left: 4px solid var(--primary);
}

.info-8-block h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 8px;
  font-family: var(--font-mono);
}

.info-9-layout {
  text-align: center;
}

.info-9-pillars {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.info-9-item {
  width: 110px;
  padding: 20px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.08);
}

.info-9-item strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.info-9-item span {
  font-size: 11px;
  color: var(--muted);
}

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

.info-10-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-10-stack-item {
  padding: 16px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
  position: relative;
}

.info-10-stack-item:not(:last-child)::after {
  content: "↓";
  display: block;
  text-align: center;
  color: var(--primary);
  font-family: var(--font-mono);
  padding: 4px 0;
}

.futuristic-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin-bottom: 20px;
  box-shadow: 0 0 8px rgba(192, 132, 252, 0.5);
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 20px;
  }

  .info-1-layout,
  .info-2-columns,
  .info-3-layout,
  .info-4-layout,
  .info-6-layout,
  .info-7-layout,
  .info-8-layout,
  .info-10-layout {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .info-7-hex {
    margin: 0 auto;
  }

  .offer-card-logo {
    width: 240px;
    height: 77px;
  }
}
