/* Base Styles */
:root {
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
  
  --radius-sm: 0.125rem;
  --radius: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-3xl: 1.5rem;
  --radius-full: 9999px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent);
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--foreground);
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.875rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

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

/* Grid System */
.grid {
  display: grid;
  gap: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  min-height: 2.5rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

.btn-secondary:hover {
  background-color: var(--muted);
  color: var(--muted-foreground);
}

.btn-small {
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  min-height: 2rem;
}

/* Header Styles */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

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

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

.logo a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--foreground);
}

.logo-icon {
  width: 2rem;
  height: 2rem;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: none;
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 1.5rem;
  height: 1.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--foreground);
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

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

.theme-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--foreground);
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.sun-icon {
  display: none;
}

.moon-icon {
  display: block;
}

.dark .sun-icon {
  display: block;
}

.dark .moon-icon {
  display: none;
}

/* Hero Section */
.hero-section {
  padding: 3rem 0;
}

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

.hero-text {
  text-align: center;
}

.hero-text h1 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-image {
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hero-content-extended {
  margin-top: 3rem;
}

.disclaimer {
  background-color: var(--muted);
  padding: 1rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

.hero-description {
  font-size: 1rem;
}

/* Features Section */
.features-section {
  padding: 3rem 0;
  background-color: var(--card);
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.features-grid {
  display: grid;
  gap: 2rem;
}

.feature-card {
  background-color: var(--background);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  margin-bottom: 1rem;
  color: var(--primary);
}

.feature-card h3 {
  margin-bottom: 0.75rem;
}

.features-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.features-extended {
  margin-top: 3rem;
}

/* Process Section */
.process-section {
  padding: 3rem 0;
}

.process-visualization {
  margin-top: 2rem;
}

.process-image {
  margin-bottom: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.process-steps {
  display: grid;
  gap: 1.5rem;
}

.process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background-color: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius-full);
  font-weight: 700;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  margin-bottom: 0.5rem;
}

.step-tooltip {
  position: relative;
  display: inline-block;
  margin-top: 0.5rem;
  cursor: help;
}

.step-tooltip::after {
  content: "ℹ️";
  font-size: 1rem;
}

.step-tooltip::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--popover);
  color: var(--popover-foreground);
  padding: 0.5rem;
  border-radius: var(--radius);
  width: max-content;
  max-width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
}

.step-tooltip:hover::before {
  opacity: 1;
  visibility: visible;
}

.process-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.process-details {
  margin-top: 3rem;
}

/* Security Section */
.security-section {
  padding: 3rem 0;
  background-color: var(--card);
}

.security-content {
  margin-top: 2rem;
}

.security-measures {
  display: grid;
  gap: 1.5rem;
}

.security-measure {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background-color: var(--background);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.measure-icon {
  color: var(--primary);
  flex-shrink: 0;
}

.measure-content {
  flex: 1;
}

.measure-content h3 {
  margin-bottom: 0.5rem;
}

.security-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  text-align: center;
}

.security-stat {
  background-color: var(--background);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.security-testimonial {
  margin-top: 2.5rem;
}

.security-testimonial blockquote {
  background-color: var(--background);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
}

.security-testimonial blockquote::before {
  content: "\201C"; /* Unicode for opening double quote */
  font-size: 4rem;
  position: absolute;
  top: -1rem;
  left: 1rem;
  color: var(--primary);
  opacity: 0.2;
}

.security-testimonial cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 700;
}

.security-audits {
  margin-top: 2.5rem;
  text-align: center;
}

.audit-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.audit-logo {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background);
  border-radius: var(--radius);
  padding: 1rem;
}

.audit-logo img {
  max-width: 100%;
  max-height: 100%;
}

.security-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.security-details {
  margin-top: 3rem;
}

/* Ecosystem Section */
.ecosystem-section {
  padding: 3rem 0;
}

.ecosystem-map {
  position: relative;
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.ecosystem-nodes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ecosystem-node {
  position: absolute;
  cursor: pointer;
}

.ecosystem-node[data-node="ethereum"] {
  top: 30%;
  left: 20%;
}

.ecosystem-node[data-node="solana"] {
  top: 50%;
  right: 25%;
}

.ecosystem-node[data-node="binance"] {
  bottom: 30%;
  left: 30%;
}

.ecosystem-node[data-node="protocol"] {
  top: 40%;
  right: 40%;
}

.node-icon {
  width: 40px;
  height: 40px;
  background-color: var(--background);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.node-icon img {
  width: 24px;
  height: 24px;
}

.ecosystem-node:hover .node-icon {
  transform: scale(1.1);
}

.node-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--popover);
  color: var(--popover-foreground);
  padding: 0.75rem;
  border-radius: var(--radius);
  width: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
}

.ecosystem-node:hover .node-tooltip {
  opacity: 1;
  visibility: visible;
}

.node-tooltip h4 {
  margin-bottom: 0.5rem;
}

.node-tooltip p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

.ecosystem-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  text-align: center;
}

.metric {
  background-color: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.ecosystem-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.ecosystem-details {
  margin-top: 3rem;
}

/* Developers Section */
.developers-section {
  padding: 3rem 0;
  background-color: var(--card);
}

.dev-tools-tabs {
  margin-top: 2rem;
}

.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.tab-btn {
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: all 0.3s ease;
}

.tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.code-block {
  position: relative;
  background-color: var(--background);
  padding: 1.5rem;
  border-radius: var(--radius);
  overflow: auto;
  margin-bottom: 1.5rem;
}

.code-block pre {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--foreground);
}

.copy-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background-color: var(--muted);
  color: var(--muted-foreground);
  border: none;
  border-radius: var(--radius);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.sdk-list {
  display: grid;
  gap: 1.5rem;
}

.sdk-item {
  background-color: var(--background);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.sdk-item h3 {
  margin-bottom: 0.75rem;
}

.documentation-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.doc-category h3 {
  margin-bottom: 1rem;
}

.doc-category ul {
  display: grid;
  gap: 0.5rem;
}

.testnet-info {
  background-color: var(--background);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testnet-resources {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.resource {
  background-color: var(--muted);
  padding: 1rem;
  border-radius: var(--radius);
}

.resource h4 {
  margin-bottom: 0.5rem;
}

.developers-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.developers-details {
  margin-top: 3rem;
}

/* Token Section */
.token-section {
  padding: 3rem 0;
}

.token-content {
  margin-top: 2rem;
}

.token-chart {
  background-color: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.chart-container {
  width: 100%;
  height: 300px;
  margin-bottom: 1rem;
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

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

.legend-color {
  width: 1rem;
  height: 1rem;
  border-radius: var(--radius-sm);
}

.price-color {
  background-color: var(--primary);
}

.volume-color {
  background-color: var(--accent);
}

.token-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.metric-card {
  background-color: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.metric-card h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.metric-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.token-utility {
  background-color: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.token-utility h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}

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

.utility-item {
  background-color: var(--background);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
}

.utility-icon {
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.utility-item h4 {
  margin-bottom: 0.75rem;
}

.token-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  text-align: center;
}

.token-details {
  margin-top: 3rem;
}

/* Success Section */
.success-section {
  padding: 3rem 0;
  background-color: var(--card);
}

.success-carousel {
  margin-top: 2rem;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  display: none;
}

.carousel-slide.active {
  display: block;
}

.case-study {
  background-color: var(--background);
  padding: 2rem;
  text-align: center;
}

.case-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--card);
  border-radius: var(--radius-full);
  padding: 1rem;
}

.case-logo img {
  max-width: 100%;
  max-height: 100%;
}

.case-results {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.5rem 0;
}

.result-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--background);
  color: var(--foreground);
  border: none;
  border-radius: var(--radius-full);
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-control.prev {
  left: 1rem;
}

.carousel-control.next {
  right: 1rem;
}

.carousel-control:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 1rem 0;
}

.indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: var(--radius-full);
  background-color: var(--muted);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background-color: var(--primary);
}

.testimonials {
  margin-top: 3rem;
}

.testimonials h3 {
  text-align: center;
  margin-bottom: 2rem;
}

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

.testimonial {
  background-color: var(--background);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial blockquote {
  position: relative;
}

.testimonial blockquote::before {
  content: "\201C"; /* Unicode for opening double quote */
  font-size: 4rem;
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  color: var(--primary);
  opacity: 0.2;
}

.testimonial cite {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  font-style: normal;
}

.testimonial cite img {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.testimonial cite strong {
  display: block;
  font-weight: 700;
}

.testimonial cite span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.success-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.success-details {
  margin-top: 3rem;
}

/* News Section */
.news-section {
  padding: 3rem 0;
}

.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2rem 0;
  justify-content: center;
}

.filter-btn {
  padding: 0.5rem 1rem;
  background-color: var(--muted);
  color: var(--muted-foreground);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.news-grid {
  display: grid;
  gap: 2rem;
}

.news-card {
  background-color: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.news-image {
  height: 200px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.news-content {
  padding: 1.5rem;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.news-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 500;
}

.news-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.newsletter {
  background-color: var(--card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: 3rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.newsletter h3 {
  margin-bottom: 1rem;
}

.newsletter p {
  margin-bottom: 1.5rem;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-group input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--input);
  color: var(--foreground);
}

.form-consent {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.form-consent label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.news-details {
  margin-top: 3rem;
}

/* CTA Section */
.cta-section {
  padding: 3rem 0;
  background-color: var(--card);
}

.user-types {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.user-type {
  background-color: var(--background);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.user-type h3 {
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.benefits-list {
  text-align: left;
  margin-bottom: 1.5rem;
}

.benefits-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  padding-left: 1.5rem;
}

.benefits-list li::before {
  content: "\2713"; /* Unicode for checkmark */
  position: absolute;
  left: 0;
  color: var(--primary);
}

.launch-countdown {
  background-color: var(--background);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: 3rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.countdown-item {
  text-align: center;
}

.countdown-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  background-color: var(--card);
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
}

.countdown-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-form-container {
  background-color: var(--background);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-top: 3rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-form-container h3 {
  text-align: center;
  margin-bottom: 1rem;
}

.contact-form-container p {
  text-align: center;
  margin-bottom: 1.5rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--input);
  color: var(--foreground);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.checkbox-label input {
  margin-top: 0.25rem;
}

.cta-details {
  margin-top: 3rem;
}

/* Footer */
.footer {
  background-color: var(--card);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border);
}

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

.brand-column {
  grid-column: 1 / -1;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo span {
  font-weight: 700;
  font-size: 1.25rem;
}

.footer-tagline {
  margin-bottom: 1.5rem;
  color: var(--muted-foreground);
}

.footer-disclaimer {
  background-color: var(--muted);
  padding: 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.footer-column h3 {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.footer-links,
.social-links {
  display: grid;
  gap: 0.75rem;
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--muted);
  color: var(--muted-foreground);
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.newsletter-mini h4 {
  margin-bottom: 1rem;
}

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

.footer-partners {
  margin-bottom: 3rem;
  text-align: center;
}

.footer-partners h3 {
  margin-bottom: 1.5rem;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.partner-logo {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background);
  border-radius: var(--radius);
  padding: 0.75rem;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
}

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

.copyright {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.legal-link {
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  font-size: 0.875rem;
  text-decoration: underline;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  overflow-y: auto;
}

.modal-content {
  background-color: var(--background);
  margin: 2rem auto;
  padding: 2rem;
  border-radius: var(--radius-lg);
  max-width: 800px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--muted-foreground);
}

.modal-body h2 {
  margin-bottom: 1.5rem;
}

/* Responsive Styles */
@media (min-width: 640px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .token-actions {
    flex-direction: row;
    justify-content: center;
  }
  
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 768px) {
  .nav-list {
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-list a {
    color: var(--foreground);
    font-weight: 500;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .hero-content {
    flex-direction: row;
    align-items: center;
  }
  
  .hero-text {
    text-align: left;
    flex: 1;
  }
  
  .hero-image {
    flex: 1;
    margin-top: 0;
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .security-measures {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .utility-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .user-types {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .brand-column {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .security-measures {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .utility-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .user-types {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Dark Mode Styles */
.dark {
  color-scheme: dark;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

.slide-up {
  animation: slideUp 0.5s ease forwards;
}

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

:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .btn,
  .carousel-control,
  .modal {
    display: none !important;
  }
  
  body {
    background-color: white;
    color: black;
  }
  
  .container {
    max-width: 100%;
    padding: 0;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
    page-break-inside: avoid;
  }
  
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }
  
  p, blockquote, ul, ol, dl, table {
    page-break-inside: avoid;
  }
  
  a {
    color: black;
    text-decoration: underline;
  }
}