/* ===================================
   GRËËNËON INTERNATIONAL STYLESHEET
   FIXED MOBILE RESPONSIVE VERSION
   =================================== */

/* ========== CSS RESET & BASE ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors */
  --black: #0A0D12;
  --carbon: #141821;
  --carbon-light: #1A1F2E;
  --gold: #D4AF37;
  --gold-warm: #FFD95E;
  --gold-dark: #B8831B;
  --brass: #C9A961;
  --platinum: #E8E9EB;
  --platinum-dark: #A6ACB1;
  --emerald: #39FF88;
  
  /* Spacing - Mobile First */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  /* Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Effects */
  --blur: 10px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.3);
  --border-glass: 1px solid rgba(232, 233, 235, 0.1);
  --border-gold: 1px solid rgba(212, 175, 55, 0.3);
  
  /* Typography */
  --font-display: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;
}

/* Desktop spacing override */
@media (min-width: 768px) {
  :root {
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
  }
}

html {
  font-size: 16px;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--platinum);
  background-color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-width: 320px;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

ul, ol {
  list-style: none;
}

/* ========== SKIP LINK ========== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--gold);
  color: var(--black);
  padding: 0.5rem 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  z-index: 10001;
}

.skip-link:focus {
  top: 1rem;
}

/* ========== PRELOADER ========== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

.preloader-ring {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid transparent;
  border-top-color: var(--gold);
  border-right-color: var(--gold-warm);
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}

.preloader-ring.ring-2 {
  width: 85px;
  height: 85px;
  animation-duration: 2s;
  animation-direction: reverse;
}

.preloader-mark {
  width: 70px;
  height: 70px;
  opacity: 0;
  animation: fadeIn 0.6s ease 0.3s forwards;
}

.preloader-text {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: fadeIn 0.6s ease 0.8s forwards;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ========== CURSOR (Desktop Only) ========== */
.cursor, .cursor-halo {
  display: none;
}

@media (min-width: 1024px) and (pointer: fine) {
  .cursor, .cursor-halo {
    display: block;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    mix-blend-mode: difference;
  }
  
  .cursor {
    width: 8px;
    height: 8px;
    background: var(--gold-warm);
    border-radius: 50%;
  }
  
  .cursor-halo {
    width: 35px;
    height: 35px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    opacity: 0.5;
  }
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s ease;
  padding: 0.75rem 0;
}

.nav.scrolled {
  background: rgba(10, 13, 18, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding: 0.5rem 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Text Logo with Green Accent */
.brand-content {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  background: linear-gradient(135deg, #39FF88, #2DD477, #1FB566);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(57, 255, 136, 0.3);
  position: relative;
}

/* Optional: Add glow effect */
.brand-text::before {
  content: 'GRËËNËON';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(135deg, #39FF88, #2DD477, #1FB566);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(8px);
  opacity: 0.5;
}

.brand-subtitle {
  font-size: 0.625rem;
  color: var(--platinum-dark);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .brand-text {
    font-size: 1.25rem;
  }
  
  .brand-subtitle {
    font-size: 0.6875rem;
  }
}

@media (min-width: 1024px) {
  .brand-text {
    font-size: 1.375rem;
  }
  
  .brand-subtitle {
    font-size: 0.75rem;
  }
}

/* Hover effect */
.brand:hover .brand-text {
  background: linear-gradient(135deg, #39FF88, #2DD477, #1FB566);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Mobile Menu Toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: rgba(20, 24, 33, 0.8);
  border-radius: 0.5rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  z-index: 1001;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Menu */
.menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh; /* Dynamic viewport height for mobile */
  background: rgba(10, 13, 18, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 1.5rem;
  gap: 1.5rem;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  overflow-y: auto;
  z-index: 1000;
}

.menu.active {
  right: 0;
}

.nav-link {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--platinum);
  padding: 0.75rem 0;
  width: 100%;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-warm), var(--gold));
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  width: 100%;
  padding: 0.875rem 1.5rem;
  border: 1px solid var(--gold);
  border-radius: 2rem;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  text-align: center;
  font-weight: 600;
  margin-top: 1rem;
}

.nav-cta::after {
  display: none;
}

/* Desktop Navigation */
@media (min-width: 1024px) {
  .nav {
    padding: 1rem 0;
  }
  
  .nav.scrolled {
    padding: 0.75rem 0;
  }
  
  .nav-container {
    padding: 0 2rem;
  }
  
  .logo {
    width: 45px;
    height: 45px;
  }
  
  .brand-text {
    font-size: 1.25rem;
  }
  
  .brand-subtitle {
    font-size: 0.75rem;
  }
  
  .nav-toggle {
    display: none;
  }
  
  .menu {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    background: transparent;
    backdrop-filter: none;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    gap: 2.5rem;
    border: none;
    box-shadow: none;
    overflow: visible;
  }
  
  .nav-link {
    font-size: 0.95rem;
    padding: 0.5rem 0;
    width: auto;
  }
  
  .nav-link::after {
    bottom: -2px;
  }
  
  .nav-cta {
    width: auto;
    padding: 0.625rem 1.5rem;
    margin-top: 0;
  }
  
  .nav-cta:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.btn svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-warm), var(--gold));
  color: var(--black);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(20, 24, 33, 0.8);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-warm);
}

.btn-small {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-large {
  padding: 1.125rem 2.25rem;
  font-size: 1.0625rem;
}

.btn-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.btn-link:hover {
  color: var(--gold-warm);
  transform: translateX(4px);
}

@media (min-width: 640px) {
  .btn {
    width: auto;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .btn-large {
    padding: 1.25rem 2.75rem;
    font-size: 1.125rem;
  }
}

/* ========== CONTAINER & LAYOUT ========== */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.section {
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 7rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 4rem;
  }
}

.section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  word-wrap: break-word;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3.5rem;
  }
}

.title-underline {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1rem auto;
  border-radius: 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .title-underline {
    width: 120px;
    height: 4px;
  }
}

.section-intro {
  font-size: 1rem;
  color: var(--platinum-dark);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .section-intro {
    font-size: 1.125rem;
    line-height: 1.8;
  }
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 0 3rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    padding: 8rem 0 4rem;
  }
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

#energy-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    transparent 0%,
    rgba(10, 13, 18, 0.5) 60%,
    var(--black) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 1000px;
  padding: 0 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: rgba(20, 24, 33, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(232, 233, 235, 0.15);
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-badge {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
  }
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--emerald);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  word-wrap: break-word;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 5.5rem;
  }
}

.title-line {
  display: block;
  background: linear-gradient(135deg, var(--gold-warm), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--platinum);
  margin-bottom: 0.75rem;
  font-weight: 400;
  padding: 0 0.5rem;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.375rem;
  }
}

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 1.75rem;
  }
}

.hero-tagline {
  font-size: 0.9375rem;
  color: var(--platinum-dark);
  margin-bottom: 2rem;
  font-weight: 300;
  font-style: italic;
}

@media (min-width: 768px) {
  .hero-tagline {
    font-size: 1.0625rem;
    margin-bottom: 2.5rem;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem 0;
}

@media (min-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: nowrap;
  }
}

.stat-item {
  text-align: center;
}

.stat-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-icon {
    font-size: 2rem;
  }
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-warm);
  line-height: 1;
}

@media (min-width: 640px) {
  .stat-value {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .stat-value {
    font-size: 3.5rem;
  }
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--platinum-dark);
  margin-top: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stat-divider {
  display: none;
}

@media (min-width: 1024px) {
  .stat-divider {
    display: block;
    width: 1px;
    height: 45px;
    background: linear-gradient(
      to bottom,
      transparent,
      var(--platinum-dark),
      transparent
    );
    opacity: 0.4;
  }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
    justify-content: center;
    gap: 1.25rem;
  }
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2.5s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-12px);
  }
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--gold);
  border-radius: 12px;
  position: relative;
}

.mouse-wheel {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
}

.scroll-text {
  font-size: 0.6875rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ========== GLASS CARDS ========== */
.glass-card {
  background: rgba(20, 24, 33, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(232, 233, 235, 0.1);
  border-radius: 1.25rem;
  padding: 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .glass-card {
    padding: 2rem;
  }
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
  border-color: rgba(212, 175, 55, 0.3);
}

.card-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--gold-warm), var(--gold));
  border-radius: 1.25rem;
  opacity: 0;
  filter: blur(15px);
  transition: opacity 0.6s ease;
  z-index: -1;
}

.glass-card:hover .card-glow {
  opacity: 0.25;
}

.card-icon {
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
}

.card-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: linear-gradient(135deg, var(--gold-warm), var(--gold));
  color: var(--black);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .card-title {
    font-size: 1.75rem;
  }
}

.card-text {
  font-size: 0.9375rem;
  color: var(--platinum-dark);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .card-text {
    font-size: 1rem;
    line-height: 1.8;
  }
}

/* ========== ABOUT SECTION ========== */
.company-motto {
  max-width: 900px;
  margin: 0 auto 2.5rem;
  text-align: center;
  padding: 1.5rem;
  background: rgba(20, 24, 33, 0.5);
  border: 1px solid rgba(232, 233, 235, 0.1);
  border-radius: 1.25rem;
  backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
  .company-motto {
    padding: 2rem;
    margin-bottom: 4rem;
  }
}

.motto-icon {
  margin: 0 auto 1rem;
}

.motto-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .motto-title {
    font-size: 2rem;
  }
}

.motto-text {
  font-size: 1rem;
  color: var(--platinum);
  line-height: 1.8;
  font-weight: 300;
}

@media (min-width: 768px) {
  .motto-text {
    font-size: 1.125rem;
    line-height: 1.9;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* ========== TECHNOLOGY SECTION ========== */
.tech-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .tech-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.tech-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  order: 2;
}

@media (min-width: 1024px) {
  .tech-visual {
    order: 1;
  }
}

.atom-container {
  position: relative;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .atom-container {
    max-width: 400px;
  }
}

@media (min-width: 1024px) {
  .atom-container {
    max-width: 450px;
  }
}

.atom-system {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.3));
}

.tech-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  order: 1;
}

@media (min-width: 1024px) {
  .tech-features {
    order: 2;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(20, 24, 33, 0.4);
  border-left: 3px solid transparent;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  text-align: center;
}

@media (min-width: 768px) {
  .feature-item {
    flex-direction: row;
    text-align: left;
    padding: 1.5rem;
  }
}

.feature-item::before {
  content: '';
  position: absolute;
  left: -3px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold-warm), var(--gold));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s ease;
}

.feature-item:hover::before {
  transform: scaleY(1);
}

.feature-item:hover {
  background: rgba(20, 24, 33, 0.7);
  transform: translateX(0);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .feature-item:hover {
    transform: translateX(8px);
  }
}

.feature-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .feature-marker {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.feature-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

@media (min-width: 768px) {
  .feature-number {
    font-size: 2.5rem;
  }
}

.feature-item:hover .feature-number {
  opacity: 1;
}

.feature-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.3;
}

@media (min-width: 768px) {
  .feature-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--gold), transparent);
  }
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-warm);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .feature-title {
    font-size: 1.5rem;
  }
}

.feature-text {
  font-size: 0.9375rem;
  color: var(--platinum-dark);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .feature-text {
    font-size: 1rem;
    line-height: 1.8;
  }
}

/* ========== PRODUCTS SECTION ========== */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1280px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  position: relative;
  background: rgba(20, 24, 33, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(232, 233, 235, 0.1);
  border-radius: 1.25rem;
  padding: 1.5rem;
  transition: all 0.4s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .product-card {
    padding: 2rem;
  }
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.4);
  border-color: rgba(212, 175, 55, 0.4);
}

.product-glow {
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--gold-warm), var(--gold));
  border-radius: 1.25rem;
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.6s ease;
  z-index: -1;
}

.product-card:hover .product-glow {
  opacity: 0.4;
}

.product-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--gold);
  border-style: solid;
  transition: all 0.3s ease;
}

.product-corner.tl {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px;
}

.product-corner.tr {
  top: 0;
  right: 0;
  border-width: 2px 2px 0 0;
}

.product-corner.bl {
  bottom: 0;
  left: 0;
  border-width: 0 0 2px 2px;
}

.product-corner.br {
  bottom: 0;
  right: 0;
  border-width: 0 2px 2px 0;
}

.product-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.25rem;
}

.product-icon {
  margin-bottom: 1rem;
}

.product-icon svg {
  width: 70px;
  height: 70px;
}

@media (min-width: 768px) {
  .product-icon svg {
    width: 90px;
    height: 90px;
  }
}

.product-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 2rem;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
  text-align: center;
}

@media (min-width: 768px) {
  .product-name {
    font-size: 2rem;
  }
}

.product-tagline {
  font-size: 0.875rem;
  color: var(--gold-warm);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: center;
}

@media (min-width: 768px) {
  .product-tagline {
    font-size: 0.9375rem;
  }
}

.product-desc {
  font-size: 0.9375rem;
  color: var(--platinum-dark);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .product-desc {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.product-specs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.product-specs li {
  font-size: 0.875rem;
  color: var(--platinum);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .product-specs li {
    font-size: 0.9375rem;
  }
}

.product-specs li svg {
  flex-shrink: 0;
  stroke: var(--gold);
  margin-top: 0.125rem;
}

.product-cta {
  margin-top: auto;
  text-align: center;
}

/* ========== WHY WIN SECTION ========== */
.reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .reasons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .reasons-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.reason-card {
  background: rgba(20, 24, 33, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(232, 233, 235, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .reason-card {
    padding: 2rem;
  }
}

.reason-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-warm), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.reason-card:hover::before {
  transform: scaleX(1);
}

.reason-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
  border-color: rgba(212, 175, 55, 0.3);
}

.reason-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--gold-warm), var(--gold));
  border-radius: 1rem;
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.6s ease;
  z-index: -1;
}

.reason-card:hover .reason-glow {
  opacity: 0.3;
}

.reason-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.1;
}

@media (min-width: 768px) {
  .reason-number {
    font-size: 3rem;
  }
}

.reason-icon {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .reason-icon {
    font-size: 3.5rem;
  }
}

.reason-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .reason-title {
    font-size: 1.5rem;
  }
}

.reason-text {
  font-size: 0.9375rem;
  color: var(--platinum-dark);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .reason-text {
    font-size: 1rem;
    line-height: 1.8;
  }
}

/* ========== LEADERSHIP SECTION ========== */
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .leadership-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.leader-card {
  background: rgba(20, 24, 33, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(232, 233, 235, 0.1);
  border-radius: 1.25rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .leader-card {
    padding: 2rem;
  }
}

.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
  border-color: rgba(212, 175, 55, 0.3);
}

.leader-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--gold-warm), var(--gold));
  border-radius: 1.25rem;
  opacity: 0;
  filter: blur(18px);
  transition: opacity 0.6s ease;
  z-index: -1;
}

.leader-card:hover .leader-glow {
  opacity: 0.25;
}

.leader-avatar {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .leader-avatar {
    width: 120px;
    height: 120px;
  }
}

.avatar-ring {
  position: absolute;
  inset: -8px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
  transform: scale(0.9) rotate(0deg);
}

.leader-card:hover .avatar-ring {
  opacity: 1;
  transform: scale(1) rotate(180deg);
}

.avatar-initials {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--carbon-light), var(--carbon));
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .avatar-initials {
    width: 120px;
    height: 120px;
    font-size: 2.5rem;
  }
}

.leader-card:hover .avatar-initials {
  border-color: var(--gold-warm);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.4);
}

.leader-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.leader-badge.founder {
  background: linear-gradient(135deg, var(--gold-warm), var(--gold));
  color: var(--black);
  border: none;
}

.leader-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .leader-name {
    font-size: 1.375rem;
  }
}

.leader-role {
  font-size: 0.9375rem;
  color: var(--gold-warm);
  margin-bottom: 1rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .leader-role {
    font-size: 1rem;
  }
}

.leader-bio {
  font-size: 0.875rem;
  color: var(--platinum-dark);
  line-height: 1.7;
  margin-bottom: 1rem;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .leader-bio {
    font-size: 0.9375rem;
    line-height: 1.8;
  }
}

.leader-social {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

.social-link:hover svg {
  stroke: var(--black);
}

.hiring-card {
  border: 2px dashed var(--gold);
  background: rgba(20, 24, 33, 0.4);
}

.hiring-card .avatar-initials {
  background: rgba(20, 24, 33, 0.9);
}

.hiring-badge {
  background: var(--emerald);
  color: var(--black);
  border: none;
  animation: pulse 2s ease-in-out infinite;
}

/* ========== INVESTORS SECTION ========== */
.investors-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .investors-header {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
  }
}

.laurel-decoration {
  display: none;
}

@media (min-width: 768px) {
  .laurel-decoration {
    display: block;
    opacity: 0.5;
  }
}

.header-content {
  text-align: center;
  flex: 1;
  max-width: 800px;
}

.subsection-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}

@media (min-width: 768px) {
  .subsection-title {
    font-size: 2.25rem;
    margin-bottom: 3rem;
  }
}

.partnership-section,
.investment-metrics,
.sdg-section {
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .partnership-section,
  .investment-metrics,
  .sdg-section {
    margin-bottom: 5rem;
  }
}

.partnership-model {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .partnership-model {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.partnership-card {
  background: rgba(20, 24, 33, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(232, 233, 235, 0.1);
  border-radius: 1.25rem;
  padding: 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .partnership-card {
    padding: 2rem;
  }
}

.partnership-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
  border-color: rgba(212, 175, 55, 0.3);
}

.partnership-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--gold-warm), var(--gold));
  border-radius: 1.25rem;
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.6s ease;
  z-index: -1;
}

.partnership-card:hover .partnership-glow {
  opacity: 0.3;
}

.partnership-icon {
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
}

.partnership-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .partnership-title {
    font-size: 1.5rem;
  }
}

.partnership-details {
  background: rgba(10, 13, 18, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 1rem;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem 0;
}

@media (min-width: 640px) {
  .detail-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.detail-item:not(:last-child) {
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.detail-label {
  font-size: 0.8125rem;
  color: var(--platinum-dark);
  font-weight: 500;
}

.detail-value {
  font-size: 0.8125rem;
  color: var(--gold-warm);
  font-weight: 600;
}

@media (min-width: 640px) {
  .detail-value {
    text-align: right;
  }
}

.partnership-text {
  font-size: 0.9375rem;
  color: var(--platinum-dark);
  line-height: 1.7;
  text-align: center;
}

@media (min-width: 768px) {
  .partnership-text {
    line-height: 1.8;
  }
}

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .metrics-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1280px) {
  .metrics-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.metric-card {
  background: rgba(20, 24, 33, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(232, 233, 235, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .metric-card {
    padding: 2rem;
  }
}

.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(212, 175, 55, 0.3);
}

.metric-card.highlight {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(20, 24, 33, 0.8));
  border-color: var(--gold);
}

.metric-icon {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .metric-icon {
    font-size: 2.5rem;
  }
}

.metric-label {
  font-size: 0.8125rem;
  color: var(--platinum-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.metric-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-warm);
  margin-bottom: 0.75rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .metric-value {
    font-size: 3rem;
  }
}

.metric-desc {
  font-size: 0.8125rem;
  color: var(--platinum-dark);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .metric-desc {
    font-size: 0.875rem;
    line-height: 1.7;
  }
}

/* ========== SDG SECTION (UPDATED WITH IMAGES) ========== */
.sdg-section {
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .sdg-section {
    margin-bottom: 5rem;
  }
}

.sdg-intro {
  text-align: center;
  font-size: 1rem;
  color: var(--platinum-dark);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .sdg-intro {
    font-size: 1.125rem;
    margin-bottom: 3rem;
  }
}

.sdg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 480px) {
  .sdg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .sdg-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .sdg-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.sdg-item {
  background: rgba(20, 24, 33, 0.6);
  border: 1px solid rgba(232, 233, 235, 0.1);
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .sdg-item {
    padding: 1.5rem;
  }
}

.sdg-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.sdg-item:hover {
  transform: translateY(-8px);
  background: rgba(20, 24, 33, 0.8);
  border-color: var(--gold);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.sdg-item:hover::before {
  opacity: 1;
}

.sdg-image-wrapper {
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.sdg-item:hover .sdg-image-wrapper {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.sdg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.sdg-item:hover .sdg-image {
  transform: scale(1.1);
}

.sdg-text {
  font-size: 0.875rem;
  color: var(--platinum);
  font-weight: 600;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .sdg-text {
    font-size: 0.9375rem;
    line-height: 1.5;
  }
}

.sdg-item:hover .sdg-text {
  color: var(--gold-warm);
}

/* Loading state for images */
.sdg-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(20, 24, 33, 0.4) 0%,
    rgba(212, 175, 55, 0.1) 50%,
    rgba(20, 24, 33, 0.4) 100%
  );
  background-size: 200% 100%;
  animation: loading 1.5s ease-in-out infinite;
  opacity: 0;
  pointer-events: none;
}

.sdg-image-wrapper.loading::after {
  opacity: 1;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.investors-cta {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(20, 24, 33, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 1.25rem;
  backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
  .investors-cta {
    padding: 3rem 2rem;
  }
}

.cta-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.25rem;
  }
}

.cta-text {
  font-size: 1rem;
  color: var(--platinum-dark);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .cta-text {
    font-size: 1.125rem;
    line-height: 1.8;
  }
}

/* ========== FOOTER ========== */
.footer {
  position: relative;
  background: var(--carbon);
  border-top: 1px solid rgba(232, 233, 235, 0.1);
  padding: 3rem 0 1.5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .footer {
    padding: 5rem 0 2rem;
  }
}

.footer-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.footer-texture {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.03), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.02), transparent 40%);
  opacity: 0.8;
}

.footer-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--black), transparent);
}

.footer-main {
  position: relative;
  z-index: 2;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-brand {
    flex-direction: row;
    text-align: left;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
}

.footer-logo {
  flex-shrink: 0;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .footer-brand-name {
    font-size: 1.5rem;
  }
}

.footer-brand-tagline {
  font-size: 0.8125rem;
  color: var(--platinum-dark);
  font-weight: 500;
}

@media (min-width: 768px) {
  .footer-brand-tagline {
    font-size: 0.875rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

@media (min-width: 480px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    text-align: left;
  }
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .footer-heading {
    font-size: 1.125rem;
  }
}

.footer-link {
  display: block;
  font-size: 0.875rem;
  color: var(--platinum-dark);
  margin-bottom: 0.75rem;
  transition: all 0.2s ease;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .footer-link {
    font-size: 0.9375rem;
    margin-left: 0;
    margin-right: 0;
  }
}

.footer-link:hover {
  color: var(--gold-warm);
  transform: translateX(0);
}

@media (min-width: 768px) {
  .footer-link:hover {
    transform: translateX(5px);
  }
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .contact-item {
    justify-content: flex-start;
  }
}

.contact-item svg {
  flex-shrink: 0;
  stroke: var(--gold);
}

.footer-text {
  font-size: 0.875rem;
  color: var(--platinum-dark);
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .footer-text {
    font-size: 0.9375rem;
  }
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(232, 233, 235, 0.1);
  position: relative;
  z-index: 2;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-copyright {
  font-size: 0.8125rem;
  color: var(--platinum-dark);
  opacity: 0.8;
}

@media (min-width: 768px) {
  .footer-copyright {
    font-size: 0.875rem;
  }
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.footer-legal-link {
  font-size: 0.8125rem;
  color: var(--platinum-dark);
  transition: color 0.2s ease;
}

@media (min-width: 768px) {
  .footer-legal-link {
    font-size: 0.875rem;
  }
}

.footer-legal-link:hover {
  color: var(--gold);
}

.separator {
  color: var(--platinum-dark);
  opacity: 0.5;
}

/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 0.25rem;
}

/* ========== UTILITY CLASSES ========== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.hidden {
  display: none !important;
}

/* ========== PRINT STYLES ========== */
@media print {
  .nav,
  .cursor,
  .cursor-halo,
  #preloader,
  .scroll-cue,
  #energy-canvas,
  .hero-background,
  .footer-background,
  .nav-toggle {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .section {
    page-break-inside: avoid;
    padding: 1.5rem 0;
  }

  .section-title {
    color: #333;
  }

  .glass-card,
  .product-card,
  .leader-card {
    border: 1px solid #ccc;
    page-break-inside: avoid;
  }
}

/* ========== LOADING STATES ========== */
.loading {
  opacity: 0.5;
  pointer-events: none;
}

.skeleton {
  background: linear-gradient(
    90deg,
    rgba(20, 24, 33, 0.4) 0%,
    rgba(212, 175, 55, 0.1) 50%,
    rgba(20, 24, 33, 0.4) 100%
  );
  background-size: 200% 100%;
  animation: loading 1.5s ease-in-out infinite;
  border-radius: 0.5rem;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ========== SCROLL TO TOP BUTTON (Added via JS) ========== */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--gold-warm), var(--gold));
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

@media (min-width: 768px) {
  .scroll-to-top {
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 30px;
  }
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.scroll-to-top svg {
  stroke: var(--black);
}

/* ========== HIGH CONTRAST MODE ========== */
@media (prefers-contrast: high) {
  :root {
    --black: #000000;
    --gold: #FFD700;
    --platinum: #FFFFFF;
  }

  .border-glass,
  .border-gold {
    border-color: var(--gold);
  }
}

/* ========== LANDSCAPE MOBILE FIX ========== */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 8rem 0 4rem;
  }

  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .stat-value {
    font-size: 1.75rem;
  }

  .scroll-cue {
    display: none;
  }
}

/* ========== SAFE AREA INSETS (for notched devices) ========== */
@supports (padding: max(0px)) {
  .nav-container,
  .container {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .menu {
    padding-right: max(1.5rem, env(safe-area-inset-right));
  }

  .footer {
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
  }
}

/* ========== TOUCH DEVICE OPTIMIZATIONS ========== */
@media (hover: none) and (pointer: coarse) {
  /* Increase tap targets */
  .nav-link {
    padding: 1rem 0;
  }

  .btn {
    min-height: 44px;
  }

  .social-link {
    width: 44px;
    height: 44px;
  }

  /* Remove hover effects on touch */
  .glass-card:hover,
  .product-card:hover,
  .leader-card:hover {
    transform: none;
  }
}

/* ========== VERY SMALL DEVICES ========== */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.875rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .stat-value {
    font-size: 2rem;
  }

  .product-icon svg,
  .card-icon svg {
    width: 50px;
    height: 50px;
  }

  .metric-value {
    font-size: 2rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
}

/* ========== LARGE SCREENS ========== */
@media (min-width: 1440px) {
  .container {
    padding: 0 3rem;
  }

  .section {
    padding: 8rem 0;
  }

  .hero {
    min-height: 100vh;
  }
}

/* ========== EXTRA LARGE SCREENS ========== */
@media (min-width: 1920px) {
  .section-title {
    font-size: 4rem;
  }

  .hero-title {
    font-size: 6.5rem;
  }

  .stat-value {
    font-size: 4rem;
  }
}

/* ========== ANIMATIONS ========== */
.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.slide-up {
  animation: slideUp 0.8s ease-out forwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scale-in {
  animation: scaleIn 0.6s ease-out forwards;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ========== ORBIT ANIMATIONS ========== */
.orbit {
  transform-origin: center;
}

.orbit-1 {
  animation: rotate 20s linear infinite;
}

.orbit-2 {
  animation: rotate 15s linear infinite reverse;
}

.orbit-3 {
  animation: rotate 25s linear infinite;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.nucleus {
  animation: pulse-nucleus 3s ease-in-out infinite;
}

@keyframes pulse-nucleus {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.9;
  }
}

.core-pulse {
  animation: expand-pulse 4s ease-in-out infinite;
}

@keyframes expand-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.2;
  }
}

/* Disable animations on reduced motion */
@media (prefers-reduced-motion: reduce) {
  .orbit,
  .nucleus,
  .core-pulse {
    animation: none !important;
  }
}