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

:root {
  --green: #10B981;
  --green-dark: #059669;
  --blue: #3B82F6;
  --purple: #8B5CF6;
  --dark: #0F172A;
  --gray-900: #1E293B;
  --gray-800: #334155;
  --gray-700: #475569;
  --gray-600: #64748B;
  --gray-500: #94A3B8;
  --gray-400: #CBD5E1;
  --gray-300: #E2E8F0;
  --gray-100: #F1F5F9;
  --gray-50: #F8FAFC;
  --white: #FFFFFF;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--dark);
}

.logo {
  font-size: 1.5rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu a {
  color: var(--gray-700);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-menu a:hover {
  color: var(--green);
}

.github-link svg {
  width: 18px;
  height: 18px;
}

.cta-button {
  background: var(--green);
  color: var(--white) !important;
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s;
}

.cta-button:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Hero Section */
.hero {
  padding: 10rem 2rem 6rem;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--green);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

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

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--gray-700);
  border: 2px solid var(--gray-300);
}

.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
}

.btn-white:hover {
  background: var(--gray-100);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

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

/* Hero Meta */
.hero-meta {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-600);
  font-size: 0.9375rem;
}

.meta-item svg {
  color: var(--green);
}

/* Sections */
.section {
  padding: 5rem 2rem;
}

.section-alt {
  background: var(--gray-50);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-dark .section-header h2 {
  color: var(--white);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-header p {
  color: var(--gray-400);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--green);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--gray-600);
  line-height: 1.7;
}

/* Split Content */
.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.split-text p {
  font-size: 1.125rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.small-text {
  font-size: 0.9375rem;
  color: var(--gray-500);
  font-style: italic;
}

/* Checklist */
.checklist {
  margin: 2rem 0;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem 0;
  font-size: 1.0625rem;
  color: var(--gray-700);
}

/* Tech Stack Box */
.tech-stack-box {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.stack-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.stack-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.stack-item:last-of-type {
  border-bottom: none;
}

.stack-label {
  font-weight: 600;
  color: var(--gray-700);
}

.stack-tech {
  color: var(--gray-600);
  font-size: 0.9375rem;
}

.stack-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.stack-link:hover {
  color: var(--green-dark);
}

/* Use Cases Grid */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.use-case-card {
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all 0.3s;
}

.use-case-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
}

.use-case-emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.use-case-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.use-case-card p {
  color: var(--gray-600);
  font-size: 0.9375rem;
}

.pricing-note {
  text-align: center;
  padding: 1.5rem;
  background: var(--gray-100);
  border-radius: 12px;
  border-left: 4px solid var(--green);
}

.pricing-note strong {
  color: var(--dark);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.pricing-note span {
  color: var(--gray-600);
}

/* Organizations Section - Redesigned */
.organizations-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto 4rem;
  position: relative;
}

.org-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.step-badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, #059669 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
  position: relative;
  z-index: 2;
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.step-content p {
  color: var(--gray-600);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.step-connector {
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, var(--green), #059669);
  position: relative;
  top: -60px;
  flex-shrink: 0;
}

/* Roadmap Example */
.org-example-roadmap {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  border: 2px solid var(--green);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.example-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--gray-200);
}

.example-icon {
  font-size: 3rem;
  line-height: 1;
}

.example-title-block h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.example-subtitle {
  color: var(--gray-600);
  font-size: 0.9375rem;
  margin: 0;
}

/* Roadmap Example - Redesigned Timeline */
.org-example-roadmap {
  background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
  border-radius: 20px;
  padding: 3rem;
  border: 2px solid var(--green);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.org-example-roadmap::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.example-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--gray-200);
  position: relative;
  z-index: 1;
}

.example-icon {
  font-size: 3.5rem;
  line-height: 1;
}

.example-title-block h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.example-subtitle {
  color: var(--gray-600);
  font-size: 1rem;
  margin: 0;
  font-weight: 500;
}

/* Timeline Container */
.roadmap-container {
  position: relative;
  padding: 2rem 0;
}

.roadmap-line {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 0;
}

.roadmap-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

/* Timeline Step */
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-dot {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-step:hover .timeline-dot {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.dot-pulse {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
      transform: scale(1);
      opacity: 1;
  }
  50% {
      transform: scale(1.2);
      opacity: 0.8;
  }
}
@media (max-width: 768px) {
  .timeline-dot {
    display: none;
  }
}

.timeline-dot.success {
  border-color: var(--green);
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.timeline-dot.success .dot-pulse {
  background: var(--white);
}

/* Timeline Cards */
.timeline-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 3rem;
  border: 2px solid var(--gray-200);
  transition: all 0.3s;
  width: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}

.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--green);
}

.timeline-card.highlight {
  border-color: var(--green);
}

.timeline-card.success {
  border-color: var(--green);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gray-200);
}

.step-icon {
  font-size: 1.5rem;
}

.step-title {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-content p {
  color: var(--gray-700);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.card-content em {
  color: var(--dark);
  font-weight: 600;
  font-style: normal;
}

.card-content strong {
  color: var(--dark);
  font-weight: 600;
}

.card-meta {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-200);
}

/* Debate Stats */
.debate-stats {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--gray-200);
}

.stat-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray-600);
  text-align: center;
  margin-top: 0.25rem;
}

/* Vote Results */
.vote-result {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.result-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

.result-badge.approved {
  background: var(--green);
  color: var(--white);
}

.vote-stats {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vote-bar {
  display: flex;
  width: 100%;
  height: 24px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--gray-200);
}

.bar-segment {
  height: 100%;
  transition: width 0.3s;
}

.bar-segment.yes {
  background: var(--green);
}

.bar-segment.no {
  background: #EF4444;
}

.bar-segment.abstain {
  background: var(--gray-400);
}

.vote-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
}

.vote-label {
  font-weight: 600;
}

.vote-label.yes {
  color: var(--green);
}

.vote-label.no {
  color: #EF4444;
}

.vote-label.abstain {
  color: var(--gray-600);
}

/* Legacy styles (keeping for backwards compat) */
.organizations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.org-feature {
  position: relative;
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
}

.org-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-200);
  line-height: 1;
}

.org-feature h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.org-feature p {
  color: var(--gray-600);
  line-height: 1.7;
}

.org-example {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  border: 2px solid var(--green);
}

.example-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 1.5rem;
  text-align: center;
}

.example-content {
  display: grid;
  gap: 1rem;
}

.example-item {
  padding: 1rem;
  background: var(--gray-50);
  border-radius: 8px;
  font-size: 0.9375rem;
}

.example-item strong {
  color: var(--dark);
  margin-right: 0.5rem;
}

/* Discussion Section */
.discussion-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.discussion-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.discussion-icon {
  font-size: 5rem;
}

.discussion-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.discussion-text p {
  font-size: 1.125rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.discussion-features {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.9375rem;
  color: var(--gray-600);
}

/* Pricing Section */
.pricing-section {
  max-width: 900px;
  margin: 0 auto;
}

.pricing-section h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  margin-bottom: 2rem;
}


.pricing-grid {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.pricing-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  border: 2px solid var(--gray-200);
  transition: all 0.3s;
}

.pricing-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.pricing-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.pricing-card h4 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
}

.pricing-list {
  list-style: none;
  padding: 0;
}

.pricing-list li {
  padding: 0.625rem 0;
  color: var(--gray-700);
  font-size: 0.9375rem;
  line-height: 1.6;
  border-bottom: 1px solid var(--gray-200);
}

.pricing-list li:last-child {
  border-bottom: none;
}

.pricing-list strong {
  color: var(--green);
  font-weight: 600;
}

/* Pricing note (deprecated, keeping for legacy) */
.pricing-note {
  text-align: center;
  padding: 1.5rem;
  background: var(--gray-100);
  border-radius: 12px;
  border-left: 4px solid var(--green);
}

.pricing-note strong {
  color: var(--dark);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.pricing-note span {
  color: var(--gray-600);
}

/* Open Source Section */
.opensource-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.opensource-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.opensource-content h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.opensource-description {
  font-size: 1.25rem;
  color: var(--gray-300);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.opensource-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  text-align: left;
}

.os-feature h4 {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.os-feature p {
  color: var(--gray-400);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.opensource-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Join Section */
.join-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.join-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.join-content > p {
  font-size: 1.125rem;
  color: var(--gray-700);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.join-form {
  margin-bottom: 3rem;
}

.form-group {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto 1rem;
}

.form-group input {
  flex: 1;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  border: 2px solid var(--gray-300);
  border-radius: 8px;
  font-family: inherit;
  transition: border-color 0.2s;
}

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

.form-note {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.join-links {
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}

.join-text {
  display: block;
  font-size: 0.9375rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

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

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--gray-100);
  color: var(--gray-700);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.2s;
}

.social-link:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-brand p {
  color: var(--gray-500);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.footer-column h4 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column a {
  display: block;
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: var(--green);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-800);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* Responsive */
@media (max-width: 1024px) {
  .split-content {
      grid-template-columns: 1fr;
      gap: 3rem;
  }
  
  .footer-content {
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-container {
      flex-direction: column;
      gap: 1rem;
  }
  
  .nav-menu {
      gap: 1rem;
      font-size: 0.875rem;
      flex-wrap: wrap;
      justify-content: center;
  }
  
  .hero {
      padding: 8rem 1.5rem 4rem;
  }
  
  .hero-title {
      font-size: 2.5rem;
  }
  
  .hero-description {
      font-size: 1.0625rem;
  }
  
  .hero-cta {
      flex-direction: column;
      align-items: stretch;
  }
  
  .section {
      padding: 3rem 1.5rem;
  }
  
  .section-header h2 {
      font-size: 2rem;
  }
  
  .features-grid,
  .use-cases-grid,
  .pricing-grid {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
  }
  
  .organizations-steps {
      flex-direction: column;
      gap: 2rem;
  }
  
  .step-connector {
      width: 3px;
      height: 60px;
      top: 0;
      transform: rotate(0);
  }
  
  .roadmap-timeline {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
  
  .roadmap-line {
      display: none;
  }
  
  .timeline-card {
      min-height: auto;
  }
  
  .debate-stats {
      flex-direction: column;
  }
  
  .discussion-content {
      grid-template-columns: 1fr;
      text-align: center;
  }
  
  .discussion-icon {
      font-size: 4rem;
  }
  
  .opensource-content h2 {
      font-size: 2rem;
  }
  
  .opensource-features {
      grid-template-columns: 1fr;
  }
  
  .form-group {
      flex-direction: column;
  }
  
  .social-links {
      flex-wrap: wrap;
  }
  
  .footer-content {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
  
  .footer-bottom {
      flex-direction: column;
      gap: 0.5rem;
      text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
      font-size: 2rem;
  }
  
  .meta-item {
      font-size: 0.8125rem;
  }
}



.pricing-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  border: 2px solid var(--gray-200);
  transition: transform 0.3s, box-shadow 0.3s;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
  border: 2px solid var(--blue-500);
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
  color: var(--white);
}

.pricing-card.featured .price {
  font-size: 2rem;
  font-weight: bold;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing-card .price {
  font-size: 1.8rem;
  color: var(--gray-800);
  margin: 1rem 0;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.pricing-card ul li {
  margin: 0.5rem 0;
  color: var(--gray-600);
}

.pricing-card button {
  background: var(--blue-500);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.pricing-card button:hover {
  background: var(--blue-700);
}


/* Form */
.signup-form {
  display: flex;
  gap: 0.75rem;
  margin: 2rem 0;
  max-width: 500px;
}

.signup-form input {
  flex: 1;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  border: 2px solid #E5E7EB;
  border-radius: 6px;
  font-family: inherit;
  transition: border-color 0.2s;
}

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

.signup-form button {
  padding: 0.875rem 1.5rem;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
  white-space: nowrap;
}

.signup-form button:hover {
  background: #059669;
}

.note {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 0.5rem;
}