/* ==========================================================================
   VITONIYA GLOBAL TECHNOLOGIES - OFFICIAL BRAND STYLE GUIDE IMPLEMENTATION
   Brand Guidelines:
   • Forest Green (#0F3D2E) - Primary Color (Trust • Growth • Stability)
   • Earth Gold (#B8945A)   - Accent Color  (Innovation • Success • Value)
   • Cream (#FAF8F3)        - Background    (Clean • Calm • Premium)
   • Charcoal (#1F1F1F)     - Text          (Clarity • Strength • Focus)
   Typography: MONTSERRAT (Primary Font)
   ========================================================================== */

:root {
  /* Official Brand Palette */
  --color-forest-green: #0F3D2E;
  --color-forest-green-dark: #0B271E;
  --color-forest-green-surface: #144937;
  --color-forest-green-tint: rgba(15, 61, 46, 0.07);
  
  --color-earth-gold: #B8945A;
  --color-earth-gold-light: #D4AE72;
  --color-earth-gold-dark: #98753B;
  --color-earth-gold-tint: rgba(184, 148, 90, 0.12);
  --color-earth-gold-glow: rgba(184, 148, 90, 0.25);

  --color-cream: #FAF8F3;
  --color-cream-card: #FFFFFF;
  --color-cream-subtle: #F3EFE6;
  --color-border: #E8E4D8;
  --color-border-subtle: #EFECE3;
  --color-border-gold: #B8945A;

  --color-charcoal: #1F1F1F;
  --color-charcoal-muted: #525252;
  --color-charcoal-dim: #7A7A7A;
  --color-white: #FFFFFF;

  /* Typography: Montserrat Primary Font */
  --font-primary: 'Montserrat', sans-serif;

  /* Shadows */
  --shadow-subtle: 0 1px 3px rgba(15, 61, 46, 0.04), 0 1px 2px rgba(15, 61, 46, 0.02);
  --shadow-card: 0 4px 14px -2px rgba(15, 61, 46, 0.06), 0 2px 4px -1px rgba(15, 61, 46, 0.03);
  --shadow-card-hover: 0 16px 32px -4px rgba(15, 61, 46, 0.1), 0 4px 12px -2px rgba(184, 148, 90, 0.12);
  --shadow-elevated: 0 24px 48px -8px rgba(11, 39, 30, 0.2);

  /* Dimensions & Transitions */
  --max-width: 1180px;
  --header-height: 82px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  --transition-fast: 160ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  min-height: 100vh;
  position: relative;
  background-color: var(--color-cream);
  overflow-x: hidden;
  line-height: 1.65;
  font-family: var(--font-primary);
}

/* Architectural Micro-Grid Background */
.background-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  background-image: 
    linear-gradient(to right, rgba(220, 213, 199, 0.4) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(220, 213, 199, 0.4) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle at center, black 45%, transparent 85%);
  opacity: 0.65;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 100;
  background-color: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 14px rgba(15, 61, 46, 0.06);
}

.header-container {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Logo (Horizontal Brand Layout from Guide) */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: var(--color-forest-green);
  transition: opacity var(--transition-fast);
}

.brand-logo:hover {
  opacity: 0.88;
}

.header-logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.22em;
  color: var(--color-forest-green);
  text-transform: uppercase;
  line-height: 1.1;
}

.brand-tagline-micro {
  font-family: var(--font-primary);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-earth-gold-dark);
  margin-top: 3px;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-primary);
  color: var(--color-charcoal-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: relative;
  transition: color var(--transition-fast);
  padding: 0.35rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-earth-gold);
  transition: width var(--transition-smooth);
}

.nav-link:hover {
  color: var(--color-forest-green);
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile Hamburger Button */
.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.mobile-toggle:hover {
  border-color: var(--color-earth-gold);
  background-color: var(--color-cream-card);
}

.hamburger-bar {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--color-forest-green);
  transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

.mobile-toggle.is-active .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.mobile-toggle.is-active .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Slide Drawer */
.mobile-drawer {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background-color: rgba(250, 248, 243, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 320ms cubic-bezier(0.16, 1, 0.3, 1), opacity 200ms ease;
  z-index: 99;
  box-shadow: 0 10px 25px rgba(15, 61, 46, 0.08);
}

.mobile-drawer.open {
  max-height: 380px;
  opacity: 1;
}

.mobile-nav {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-link {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-forest-green);
  text-decoration: none;
  padding: 0.5rem 0;
}

.mobile-cta-wrap {
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

/* ==========================================================================
   BUTTONS & CTAS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.6rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--color-forest-green);
  color: var(--color-white);
  box-shadow: 0 3px 12px rgba(15, 61, 46, 0.22);
}

.btn-primary:hover {
  background-color: var(--color-forest-green-surface);
  box-shadow: 0 6px 20px rgba(15, 61, 46, 0.32);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: #ffffff;
  color: var(--color-forest-green);
  border-color: var(--color-border-gold);
  box-shadow: var(--shadow-subtle);
}

.btn-secondary:hover {
  background-color: var(--color-cream-subtle);
  border-color: var(--color-earth-gold-dark);
  color: var(--color-forest-green);
  transform: translateY(-1px);
}

.btn-nav {
  background-color: #ffffff;
  color: var(--color-forest-green);
  border: 1px solid var(--color-border);
  font-size: 0.825rem;
  padding: 0.5rem 1.25rem;
}

.btn-nav:hover {
  border-color: var(--color-earth-gold);
  background-color: var(--color-earth-gold-tint);
  color: var(--color-forest-green);
}

.btn-block {
  width: 100%;
}

.icon-arrow {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn:hover .icon-arrow {
  transform: translateX(3px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + 2.5rem) 0 5rem 0;
  text-align: center;
  z-index: 1;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 920px;
}

/* Hero Center Brand Emblem */
.hero-brand-mark {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.hero-logo-img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(15, 61, 46, 0.08));
}

/* Coming Soon Badge */
.badge-wrapper {
  margin-bottom: 1.5rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--color-cream-card);
  border: 1px solid var(--color-border-gold);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--color-earth-gold-dark);
  text-transform: uppercase;
  box-shadow: var(--shadow-subtle);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-forest-green);
  box-shadow: 0 0 6px rgba(15, 61, 46, 0.4);
}

/* Official Logo Tagline: INTELLIGENT SOLUTIONS FOR A BETTER TOMORROW */
.official-tagline-bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.tagline-rule {
  display: inline-block;
  width: 38px;
  height: 1px;
  background-color: var(--color-earth-gold);
}

.tagline-text {
  font-family: var(--font-primary);
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-earth-gold-dark);
}

/* Hero Typography */
.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(2.75rem, 5.8vw, 4.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--color-forest-green);
  margin-bottom: 1.5rem;
  max-width: 860px;
}

.accent-dot {
  color: var(--color-earth-gold);
}

.hero-subheadline {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--color-charcoal-muted);
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 1.75rem;
  font-weight: 400;
}

/* Subtle Founder Attribution in Hero */
.founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.founder-badge-line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--color-earth-gold);
}

.founder-badge-text {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-charcoal-dim);
  font-weight: 600;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

/* Scroll Hint */
.scroll-hint {
  display: flex;
  justify-content: center;
  opacity: 0.5;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid var(--color-charcoal-dim);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 6px;
  background-color: var(--color-earth-gold);
  border-radius: 2px;
  animation: scroll-drop 2s infinite ease-in-out;
}

@keyframes scroll-drop {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ==========================================================================
   BRAND STATEMENT
   ========================================================================== */
.brand-statement-section {
  padding: 6.5rem 0;
  text-align: center;
  position: relative;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background-color: var(--color-cream-card);
}

.statement-container {
  max-width: 840px;
}

.statement-label {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-earth-gold-dark);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.statement-quote {
  font-family: var(--font-primary);
  font-size: clamp(1.4rem, 2.5vw, 2.15rem);
  font-weight: 600;
  color: var(--color-forest-green);
  line-height: 1.45;
  letter-spacing: -0.015em;
  font-style: normal;
}

/* ==========================================================================
   WHAT WE BUILD SECTION
   ========================================================================== */
.what-we-build-section {
  padding: 7.5rem 0;
  position: relative;
  background-color: var(--color-cream);
}

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

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

.section-badge {
  display: inline-block;
  font-size: 0.775rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-earth-gold-dark);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--color-forest-green);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-charcoal-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.65;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

/* Feature Cards */
.feature-card {
  position: relative;
  background-color: var(--color-cream-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2.75rem 2.25rem;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-subtle);
}

.feature-card:hover {
  border-color: var(--color-border-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.card-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--color-cream-subtle);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-forest-green);
  transition: all var(--transition-fast);
}

.feature-card:hover .card-icon-box {
  background: var(--color-earth-gold-tint);
  color: var(--color-earth-gold-dark);
  border-color: var(--color-border-gold);
}

.card-icon {
  width: 26px;
  height: 26px;
}

.card-title {
  font-family: var(--font-primary);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-forest-green);
  margin-bottom: 0.85rem;
}

.card-description {
  color: var(--color-charcoal-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ==========================================================================
   ABOUT VITONIYA SECTION
   ========================================================================== */
.about-section {
  padding: 6.5rem 0;
  position: relative;
  background-color: var(--color-cream-card);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.about-card {
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 4rem 3.5rem;
  position: relative;
  box-shadow: var(--shadow-card);
}

.about-tag {
  display: inline-block;
  font-size: 0.775rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-earth-gold-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-title {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-forest-green);
  margin-bottom: 1.5rem;
}

.about-lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--color-charcoal);
  max-width: 860px;
  margin-bottom: 3rem;
  border-left: 3px solid var(--color-forest-green);
  padding-left: 1.5rem;
}

.about-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.spec-num {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-earth-gold-dark);
  letter-spacing: 0.1em;
}

.spec-content h4 {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-forest-green);
  margin-bottom: 0.35rem;
}

.spec-content p {
  font-size: 0.925rem;
  color: var(--color-charcoal-muted);
  line-height: 1.55;
}

/* ==========================================================================
   LAUNCHING SOON SECTION
   ========================================================================== */
.launching-section {
  padding: 7rem 0;
  position: relative;
  background-color: var(--color-cream);
}

.launch-card {
  background: var(--color-cream-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 4.5rem 3rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow-subtle);
}

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--color-earth-gold-tint);
  border: 1px solid var(--color-border-gold);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-earth-gold-dark);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.launch-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-forest-green);
}

.launch-heading {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--color-forest-green);
  margin-bottom: 1rem;
}

.launch-text {
  font-size: 1.125rem;
  color: var(--color-charcoal-muted);
  max-width: 580px;
  margin: 0 auto 3rem auto;
  line-height: 1.65;
}

/* Launch Roadmap Phases */
.launch-roadmap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 720px;
  margin: 0 auto;
}

.roadmap-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 2;
  flex: 1;
}

.stage-marker {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-charcoal-dim);
  box-shadow: var(--shadow-subtle);
}

.roadmap-stage.active .stage-marker {
  border-color: var(--color-forest-green);
  background: var(--color-forest-green);
  color: #ffffff;
}

.roadmap-stage.in-progress .stage-marker {
  border-color: var(--color-earth-gold);
  background: var(--color-earth-gold-tint);
}

.stage-check {
  width: 18px;
  height: 18px;
}

.stage-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-earth-gold);
}

.roadmap-connector {
  flex: 1;
  height: 2px;
  background-color: var(--color-border);
  margin-top: -2.25rem;
  position: relative;
  z-index: 1;
}

.roadmap-connector.active {
  background-color: var(--color-forest-green);
}

.stage-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.stage-label {
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-earth-gold-dark);
}

.stage-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-charcoal-muted);
}

.roadmap-stage.active .stage-title,
.roadmap-stage.in-progress .stage-title {
  color: var(--color-forest-green);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
  padding: 7rem 0 8rem 0;
  position: relative;
  background-color: var(--color-cream-card);
  border-top: 1px solid var(--color-border);
}

.contact-container {
  max-width: 820px;
}

.contact-card {
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 4.5rem 3rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.contact-heading {
  font-family: var(--font-primary);
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--color-forest-green);
  margin: 0.5rem 0 1rem 0;
}

.contact-subtext {
  font-size: 1.1rem;
  color: var(--color-charcoal-muted);
  max-width: 600px;
  margin: 0 auto 2.75rem auto;
  line-height: 1.65;
}

.contact-action-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}

.email-display-wrapper {
  width: 100%;
  background: var(--color-cream-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.email-label {
  font-size: 0.725rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-earth-gold-dark);
  font-weight: 700;
}

.email-address-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.email-link {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-forest-green);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
}

.email-link:hover {
  color: var(--color-earth-gold);
}

.btn-copy {
  background: #ffffff;
  border: 1px solid var(--color-border);
  color: var(--color-charcoal-muted);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.825rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-subtle);
}

.btn-copy:hover {
  background: var(--color-earth-gold-tint);
  border-color: var(--color-earth-gold);
  color: var(--color-earth-gold-dark);
}

.copy-icon {
  width: 14px;
  height: 14px;
}

.contact-btn-row {
  width: 100%;
}

.btn-contact-email {
  width: 100%;
  padding: 0.95rem 1.5rem;
  font-size: 1rem;
}

.email-icon {
  width: 18px;
  height: 18px;
}

/* Toast alert */
.copy-toast {
  position: absolute;
  bottom: -46px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background-color: var(--color-forest-green);
  color: #ffffff;
  font-size: 0.825rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 14px rgba(15, 61, 46, 0.2);
  white-space: nowrap;
  pointer-events: none;
}

.copy-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   FOOTER (Dark Background Version: Forest Green #0B271E / #0F3D2E)
   ========================================================================== */
.site-footer {
  background-color: var(--color-forest-green-dark);
  color: #F8FAF7;
  padding: 5rem 0 3rem 0;
  position: relative;
  z-index: 10;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  border-radius: var(--radius-sm);
  background-color: var(--color-cream);
  padding: 2px 6px;
}

.footer-brand-name {
  font-family: var(--font-primary);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: #FFFFFF;
  text-transform: uppercase;
}

.footer-full-name {
  font-size: 1rem;
  font-weight: 600;
  color: #DDE5E0;
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--color-earth-gold-light);
  margin-bottom: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-founder {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-earth-gold);
  letter-spacing: 0.04em;
}

.footer-col-title {
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-earth-gold-light);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a,
.legal-link-btn {
  color: #C0CFC5;
  text-decoration: none;
  font-size: 0.925rem;
  transition: color var(--transition-fast);
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
}

.footer-links a:hover,
.legal-link-btn:hover {
  color: #FFFFFF;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.85rem;
  color: #8C9F93;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-domain-tag {
  letter-spacing: 0.06em;
  color: var(--color-earth-gold-light);
}

/* ==========================================================================
   MODALS (PRIVACY & TERMS)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 39, 30, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  max-width: 580px;
  width: 100%;
  padding: 2.25rem;
  box-shadow: var(--shadow-elevated);
  transform: scale(0.96) translateY(10px);
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.is-open .modal-dialog {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}

.modal-header h3 {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-forest-green);
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--color-charcoal-dim);
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--color-forest-green);
}

.modal-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-charcoal-muted);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-body code {
  background: var(--color-cream-subtle);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.88rem;
  color: var(--color-forest-green);
  border: 1px solid var(--color-border);
}

.modal-body a {
  color: var(--color-earth-gold);
  text-decoration: none;
}

.modal-body a:hover {
  text-decoration: underline;
}

.modal-footer {
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: flex-end;
}

/* ==========================================================================
   ANIMATIONS & PERFORMANCE OPTIMIZATIONS
   ========================================================================== */
.animate-fade-in {
  animation: fadeIn 0.7s ease backwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.animate-fade-in-up-delay-1 {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.12s backwards;
}

.animate-fade-in-up-delay-2 {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.24s backwards;
}

.animate-fade-in-up-delay-3 {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.36s backwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* Accessible reduced motion */
@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;
  }
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .cards-grid {
    gap: 1.25rem;
  }

  .about-specs {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 72px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .brand-tagline-micro {
    display: none;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 2rem 1.75rem;
  }

  .about-card {
    padding: 2.5rem 1.75rem;
  }

  .about-lead {
    padding-left: 1rem;
    font-size: 1.05rem;
  }

  .launch-card {
    padding: 3rem 1.5rem;
  }

  .launch-roadmap {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .roadmap-stage {
    flex-direction: row;
    gap: 1rem;
    align-items: center;
  }

  .stage-info {
    align-items: flex-start;
  }

  .roadmap-connector {
    display: none;
  }

  .contact-card {
    padding: 3rem 1.5rem;
  }

  .email-address-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .founder-badge {
    flex-direction: column;
    gap: 0.4rem;
  }

  .founder-badge-line {
    display: none;
  }

  .official-tagline-bar {
    flex-direction: column;
    gap: 0.3rem;
  }

  .tagline-rule {
    display: none;
  }
}
