@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
  --black: #05060a;
  --gold: #f7c948;
  --gold-soft: rgba(247, 201, 72, 0.75);
  --blue: #111629;
  --royal: #1f283f;
  --white: #f6f7fb;
  --muted: #aab4c6;
  --surface: #0c101b;
  --surface-alt: #141b2c;
  --card-sheen: rgba(255, 255, 255, 0.04);
  --glow: rgba(247, 201, 72, 0.35);
  --gradient-dark: radial-gradient(circle at 20% 20%, rgba(21, 33, 56, 0.6), rgba(5, 6, 10, 0.95));
}

/* ===================================== */
/*       TAMS VIP Announcement Banner     */
/* ===================================== */
.announcement-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-bottom: 1px solid rgba(247, 201, 72, 0.2);
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.announcement-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.65rem 4vw;
}

.announcement-icon {
  font-size: 1.2rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.announcement-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--white);
  text-align: center;
  line-height: 1.4;
}

.announcement-text strong {
  color: var(--gold);
  font-weight: 700;
}

.announcement-text a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
  transition: all 0.2s ease;
}

.announcement-text a:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.announcement-cta {
  background: var(--gold);
  color: #1a1a2e;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(247, 201, 72, 0.3);
}

.announcement-cta:hover {
  background: #ffd966;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(247, 201, 72, 0.4);
}

/* Responsive styles for announcement banner */
@media (max-width: 768px) {
  .announcement-content {
    gap: 0.75rem;
    padding: 0.5rem 3vw;
  }
  
  .announcement-text {
    font-size: 0.85rem;
  }
  
  .announcement-cta {
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
  }
  
  .site-header {
    top: 2.7rem;
  }
}

  .vip-announcement {
    padding: 4rem 4vw 2rem;
  }

  .vip-announcement-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
  }

  .vip-announcement-left {
    display: flex;
    flex-direction: column;
  }

  .vip-highlight-card {
    position: relative;
    border-radius: 24px;
    padding: 2.5rem;
    background: linear-gradient(120deg, rgba(255, 215, 0, 0.95), rgba(255, 239, 128, 0.9));
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    overflow: hidden;
  }

  .vip-highlight-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.4), transparent 45%);
    opacity: 0.8;
  }

  .vip-highlight-frame {
    position: absolute;
    inset: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    pointer-events: none;
  }

  .vip-highlight-card h2,
  .vip-highlight-card p,
  .vip-highlight-card .vip-feature-list,
  .vip-highlight-card a {
    position: relative;
    z-index: 1;
  }

  .vip-highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(145deg, #111, #2b2b2b);
    color: #d4af37;
    padding: 0.6rem 1.2rem;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 8px;
    border: 1px solid #d4af37;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.45);
    margin-bottom: 1.5rem;
  }

  .vip-highlight-card h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: #000;
  }

  .vip-highlight-copy {
    color: #1f1f1f;
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .vip-feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.7rem;
    margin-bottom: 1.5rem;
    color: #1f1f1f;
    font-weight: 600;
  }

  .vip-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

  .vip-intro {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
  }

  .vip-intro h1 {
    margin: 0 0 1.25rem;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
  }

  .vip-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .vip-announcement-right {
    display: flex;
    align-items: stretch;
  }

  .vip-contact-card {
    width: 100%;
    background: linear-gradient(145deg, rgba(13, 18, 31, 0.95), rgba(8, 10, 18, 0.98));
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  }

  .vip-contact-logo img {
    width: 120px;
    height: auto;
    display: block;
    margin-bottom: 1rem;
  }

  .vip-contact-card h2 {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .vip-contact-card h3 {
    margin: 0.3rem 0 1.5rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .vip-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .vip-contact-form label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
  }

  .vip-contact-form input {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.85rem;
    color: var(--white);
  }

  .vip-contact-form .btn.full {
    width: 100%;
  }

  .vip-contact-info {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.5;
  }

  .vip-announcement-right p {
    margin: 0.2rem 0;
  }

@media (max-width: 768px) {
  .vip-highlight-card {
    padding: 2rem;
  }

  .vip-intro {
    margin-top: 1.5rem;
  }

  .vip-announcement-wrapper {
    gap: 2rem;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
  --black: #05060a;
  --gold: #f7c948;
  --gold-soft: rgba(247, 201, 72, 0.75);
  --blue: #111629;
  --royal: #1f283f;
  --white: #f6f7fb;
  --muted: #aab4c6;
  --surface: #0c101b;
  --surface-alt: #141b2c;
  --card-sheen: rgba(255, 255, 255, 0.04);
  --glow: rgba(247, 201, 72, 0.35);
  --gradient-dark: radial-gradient(circle at 20% 20%, rgba(21, 33, 56, 0.6), rgba(5, 6, 10, 0.95));
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Space Grotesk', 'Open Sans', system-ui, -apple-system, sans-serif;
  background: var(--gradient-dark);
  color: var(--white);
  line-height: 1.6;
  scroll-behavior: smooth;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 65% 20%, rgba(247, 201, 72, 0.35), transparent 40%),
    url('assets/img/tams.png') center/cover no-repeat fixed;
  opacity: 0.08;
  z-index: -1;
  pointer-events: none;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: fixed;
  top: 3.2rem;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4vw;
  background: linear-gradient(120deg, rgba(5, 6, 10, 0.92), rgba(20, 28, 44, 0.92));
  backdrop-filter: blur(14px);
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.logo {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

.logo span {
  color: var(--gold);
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.site-nav a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  position: relative;
  padding-bottom: 0.35rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transform: scaleX(0.7);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  color: var(--white);
}

.site-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav a.verify-link {
  background: linear-gradient(120deg, #fdf0c4, var(--gold), #ffb347);
  color: #3a2b00;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 30px var(--glow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-nav a.verify-link::after {
  display: none;
}

.site-nav a.verify-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.site-nav a.verify-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(247, 201, 72, 0.45);
  text-decoration: none;
}

.site-nav a.verify-link:hover::before {
  left: 100%;
}

.verify-icon {
  font-size: 1.1rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
}

main {
  padding-top: 90px;
}

.section {
  padding: 5rem 4vw;
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(5, 6, 10, 0.2));
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.section:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(9, 13, 22, 0.8), rgba(5, 6, 10, 0.95));
}


.vip {
  background: radial-gradient(circle at top right, rgba(247, 201, 72, 0.2), transparent 65%);
}

.vip-card {
  background: linear-gradient(135deg, #1a2033, #0f1421 80%);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.vip-card::after {
  content: '';
  position: absolute;
  inset: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.vip-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(145deg, #111, #2b2b2b);
  color: var(--gold);
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 0.85rem;
  border: 1px solid rgba(245,196,67,0.6);
  margin-bottom: 1.5rem;
}

.vip-body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.vip-copy h2 {
  color: var(--white);
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.vip-copy p {
  color: var(--muted);
}

.vip-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.7rem;
  margin: 1.5rem 0 2rem;
  color: var(--white);
  font-weight: 600;
}

.vip-visual {
  background: linear-gradient(145deg, rgba(20, 26, 43, 0.9), rgba(7, 9, 15, 0.95));
  border-radius: 28px;
  padding: 2rem;
  color: var(--gold);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.vip-visual::before {
  content: '';
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
}

.vip-chip {
  width: 48px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, #d4af37, #fadd6c);
}

.vip-text {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 8px;
  margin: 2rem 0 0.5rem;
}

.vip-meta {
  display: flex;
  justify-content: space-between;
  letter-spacing: 3px;
  font-size: 0.9rem;
}

.vip-pan {
  margin-top: 1.5rem;
  letter-spacing: 8px;
  font-size: 1.1rem;
  opacity: 0.85;
}

.vip-orbit {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid var(--gold);
  border-top-color: transparent;
  border-radius: 50%;
  top: 1.5rem;
  right: 2rem;
  transform: rotate(25deg);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 2.5rem;
}

.eyebrow {
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.9rem;
}

h1, h2, h3 {
  margin-top: 0;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  padding: 6rem 4vw;
  background:
    radial-gradient(circle at top left, rgba(247, 201, 72, 0.15), transparent 55%),
    url('assets/hero-grid.svg') center/cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 28px;
}

.hero .tag {
  color: var(--muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.1;
}

.hero .lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: linear-gradient(130deg, #fff4cf, var(--gold));
  color: #1d1400;
  box-shadow: 0 15px 30px rgba(247, 201, 72, 0.3);
}

.btn.light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn.light:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.btn.btn-video {
  background: linear-gradient(120deg, #24d365, #1ea450);
  color: #061207;
  border: none;
  box-shadow: 0 12px 28px rgba(36, 211, 101, 0.35);
  gap: 0.4rem;
}

.btn.btn-video:hover {
  background: linear-gradient(120deg, #1ea450, #1b8d45);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(30, 164, 80, 0.4);
}

.btn.btn-get-card {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.btn.btn-get-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5);
}

.btn.secondary {
  border: 1px solid rgba(247, 201, 72, 0.5);
  color: var(--white);
}

.btn:hover {
  transform: translateY(-1px);
}

.hero-visual {
  display: flex;
  justify-content: center;
  width: 100%;
}

.infographic-modern {
  background: linear-gradient(145deg, rgba(18, 22, 37, 0.92), rgba(6, 8, 14, 0.95));
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  width: 100%;
  max-width: 100%;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    inset 0 1px 2px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.infographic-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}

.infographic-header-modern {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.live-indicator {
  font-size: 0.75rem;
  color: #4ade80;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: rgba(74, 222, 128, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.infographic-header-modern h3 {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold) 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.infographic-header-modern p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 400px;
  line-height: 1.4;
}

.metrics-dashboard {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.metric-primary {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, rgba(247, 201, 72, 0.15), rgba(15, 21, 34, 0.85));
  border: 1px solid rgba(247, 201, 72, 0.25);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.metric-primary::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(247, 201, 72, 0.5), transparent, rgba(17, 22, 41, 0.8));
  opacity: 0.35;
  z-index: -1;
}

.metric-icon-large {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
}

.metric-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.metric-value {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.metric-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.metric-description {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

.metrics-grid-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.metric-card-modern {
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.metric-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--royal));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.metric-card-modern:hover {
  background: rgba(247, 201, 72, 0.08);
  border-color: rgba(247, 201, 72, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.metric-card-modern:hover::before {
  transform: scaleX(1);
}

.metric-card-modern.highlight {
  background: rgba(247, 201, 72, 0.08);
  border-color: rgba(247, 201, 72, 0.3);
}

.metric-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.metric-card-modern .metric-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.metric-card-modern .metric-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .infographic-modern {
    padding: 2rem 1.5rem;
  }

  .metrics-dashboard {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .metric-primary {
    padding: 1.5rem 1rem;
  }

  .metric-icon-large {
    font-size: 2.5rem;
  }

  .metric-value {
    font-size: 2.5rem;
  }

  .metrics-grid-modern {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .metric-card-modern {
    padding: 1.25rem;
  }
}

.about-grid, .service-grid, .module-grid, .pricing-grid {
  display: grid;
  gap: 1.5rem;
}

.about-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.about-grid article {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  padding: 1.75rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.modules {
  background: radial-gradient(circle at 15% 10%, rgba(247, 201, 72, 0.25), transparent 65%);
}

.module-categories {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.module-category {
  background: linear-gradient(135deg, rgba(13, 18, 31, 0.85), rgba(8, 10, 18, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.category-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
}

.category-badge {
  background: rgba(247, 201, 72, 0.18);
  color: var(--white);
  padding: 0.4rem 1.1rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(247, 201, 72, 0.35);
}

.category-badge.featured {
  background: linear-gradient(135deg, rgba(245, 196, 67, 0.25), rgba(255, 215, 0, 0.15));
  border-color: var(--gold);
}

.module-grid-category {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.module-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.module-card {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  border-radius: 18px;

.module-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(245, 196, 67, 0.25), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.module-card.glow::after {
  opacity: 1;
}
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.module-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.module-card.featured {
  background: linear-gradient(135deg, rgba(245, 196, 67, 0.08), rgba(0, 0, 0, 0.6));
  border-color: rgba(255, 215, 0, 0.2);
}

.module-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.module-status {
  padding: 0.25rem 0.65rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.module-status.live {
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.module-status.beta {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(245, 196, 67, 0.15);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.services .service-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.service-grid div {
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.benefits-horizontal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.benefit-column {
  background: linear-gradient(145deg, rgba(13, 35, 72, 0.4), rgba(0, 0, 0, 0.5));
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.4),
    inset 0 1px 2px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-column::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.benefit-column:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 2px rgba(255, 255, 255, 0.08);
}

.column-header {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(255, 215, 0, 0.2);
  position: relative;
}

.column-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--gold);
}

.column-icon {
  font-size: 3rem;
  line-height: 1;
  filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
}

.column-eyebrow {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  background: rgba(255, 215, 0, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  display: inline-block;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.column-header h3 {
  margin: 0.75rem 0 0.5rem;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.column-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.benefit-stack {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.benefit-row {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--royal));
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.benefit-row:hover {
  transform: translateX(8px);
  border-color: rgba(255, 215, 0, 0.35);
  background: rgba(255, 215, 0, 0.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.benefit-row:hover::before {
  transform: scaleY(1);
}

.row-icon {
  font-size: 1.8rem;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(13, 76, 129, 0.2));
  border: 1px solid rgba(255, 215, 0, 0.25);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.benefit-row h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.3;
}

.benefit-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .benefits-horizontal {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .benefit-column {
    padding: 2rem 1.5rem;
  }

  .column-header {
    flex-direction: column;
    gap: 1rem;
  }

  .column-icon {
    font-size: 2.5rem;
  }

  .column-header h3 {
    font-size: 1.5rem;
  }

  .benefit-stack {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .benefit-row {
    padding: 1rem;
  }

  .row-icon {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }

  .benefit-row h4 {
    font-size: 1rem;
  }

  .benefit-row p {
    font-size: 0.85rem;
  }
}

.video-section {
  background: radial-gradient(circle at center, rgba(15, 76, 129, 0.3), transparent 70%);
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.deployments {
  background: radial-gradient(circle at top left, rgba(15, 76, 129, 0.25), transparent 60%);
}

.deployment-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.deployment-track {
  display: flex;
  gap: 1.5rem;
  overflow: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 1rem 0;
}

.deployment-card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  min-width: clamp(260px, 32vw, 360px);
  scroll-snap-align: start;
}

.deployment-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: saturate(1.1);
  transition: transform 0.4s ease;
}

.deployment-card:hover img {
  transform: scale(1.05);
}

.deployment-card figcaption {
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.carousel-btn {
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.6);
  color: var(--gold);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-btn:hover {
  background: rgba(245,196,67,0.2);
  transform: scale(1.05);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.structure-diagram {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.node {
  padding: 1rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.node.root {
  background: var(--gold);
  color: #000;
}

.node.child {
  border-color: var(--gold);
}

.node.branch {
  border-style: dashed;
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.pricing-card {
  padding: 1.8rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(135deg, rgba(18, 24, 38, 0.9), rgba(9, 11, 17, 0.9));
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.pricing-card .price {
  color: var(--gold);
  font-weight: 700;
}

.pricing-card ul {
  padding-left: 1rem;
}

.testimonials {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  background: linear-gradient(120deg, rgba(247,201,72,0.18), rgba(12,16,27,0.9));
}

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

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.9rem;
}

input, textarea {
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 0.75rem;
  color: var(--white);
}

textarea {
  resize: vertical;
}

.site-footer {
  padding: 2rem 4vw;
  background: linear-gradient(180deg, #08090f, #05060a);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .module-categories {
    gap: 2rem;
  }

  .module-category {
    padding: 1.5rem;
  }

  .category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .module-grid-category {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-nav {
    position: absolute;
    top: 70px;
    right: 4vw;
    flex-direction: column;
    background: rgba(0,0,0,0.9);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    display: none;
  }

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

  .menu-toggle {
    display: flex;
  }

  .card-stack {
    flex-direction: column;
  }
}
