/* ===== CSS Variables ===== */
:root {
  --primary: #8B1538;
  --primary-light: rgba(139, 21, 56, 0.2);
  --secondary: #22d3ee;
  --secondary-light: rgba(34, 211, 238, 0.2);
  --orange: #f97316;
  --green: #22c55e;
  --green-light: rgba(34, 197, 94, 0.2);
  --yellow: #eab308;
  --yellow-light: rgba(234, 179, 8, 0.2);
  --blue: #3b82f6;
  --blue-light: rgba(59, 130, 246, 0.2);
  --purple: #a855f7;
  
  --background: #1a1625;
  --background-dark: #000000;
  --card: rgba(26, 22, 37, 0.4);
  --card-solid: #1e1a2e;
  
  --text-primary: #f5f5f5;
  --text-secondary: rgba(255, 255, 255, 0.6);
  --text-muted: rgba(255, 255, 255, 0.4);
  
  --border: rgba(255, 255, 255, 0.1);
  --border-light: rgba(255, 255, 255, 0.05);
  
  --radius: 0.75rem;
  --radius-lg: 1.5rem;
  
  --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 15px rgba(139, 21, 56, 0.5);
  
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

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

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

input {
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ===== Utilities ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.text-primary {
  color: var(--primary);
}

.text-white {
  color: var(--text-primary);
}

.text-gradient {
  background: linear-gradient(to right, var(--primary), #ef4444, var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.w-full {
  width: 100%;
}

.text-right {
  text-align: right;
}

.hidden {
  display: none !important;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(to right, var(--primary), #ef4444, var(--orange));
  color: white;
  box-shadow: var(--shadow-glow);
}

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

.btn-ghost {
  color: white;
  background: transparent;
}

.btn-ghost:hover {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
}

.btn-outline {
  color: white;
  background: transparent;
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-white {
  background: white;
  color: black;
}

.btn-white:hover {
  background: #e5e5e5;
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(26, 22, 37, 0.8);
  border-bottom: 1px solid var(--border-light);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

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

.logo-image-wrapper {
  position: relative;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-image {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
  border-radius: 50%;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: white;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.nav-link:hover {
  color: var(--primary);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .header-actions {
    display: flex;
  }
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: white;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* ===== Mobile Menu ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 300px;
  background: var(--card-solid);
  border-left: 1px solid var(--border);
  z-index: 100;
  transform: translateX(100%);
  transition: transform var(--transition);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-content {
  padding: 2rem;
}

.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
}

.mobile-nav-link {
  font-size: 1.125rem;
  font-weight: 500;
  color: white;
  padding: 0.5rem 0;
}

.mobile-nav-link:hover {
  color: var(--primary);
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4), var(--background));
}

.hero-container {
  position: relative;
  z-index: 10;
  padding: 3rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  width: fit-content;
}

.badge-primary {
  background: var(--primary-light);
  border-color: rgba(139, 21, 56, 0.3);
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: white;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 2.75rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 36rem;
  line-height: 1.7;
}

/* ===== Ramp Widget Card ===== */
.ramp-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 28rem;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.ramp-header {
  background: var(--primary-light);
  padding: 1rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ramp-title {
  font-weight: 700;
  color: white;
}

.ramp-badge {
  font-size: 0.75rem;
  color: white;
  background: linear-gradient(to right, var(--primary), var(--orange));
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
}

.ramp-toggle {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
}

.ramp-toggle-btn {
  flex: 1;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.ramp-toggle-btn.active {
  background: var(--green);
  color: white;
  border-color: var(--green);
}

.ramp-toggle-btn.active.sell {
  background: var(--primary);
  border-color: var(--primary);
}

.ramp-toggle-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
}

.ramp-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ramp-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-align: center;
}

.ramp-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.ramp-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.ramp-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ramp-feature-icon.green {
  background: var(--green-light);
  color: var(--green);
}

.ramp-feature-icon.yellow {
  background: var(--yellow-light);
  color: var(--yellow);
}

.ramp-feature-icon.blue {
  background: var(--blue-light);
  color: var(--blue);
}

.ramp-feature span {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 0.5rem;
}

.payment-logo {
  height: 1.5rem;
  opacity: 0.5;
  transition: opacity var(--transition);
}

.payment-logo:hover {
  opacity: 1;
}

/* ===== Hero Mockup ===== */
.hero-mockup {
  display: none;
  position: relative;
  margin-top: 12rem;
}

@media (min-width: 1024px) {
  .hero-mockup {
    display: block;
  }
}

.mockup-glow {
  position: absolute;
  inset: -2.5rem;
  background: var(--primary-light);
  filter: blur(100px);
  border-radius: 50%;
  opacity: 0.5;
}

.mockup-image {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 24rem;
  margin: 0 auto;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5));
  opacity: 0.9;
  -webkit-mask-image: radial-gradient(circle, black 40%, transparent 95%);
  mask-image: radial-gradient(circle, black 40%, transparent 95%);
}

.floating-card {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  animation: float 3s ease-in-out infinite;
}

.floating-card-1 {
  top: 15%;
  right: -1.25rem;
}

.floating-card-2 {
  top: 45%;
  left: -1.25rem;
  animation-delay: 0.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-icon.green {
  background: var(--green-light);
  color: var(--green);
}

.floating-icon.primary {
  background: var(--primary-light);
  color: var(--primary);
}

.floating-percent {
  font-weight: 700;
  font-size: 1.125rem;
}

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

.floating-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.floating-value {
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
}

/* ===== Sections ===== */
.section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.section-dark {
  background: var(--background-dark);
}

.section-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--primary-light), transparent);
}

.section-glow {
  position: absolute;
  width: 20rem;
  height: 20rem;
  background: var(--primary-light);
  border-radius: 50%;
  filter: blur(100px);
}

.section-glow.left {
  left: -10rem;
  top: 10rem;
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

/* ===== Features Grid ===== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-4px);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 1rem;
}

.feature-icon.primary { color: var(--primary); }
.feature-icon.secondary { color: var(--secondary); }
.feature-icon.orange { color: var(--orange); }
.feature-icon.green { color: var(--green); }

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== Steps Grid ===== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(to right, var(--primary), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.step-description {
  color: var(--text-secondary);
}

/* ===== Services Grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--primary-light);
  background: rgba(255, 255, 255, 0.05);
}

.service-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.service-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.service-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ===== Investors Section ===== */
.investor-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.2;
  pointer-events: none;
}

.investor-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.investor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .investor-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

.investor-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
}

@media (min-width: 768px) {
  .investor-title {
    font-size: 2.25rem;
  }
}

.investor-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.investor-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .investor-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.stat-icon {
  margin-bottom: 0.5rem;
}

.stat-icon.primary { color: var(--primary); }
.stat-icon.secondary { color: var(--secondary); }

.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ===== Business Model Card ===== */
.business-model-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

@media (min-width: 768px) {
  .business-model-card {
    padding: 2.5rem;
  }
}

.business-model-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.business-model-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.business-model-item {
  display: flex;
  gap: 1rem;
}

.business-model-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.business-model-icon.primary {
  background: var(--primary-light);
  color: var(--primary);
}

.business-model-icon.secondary {
  background: var(--secondary-light);
  color: var(--secondary);
}

.business-model-icon.orange {
  background: rgba(249, 115, 22, 0.2);
  color: var(--orange);
}

.business-model-item-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.business-model-item-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.investment-status {
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.investment-status-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.investment-status-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.investment-status-value.green {
  color: var(--green);
}

/* ===== Roadmap ===== */
.roadmap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .roadmap-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.roadmap-item {
  position: relative;
  padding-left: 2rem;
}

@media (min-width: 768px) {
  .roadmap-item {
    padding-left: 0;
    padding-top: 2rem;
  }
}

.roadmap-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--text-secondary);
  border: 3px solid var(--background-dark);
}

@media (min-width: 768px) {
  .roadmap-marker {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .roadmap-item::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border);
  }
  
  .roadmap-item:first-child::before {
    left: 50%;
  }
  
  .roadmap-item:last-child::before {
    right: 50%;
  }
}

.roadmap-item.completed .roadmap-marker {
  background: var(--green);
}

.roadmap-item.active .roadmap-marker {
  background: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light);
}

.roadmap-content {
  padding-top: 0.5rem;
}

@media (min-width: 768px) {
  .roadmap-content {
    text-align: center;
  }
}

.roadmap-date {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
}

.roadmap-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin: 0.5rem 0;
}

.roadmap-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ===== Tokenomics ===== */
.tokenomics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .tokenomics-grid {
    grid-template-columns: 1fr 2fr;
  }
}

.tokenomics-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.tokenomics-title {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.tokenomics-value {
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

.tokenomics-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.tokenomics-distribution {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.distribution-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.distribution-bar {
  height: 0.75rem;
  border-radius: 9999px;
}

.distribution-info {
  display: flex;
  justify-content: space-between;
}

.distribution-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.distribution-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
}

/* ===== CTA Section ===== */
.section-cta {
  background: linear-gradient(to right, var(--primary), #ef4444, var(--orange));
  padding: 4rem 0;
}

.cta-content {
  text-align: center;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.25rem;
  }
}

.cta-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

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

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.store-button {
  display: block;
}

.store-badge {
  height: 3rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--background-dark);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 2fr;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: white;
}

.footer-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--primary);
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-list a,
.footer-link-btn {
  color: var(--text-secondary);
  transition: color var(--transition);
  text-align: left;
}

.footer-list a:hover,
.footer-link-btn:hover {
  color: var(--primary);
}

.footer-newsletter-text {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: white;
  font-size: 0.875rem;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary);
}

.newsletter-btn {
  width: 2.75rem;
  height: 2.75rem;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.newsletter-btn:hover {
  opacity: 0.9;
}

.footer-registry {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 1rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright,
.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ===== Modals ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: #18181b;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 28rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.modal-close:hover {
  color: white;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  text-align: center;
}

.modal-description {
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 1.5rem;
}

.modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-store-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: background var(--transition);
}

.modal-store-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.modal-store-badge {
  height: 3rem;
}

.modal-store-text {
  display: flex;
  flex-direction: column;
}

.modal-store-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.modal-store-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
}

.modal-note {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 1rem;
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ===== Investor Form ===== */
.investor-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
}

.form-group input {
  padding: 0.75rem 1rem;
  background: #27272a;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: white;
  font-size: 0.875rem;
}

.form-group input::placeholder {
  color: #71717a;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
}

.form-disclaimer {
  font-size: 0.75rem;
  color: #71717a;
  text-align: center;
}

/* ===== Success Content ===== */
.success-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 0;
}

.success-icon {
  color: var(--green);
  margin-bottom: 1rem;
}

.success-note {
  font-size: 0.875rem;
  color: #71717a;
  margin-bottom: 1.5rem;
}


/* ===== Tokenomics - Pie Chart ===== */
.total-supply-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1.5rem;
  margin-top: 1.5rem;
}

.total-supply-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.total-supply-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: monospace;
}

.tokenomics-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

@media (max-width: 968px) {
  .tokenomics-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.pie-chart-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  margin: 0 auto;
}

.pie-chart-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 40px solid rgba(255, 255, 255, 0.05);
}

.pie-chart-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.pie-chart-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pie-chart-token {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-heading);
}

.pie-chart-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

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

@media (max-width: 640px) {
  .distribution-cards {
    grid-template-columns: 1fr;
  }
}

.dist-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1rem;
  transition: background var(--transition);
}

.dist-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.dist-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dist-label {
  flex: 1;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
}

.dist-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}


/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 120px 0 80px;
  min-height: 100vh;
}

.legal-header {
  margin-bottom: 48px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 24px;
  transition: opacity 0.2s;
}

.back-link:hover {
  opacity: 0.8;
}

.legal-title {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.legal-update {
  color: var(--muted);
  font-size: 14px;
}

.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: white;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--primary);
  text-decoration: none;
  transition: opacity 0.2s;
}

.legal-content a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.company-info-box {
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}

.company-info-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-top: 0;
  margin-bottom: 16px;
}

.company-info-box ul {
  list-style: none;
  padding: 0;
}

.company-info-box li {
  color: var(--muted);
  margin-bottom: 8px;
}

.company-info-box strong {
  color: white;
}

.warning-box {
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
}

.warning-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-top: 0;
  margin-bottom: 12px;
}

.warning-box p {
  margin-bottom: 0;
}

.danger-box {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
}

.danger-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.danger-box li {
  color: #fca5a5;
  margin-bottom: 8px;
  font-weight: 500;
}

.external-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  margin-top: 8px;
}

.external-link:hover {
  text-decoration: underline;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.links-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
}

.links-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-top: 0;
  margin-bottom: 12px;
}

.links-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links-card li {
  margin-bottom: 8px;
}

.links-card a {
  color: var(--muted);
  transition: color 0.2s;
}

.links-card a:hover {
  color: var(--primary);
}

.step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  margin: 32px 0;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-top: 0;
  margin-bottom: 20px;
}

.step-image {
  display: flex;
  justify-content: center;
}

.step-image img {
  max-width: 280px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.step-description {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-top: 16px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .legal-title {
    font-size: 32px;
  }
  
  .legal-content h2 {
    font-size: 24px;
  }
  
  .legal-content h3 {
    font-size: 20px;
  }
}


/* ===== SERVICE ICON COLORS ===== */
.icon-red {
  background: rgba(139, 21, 56, 0.2);
  color: #8B1538;
}

.icon-red svg {
  stroke: #8B1538;
}

.icon-turquoise {
  background: rgba(34, 211, 238, 0.2);
  color: #22d3ee;
}

.icon-turquoise svg {
  stroke: #22d3ee;
}

.icon-orange {
  background: rgba(249, 115, 22, 0.2);
  color: #f97316;
}

.icon-orange svg {
  stroke: #f97316;
}

.icon-green {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.icon-green svg {
  stroke: #22c55e;
}

.icon-yellow {
  background: rgba(234, 179, 8, 0.2);
  color: #eab308;
}

.icon-yellow svg {
  stroke: #eab308;
}

/* Footer Pitch Deck link */
.footer-pitch-link {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.footer-pitch-link:hover {
  color: var(--primary);
}

/* Services grid for 5 items */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .services-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}


/* ===== ROADMAP MARKER COLORS ===== */
.roadmap-marker.marker-green {
  background: #22c55e !important;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.3);
}

.roadmap-marker.marker-turquoise {
  background: #22d3ee !important;
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.3);
}

.roadmap-marker.marker-orange {
  background: #f97316 !important;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.3);
}

.roadmap-marker.marker-yellow {
  background: #eab308 !important;
  box-shadow: 0 0 0 4px rgba(234, 179, 8, 0.3);
}


/* ===== MOBILE HERO ADJUSTMENTS ===== */
@media (max-width: 768px) {
  .hero-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  .hero-title {
    /* No extra padding needed, container has 2rem */
  }
  
  .hero-description {
    /* No extra padding needed, container has 2rem */
  }
  
  .hero-subtitle {
    font-size: 1.75rem;
    font-weight: 800;
  }
  
  .ramp-card {
    margin-left: 0;
    margin-right: 0;
  }
  
  .badge {
    /* No extra padding needed */
  }
}

/* Make "Buy & Sell Crypto" title in ramp card bigger and bolder */
.ramp-title {
  font-size: 1.25rem;
  font-weight: 800;
}

@media (min-width: 768px) {
  .ramp-title {
    font-size: 1.5rem;
    font-weight: 800;
  }
}
