/* ========================================
   Infinite Agent Labs - Style Sheet
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
  --bg-primary: #0A0A0F;
  --bg-card: #0F0F1A;
  --bg-nav: #0A0A0FCC;
  --purple: #7C3AED;
  --purple-light: #A855F7;
  --cyan: #06B6D4;
  --green: #10B981;
  --red: #EF4444;
  --yellow: #F59E0B;
  --text-white: #FFFFFF;
  --text-gray: #94A3B8;
  --text-light: #CBD5E1;
  --border: #1E1B4B;
  --border-hover: rgba(124, 58, 237, 0.5);
}

/* --- Reset & Base Styles --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-white);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* --- Layout Utilities --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 120px;
}

.section-padding {
  padding: 96px 0;
}

/* --- Typography Utilities --- */
.gradient-text {
  background: linear-gradient(135deg, #A855F7 0%, #7C3AED 40%, #06B6D4 70%, #22D3EE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: filter 0.3s ease;
}

.gradient-text:hover {
  filter: brightness(1.3) drop-shadow(0 0 8px rgba(168, 85, 247, 0.4));
}

.section-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #A855F7;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  text-align: center;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 120px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav-logo-title {
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(90deg, #A855F7, #06B6D4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.nav-logo-divider {
  width: 1px;
  height: 16px;
  background: rgba(148, 163, 184, 0.3);
}

.nav-logo-subtitle {
  font-size: 10px;
  color: #94A3B8;
  letter-spacing: 0.08em;
  line-height: 1;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #94A3B8;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #A855F7, #06B6D4);
  border-radius: 1px;
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 9999px;
  background: linear-gradient(135deg, #A855F7, #06B6D4);
  color: var(--text-white);
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.3);
}

.nav-cta:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.5), 0 0 40px rgba(6, 182, 212, 0.2);
}

/* --- Hamburger Toggle --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-cta-mobile {
  display: none !important;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger span + span {
  margin-top: 5px;
}

/* --- Screen Reader Only Utility --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Card Component --- */
.card {
  background: var(--bg-card);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #1E1B4B;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.card:focus-within {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

/* --- Button Styles --- */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #A855F7, #06B6D4);
  color: var(--text-white);
  border: none;
  border-radius: 9999px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--purple-light);
  outline-offset: 2px;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.btn-secondary:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.btn-secondary:focus-visible {
  outline: 2px solid var(--purple-light);
  outline-offset: 2px;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}

#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 120px;
}

.hero-badge {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--purple);
  background: 
   rgba(15, 15, 26, 0.8);
  border-radius: 9999px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 900px;
}

.hero h1 .gradient-text {
  background-size: 200% 200%;
  animation: gradient-shift 4s ease infinite;
  cursor: default;
}

.hero h1 .gradient-text:hover {
  animation: gradient-shift 1.5s ease infinite;
  filter: brightness(1.4) drop-shadow(0 0 12px rgba(168, 85, 247, 0.6));
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-subtext {
  color: var(--text-gray);
  font-size: 18px;
  font-weight: 400;
  max-width: 640px;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

/* --- Hero Stats Bar --- */
.hero-stats-bar {
  position: relative;
  z-index: 2;
  margin-top: -60px;
  padding-bottom: 48px;
}

.hero-stats-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: rgba(15, 15, 26, 0.8);
  border: 1px solid rgba(30, 27, 75, 0.6);
  border-radius: 20px;
  padding: 32px 48px;
  backdrop-filter: blur(10px);
  text-align: center;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-white);
}

.hero-stat-blue {
  color: #60A5FA;
}

.hero-stat-orange {
  color: #F97316;
}

.hero-stat-yellow {
  color: #FBBF24;
}

.hero-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* --- Vision Section --- */
#vision h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: center;
}

.vision-subtitle {
  font-size: 16px;
  color: var(--text-gray);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon-purple {
  background: rgba(124, 58, 237, 0.2);
}

.card-icon-teal {
  background: rgba(6, 182, 212, 0.2);
}

.card-icon-yellow {
  background: rgba(245, 158, 11, 0.2);
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 12px;
}

.card-body {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* --- Scroll Animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- General Focus Indicator (Req 20.5) --- */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--purple-light);
  outline-offset: 2px;
}

/* --- Ecosystem Section --- */
#ecosystem h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 48px;
  text-align: center;
}

.ecosystem-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ecosystem-featured {
  width: 100%;
  border-top: 2px solid rgba(124, 58, 237, 0.4);
}

.ecosystem-product {
  display: flex;
  flex-direction: column;
  border-top: 2px solid rgba(30, 27, 75, 0.8);
}

.ecosystem-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ecosystem-card {
  position: relative;
}

.ecosystem-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.ecosystem-icon-purple {
  background: rgba(124, 58, 237, 0.2);
  color: #A855F7;
}

.ecosystem-icon-teal {
  background: rgba(6, 182, 212, 0.2);
  color: #06B6D4;
}

.ecosystem-icon-green {
  background: rgba(16, 185, 129, 0.2);
  color: #10B981;
}

.ecosystem-icon-pink {
  background: rgba(236, 72, 153, 0.2);
  color: #EC4899;
}

.ecosystem-icon-amber {
  background: rgba(245, 158, 11, 0.2);
  color: #F59E0B;
}

.ecosystem-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  padding: 4px 12px;
  width: fit-content;
}

.ecosystem-badge-purple {
  color: #C084FC;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.3);
  margin-bottom: 12px;
}

.ecosystem-badge-teal {
  color: #06B6D4;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  margin-top: auto;
}

.ecosystem-badge-green {
  color: #10B981;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  margin-top: auto;
}

.ecosystem-badge-pink {
  color: #EC4899;
  background: rgba(236, 72, 153, 0.1);
  border: 1px solid rgba(236, 72, 153, 0.3);
  margin-top: auto;
}

.ecosystem-badge-amber {
  color: #F59E0B;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  margin-top: auto;
}

.ecosystem-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}

.ecosystem-desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.ecosystem-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ecosystem-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-gray);
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 9999px;
  padding: 4px 12px;
}

/* --- Architecture Section --- */
#architecture h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 48px;
  text-align: center;
}

.architecture-layers {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.architecture-layers::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: #1E1B4B;
  z-index: 0;
}

.arch-layer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.arch-layer-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #A855F7, #06B6D4);
  color: var(--text-white);
  font-size: 13px;
  font-weight: 700;
}

.arch-layer-content {
  flex: 1;
}

.arch-layer-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
  padding-left: 12px;
  border-left: 3px solid;
}

.arch-layer-desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  padding-left: 12px;
}

/* --- Tokenomics Section --- */
#tokenomics h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 48px;
  text-align: center;
}

.tokenomics-badge {
  display: inline-block;
  border: 1px solid #10B981;
  color: #10B981;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 9999px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  text-align: center;
}

#tokenomics .container {
  text-align: center;
}

#tokenomics .tokenomics-content {
  text-align: left;
}

.tokenomics-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.tokenomics-left {
  display: flex;
  flex-direction: column;
}

.tokenomics-divider {
  height: 1px;
  background: #1E1B4B;
}

.tokenomics-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 0;
}

.tokenomics-feature:first-child {
  padding-top: 0;
}

.tokenomics-feature:last-child {
  padding-bottom: 0;
}

.tokenomics-feature-icon {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
}

.tokenomics-feature-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}

.tokenomics-feature-text p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

.tokenomics-right {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 100px;
}

.tokenomics-round-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid #1E1B4B;
  border-radius: 16px;
}

.tokenomics-round-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 24px;
}

.tokenomics-table {
  width: 100%;
  border-collapse: collapse;
}

.tokenomics-table tr + tr {
  border-top: 1px solid #1E1B4B;
}

.tokenomics-table td {
  padding: 14px 0;
  font-size: 14px;
}

.tokenomics-table-label {
  color: var(--text-gray);
  font-weight: 500;
}

.tokenomics-table-value {
  color: var(--text-white);
  font-weight: 600;
  text-align: right;
}

.tokenomics-value-green {
  color: #10B981;
}

.tokenomics-value-red {
  color: #EF4444;
}

.tokenomics-value-gray {
  color: #94A3B8;
}

.tokenomics-guarantee {
  margin-top: 48px;
  padding: 16px 24px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  color: #10B981;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

/* --- Partners Section --- */
#partners h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  text-align: center;
}

.partners-subtitle {
  font-size: 16px;
  color: var(--text-gray);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.partners-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Partner Main Card */
.partners-wrapper-card {
  padding: 40px;
}

.partner-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}

.partner-header-left {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.partner-logo-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-header-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.partner-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #C084FC;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 9999px;
  padding: 4px 12px;
  width: fit-content;
}

.partner-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-white);
  margin-top: 4px;
}

.partner-tagline {
  font-size: 14px;
  color: var(--text-gray);
}

.partner-body p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
}

.btn-partner {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #7C3AED;
  color: #A855F7;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.btn-partner:hover {
  background: rgba(124, 58, 237, 0.1);
  transform: translateY(-1px);
}

.btn-partner:focus-visible {
  outline: 2px solid var(--purple-light);
  outline-offset: 2px;
}

/* Stats inside wrapper */
.partners-stats-inner {
  background: var(--bg-card);
  border: 1px solid #1E1B4B;
  border-radius: 16px;
  padding: 32px 48px;
  margin-bottom: 16px;
}

.partners-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

/* Services inside wrapper */
.partners-services-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

/* Testimonial inside wrapper */
.partners-testimonial-inner {
  background: var(--bg-card);
  border: 1px solid #1E1B4B;
  border-radius: 16px;
  padding: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-white);
}

.stat-value-orange {
  color: #F97316;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Services Grid */
.partners-services-inner .service-card {
  padding: 24px;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.service-icon-circle {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-purple {
  background: rgba(124, 58, 237, 0.2);
  color: #A855F7;
}

.service-icon-red {
  background: rgba(239, 68, 68, 0.2);
  color: #EF4444;
}

.service-icon-yellow {
  background: rgba(245, 158, 11, 0.2);
  color: #F59E0B;
}

.service-icon-cyan {
  background: rgba(6, 182, 212, 0.2);
  color: #06B6D4;
}

.service-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-white);
}

.service-desc {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
  padding-left: 44px;
}

/* Testimonial */
.partners-testimonial-inner .testimonial-quote {
  background: none;
  border-left: none;
  padding: 0;
  border-radius: 0;
}

.testimonial-quote p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-quote p::before {
  content: '\201C\201C';
  font-size: 24px;
  color: var(--purple-light);
  margin-right: 4px;
}

.testimonial-attribution {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #A855F7, #06B6D4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

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

.testimonial-info strong {
  font-size: 14px;
  color: var(--text-white);
  font-weight: 600;
}

.testimonial-info span {
  font-size: 13px;
  color: var(--text-gray);
}

/* Foundation Ticker */
.partners-ticker-section {
  text-align: center;
  margin-top: 24px;
}

.ticker-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.partners-ticker {
  overflow: hidden;
  position: relative;
  padding: 16px 0;
}

.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-item {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --- CTA Section --- */
.cta-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid #1E1B4B;
  border-radius: 16px;
  padding: 48px;
  text-align: center;
}

.cta-card h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 24px;
}

.cta-email {
  display: block;
  font-size: 16px;
  color: #06B6D4;
  text-decoration: none;
  margin-bottom: 24px;
  transition: text-decoration 0.2s ease;
}

.cta-email:hover {
  text-decoration: underline;
}

.cta-btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 600;
}

/* --- Footer --- */
footer {
  background: #080810;
  border-top: 1px solid #1E1B4B;
  padding: 24px 0;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-copy p {
  font-size: 13px;
  color: #8293A6;
}

/* --- Responsive --- */

/* Large desktop */
@media (max-width: 1440px) {
  .container {
    padding: 0 80px;
  }

  .nav-container {
    padding: 0 80px;
  }

  .hero-content {
    padding: 0 80px;
  }
}

/* Tablet / Medium breakpoint */
@media (max-width: 1279px) {
  .container {
    padding: 0 48px;
  }

  .nav-container {
    padding: 0 48px;
  }

  .hero-content {
    padding: 0 48px;
  }

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

  .ecosystem-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tokenomics-content {
    grid-template-columns: 1fr;
  }
}

/* Smaller tablet breakpoint */
@media (max-width: 1023px) {
  .container {
    padding: 0 32px;
  }

  .nav-container {
    padding: 0 32px;
  }

  .hero-content {
    padding: 0 32px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .tokenomics-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-stats-card {
    padding: 28px 32px;
  }
}

/* Mobile breakpoint */
@media (max-width: 767px) {
  .container {
    padding: 0 20px;
  }

  .nav-container {
    padding: 0 20px;
  }

  .hero-content {
    padding: 0 20px;
  }

  .section-padding {
    padding: 48px 0;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: var(--bg-primary);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }

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

  .nav-links a {
    padding: 12px 24px;
    width: 100%;
    text-align: center;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-cta-mobile {
    display: block !important;
    margin: 12px 24px 4px;
    text-align: center;
    border-radius: 9999px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #A855F7, #06B6D4);
    color: var(--text-white);
    font-weight: 600;
    font-size: 14px;
  }

  .hamburger {
    display: flex;
  }

  .nav-logo-subtitle,
  .nav-logo-divider {
    display: none;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero h1 br {
    display: none;
  }

  .hero-subtext {
    font-size: 15px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 16px;
  }

  #vision h2,
  #ecosystem h2,
  #partners h2 {
    font-size: 32px;
  }

  #architecture h2,
  #tokenomics h2 {
    font-size: 28px;
  }

  .vision-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ecosystem-product-grid {
    grid-template-columns: 1fr;
  }

  .architecture-layers::before {
    left: 14px;
    transform: none;
  }

  .tokenomics-badge {
    font-size: 12px;
    padding: 6px 16px;
  }

  .partners-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-stats-inner {
    padding: 24px;
  }

  .partners-services-inner {
    grid-template-columns: 1fr;
  }

  .partner-header {
    flex-direction: column;
    gap: 16px;
  }

  .partners-wrapper-card {
    padding: 24px;
  }

  .service-desc {
    padding-left: 0;
  }

  .footer-container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-stats-card {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
    gap: 16px;
  }

  .hero-stats-bar {
    margin-top: -40px;
  }

  .hero-stat-value {
    font-size: 24px;
  }

  .hero-stat-label {
    font-size: 10px;
  }

  .cta-card {
    padding: 32px 24px;
  }

  .cta-card h2 {
    font-size: 28px;
  }

  .stat-value {
    font-size: 26px;
  }
}
