/* Custom CSS Variables & Reset */
:root {
  --bg-dark: #050505;
  --bg-darker: #000000;
  --bg-card: #0e0f11;
  --bg-card-hover: #16181c;
  --accent-lime: #bef264;      /* Electric Lime */
  --accent-lime-dark: #a3e635; /* Darker Lime */
  --text-primary: #ffffff;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --border-color: #1f2937;
  --border-color-hover: #374151;
  --font-family-title: 'Outfit', sans-serif;
  --font-family-body: 'Inter', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --lime-glow: 0 0 25px rgba(190, 242, 100, 0.35);
  --lime-glow-soft: 0 0 15px rgba(190, 242, 100, 0.15);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-family-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  background: var(--bg-dark);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-family-title);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 400;
}

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

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: #222;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-lime-dark);
}

/* Helper Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.highlight {
  color: var(--accent-lime);
}

.highlight-gradient {
  background: linear-gradient(135deg, var(--accent-lime) 0%, #84cc16 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-glow {
  text-shadow: 0 0 30px rgba(190, 242, 100, 0.3);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font-family-title);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-primary {
  background: var(--accent-lime);
  color: var(--bg-darker);
  box-shadow: var(--lime-glow-soft);
}

.btn-primary:hover {
  background: #ffffff;
  color: var(--bg-darker);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

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

.btn-outline:hover {
  border-color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn-icon {
  gap: 12px;
}

.btn-icon .icon {
  width: 20px;
  height: 20px;
}

.btn-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.btn-small-text {
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.btn-large-text {
  font-size: 1.1rem;
  font-weight: 800;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.9);
  padding: 12px 0;
  border-bottom: 1px solid rgba(190, 242, 100, 0.1);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.navbar.scrolled .nav-container {
  padding: 12px 24px;
}

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

.logo-mark {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 8px rgba(190, 242, 100, 0.3));
}

.logo-text {
  font-family: var(--font-family-title);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

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

.nav-links a {
  font-family: var(--font-family-title);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.nav-links a:hover {
  color: var(--accent-lime);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-smooth);
}

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

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

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

/* Mobile Dropdown Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  background: var(--bg-darker);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  transition: var(--transition-smooth);
  padding: 40px;
}

.mobile-menu.open {
  left: 0;
}

.mobile-menu a {
  font-family: var(--font-family-title);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.mobile-menu a:hover {
  color: var(--accent-lime);
}

.mobile-actions {
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 70%;
  background: radial-gradient(circle, rgba(163, 230, 53, 0.08) 0%, rgba(5, 5, 5, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-size: 5rem;
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-tagline {
  font-family: var(--font-family-title);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 20px;
  border-left: 3px solid var(--accent-lime);
  padding-left: 12px;
}

.hero-description {
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.play-btn {
  gap: 8px;
}

.hero-reviews {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar-group {
  display: flex;
  align-items: center;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  overflow: hidden;
  margin-left: -12px;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stars {
  color: var(--accent-lime);
  font-size: 1rem;
}

.review-text-wrapper p {
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.showcase-wrapper {
  width: 100%;
  max-width: 460px;
  position: relative;
}

.showcase-wrapper::before {
  content: '';
  position: absolute;
  inset: -15px;
  border-radius: 40px;
  background: radial-gradient(circle, rgba(190, 242, 100, 0.15) 0%, transparent 80%);
  z-index: -1;
}

.showcase-image {
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 30px rgba(190, 242, 100, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.5s ease;
}

.showcase-image:hover {
  transform: translateY(-8px) scale(1.02);
}

/* Features Section */
.features-section {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.section-header {
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-color-hover);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), var(--lime-glow-soft);
}

.feature-card:hover::before {
  background: var(--accent-lime);
}

.feature-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.feature-icon {
  width: 24px;
  height: 24px;
  color: var(--accent-lime);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.feature-desc {
  font-size: 0.95rem;
  margin-bottom: 24px;
  min-height: 48px;
}

.feature-checklist {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

.check-mark {
  color: var(--accent-lime);
  font-weight: bold;
}

.card-mockup-window {
  margin-top: auto;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

/* Card Mockup Contents */
.workout-mockup {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-header {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}

.mockup-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 6px;
}

.nutrition-mockup {
  display: flex;
  align-items: center;
  gap: 16px;
}

.macro-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 4px solid var(--accent-lime);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.calories-lbl {
  font-size: 0.55rem;
  color: var(--text-muted);
}

.macro-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.macro-bar {
  font-size: 0.65rem;
  font-weight: 600;
}

.macro-bar .bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin-top: 2px;
}

.macro-bar .fill {
  height: 100%;
  background: var(--accent-lime);
  border-radius: 2px;
}

.group-mockup-compact {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.group-header-compact {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
}

.group-header-compact span {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.group-avatars-compact {
  display: flex;
  align-items: center;
}

.dot-avatar {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--text-muted);
  border: 1px solid var(--bg-dark);
  margin-left: -6px;
}

.dot-extra {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--accent-lime);
  margin-left: 2px;
}

.ai-mockup {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ai-input-group {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
}

.ai-input-group .label {
  color: var(--text-muted);
}

/* Accountability Section */
.accountability-section {
  padding: 100px 0;
  background: var(--bg-darker);
  position: relative;
}

.accountability-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.section-label {
  color: var(--accent-lime);
  font-family: var(--font-family-title);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

.accountability-content h2 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.lead-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.accountability-content p {
  margin-bottom: 32px;
}

.bullets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
}

.check-bullet {
  color: var(--accent-lime);
  font-weight: 900;
}

.join-community-btn {
  border-color: var(--accent-lime);
  color: var(--accent-lime);
}

.join-community-btn:hover {
  background: var(--accent-lime);
  color: var(--bg-darker);
}

.accountability-visual {
  display: flex;
  justify-content: center;
}

.feed-window {
  width: 100%;
  max-width: 480px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  position: relative;
}

.feed-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.feed-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.group-img {
  width: 40px;
  height: 40px;
  background: var(--accent-lime);
  color: var(--bg-darker);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-title);
  font-weight: 900;
  font-size: 1rem;
}

.feed-header h4 {
  font-size: 1.05rem;
  font-weight: 700;
}

.feed-header-left span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.invite-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

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

.feed-input {
  display: flex;
  gap: 12px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 8px 12px;
  margin-bottom: 20px;
}

.feed-input input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-primary);
  outline: none;
  font-size: 0.9rem;
}

.send-btn {
  background: var(--accent-lime);
  border: none;
  color: var(--bg-darker);
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.send-btn svg {
  width: 14px;
  height: 14px;
}

.feed-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feed-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 16px;
}

.feed-item-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.feed-item-user {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.feed-item-user strong {
  color: var(--text-primary);
}

.feed-item-user .badge {
  background: rgba(190, 242, 100, 0.1);
  color: var(--accent-lime);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: 4px;
}

.feed-item-user .badge-alt {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: 4px;
}

.feed-item-user .time {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.feed-item-stats {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  padding-left: 42px;
}

.badge-pr {
  background: #10b981;
  color: white;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
}

.feed-item-actions {
  display: flex;
  gap: 16px;
  padding-left: 42px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* Connected Section */
.connected-section {
  padding: 100px 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.nodes-container {
  position: relative;
  max-width: 800px;
  margin: 60px auto;
  padding: 20px 0;
}

.node-line-glow {
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent-lime) 50%, transparent 100%);
  box-shadow: 0 0 15px var(--accent-lime);
  z-index: 1;
  transform: translateY(-50%);
}

.node-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.node {
  background: var(--bg-darker);
  border: 2px solid var(--border-color);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family-title);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
}

.node svg {
  width: 24px;
  height: 24px;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.node.active {
  border-color: var(--accent-lime);
  box-shadow: var(--lime-glow), inset 0 0 15px rgba(190, 242, 100, 0.2);
}

.node.active svg {
  color: var(--accent-lime);
  filter: drop-shadow(0 0 4px rgba(190, 242, 100, 0.5));
}

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

.connected-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.connected-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 32px 24px;
  transition: var(--transition-smooth);
}

.connected-card:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(190, 242, 100, 0.15);
}

.card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.icon-holder {
  width: 44px;
  height: 44px;
  background: rgba(190, 242, 100, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-holder svg {
  width: 20px;
  height: 20px;
  color: var(--accent-lime);
}

.connected-card h4 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* Consistency Section */
.consistency-section {
  padding: 100px 0;
  background: var(--bg-darker);
}

.consistency-header {
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 60px;
}

.consistency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.consistency-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.icon-glow {
  width: 72px;
  height: 72px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
  color: var(--accent-lime);
}

.icon-glow svg {
  width: 32px;
  height: 32px;
}

.consistency-item:hover .icon-glow {
  border-color: var(--accent-lime);
  box-shadow: var(--lime-glow);
  transform: translateY(-4px);
}

.consistency-item h4 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.consistency-item p {
  font-size: 0.95rem;
  max-width: 300px;
}

/* Footer CTA */
.footer-cta {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.cta-left h2 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.cta-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-features span {
  font-family: var(--font-family-title);
  font-weight: 700;
  font-size: 1.1rem;
}

.cta-right {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.cta-right h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 24px;
}

/* Footer */
.footer {
  background: var(--bg-darker);
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .accountability-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .footer-cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }
  
  .cta-features {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-title {
    font-size: 3.2rem;
  }
  
  .section-header h2, .consistency-header {
    font-size: 2.2rem;
  }
  
  .accountability-content h2 {
    font-size: 2.5rem;
  }
  
  .nodes-container {
    display: none;
  }
  
  .node-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  
  .cta-left h2 {
    font-size: 2.8rem;
  }
  
  .cta-right {
    padding: 32px;
  }
}
