/*
Theme Name: Kewi
Theme URI: https://kewi.com
Author: Kewi Team
Author URI: https://kewi.com
Description: A custom WordPress theme for the Kewi meme coin project
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kewi
Tags: dark-mode, crypto, meme-coin
*/

:root {
  /* Theme */
  --theme: 'Dark';
  --style: 'Modern, sleek, and high-tech';
  
  /* Background Colors */
  --background-primary: #0A0A0A;
  --background-secondary: #141414;
  --background-tertiary: #1A1A1A;
  --background-translucent: rgba(16, 16, 16, 0.8);
  --background-card-inner-glow: radial-gradient(circle, rgba(0, 255, 133, 0.08) 0%, rgba(20, 20, 20, 0) 70%);
  
  /* Text Colors */
  --text-primary: #FFFFFF;
  --text-secondary: #A0A0A0;
  --text-accent: #00FF85;
  --text-inverted: #0A0A0A;
  
  /* Accent Colors */
  --accent-primary: #00FF85;
  --accent-secondary: #00B35E;
  --accent-glow: rgba(0, 255, 133, 0.25);
  
  /* Border Colors */
  --border-primary: #2A2A2A;
  --border-interactive: #00FF85;
  
  /* Status Colors */
  --status-success: #00FF85;
  --status-error: #FF4D4D;
  --status-warning: #FFD700;
  
  /* Typography */
  --font-family: 'Manrope', 'Inter', sans-serif;
  --font-mono: 'Fira Code', 'Roboto Mono', monospace;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Layout */
  --container-width: 1200px;
  --spacing-unit: 8px;
  --section-padding-v: 120px;
  --section-padding-h: 24px;
  --grid-gap: 24px;
  --grid-columns: 4;
  
  /* Effects */
  --border-radius-small: 8px;
  --border-radius-medium: 12px;
  --border-radius-large: 16px;
  --border-radius-pill: 9999px;
  
  /* Shadows */
  --shadow-glow: 0px 0px 20px 0px rgba(0, 255, 133, 0.25);
  --shadow-glow-hover: 0px 0px 30px 5px rgba(0, 255, 133, 0.25);
  
  /* Transitions */
  --transition-duration: 0.3s;
  --transition-timing: ease-in-out;
  
  /* Filters */
  --filter-glass: blur(10px);
}

/* Base Styles */
html, body {
  background-color: var(--background-primary);
  color: var(--text-secondary);
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
}

*, *::before, *::after {
  box-sizing: border-box;
}

a {
  color: var(--text-accent);
  text-decoration: none;
  transition: all var(--transition-duration) var(--transition-timing);
}

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

h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 700;
  margin-top: 0;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.75rem;
  line-height: 1.4;
  color: var(--text-accent);
  font-weight: 500;
}

p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--section-padding-h);
}

section {
  padding: var(--section-padding-v) 0;
}

/* Button Styles */
.btn {
  padding: 14px 28px;
  border-radius: var(--border-radius-small);
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all var(--transition-duration) var(--transition-timing);
}

.btn-primary {
  background-color: var(--accent-primary);
  color: var(--text-inverted);
  box-shadow: var(--shadow-glow);
  border: 1px solid transparent;
}

.btn-primary:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-glow-hover);
}

.btn-icon {
  color: var(--text-inverted);
}

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

.btn-secondary:hover {
  background-color: var(--accent-glow);
}

/* Card Styles */
.card {
  background-color: var(--background-secondary);
  border-radius: var(--border-radius-large);
  border: 1px solid var(--border-primary);
  padding: 32px;
  height: 100%;
  transition: all var(--transition-duration) var(--transition-timing);
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--border-interactive);
}

.stat-card {
  padding: 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.stat-card .value {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--accent-primary);
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-card .icon {
  margin-bottom: 16px;
}

.feature-card .title {
  font-size: 1.5rem;
  font-weight: 600;
}

.feature-card .tag {
  display: inline-block;
  background: var(--accent-glow);
  padding: 4px 12px;
  border-radius: var(--border-radius-pill);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
  margin-top: auto;
}

/* Header/Navigation - Based on Kewi Dark Tech Header Design System */
.kewi-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(16, 16, 16, 0.8); /* palette.background.translucent */
  backdrop-filter: blur(10px); /* effects.filters.glass */
  border-bottom: 1px solid #2A2A2A; /* palette.border.subtle */
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}

.kewi-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.kewi-navbar.scrolled {
  background-color: rgba(10, 10, 10, 0.95);
}

.site-branding {
  display: flex;
  align-items: center;
}

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



.logo-text {
  font-family: 'Manrope', 'Inter', sans-serif; /* typography.fontFamily */
  font-weight: 700; /* typography.styles.logoText.fontWeight */
  font-size: 1.25rem; /* typography.styles.logoText.fontSize */
  color: #FFFFFF; /* palette.text.primary */
}

.site-logo {
  padding: 10px 15px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.site-logo:hover {
  background-color: rgba(0, 255, 133, 0.1);
  box-shadow: 0px 0px 20px 0px rgba(0, 255, 133, 0.3);
}

.site-logo img {
  height: 40px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.footer-brand-block .site-logo {
  padding: 8px 12px;
  border-radius: 10px;
}

.footer-brand-block .site-logo:hover {
  background-color: rgba(0, 255, 133, 0.1);
  box-shadow: 0px 0px 20px 0px rgba(0, 255, 133, 0.3);
}

.footer-brand-block .site-logo img {
  height: 35px;
  width: auto;
  max-width: 200px;
}

.main-navigation {
  display: flex;
  align-items: center;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links {
  display: flex;
  gap: 32px; /* components.navigationBar.elements.linkContainer.layout.gap */
}

.main-navigation a, .nav-link {
  color: #A0A0A0; /* palette.text.secondary */
  font-weight: 500; /* typography.styles.navLink.fontWeight */
  font-size: 1rem; /* typography.styles.navLink.fontSize */
  line-height: 1.5; /* typography.styles.navLink.lineHeight */
  position: relative;
  transition: color 0.3s ease-in-out; /* effects.transitions */
  text-decoration: none;
}

.main-navigation a:hover, .nav-link:hover {
  color: #FFFFFF; /* palette.text.primary */
}

.main-navigation .current-menu-item a, .nav-link.active {
  color: #00FF85; /* palette.accent.primary */
}

.header-cta {
  display: flex;
  align-items: center;
}

.btn-cta {
  padding: 12px 24px; /* components.button.baseStyle.padding */
  border-radius: 12px; /* effects.borderRadius.medium */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  background-color: #00FF85; /* palette.accent.primary */
  color: #05140D; /* palette.text.inverted */
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 600; /* typography.styles.button.fontWeight */
  font-size: 1rem; /* typography.styles.button.fontSize */
  transition: transform 0.3s ease-in-out; /* effects.transitions */
  text-decoration: none;
}

.btn-cta:hover {
  transform: scale(1.05); /* components.button.variants.primary.states.hover.transform */
}

/* Footer Styles */
.site-footer {
  padding: 80px 24px 40px;
  background-color: #0A0A0A;
  color: #FFFFFF;
}

.footer-main-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-description {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #A0A0A0;
    margin: 0;
  margin-top: 16px;
  max-width: 380px;
}

.footer-powered-by {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: #A0A0A0;
  margin: 8px 0 0;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-icon-button {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #1A1A1A;
  color: #A0A0A0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.social-icon-button:hover {
  background-color: #2A2A2A;
  color: #FFFFFF;
}

.footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-list-title {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.footer-links {
  list-style: none;
    padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #A0A0A0;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-sub-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #2A2A2A;
  padding-top: 24px;
}

.copyright {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #A0A0A0;
}

.brand-tag-group {
  display: flex;
  gap: 24px;
}

.brand-tag {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #00FF85;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 24px;
  padding-top: calc(120px + 80px); /* Account for fixed header */
}

.hero-content {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  text-align: center;
}

.hero-text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 6rem;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 0;
}

.hero-subtitle {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1.4;
  color: var(--accent-primary);
  margin-bottom: 0;
}

.hero-description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 650px;
  margin-bottom: 0;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
}

.hero-bg {
  position: absolute;
  right: -10%;
  top: 10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 70%);
  filter: blur(150px);
  opacity: 0.15;
  z-index: 0;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--grid-gap);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.stat-card {
  background-color: var(--background-secondary);
  padding: 24px;
  border-radius: var(--border-radius-large);
  border: 1px solid var(--border-primary);
  text-align: left;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  height: 100%;
  transition: all var(--transition-duration) var(--transition-timing);
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-interactive);
}

.stat-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--background-card-inner-glow);
  z-index: 0;
}

.stat-value {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 2.5rem;
  color: var(--accent-primary);
  position: relative;
  z-index: 1;
}

.stat-label {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

.stat-subtext {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

.stat-subtext svg {
  color: var(--accent-primary);
}

/* Code Block */
.code-block {
  background-color: var(--background-primary);
  padding: 24px;
  border-radius: var(--border-radius-medium);
  border: 1px solid var(--border-primary);
  font-family: var(--font-mono);
  margin: 24px 0;
  overflow-x: auto;
}

/* Content blocks */
.content-block {
  margin-bottom: 60px;
}

/* WordPress Core Styling */
.alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}

.alignright {
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
}

.aligncenter {
  display: block;
  margin: 0 auto 20px;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 8px;
}

/* Menu Toggle Button */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1002;
}

.menu-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #FFFFFF;
  margin: 4px 0;
  transition: all 0.3s ease;
}

.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}

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

.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}

/* Revolutionary Technology Section */
.revolution-section {
  position: relative;
  background-color: var(--background-primary);
  padding: var(--section-padding-v) var(--section-padding-h);
  overflow: hidden;
  background-image: linear-gradient(var(--border-primary) 1px, transparent 1px), linear-gradient(to right, var(--border-primary) 1px, transparent 1px);
  background-size: 30px 30px;
}

.revolution-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 48px;
}

.revolution-header h2 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.2;
  color: var(--text-primary);
}

.revolution-header h2 span {
  color: var(--accent-primary);
}

.section-subheading {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.feature-card {
  background-color: var(--background-secondary);
  padding: 32px;
  border-radius: var(--border-radius-large);
  border: 1px solid var(--border-primary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  height: 100%;
  transition: all var(--transition-duration) var(--transition-timing);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-interactive);
}

.feature-icon-container {
  background-color: rgba(0, 255, 133, 0.1);
  padding: 12px;
  margin-bottom: 16px;
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-container svg {
  color: var(--accent-primary);
}

.feature-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--text-primary);
  margin: 0;
}

.feature-description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  flex-grow: 1;
  margin: 0;
}

.feature-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--accent-primary);
}

.feature-benefit svg {
  color: var(--accent-primary);
}

/* Ecosystem Stats Section */
.ecosystem-stats-section {
  padding: var(--section-padding-v) 0;
  background-color: var(--background-primary);
}

.ecosystem-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}

.ecosystem-header h2 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.ecosystem-header h2 span {
  color: var(--text-accent);
}

.ecosystem-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.ecosystem-stat-card {
  background-color: var(--background-tertiary);
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--border-primary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.ecosystem-stat-card:hover {
  transform: translateY(-8px);
}

.ecosystem-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.defi-icon {
  color: #E0E0E0;
}

.gaming-icon {
  color: #8A63D2;
}

.nft-icon {
  color: #F4A2B4;
}

.dao-icon {
  color: #63B3F2;
}

.ecosystem-text-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
}

.ecosystem-title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.ecosystem-value {
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-accent);
  margin-bottom: 4px;
}

.ecosystem-sublabel {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* Product Banner Section */
.product-banner-section {
  padding: var(--section-padding-v) 0;
}

.product-banner {
  background-color: #0A3415;
  padding: 80px 24px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.product-logo-group {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.product-logo-image {
  max-width: 350px;
  height: auto;
}

.product-text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.product-heading {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.2;
  color: var(--text-primary);
  margin: 0;
}

.product-heading span {
  color: var(--text-accent);
}

.product-description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #C0C0C0;
  max-width: 650px;
  margin: 0 auto 20px;
}

.product-stats-container {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin: 16px 0;
}

.product-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.product-stat-value {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 2.75rem;
  line-height: 1.2;
  color: var(--text-accent);
}

.product-stat-label {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #C0C0C0;
  margin-top: 5px;
}

.product-cta-button {
  padding: 14px 28px;
  border-radius: 8px;
  background-color: #00FF85;
  color: #0A0A0A;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0px 0px 25px 0px rgba(0, 255, 133, 0.3);
  transition: transform 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
}

.product-cta-button:hover {
  transform: scale(1.05);
}

.product-cta-button::after {
  content: "→";
  margin-left: 8px;
  font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  h1, .hero-title {
    font-size: 4rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ecosystem-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ecosystem-header h2 {
    font-size: 3rem;
  }
  
  .product-heading {
    font-size: 2.5rem;
  }
  
  .product-stats-container {
    gap: 32px;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .revolution-header h2 {
    font-size: 2.8rem;
  }
}

@media (max-width: 992px) {
  .main-navigation {
    position: static;
    transform: none;
    margin: 0;
    order: 3;
  }
  
  .header-cta {
    order: 2;
  }
  
  .site-branding {
    order: 1;
  }
  
  .kewi-navbar .container {
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .kewi-navbar {
    height: 70px;
  }
  
  .menu-toggle {
    display: block;
    z-index: 1002;
    margin-left: 20px;
    order: 3;
  }
  
  .main-navigation {
    position: static;
    transform: none;
    margin: 0;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #0A0A0A;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    transition: right 0.3s ease-in-out;
    z-index: 1001;
  }
  
  .main-navigation.active .nav-links {
    right: 0;
  }
  
  .main-navigation a, .nav-link {
    font-size: 1.25rem;
    padding: 12px 0;
  }
  
  .header-cta {
    margin-right: 20px;
  }
  
  /* Hide WordPress menu items on mobile */
  #primary-menu {
    display: none;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .ecosystem-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .ecosystem-header h2 {
    font-size: 2.5rem;
  }
  
  .ecosystem-value {
    font-size: 2.25rem;
  }
  
  .product-banner {
    padding: 60px 20px;
  }
  
  .product-heading {
    font-size: 2.2rem;
  }
  
  .product-description {
    font-size: 1rem;
  }
  
  .product-stats-container {
    flex-direction: column;
    gap: 24px;
  }
  
  section {
    padding: 60px 0;
  }
  
  .hero-section {
    padding: 80px 16px;
    padding-top: calc(80px + 80px);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .feature-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .revolution-header h2 {
    font-size: 2.2rem;
  }
  
  .section-subheading {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  h1, .hero-title {
    font-size: 2.5rem;
  }
  
  .btn {
    padding: 10px 20px;
  }
  
  .hero-cta-group {
    flex-direction: column;
  }
  
  .product-logo-text {
    font-size: 1.5rem;
  }
  
  .product-heading {
    font-size: 1.8rem;
  }
  
  .product-stat-value {
    font-size: 1.8rem;
  }
  
  .site-logo .logo-text {
    font-size: 1rem;
  }
  
  .header-cta .btn-cta {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
}

/* Developer Features Section */
.developer-section {
    background-color: #0A0A0A;
    color: #FFFFFF;
    padding: 120px 24px;
}

.developer-header {
    text-align: center;
    margin-bottom: 64px;
}

.developer-header h2 {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.developer-header h2 span {
    color: #00FF85;
}

.developer-subtitle {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    color: #FFFFFF;
    max-width: 600px;
    margin: 0 auto;
}

.developer-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    align-items: center;
}

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

.feature-item {
    background-color: #1A1A1A;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #2A2A2A;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.feature-item:hover {
    background-color: rgba(0, 255, 133, 0.1);
}

.feature-item.active {
    background-color: rgba(0, 255, 133, 0.1);
    border-color: #00FF85;
}

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

.feature-icon {
    color: #00FF85;
}

.feature-title {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    color: #FFFFFF;
    margin: 0;
}

.feature-description {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #A0A0A0;
    margin: 0;
}

.code-block {
    background-color: #1A1A1A;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #2A2A2A;
    overflow: auto;
}

.code-block pre {
    margin: 0;
}

.code-block code {
    font-family: 'Fira Code', 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    line-height: 1.7;
    display: block;
    white-space: pre;
}

/* Syntax highlighting */
.code-block .comment { color: #6A9955; }
.code-block .keyword { color: #569CD6; }
.code-block .string { color: #CE9178; }
.code-block .number { color: #B5CEA8; }
.code-block .function { color: #DCDCAA; }
.code-block .variable { color: #9CDCFE; }

/* Responsive styles */
@media (max-width: 992px) {
    .developer-content-grid {
        grid-template-columns: 1fr;
    }
    
    .developer-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .developer-section {
        padding: 80px 16px;
    }
    
    .developer-header h2 {
        font-size: 2rem;
    }
    
    .developer-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .developer-section {
        padding: 60px 16px;
    }
    
    .developer-header h2 {
        font-size: 1.75rem;
    }
    
    .feature-item {
        padding: 16px;
    }
}

/* Community Section */
.community-section {
    background-color: #0A0A0A;
    color: #FFFFFF;
    padding: 120px 24px;
    position: relative;
    overflow: hidden;
}

.community-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(42, 42, 42, 0.5) 1px, transparent 1px), linear-gradient(to right, rgba(42, 42, 42, 0.5) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 1;
}

.community-section .container {
    position: relative;
    z-index: 2;
}

.community-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 60px;
}

.community-header h2 {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 4rem;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 0;
}

.community-header h2 span {
    color: #00FF85;
}

.community-subtitle {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.6;
    color: #A0A0A0;
    max-width: 600px;
    margin: 0 auto;
}

.community-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.community-link-card {
    background-color: #111111;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #222222;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    height: 100%;
    text-decoration: none;
}

.community-link-card:hover {
    transform: translateY(-8px);
    border-color: #00FF85;
}

.card-icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: #1A1A1A;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.card-icon-wrapper i {
    font-size: 24px;
    color: #00FF85;
}

.card-text-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-title {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    color: #FFFFFF;
    margin: 0;
}

.card-stats {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #A0A0A0;
    margin: 0;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .community-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .community-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .community-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .community-section {
        padding: 80px 16px;
    }
    
    .community-header h2 {
        font-size: 2rem;
    }
    
    .community-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .community-card-grid {
        grid-template-columns: 1fr;
    }
    
    .community-header h2 {
        font-size: 1.75rem;
    }
}

/* CTA Banner Section */
.cta-banner-section {
    padding: 80px 24px;
}

.cta-banner {
    background-color: #103D28; /* Dark green background from the design */
    border-radius: 24px;
    padding: 80px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.cta-text-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-heading {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0;
}

.cta-heading span {
    color: #00FF85;
}

.cta-subheading {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.6;
    color: #E0E0E0;
    max-width: 600px;
    margin: 0;
}

.cta-button-group {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-cta-primary {
    padding: 16px 32px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
    font-family: 'Manrope', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    background-color: #00FF85;
    color: #0A0A0A;
    box-shadow: 0px 0px 25px 0px rgba(0, 255, 133, 0.3);
}

.btn-cta-primary:hover {
    transform: scale(1.03);
    box-shadow: 0px 0px 35px 5px rgba(0, 255, 133, 0.3);
}

.btn-cta-secondary {
    padding: 16px 32px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    border: 1px solid #00FF85;
    transition: all 0.3s ease-in-out;
    font-family: 'Manrope', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    background-color: transparent;
    color: #FFFFFF;
}

.btn-cta-secondary:hover {
    background-color: rgba(0, 255, 133, 0.1);
}

/* Responsive styles for CTA Banner */
@media (max-width: 992px) {
    .cta-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .cta-banner {
        padding: 60px 24px;
    }
    
    .cta-heading {
        font-size: 2rem;
    }
    
    .cta-subheading {
        font-size: 1.1rem;
    }
    
    .cta-button-group {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .cta-banner {
        padding: 40px 16px;
    }
    
    .cta-heading {
        font-size: 1.75rem;
    }
    
    .cta-subheading {
        font-size: 1rem;
    }
}

/* Footer Responsive Styles */
@media (max-width: 1024px) {
    .footer-main-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand-block {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-brand-block {
        grid-column: span 1;
    }
    
    .footer-sub-footer {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .brand-tag-group {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 60px 16px 32px;
    }
    
    .footer-socials {
        width: 100%;
        justify-content: flex-start;
    }
    
    .brand-tag-group {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }
  }
  