:root {
  --primary-black: #0a0a0a;
  --dark-bg: #121212;
  --accent-green: #00b140;
  --bright-green: #39ff14;
  --text-light: #ffffff;
  --muted: rgba(255,255,255,0.6);
  --glow: 0 0 20px rgba(57,255,20,0.3), 0 0 40px rgba(57,255,20,0.1);
  --card-bg: rgba(255,255,255,0.02);
}

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

html { 
  scroll-behavior: smooth; 
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--primary-black);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 80px;
}

body.menu-open { 
  overflow: hidden; 
}

/* Chat Bubble Positioning */
#ocyl-chat-bubble {
  bottom: 100px !important;
  z-index: 999 !important;
}

@media (max-width: 900px) {
  #ocyl-chat-bubble { 
    bottom: 140px !important; 
  }
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(57,255,20,0.1);
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from { 
    transform: translateY(-100%); 
    opacity: 0; 
  }
  to { 
    transform: translateY(0); 
    opacity: 1; 
  }
}

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

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

.logo-icon { 
  width: 40px; 
  height: 40px; 
}

.pulse-logo {
  animation: pulseLogo 2s ease-in-out infinite;
}

@keyframes pulseLogo {
  0%, 100% { 
    filter: drop-shadow(0 0 5px var(--bright-green));
  }
  50% { 
    filter: drop-shadow(0 0 15px var(--bright-green));
  }
}

.logo h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  color: var(--bright-green);
  text-shadow: var(--glow);
  font-weight: 700;
  letter-spacing: 2px;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

nav a.active {
  color: var(--bright-green);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--bright-green);
  transition: width 0.3s ease;
  box-shadow: var(--glow);
}

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

nav a:hover::after { 
  width: 100%; 
}

/* OCYL Orb theme toggle */
.theme-orb-wrapper {
  display: flex;
  align-items: center;
  margin-left: 1.5rem;
}

.theme-orb {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(57,255,20,0.7);
  background:
    radial-gradient(circle at 30% 20%, rgba(57,255,20,0.9), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(0,177,64,0.9), transparent 60%),
    radial-gradient(circle, rgba(0,0,0,0.9), rgba(0,0,0,1));
  box-shadow:
    0 0 12px rgba(57,255,20,0.5),
    0 0 24px rgba(0,177,64,0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  outline: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.theme-orb-core {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, #39ff14 0%, #00b140 40%, #021b10 100%);
  box-shadow: 0 0 12px rgba(57,255,20,0.8);
  animation: orbPulse 2.2s ease-in-out infinite;
}

.theme-orb:hover {
  transform: translateY(-1px) scale(1.05);
  box-shadow:
    0 0 16px rgba(57,255,20,0.85),
    0 0 32px rgba(0,177,64,0.55);
}

/* Light-mode state – orb flips to a "sun" */
.theme-orb.is-light {
  background:
    radial-gradient(circle at 30% 20%, #fbbf24, transparent 55%),
    radial-gradient(circle at 70% 80%, #facc15, transparent 60%),
    radial-gradient(circle, #fefce8, #e5e7eb);
  border-color: rgba(15,23,42,0.4);
  box-shadow:
    0 0 10px rgba(250,204,21,0.8),
    0 0 20px rgba(250,204,21,0.45);
}

.theme-orb.is-light .theme-orb-core {
  background: radial-gradient(circle, #facc15 0%, #f59e0b 50%, #854d0e 100%);
  box-shadow: 0 0 12px rgba(250,204,21,0.9);
}

@keyframes orbPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 8px rgba(57,255,20,0.6);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 18px rgba(57,255,20,0.9);
  }
}

/* Keep orb tucked nicely on mobile */
@media (max-width: 900px) {
  .theme-orb-wrapper {
    margin-left: 0.75rem;
  }
}


/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-bg) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(57,255,20,0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(1); 
    opacity: 0.3; 
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.3); 
    opacity: 0.6; 
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease;
}

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

.hero h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--bright-green);
  text-shadow: var(--glow);
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 3px;
  animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
  from { 
    text-shadow: 0 0 20px rgba(57,255,20,0.3), 0 0 40px rgba(57,255,20,0.1); 
  }
  to { 
    text-shadow: 0 0 30px rgba(57,255,20,0.6), 0 0 60px rgba(57,255,20,0.2); 
  }
}

.hero-intro {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

/* Page Hero */
.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-black), var(--dark-bg));
  position: relative;
  margin-top: 80px;
}

.page-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--bright-green);
  text-shadow: var(--glow);
  margin-bottom: 1rem;
  font-weight: 700;
}

.page-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
}

/* CTA Buttons */
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-green), var(--bright-green));
  color: var(--primary-black);
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
  box-shadow: var(--glow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 30px rgba(57,255,20,0.6), 0 0 60px rgba(57,255,20,0.3);
}

.cta-button-secondary {
  display: inline-block;
  background: transparent;
  color: var(--bright-green);
  padding: 1rem 2.5rem;
  border: 2px solid var(--accent-green);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.cta-button-secondary:hover {
  background: var(--accent-green);
  color: var(--primary-black);
  transform: translateY(-2px);
  box-shadow: var(--glow);
}

/* Sections */
section {
  padding: 5rem 0;
  position: relative;
}

.section-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--bright-green);
  text-shadow: var(--glow);
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: 2px;
}

section > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.about {
  background: linear-gradient(180deg, transparent, rgba(0,177,64,0.03), transparent);
}

/* NEW: Centered Overview Cards (Home Page) */
.overview-card-centered {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(0,177,64,0.08), rgba(57,255,20,0.03));
  border: 2px solid var(--accent-green);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  transition: all 0.4s ease;
}

.overview-card-centered:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), var(--glow);
  border-color: var(--bright-green);
}

.overview-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(57,255,20,0.2);
}

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

.stat-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  color: var(--bright-green);
  text-shadow: var(--glow);
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 2px;
  height: 50px;
  background: linear-gradient(180deg, transparent, var(--accent-green), transparent);
}

.overview-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 1.5rem;
}

.overview-cta-button {
  display: inline-block;
  margin-top: 2rem;
  background: linear-gradient(135deg, var(--accent-green), var(--bright-green));
  color: var(--primary-black);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
  box-shadow: var(--glow);
  transition: all 0.3s ease;
}

.overview-cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 30px rgba(57,255,20,0.6);
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  justify-items: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.project-card {
  background: var(--card-bg);
  border-left: 4px solid var(--bright-green);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 380px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-green), var(--bright-green));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), var(--glow);
}

.project-card:hover::before { 
  opacity: 1; 
}

.project-category {
  font-size: 0.75rem;
  color: var(--accent-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.project-card h3 {
  font-family: 'Orbitron', sans-serif;
  color: var(--bright-green);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  min-height: 2.5rem;
}

.project-card p {
  color: var(--muted);
  flex: 1;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  overflow: hidden;
  margin: 0.8rem 0 0.5rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-green), var(--bright-green));
  box-shadow: 0 0 10px var(--bright-green);
  transition: width 1.5s ease;
  border-radius: 10px;
}

.project-status {
  font-size: 0.85rem;
  color: var(--accent-green);
  font-weight: 600;
}

.project-expand-hint {
  font-size: 0.75rem;
  color: var(--accent-green);
  text-align: center;
  margin-top: 0.5rem;
  opacity: 0.7;
  font-style: italic;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px);
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 2rem;
}

.modal-content {
  background: linear-gradient(135deg, var(--dark-bg), var(--primary-black));
  border: 2px solid var(--accent-green);
  border-radius: 20px;
  padding: 3rem;
  max-width: 900px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.9), var(--glow);
  margin: auto;
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 2px solid var(--accent-green);
  color: var(--bright-green);
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
}

.modal-close:hover {
  background: var(--accent-green);
  color: var(--primary-black);
  transform: rotate(90deg);
}

.modal-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(57,255,20,0.2);
}

.modal-header h2 {
  font-family: 'Orbitron', sans-serif;
  color: var(--bright-green);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-align: left;
}

.modal-category {
  color: var(--accent-green);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.modal-body {
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  font-size: 1.05rem;
}

.modal-body h3 {
  font-family: 'Orbitron', sans-serif;
  color: var(--bright-green);
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.modal-body p {
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.modal-progress {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(57,255,20,0.2);
}

/* Services */
.services {
  background: linear-gradient(180deg, rgba(0,177,64,0.03), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  justify-items: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: var(--card-bg);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(57,255,20,0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-green);
  box-shadow: 0 10px 40px rgba(57,255,20,0.2);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.service-icon img,
.service-icon svg {
  width: 40px !important;
  height: 40px !important;
  display: block;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 2px 8px rgba(57,255,20,0.3));
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon img,
.service-card:hover .service-icon svg {
  transform: scale(1.1);
}

.service-card h3 {
  font-family: 'Orbitron', sans-serif;
  color: var(--bright-green);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--muted);
  line-height: 1.6;
}

.service-card ul {
  list-style: none;
  margin-top: 1.5rem;
  text-align: left;
}

.service-card ul li {
  color: var(--muted);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: bold;
}

/* Contact Form */
.contact {
  background: linear-gradient(180deg, transparent, rgba(0,177,64,0.03));
}

.contact-section {
  padding: 4rem 0 5rem;
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.contact-subtitle {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
  color: var(--muted);
}

.contact-form {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-form label {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  display: block;
  padding: 1.2rem;
  border-radius: 12px;
  border: 2px solid rgba(57,255,20,0.1);
  background: rgba(255,255,255,0.02);
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 20px rgba(57,255,20,0.2);
  background: rgba(255,255,255,0.05);
}

.contact-form button,
.btn-primary {
  background: linear-gradient(135deg, var(--accent-green), var(--bright-green));
  color: var(--primary-black);
  padding: 1.2rem;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--glow);
}

.contact-form button:hover,
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(57,255,20,0.6);
}

.contact-status {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  text-align: center;
  color: var(--muted);
}

#form-status {
  text-align: center;
  color: var(--accent-green);
  font-weight: 600;
  margin-top: 1rem;
}

/* Merch Simple Centered */
.merch-simple {
  text-align: center;
  padding: 4rem 2rem;
}

.merch-simple-center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.merch-logo-centered {
  width: 180px;
  height: 180px;
  margin: 0 auto;
  filter: drop-shadow(0 0 30px var(--bright-green));
  animation: pulseLogo 3s ease-in-out infinite;
}

/* Footer */
footer {
  background: rgba(10,10,10,0.95);
  border-top: 1px solid rgba(57,255,20,0.1);
  padding: 3rem 0;
  margin-top: 4rem;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.social-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--bright-green);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  body { 
    padding-bottom: 120px; 
  }
  
  nav ul {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transition: left 0.3s ease;
    overflow-y: auto;
  }
  
  nav ul.active { 
    left: 0; 
  }
  
  .hamburger { 
    display: flex; 
  }
  
  .projects-grid { 
    grid-template-columns: 1fr; 
  }
  
  .footer-grid { 
    flex-direction: column; 
    text-align: center; 
  }
  
  .footer-links { 
    justify-content: center; 
  }
  
  .modal-content {
    padding: 2rem;
    margin: 1rem;
  }
  
  .modal-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .modal-header h2 { 
    font-size: 1.5rem; 
  }
  
  .overview-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .stat-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
  }
  
  .overview-card-centered {
    padding: 2rem;
  }
}

@media (max-width: 600px) {
  .hero h2 { 
    font-size: 2rem; 
  }
  
  h2 { 
    font-size: 1.8rem; 
  }
  
  section { 
    padding: 4rem 0; 
  }
  
  .project-card {
    height: auto;
    min-height: 350px;
  }
  
  .contact-form {
    padding-inline: 0.25rem;
  }
}

/* Keep sections from sliding under the fixed nav on anchor jumps */
section[id] {
  scroll-margin-top: 90px;
}

/* Subscription Tiers */
.subscription-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.tier-card {
  background: var(--card-bg);
  border: 2px solid rgba(57,255,20,0.2);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.tier-card:hover {
  border-color: var(--accent-green);
  box-shadow: 0 10px 40px rgba(57,255,20,0.15);
  transform: translateY(-4px);
}

.tier-featured {
  border-color: var(--accent-green);
  box-shadow: 0 10px 40px rgba(57,255,20,0.1);
}

.tier-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: linear-gradient(135deg, var(--accent-green), var(--bright-green));
  color: var(--primary-black);
  padding: 0.4rem 2.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(45deg);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.tier-header {
  background: linear-gradient(135deg, rgba(0,177,64,0.1), rgba(57,255,20,0.05));
  padding: 2rem;
  border-bottom: 1px solid rgba(57,255,20,0.2);
}

.tier-name {
  color: var(--bright-green);
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  margin: 0 0 0.5rem 0;
}

.tier-tagline {
  color: var(--muted);
  font-size: 1rem;
  margin: 0 0 1rem 0;
}

.tier-price {
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.tier-body {
  padding: 2rem;
}

.tier-body h4 {
  color: var(--accent-green);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 1rem 0;
}

.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.tier-features li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.tier-features li:before {
  content: "✓";
  color: var(--bright-green);
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* Add-ons Grid */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.addon-card {
  background: var(--card-bg);
  border: 1px solid rgba(57,255,20,0.2);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.2s ease;
}

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

.addon-card h3 {
  color: var(--bright-green);
  font-size: 1.1rem;
  margin: 0 0 0.75rem 0;
}

.addon-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

.addon-price {
  color: var(--accent-green);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Form Select Styling */
select {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--accent-green);
  border-radius: 8px;
  color: var(--text-light);
  padding: 0.75rem;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  width: 100%;
  cursor: pointer;
}

select:focus {
  outline: none;
  border-color: var(--bright-green);
  box-shadow: 0 0 0 3px rgba(57,255,20,0.1);
}

.contact-status.success {
  color: var(--bright-green);
}

/* Onboarding Timeline */
.onboarding-timeline {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-green), var(--bright-green));
  color: var(--primary-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  color: var(--bright-green);
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  margin: 0 0 0.5rem 0;
}

.step-duration {
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 1rem 0;
}

.step-description {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.step-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-checklist li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.step-checklist li:before {
  content: "→";
  color: var(--accent-green);
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* Checklist Cards */
.checklist-card {
  background: var(--card-bg);
  border: 1px solid rgba(57,255,20,0.2);
  border-radius: 12px;
  padding: 2rem;
}

.checklist-card h3 {
  color: var(--bright-green);
  font-size: 1.2rem;
  margin: 0 0 1.5rem 0;
}

.checklist-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.checklist-card li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.checklist-card li:before {
  content: "□";
  color: var(--accent-green);
  position: absolute;
  left: 0;
  font-size: 1.1rem;
}

.checklist-note {
  color: var(--muted);
  font-size: 0.85rem;
  font-style: italic;
  line-height: 1.5;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(57,255,20,0.1);
}

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

.kickoff-card {
  background: var(--card-bg);
  border: 1px solid rgba(57,255,20,0.2);
  border-radius: 12px;
  padding: 2rem;
}

.kickoff-card h3 {
  color: var(--bright-green);
  font-size: 1.1rem;
  margin: 0 0 1.5rem 0;
}

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

.kickoff-card li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.kickoff-card li:before {
  content: "•";
  color: var(--accent-green);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

/* Communication Timeline */
.communication-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comm-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 1.5rem;
  background: var(--card-bg);
  border-left: 3px solid var(--accent-green);
  border-radius: 8px;
}

.comm-frequency {
  color: var(--bright-green);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.comm-details h4 {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin: 0 0 0.5rem 0;
}

.comm-details p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* File Guidance */
.file-guidance {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.guidance-section {
  background: var(--card-bg);
  border: 1px solid rgba(57,255,20,0.2);
  border-radius: 12px;
  padding: 2rem;
}

.guidance-section h3 {
  color: var(--bright-green);
  font-size: 1.1rem;
  margin: 0 0 1.5rem 0;
}

.guidance-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.guidance-section li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.guidance-section li:before {
  content: "▸";
  color: var(--accent-green);
  position: absolute;
  left: 0;
}

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

.signal-card {
  background: var(--card-bg);
  border: 1px solid rgba(57,255,20,0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.signal-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.signal-card h3 {
  color: var(--bright-green);
  font-size: 1.1rem;
  margin: 0 0 1rem 0;
}

.signal-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .timeline-step {
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .comm-item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* White-Label Partner Types */
.partner-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.partner-type-card {
  background: var(--card-bg);
  border: 2px solid rgba(57,255,20,0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.partner-type-card:hover {
  border-color: var(--accent-green);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(57,255,20,0.15);
}

.partner-type-card h3 {
  color: var(--bright-green);
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  margin: 0 0 1rem 0;
}

.partner-description {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.partner-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.partner-benefits li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.partner-benefits li:before {
  content: "+";
  color: var(--accent-green);
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 1.2rem;
}

/* White-Label Offerings */
.white-label-offerings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.wl-offering-card {
  background: var(--card-bg);
  border: 1px solid rgba(57,255,20,0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.wl-offering-card:hover {
  border-color: var(--accent-green);
  box-shadow: 0 10px 40px rgba(57,255,20,0.15);
}

.wl-offering-header {
  background: linear-gradient(135deg, rgba(0,177,64,0.1), rgba(57,255,20,0.05));
  padding: 1.5rem;
  border-bottom: 1px solid rgba(57,255,20,0.2);
}

.wl-offering-header h3 {
  color: var(--bright-green);
  font-size: 1.2rem;
  margin: 0 0 0.5rem 0;
}

.wl-tagline {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.wl-offering-body {
  padding: 1.5rem;
}

.wl-description {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.wl-offering-body h4 {
  color: var(--accent-green);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 1rem 0;
}

.wl-offering-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.wl-offering-body li {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.wl-offering-body li:before {
  content: "•";
  color: var(--accent-green);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.wl-pricing {
  color: var(--accent-green);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}

/* Engagement Modes */
.engagement-modes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.engagement-card {
  background: var(--card-bg);
  border: 2px solid rgba(57,255,20,0.2);
  border-radius: 12px;
  padding: 2rem;
}

.engagement-card h3 {
  color: var(--bright-green);
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  margin: 0 0 1rem 0;
}

.engagement-description {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(57,255,20,0.1);
}

.engagement-details h4 {
  color: var(--accent-green);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 1.5rem 0 0.75rem 0;
}

.engagement-details h4:first-child {
  margin-top: 0;
}

.engagement-details p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

.engagement-details ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.engagement-details li {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.engagement-details li:before {
  content: "→";
  color: var(--accent-green);
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* Branding Options Grid */
.branding-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.branding-option {
  background: var(--card-bg);
  border: 1px solid rgba(57,255,20,0.2);
  border-radius: 12px;
  padding: 2rem;
}

.branding-option h3 {
  color: var(--bright-green);
  font-size: 1.1rem;
  margin: 0 0 1rem 0;
}

.branding-option p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* Solutions Section */
.solutions-section {
  padding: 4rem 0;
  background: rgba(0,177,64,0.02);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.solution-card {
  background: var(--card-bg);
  border: 2px solid rgba(57,255,20,0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.solution-card:hover {
  border-color: var(--accent-green);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(57,255,20,0.15);
}

.solution-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.solution-card h3 {
  color: var(--bright-green);
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  margin: 0 0 1rem 0;
}

.solution-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}
