* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at 18% 7%, rgba(24, 169, 184, 0.13) 0%, rgba(24, 169, 184, 0) 30%),
    radial-gradient(circle at 86% 0%, rgba(77, 193, 203, 0.10) 0%, rgba(77, 193, 203, 0) 24%),
    linear-gradient(180deg, #054d55 0%, #06282d 44%, #05171b 100%);
  color: #f0f9fb;
  overflow-x: hidden;
}

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

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(0,0,0,0.10) 100%);
}

.grid-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 100%);
}

main,
.site-header {
  position: relative;
  z-index: 1;
}

/* Header / navbar: matched to the current NAIAQ public site */
.site-header { pointer-events: auto; }

.header-shell {
  border: 1px solid rgba(178, 228, 232, 0.12);
  background: linear-gradient(180deg, rgba(6, 24, 28, 0.82) 0%, rgba(6, 24, 28, 0.72) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 20px;
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.05);
  padding-left: 16px;
  padding-right: 16px;
}

.provider-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 9px 14px;
  color: #f0f9fb;
  background: rgba(24, 169, 184, 0.10);
  border: 1px solid rgba(77, 193, 203, 0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-pill-link {
  font-weight: 700;
  text-decoration: none;
}

.provider-trigger:hover,
.provider-trigger[aria-expanded="true"] {
  background: rgba(24, 169, 184, 0.16);
  border-color: rgba(77, 193, 203, 0.34);
}

.provider-menu {
  z-index: 70;
  border: 1px solid rgba(178, 228, 232, 0.12);
  background: linear-gradient(180deg, rgba(8, 25, 30, 0.96) 0%, rgba(6, 20, 24, 0.96) 100%);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

.menu-title {
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(240, 249, 251, 0.45);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}

.provider-item {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  color: rgba(240, 249, 251, 0.88);
  transition: background 160ms ease, color 160ms ease;
}

.provider-item:hover {
  background: rgba(255,255,255,0.04);
  color: #ffffff;
}

.header-ghost-btn,
.mobile-ghost-btn {
  padding: 10px 16px;
  border-radius: 14px;
  border: 1px solid rgba(178, 228, 232, 0.14);
  background: rgba(240, 249, 251, 0.04);
  color: rgba(240, 249, 251, 0.92);
  font-size: 14px;
  font-weight: 600;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.header-ghost-btn:hover,
.mobile-ghost-btn:hover {
  background: rgba(240, 249, 251, 0.08);
  border-color: rgba(178, 228, 232, 0.22);
}

.header-primary-btn,
.mobile-primary-btn,
.hero-cta-btn.primary {
  border: none;
  background: linear-gradient(180deg, #18a9b8 0%, #0c8a96 100%);
  color: #eafbfd;
  box-shadow: 0 14px 30px rgba(12, 138, 150, 0.28);
}

.header-primary-btn,
.mobile-primary-btn {
  padding: 10px 16px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.header-primary-btn:hover,
.mobile-primary-btn:hover,
.hero-cta-btn.primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 18px 38px rgba(12, 138, 150, 0.32);
}

.burger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  width: 42px;
  border-radius: 14px;
  border: 1px solid rgba(178, 228, 232, 0.14);
  background: rgba(240, 249, 251, 0.04);
  color: rgba(240, 249, 251, 0.92);
  transition: background 180ms ease, border-color 180ms ease;
}

.burger-btn:hover {
  background: rgba(240, 249, 251, 0.08);
  border-color: rgba(178, 228, 232, 0.22);
}

.mobile-shell {
  border: 1px solid rgba(178, 228, 232, 0.12);
  background: rgba(7, 25, 29, 0.72);
  backdrop-filter: blur(16px);
  border-radius: 18px;
  padding: 14px 16px;
}

.mobile-menu-panel {
  border: 1px solid rgba(178, 228, 232, 0.12);
  background: linear-gradient(180deg, rgba(8, 25, 30, 0.96) 0%, rgba(6, 20, 24, 0.96) 100%);
  backdrop-filter: blur(16px);
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  max-height: calc(100dvh - 150px);
  overflow-y: auto;
}

.mobile-link {
  display: block;
  border-radius: 14px;
  padding: 12px;
  color: rgba(240, 249, 251, 0.9);
  transition: background 160ms ease, color 160ms ease;
}

.mobile-link:hover {
  background: rgba(255,255,255,0.04);
  color: #ffffff;
}

.mobile-divider {
  margin: 8px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.mobile-section-label {
  padding: 8px 12px 4px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(240, 249, 251, 0.45);
}

.mobile-ghost-btn,
.mobile-primary-btn {
  display: block;
  text-align: center;
  padding: 13px 16px;
}

/* Page shell */
.hero-shell { padding: 128px 0 44px; }

.hero-panel,
.glass-card,
.cta-panel {
  border: 1px solid rgba(178, 228, 232, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.064) 0%, rgba(255,255,255,0.028) 100%);
  border-radius: 30px;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.fix-hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: 30px;
  overflow: hidden;
  padding: 44px;
}

.fix-hero-panel::before {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 18%, rgba(24, 169, 184, 0.16), transparent 32%),
    radial-gradient(circle at 10% 86%, rgba(99, 217, 199, 0.12), transparent 28%);
}

.hero-content,
.hero-note-card { position: relative; z-index: 1; }

.eyebrow,
.section-kicker {
  color: #4dc1cb;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  margin: 0;
  max-width: 900px;
  color: #f0f9fb;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 860;
}

.hero-subtitle {
  margin: 18px 0 0;
  color: #b2e4e8;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 820;
}

.hero-copy,
.section-lead,
.soft-copy-card p,
.note-panel p {
  max-width: 730px;
  color: rgba(240, 249, 251, 0.78);
  font-size: 17px;
  line-height: 1.78;
}

.hero-copy { margin: 18px 0 0; }
.muted-copy { color: rgba(240, 249, 251, 0.68); }

.hero-actions,
.provider-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 850;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.hero-cta-btn.secondary,
.hero-cta-btn.tertiary {
  border: 1px solid rgba(178, 228, 232, 0.14);
  background: rgba(240, 249, 251, 0.04);
  color: rgba(240, 249, 251, 0.92);
}

.hero-cta-btn.tertiary { background: rgba(255,255,255,0.025); }

.hero-cta-btn.secondary:hover,
.hero-cta-btn.tertiary:hover {
  transform: translateY(-1px);
  background: rgba(240, 249, 251, 0.08);
  border-color: rgba(178, 228, 232, 0.22);
}

.hero-note-card {
  border: 1px solid rgba(178, 228, 232, 0.14);
  background: linear-gradient(180deg, rgba(4, 18, 22, 0.62), rgba(4, 18, 22, 0.42));
  border-radius: 28px;
  padding: 28px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.note-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid rgba(99, 217, 199, 0.20);
  background: rgba(99, 217, 199, 0.08);
  color: rgba(240, 249, 251, 0.84);
  font-size: 13px;
  font-weight: 750;
  margin-bottom: 22px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #63d9c7;
  box-shadow: 0 0 0 6px rgba(99, 217, 199, 0.10);
}

.hero-note-card h2,
.help-card h3,
.step-card h3,
.message-checklist h3,
.social-card h3 {
  margin: 0;
  color: #f0f9fb;
  font-size: 21px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 850;
}

.hero-note-card p,
.help-card li,
.step-card p,
.social-card p,
.message-checklist li {
  color: rgba(240, 249, 251, 0.72);
  line-height: 1.68;
  font-size: 14px;
}

.hero-note-card p { margin: 12px 0 0; }

.hero-note-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.hero-note-list span {
  border-radius: 999px;
  padding: 7px 10px;
  border: 1px solid rgba(178, 228, 232, 0.12);
  background: rgba(240, 249, 251, 0.045);
  color: rgba(240, 249, 251, 0.70);
  font-size: 12px;
  font-weight: 700;
}

.section-wrap {
  position: relative;
  z-index: 1;
  padding: 56px 0;
}

.compact-section { padding-top: 36px; }

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: start;
}

.section-heading {
  margin: 0;
  color: #f0f9fb;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 850;
}

.section-lead { margin: 16px 0 0; }
.glass-card,
.cta-panel { padding: 28px; }
.soft-copy-card p { margin: 0; }
.soft-copy-card p + p { margin-top: 16px; }

.section-head-center {
  max-width: 820px;
  margin: 0 auto 24px;
  text-align: center;
}

.help-grid,
.social-grid,
.steps-grid {
  display: grid;
  gap: 16px;
}

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

.help-card {
  position: relative;
  overflow: hidden;
}

.help-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -30% auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(24, 169, 184, 0.10);
  filter: blur(10px);
  pointer-events: none;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 900;
}

.card-icon.good {
  background: linear-gradient(180deg, #63d9c7 0%, #18a9b8 100%);
  color: #04181c;
}

.card-icon.careful {
  border: 1px solid rgba(178, 228, 232, 0.18);
  background: rgba(255,255,255,0.05);
  color: #b2e4e8;
}

.tick-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.tick-list li { position: relative; padding-left: 24px; }

.tick-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #63d9c7;
  box-shadow: 0 0 0 5px rgba(99, 217, 199, 0.08);
}

.muted-list li::before {
  background: rgba(178, 228, 232, 0.72);
  box-shadow: 0 0 0 5px rgba(178, 228, 232, 0.06);
}

.dm-panel {
  border: 1px solid rgba(178, 228, 232, 0.12);
  background: rgba(7, 25, 29, 0.52);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.18);
}

.dm-intro {
  max-width: 780px;
  margin-bottom: 24px;
}

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

.social-card {
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(178, 228, 232, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.068), rgba(255,255,255,0.032));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-card:hover {
  transform: translateY(-3px);
  border-color: rgba(99, 217, 199, 0.32);
  background: linear-gradient(180deg, rgba(255,255,255,0.095), rgba(255,255,255,0.045));
}

.social-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.56;
}

.facebook-card .social-glow { background: rgba(24, 119, 242, 0.22); }
.instagram-card .social-glow { background: radial-gradient(circle, rgba(255, 122, 0, 0.22), rgba(193, 53, 132, 0.16), transparent 70%); }
.tiktok-card .social-glow { background: radial-gradient(circle, rgba(77, 193, 203, 0.22), rgba(255, 45, 85, 0.12), transparent 70%); }

.social-avatar {
  position: relative;
  z-index: 1;
  width: 66px;
  height: 66px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 950;
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(0,0,0,0.26);
}

.fb-avatar { background: linear-gradient(180deg, #2374e1 0%, #1558b0 100%); }
.ig-avatar { background: radial-gradient(circle at 28% 110%, #feda75 0%, #fa7e1e 30%, #d62976 56%, #962fbf 78%, #4f5bd5 100%); }
.tk-avatar { background: linear-gradient(135deg, #111 0%, #06181c 52%, #18a9b8 100%); }
.social-card p { margin: 10px 0 0; }

.social-icon {
  width: 34px;
  height: 34px;
  max-width: 34px;
  max-height: 34px;
  display: block;
  color: #ffffff;
  flex-shrink: 0;
}

.tk-avatar {
  overflow: hidden;
}

.social-arrow {
  position: absolute;
  right: 22px;
  bottom: 20px;
  color: rgba(240, 249, 251, 0.55);
  font-size: 24px;
  transition: transform 180ms ease, color 180ms ease;
}

.social-card:hover .social-arrow { transform: translateX(3px); color: #ffffff; }

.message-checklist {
  display: grid;
  grid-template-columns: minmax(0, 0.50fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 16px;
  background: rgba(255,255,255,0.04);
}

.message-checklist ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.message-checklist li { position: relative; padding-left: 24px; }

.message-checklist li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #63d9c7;
  font-weight: 900;
}

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

.step-card {
  position: relative;
  overflow: hidden;
  min-height: 244px;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 42px;
  right: -22px;
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, rgba(99, 217, 199, 0.6), rgba(24, 169, 184, 0.05));
}

.step-card:last-child::before { display: none; }

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(180deg, #63d9c7 0%, #18a9b8 100%);
  color: #04181c;
  font-size: 13px;
  font-weight: 950;
  margin-bottom: 18px;
}

.step-card p { margin: 12px 0 0; }

.note-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  background: linear-gradient(180deg, rgba(24, 169, 184, 0.10), rgba(255,255,255,0.035));
}

.note-icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(99, 217, 199, 0.22);
  background: rgba(99, 217, 199, 0.08);
  color: #b2e4e8;
  font-size: 32px;
  font-weight: 900;
}

.provider-invite-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 32px;
}

.provider-actions { justify-content: flex-end; margin-top: 0; }

.footer-shell {
  position: relative;
  z-index: 1;
  padding: 0 0 38px;
}

.footer-links-card {
  border: 1px solid rgba(178, 228, 232, 0.12);
  background: rgba(7, 25, 29, 0.52);
  border-radius: 24px;
  padding: 24px;
  color: rgba(240, 249, 251, 0.62);
  backdrop-filter: blur(14px);
}

.footer-brand-copy {
  color: rgba(240, 249, 251, 0.66);
  line-height: 1.75;
  font-size: 14px;
  max-width: 320px;
}

.footer-col-title {
  color: #f0f9fb;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-link-list {
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.footer-link-list a {
  color: rgba(240, 249, 251, 0.68);
  transition: color 160ms ease, transform 160ms ease;
}

.footer-link-list a:hover { color: #ffffff; transform: translateX(3px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 22px;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(240, 249, 251, 0.42);
}

.footer-bottom a { color: rgba(240, 249, 251, 0.62); transition: color 160ms ease; }
.footer-bottom a:hover { color: #ffffff; }

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .fix-hero-panel,
  .split-grid,
  .provider-invite-panel { grid-template-columns: 1fr; }

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

  .provider-actions { justify-content: flex-start; }
}

@media (max-width: 980px) {
  .site-header .header-shell { margin-top: 10px; }
  .hero-shell { padding-top: 112px; }

  .hero-panel,
  .glass-card,
  .cta-panel,
  .dm-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .fix-hero-panel { gap: 22px; }
  .section-wrap { padding: 42px 0; }

  .help-grid,
  .social-grid,
  .steps-grid,
  .message-checklist,
  .message-checklist ul,
  .note-panel { grid-template-columns: 1fr; }

  .section-head-center { text-align: left; margin-left: 0; }
  .step-card::before { display: none; }
}

@media (max-width: 640px) {
  .section-title { font-size: 44px; }
  .hero-subtitle { font-size: 24px; }
  .hero-actions,
  .provider-actions { flex-direction: column; }
  .hero-cta-btn { width: 100%; }
  .hero-note-card { padding: 22px; }
  .social-card { min-height: 210px; }
}

/* Lightweight Tailwind fallback for this standalone page, so the layout still holds even if the CDN is blocked. */
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.z-40 { z-index: 40; }
.z-\[9999\] { z-index: 9999; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-3 { margin-top: 12px; }
.mt-5 { margin-top: 20px; }
.mt-auto { margin-top: auto; }
.pt-6 { padding-top: 24px; }
.py-5 { padding-top: 20px; padding-bottom: 20px; }
.p-2 { padding: 8px; }
.px-4 { padding-left: 16px; padding-right: 16px; }
.max-w-7xl { max-width: 80rem; }
.h-10 { height: 40px; }
.h-4 { height: 16px; }
.h-5 { height: 20px; }
.h-full { height: 100%; }
.h-\[72px\] { height: 72px; }
.w-auto { width: auto; }
.w-4 { width: 16px; }
.w-5 { width: 20px; }
.w-56 { width: 224px; }
.w-64 { width: 256px; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none !important; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.shrink-0 { flex-shrink: 0; }
.min-w-0 { min-width: 0; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-5 { gap: 20px; }
.gap-8 { gap: 32px; }
.flex-nowrap { flex-wrap: nowrap; }
.whitespace-nowrap { white-space: nowrap; }
.overflow-hidden { overflow: hidden; }
.overflow-visible { overflow: visible; }
.object-contain { object-fit: contain; }
.rounded-2xl { border-radius: 16px; }
.text-sm { font-size: 14px; }
.text-xs { font-size: 12px; }
.font-medium { font-weight: 500; }
.space-y-6 > * + * { margin-top: 24px; }
.left-1\/2 { left: 50%; }
.-translate-x-1\/2 { transform: translateX(-50%); }
.bg-\[\#06181c\]\/95 { background: rgba(6, 24, 28, 0.95); }
.text-white\/40 { color: rgba(255,255,255,0.40); }
.text-white\/70 { color: rgba(255,255,255,0.70); }
.text-white\/78 { color: rgba(255,255,255,0.78); }
.backdrop-blur-xl { backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
.transition-transform { transition-property: transform; }
.duration-200 { transition-duration: 200ms; }

@media (min-width: 640px) {
  .sm\:px-6 { padding-left: 24px; padding-right: 24px; }
  .sm\:flex { display: flex; }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\:px-8 { padding-left: 32px; padding-right: 32px; }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-\[1\.2fr_0\.85fr_0\.85fr_0\.75fr_0\.8fr\] {
    grid-template-columns: 1.2fr 0.85fr 0.85fr 0.75fr 0.8fr;
  }
}
