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

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'SF Pro Text',
    'Segoe UI', sans-serif;
  background: #192e38;
  color: #f7fafc;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(25, 46, 56, 0.95);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 16px 0;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 42px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: radial-gradient(circle at 0% 0%, #38bdf8, #0ea5e9 45%, #0369a1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.45);
}

.logo-mark span {
  font-weight: 800;
  font-size: 18px;
  color: #0b1120;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 12px;
  text-transform: uppercase;
  color: #e5e7eb;
}

.logo-subtitle {
  font-size: 11px;
  color: #9ca3af;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 28px;
}

.nav-link {
  font-size: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #e5e7eb;
  transition: all 0.18s ease;
  border: 1px solid transparent;
}

.nav-link:hover {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.45);
}

.nav-link.primary {
  background: radial-gradient(circle at 0 0, #38bdf8, #0ea5e9 40%, #0369a1);
  color: #011627;
  border-color: rgba(56, 189, 248, 0.3);
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.6);
}

.nav-link.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 35px rgba(56, 189, 248, 0.8);
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 8px;
  background: transparent;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.burger-line {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background: #e5e7eb;
  position: relative;
  pointer-events: none;
}

.burger-line::before,
.burger-line::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background: #e5e7eb;
}

.burger-line::before {
  top: -6px;
}

.burger-line::after {
  top: 6px;
}

.main {
  flex: 1;
}

.hero {
  padding: 40px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(0, 3.3fr);
  gap: 36px;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 10px 4px 4px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
  font-size: 12px;
  margin-bottom: 18px;
}

.hero-kicker-badge {
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(56, 189, 248, 0.16);
  color: #e0f2fe;
}

.hero-title {
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.hero-title span {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 15px;
  color: #d1d5db;
  max-width: 540px;
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
}

.btn-primary {
  background: #1d9bf0;
  color: #011627;
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: none;
}

.btn-primary:hover {
  transform: none;
  background: #1877f2;
}

.btn-ghost {
  background: #1f2933;
  border-color: rgba(148, 163, 184, 0.7);
  color: #f9fafb;
}

.btn-ghost:hover {
  background: #273545;
  border-color: rgba(248, 250, 252, 0.6);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.header-cta .btn {
  padding: 8px 18px;
  font-size: 13px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12px;
  color: #9ca3af;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #38bdf8;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.35);
}

.hero-card {
  position: relative;
  border-radius: 26px;
  padding: 20px 20px 18px;
  background: #192e38;
  box-shadow: none;
  overflow: hidden;
}

.hero-banner-link {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.hero-banner img {
  border-radius: 20px;
  width: 100%;
  height: auto;
}

.banner-cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 12px 28px;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #f9fafb;
  font-size: 16px;
  font-weight: 500;
  backdrop-filter: blur(6px);
  transition: background 0.18s ease, border-color 0.18s ease;
}

.banner-cta:hover {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(248, 250, 252, 0.8);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.hero-card-title {
  font-size: 14px;
  color: #e5e7eb;
}

.hero-card-badge {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.15);
  color: #e0f2fe;
}

.roulette-wheel {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  background: radial-gradient(circle at 50% 20%, #1f2937, #020617 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.roulette-ring {
  width: 88%;
  height: 88%;
  border-radius: 999px;
  background:
    conic-gradient(
      from 0deg,
      #22c55e 0deg 20deg,
      #ef4444 20deg 40deg,
      #e5e7eb 40deg 60deg,
      #22c55e 60deg 80deg,
      #ef4444 80deg 100deg,
      #e5e7eb 100deg 120deg,
      #22c55e 120deg 140deg,
      #ef4444 140deg 160deg,
      #e5e7eb 160deg 180deg,
      #22c55e 180deg 200deg,
      #ef4444 200deg 220deg,
      #e5e7eb 220deg 240deg,
      #22c55e 240deg 260deg,
      #ef4444 260deg 280deg,
      #e5e7eb 280deg 300deg,
      #22c55e 300deg 320deg,
      #ef4444 320deg 340deg,
      #e5e7eb 340deg 360deg
    );
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.roulette-ring-inner {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 10%, #020617, #020617 60%, #111827);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 0 0 1px rgba(148, 163, 184, 0.2),
    0 0 40px rgba(15, 23, 42, 0.9);
}

.roulette-center {
  width: 44%;
  height: 44%;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 0, #22c55e, #15803d 50%, #052e16);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 10px 30px rgba(16, 185, 129, 0.6),
    inset 0 0 0 2px rgba(34, 197, 94, 0.8);
}

.roulette-center span {
  font-weight: 800;
  font-size: 18px;
  color: #ecfdf5;
}

.roulette-indicator {
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 13px solid #facc15;
  filter: drop-shadow(0 6px 8px rgba(250, 204, 21, 0.4));
}

.hero-card-footer {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: #9ca3af;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pill {
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.pill.green {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.7);
  color: #e0f2fe;
}

.section {
  padding: 40px 0 52px;
}

.section-header {
  margin-bottom: 26px;
}

.section-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
  margin-bottom: 8px;
}

.section-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.section-description {
  font-size: 14px;
  color: #cbd5f5;
  max-width: 540px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  border-radius: 18px;
  padding: 16px 16px 14px;
  background: radial-gradient(circle at 0 0, rgba(30, 64, 175, 0.6), #020617);
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.9);
}

.card-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.card-tagline {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 10px;
}

.card-body {
  font-size: 13px;
  color: #e5e7eb;
  margin-bottom: 12px;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: #9ca3af;
}

.card-link {
  font-size: 12px;
  color: #38bdf8;
}

.text-page {
  padding: 40px 0 52px;
}

.text-layout {
  max-width: 720px;
  margin: 0 auto;
}

.text-layout.align-start {
  margin-left: 0;
  margin-right: auto;
}

.text-layout .hero-actions {
  justify-content: center;
}

.home-text {
  margin-left: 0;
  margin-right: auto;
}

.home-article {
  max-width: 1120px;
  margin: 0 auto;
}

.home-article .hero-actions {
  justify-content: center;
}

.article-roulette-img {
  margin: 28px auto 32px;
  text-align: center;
}

.article-roulette-img__img {
  width: 100%;
  max-width: 860px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

/* Last Winners table */
.last-winners {
  margin-top: 40px;
  margin-bottom: 32px;
}

.last-winners__title {
  font-size: 20px;
  font-weight: 600;
  color: #38bdf8;
  margin-bottom: 16px;
  text-align: center;
}

.last-winners__table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  background: rgba(45, 67, 86, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.last-winners__table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 14px;
}

.last-winners__table th {
  text-align: left;
  padding: 14px 16px;
  font-weight: 600;
  color: #e5e7eb;
  background: rgba(55, 75, 95, 0.9);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.last-winners__table th:first-child {
  border-radius: 12px 0 0 0;
}

.last-winners__table th:last-child {
  border-radius: 0 12px 0 0;
}

.last-winners__table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  color: #f1f5f9;
}

.last-winners__table tbody tr:nth-child(even) {
  background: rgba(55, 75, 95, 0.35);
}

.last-winners__table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 12px;
}

.last-winners__table tbody tr:last-child td:last-child {
  border-radius: 0 0 12px 0;
}

.last-winners__table tbody tr:last-child td {
  border-bottom: none;
}

.last-winners__username {
  color: #38bdf8 !important;
}

.last-winners__mult {
  color: #fbbf24 !important;
}

.last-winners__payout {
  color: #34d399 !important;
  font-weight: 500;
}

.last-winners__tbody {
  transition: none;
}

.last-winners__tbody.is-fading {
  opacity: 1;
}

.last-winners__row--new {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.last-winners__row--new.last-winners__row--visible {
  opacity: 1;
}

.last-winners__row--out {
  opacity: 0;
  transition: opacity 0.35s ease;
}

.promo-popup {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 16px;
  z-index: 40;
  display: none;
  padding: 0 16px;
}

.promo-popup--visible {
  display: block;
}

.promo-popup__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 12px 36px 12px 20px;
  border-radius: 14px;
  border: 1px solid rgba(56, 189, 248, 0.4);
  background: #223843;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #e5e7eb;
  position: relative;
}

.promo-popup__top {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  min-width: 0;
}

.promo-popup__brand {
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  color: #38bdf8;
}

.promo-popup__title {
  font-size: 14px;
  font-weight: 600;
  color: #f1f5f9;
}

.promo-popup__text {
  font-size: 12px;
  color: #94a3b8;
  width: auto;
}

.promo-popup__center {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.promo-popup__code-label {
  display: none;
}

.promo-popup__code {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid rgba(56, 189, 248, 0.5);
  background: rgba(25, 46, 56, 0.9);
  color: #38bdf8;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.promo-popup__code:hover {
  background: rgba(30, 58, 72, 0.95);
  border-color: rgba(56, 189, 248, 0.7);
}

.promo-popup__code-copy {
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  background: #1d9bf0;
  color: #0b1120;
}

.promo-popup__code.is-copied .promo-popup__code-copy {
  background: #34d399;
  color: #022c22;
}

.promo-popup__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border-radius: 8px;
  background: #1d9bf0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.promo-popup__cta:hover {
  background: #1877f2;
}

.promo-popup__close {
  position: absolute;
  top: 8px;
  right: 10px;
  left: auto;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: none;
  background: rgba(25, 46, 56, 0.9);
  color: #94a3b8;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: none;
}

.promo-popup__close:hover {
  color: #e5e7eb;
}

@media (max-width: 768px) {
  .promo-popup {
    bottom: 12px;
    padding: 0 10px;
  }

  .promo-popup__inner {
    padding: 14px 36px 14px 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    max-width: 100%;
  }

  .promo-popup__top {
    text-align: center;
  }

  .promo-popup__center {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .promo-popup__close {
    top: 8px;
    right: 8px;
  }

  .promo-popup__code {
    font-size: 14px;
    padding: 8px 14px;
    justify-content: center;
  }
}

.strategy-banner-wrap {
  margin: 0 0 28px;
}

.strategy-banner-img {
  width: 100%;
  max-width: 720px;
  height: auto;
  border-radius: 12px;
  display: block;
}

.text-kicker {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 6px;
}

.text-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
}

.text-subtitle {
  font-size: 16px;
  color: #cbd5f5;
  margin-bottom: 24px;
}

.text-block {
  font-size: 16px;
  color: #e5e7eb;
  margin-bottom: 20px;
}

.text-block strong {
  color: #facc15;
  font-weight: 600;
}

.text-list {
  margin: 0 0 18px 18px;
  padding-left: 6px;
  font-size: 16px;
  color: #e5e7eb;
}

.text-list li {
  margin-bottom: 6px;
}

.text-heading-sm {
  font-size: 20px;
  font-weight: 600;
  margin: 22px 0 10px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.badge {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.9);
}

.badge.green {
  border-color: rgba(56, 189, 248, 0.7);
  background: rgba(37, 99, 235, 0.14);
  color: #dbeafe;
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.strategy-card {
  border-radius: 18px;
  padding: 16px 16px 14px;
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.35), #020617);
  border: 1px solid rgba(56, 189, 248, 0.7);
}

.strategy-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.strategy-tagline {
  font-size: 12px;
  color: #e0f2fe;
  margin-bottom: 8px;
}

.strategy-list {
  font-size: 13px;
  color: #e5e7eb;
  margin-left: 16px;
}

.strategy-list li {
  margin-bottom: 4px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 26px;
}

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

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

.field-label {
  font-size: 13px;
  color: #e5e7eb;
}

.field-input,
.field-textarea {
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
  padding: 9px 11px;
  font-size: 14px;
  color: #f9fafb;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease,
    background-color 0.16s ease;
}

.field-input:focus,
.field-textarea:focus {
  border-color: rgba(56, 189, 248, 0.9);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.7);
  background: rgba(15, 23, 42, 1);
}

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

.form-hint {
  font-size: 12px;
  color: #9ca3af;
}

.aside {
  border-radius: 18px;
  padding: 16px 16px 14px;
  background: radial-gradient(circle at 0 0, rgba(30, 64, 175, 0.7), #020617);
  border: 1px solid rgba(129, 140, 248, 0.7);
  font-size: 13px;
  color: #e5e7eb;
}

.aside-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.aside-list {
  margin-left: 16px;
  margin-top: 6px;
}

.aside-list li {
  margin-bottom: 4px;
}

.footer {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(25, 46, 56, 0.98);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0 16px;
  font-size: 11px;
  color: #9ca3af;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  height: 22px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.footer-link {
  color: #e5e7eb;
}

.footer-legal {
  margin: 6px 0 0;
  max-width: 520px;
}

.footer-legal:first-of-type {
  margin-top: 4px;
}

.age-badge {
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.7);
  font-size: 11px;
  color: #f9fafb;
}

.warning {
  margin-top: 8px;
  font-size: 11px;
  color: #f97316;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    max-width: 520px;
    margin: 0 auto;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .strategy-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 12px 0;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 10px 20px 14px;
    background: rgba(15, 23, 42, 0.98);
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.7);
  }

  .nav-open .nav {
    display: flex;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 9px 10px;
    border-radius: 8px;
  }

  .burger {
    display: inline-flex;
    z-index: 22;
    position: relative;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 28px;
  }

  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

