@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Montserrat:wght@400;500;600;700&display=swap");
:root {
  --font-sans: "Montserrat", ui-sans-serif, system-ui, sans-serif;
  --font-heading: "Inter", ui-sans-serif, system-ui, sans-serif;
  --color-brand-bg: #000712;
  --color-brand-accent: #3574cf;
  --color-brand-accent-hover: #2b5ea8;
  --color-brand-gray: #1a2235;
  --color-brand-border: rgba(255, 255, 255, 0.1);
  --color-brand-glow: rgba(53, 116, 207, 0.5);
  --color-brand-gold-1: #f9d423;
  --color-brand-gold-2: #ff4e50;
  --transition-base: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-brand-bg);
  color: #ffffff;
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: var(--transition-base);
}

.container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.hidden {
  display: none !important;
}

/* Utilities */
.glow-box {
  box-shadow: 0 0 20px var(--color-brand-glow);
}

.glow-text {
  text-shadow: 0 0 10px var(--color-brand-glow);
}

.glass-panel {
  background: rgba(26, 34, 53, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-brand-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.gold-gradient-bg {
  background: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
  background-size: 200% 200%;
  animation: gradientMove 5s ease infinite;
  color: #000;
}

.gold-glow {
  box-shadow: 0 0 20px rgba(191, 149, 63, 0.6);
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
/* Buttons */
.btn {
  padding: 0.5rem 1.5rem;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-outline {
  border: 1px solid var(--color-brand-accent);
  color: var(--color-brand-accent);
}

.btn-outline:hover {
  background-color: var(--color-brand-accent);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(53, 116, 207, 0.8);
}

.btn-gold {
  background: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
  background-size: 200% 200%;
  animation: gradientMove 5s ease infinite;
  color: #000;
  font-weight: 700;
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-gold:hover {
  transform: scale(1.05);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.25rem;
}

.w-full {
  width: 100%;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: var(--transition-base);
  padding: 1.5rem 0;
}

.navbar.scrolled {
  background: rgba(26, 34, 53, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-brand-border);
  padding: 1rem 0;
}

.navbar.hidden-nav {
  transform: translateY(-100%);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 250px;
  height: auto;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.logo-icon a img {
  max-width: 250px;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #d1d5db;
}

.nav-links a:hover {
  color: #ffffff;
}

.mobile-menu-toggle {
  color: #ffffff;
  padding: 0.5rem;
}

.mobile-menu {
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(53, 116, 207, 0.3);
}

.mobile-menu-content a {
  color: #d1d5db;
  font-weight: 500;
}

.mobile-menu-content a:hover {
  color: #ffffff;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.2;
  background-image: radial-gradient(circle at 50% 50%, rgba(53, 116, 207, 0.2) 0%, transparent 50%), url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233574cf' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 100% 100%, 60px 60px;
}

.hero-glow-1 {
  position: absolute;
  top: 25%;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background-color: rgba(53, 116, 207, 0.2);
  border-radius: 9999px;
  filter: blur(100px);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: 25%;
  right: 25%;
  width: 24rem;
  height: 24rem;
  background-color: rgba(30, 58, 138, 0.2);
  border-radius: 9999px;
  filter: blur(100px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 56rem;
}

.hero-subtitle {
  color: var(--color-brand-accent);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.05em;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}
.hero-description {
  font-size: 1.125rem;
  color: #9ca3af;
  margin-bottom: 2.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.625;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}
.hero-highlight {
  color: #ffffff;
  font-weight: 500;
  margin-top: 0.5rem;
  display: block;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }
}
.trust-badges {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-label {
  font-size: 0.75rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.badge-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: var(--transition-base);
}

@media (min-width: 768px) {
  .badge-list {
    gap: 3rem;
  }
}
.badge-list:hover {
  opacity: 1;
  filter: grayscale(0);
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.badge-circle {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background-color: var(--color-brand-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-brand-border);
  font-weight: 700;
  font-size: 0.75rem;
}

.badge-text {
  font-size: 0.875rem;
  font-weight: 500;
  display: none;
}

@media (min-width: 640px) {
  .badge-text {
    display: block;
  }
}
/* The Network Section */
.the-network {
  padding: 6rem 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #081221;
  overflow: hidden;
}

.network-glow {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) translateX(-25%);
  width: 50rem;
  height: 50rem;
  background-color: rgba(53, 116, 207, 0.1);
  border-radius: 9999px;
  filter: blur(150px);
  pointer-events: none;
  z-index: 0;
}

.network-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .network-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
.network-visual {
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .network-visual {
    grid-column: span 5/span 5;
  }
}
.visual-container {
  position: relative;
  width: 16rem;
  height: 16rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-glow {
  position: absolute;
  inset: 0;
  background-color: rgba(53, 116, 207, 0.2);
  border-radius: 9999px;
  filter: blur(50px);
}

.network-icon {
  color: var(--color-brand-accent);
  filter: drop-shadow(0 0 15px rgba(53, 116, 207, 0.8));
}

.node {
  position: absolute;
  border-radius: 9999px;
}

.node-1 {
  top: 0;
  left: 50%;
  width: 0.75rem;
  height: 0.75rem;
  background-color: #ffffff;
  box-shadow: 0 0 10px #ffffff;
}

.node-2 {
  bottom: 25%;
  right: 0;
  width: 1rem;
  height: 1rem;
  background-color: var(--color-brand-accent);
  box-shadow: 0 0 15px var(--color-brand-accent);
}

.node-3 {
  bottom: 25%;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #60a5fa;
  box-shadow: 0 0 10px #60a5fa;
}

.network-info {
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .network-info {
    grid-column: span 7/span 7;
  }
}
.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}
.section-title.dark {
  color: #111827;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #9ca3af;
  margin-bottom: 2.5rem;
}

.section-subtitle.dark {
  color: #4b5563;
}

.strengths-card {
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 10px;
}

.card-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-brand-accent);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.strengths-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .strengths-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
.strength-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.strength-icon {
  color: var(--color-brand-accent);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.strength-item span {
  color: #d1d5db;
}

.quote {
  font-size: 1.125rem;
  font-weight: 500;
  color: #ffffff;
  border-left: 4px solid var(--color-brand-accent);
  padding-left: 1rem;
}

.quote.dark {
  color: #111827;
}

/* Commission Section */
.commission {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.commission-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 62.5rem;
  height: 37.5rem;
  background-color: rgba(53, 116, 207, 0.05);
  border-radius: 9999px;
  filter: blur(150px);
  pointer-events: none;
  z-index: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.commission-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .commission-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.card {
  padding: 2rem;
  border-radius: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.card.featured {
  border-color: var(--color-brand-accent);
  box-shadow: 0 0 30px rgba(53, 116, 207, 0.15);
}

.card .badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-brand-accent);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.card-icon-container {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background-color: rgba(26, 34, 53, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-brand-border);
  margin-bottom: 1.5rem;
}

.card-icon {
  color: var(--color-brand-accent);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card-subtitle {
  color: var(--color-brand-accent);
  font-weight: 500;
  margin-bottom: 2rem;
  height: 3rem;
}

.card-features {
  list-style: none;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #d1d5db;
  font-size: 0.875rem;
  line-height: 1.25;
}

.card-features li::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background-color: var(--color-brand-accent);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.commission-footer {
  text-align: center;
}

.info-tag {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  background-color: rgba(26, 34, 53, 0.5);
  border: 1px solid var(--color-brand-border);
  color: #d1d5db;
  font-weight: 500;
}

/* Benefits Section */
.benefits {
  padding: 6rem 0;
  position: relative;
  border-top: 1px solid #e5e7eb;
  background-color: #ffffff;
  overflow: hidden;
}

.benefits-glow {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(25%, 25%);
  width: 37.5rem;
  height: 37.5rem;
  background-color: rgba(53, 116, 207, 0.1);
  border-radius: 9999px;
  filter: blur(150px);
  pointer-events: none;
  z-index: 0;
}

.benefits-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.benefits-visual {
  order: 2;
  position: relative;
}

@media (min-width: 1024px) {
  .benefits-visual {
    order: 1;
  }
}
.visual-outer {
  position: relative;
}

.visual-outer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(53, 116, 207, 0.1);
  border-radius: 10px;
  filter: blur(30px);
}

.visual-inner {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 10px;
  padding: 0.5rem;
  position: relative;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.dashboard-mockup {
  background-color: #f9fafb;
  border-radius: 0.5rem;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
}

.dot.red {
  background-color: #f87171;
}

.dot.yellow {
  background-color: #fbbf24;
}

.dot.green {
  background-color: #4ade80;
}

.header-line {
  height: 1rem;
  width: 6rem;
  background-color: #e5e7eb;
  border-radius: 0.25rem;
}

.mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-box {
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.stat-label {
  height: 0.75rem;
  width: 3rem;
  background-color: #d1d5db;
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
}

.stat-value {
  height: 1.5rem;
  width: 5rem;
  background-color: #1f2937;
  border-radius: 0.25rem;
}

.mockup-chart {
  height: 12rem;
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(to top, rgba(53, 116, 207, 0.2), var(--color-brand-accent));
  border-top-left-radius: 0.125rem;
  border-top-right-radius: 0.125rem;
}

.benefits-info {
  order: 1;
}

@media (min-width: 1024px) {
  .benefits-info {
    order: 2;
  }
}
.benefits-list {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .benefits-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.benefit-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition-base);
}

.benefit-card:hover {
  border-color: rgba(53, 116, 207, 0.5);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.benefit-icon {
  color: var(--color-brand-accent);
}

.benefit-card p {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1f2937;
}

/* Marketing Section */
.marketing {
  padding: 6rem 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #081221;
  overflow: hidden;
}

.marketing-glow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) translate(25%, 0);
  width: 50rem;
  height: 50rem;
  background-color: rgba(53, 116, 207, 0.1);
  border-radius: 9999px;
  filter: blur(150px);
  pointer-events: none;
  z-index: 0;
}

.marketing-tags {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
}

.tag {
  padding: 1rem 1.5rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tag-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: var(--color-brand-accent);
  flex-shrink: 0;
}

.tag span {
  font-size: 1rem;
  font-weight: 500;
  color: #e5e7eb;
}

@media (min-width: 768px) {
  .tag span {
    font-size: 1.125rem;
  }
}
.marketing-footer {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.marketing-footer p {
  font-size: 1.25rem;
  font-weight: 500;
  color: #d1d5db;
}

/* Player Value Section */
.player-value {
  padding: 6rem 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(0, 7, 18, 0.5);
  overflow: hidden;
}

.player-glow {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) translate(-25%, 0);
  width: 37.5rem;
  height: 37.5rem;
  background-color: rgba(53, 116, 207, 0.05);
  border-radius: 9999px;
  filter: blur(150px);
  pointer-events: none;
  z-index: 0;
}

.strategy-card-outer {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.strategy-card {
  padding: 2rem;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .strategy-card {
    padding: 3rem;
  }
}
.card-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background-color: rgba(53, 116, 207, 0.1);
  border-radius: 9999px;
  filter: blur(60px);
}

.strategy-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .strategy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.strategy-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.strategy-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.item-number {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background-color: var(--color-brand-gray);
  border: 1px solid var(--color-brand-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-accent);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.strategy-item span {
  font-size: 1.125rem;
  color: #e5e7eb;
}

.strategy-summary {
  background-color: rgba(0, 7, 18, 0.8);
  border: 1px solid var(--color-brand-border);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.summary-icon {
  color: var(--color-brand-accent);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 15px rgba(53, 116, 207, 0.5));
}

.summary-text {
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1rem;
}

.summary-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-label {
  color: #9ca3af;
  font-weight: 500;
}

.footer-highlight {
  color: var(--color-brand-accent);
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

/* Who We Work With Section */
.who-we-work-with {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background-color: #f9fafb;
}

.work-glow {
  position: absolute;
  top: 50%;
  right: 25%;
  transform: translateY(-50%);
  width: 50rem;
  height: 50rem;
  background-color: rgba(53, 116, 207, 0.1);
  border-radius: 9999px;
  filter: blur(150px);
  pointer-events: none;
  z-index: 0;
}

.work-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 768px) {
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.work-info {
  position: relative;
  z-index: 10;
}

.work-intro {
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 2rem;
}

.work-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.work-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.check-icon {
  color: var(--color-brand-accent);
}

.work-list li span {
  font-size: 1.125rem;
  color: #1f2937;
}

.work-visual {
  position: relative;
  height: 100%;
  min-height: 25rem;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.visual-card .card-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://picsum.photos/seed/tech/800/600");
  opacity: 0.05;
  background-size: cover;
  background-position: center;
  mix-blend-mode: luminosity;
}

.visual-card .card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, #f9fafb, transparent, rgba(53, 116, 207, 0.05));
}

.card-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
}

.gem-icon-container {
  width: 5rem;
  height: 5rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 9999px;
  background-color: #ffffff;
  border: 1px solid var(--color-brand-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(53, 116, 207, 0.15);
}

.gem-icon {
  color: var(--color-brand-accent);
}

.exclusive-label {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Payouts Section */
.payouts {
  padding: 4rem 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(26, 34, 53, 0.2);
}

.payouts-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .payouts-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.payouts-header {
  flex: 1;
}

@media (min-width: 768px) {
  .payouts-header {
    max-width: 33.333333%;
  }
}
.payouts-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.payouts-subtitle {
  color: var(--color-brand-accent);
  font-weight: 500;
}

.payouts-grid {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .payouts-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.payout-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.payout-icon {
  color: #9ca3af;
}

.payout-item span {
  font-size: 0.875rem;
  color: #d1d5db;
  font-weight: 500;
}

/* Final CTA Section */
.final-cta {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-color: rgba(53, 116, 207, 0.05);
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50rem;
  height: 50rem;
  background-color: rgba(53, 116, 207, 0.1);
  border-radius: 9999px;
  filter: blur(120px);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 56rem;
}

.cta-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 2rem;
  letter-spacing: -0.05em;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 4.5rem;
  }
}
.cta-description {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 3rem;
  line-height: 1.625;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-highlight {
  color: #ffffff;
  font-weight: 500;
  margin-top: 1rem;
  display: block;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta-note {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

/* Footer */
.footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #00040a;
}

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

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-logo {
  max-width: 300px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-logo img {
  max-width: 300px;
}

.footer-icon {
  color: var(--color-brand-accent);
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.025em;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  color: #9ca3af;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: var(--color-brand-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
}

.social-link:hover {
  color: #ffffff;
  background-color: var(--color-brand-accent);
}

/* Mobile Utilities */
.desktop-only {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-only {
    display: flex;
  }
  .mobile-only {
    display: none;
  }
}
/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-brand-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--color-brand-gray);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-brand-accent);
}