@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Bebas+Neue&family=Anton&family=Montserrat:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

/* ==========================================
   CSS RESET & CORE VARIABLES
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-dark: #050505;
  --bg-cream: #F4F6F2;
  --bg-cream-dark: #EAECE6;
  --bg-footer: #080d06;
  
  --color-green-primary: #357b56;
  --color-green-accent: #48b77a;
  --color-green-dark: #286b65;
  --color-green-light: #8fcc5c;
  
  --font-outfit: 'Outfit', sans-serif;
  --font-bebas: 'Bebas Neue', sans-serif;
  --font-anton: 'Anton', sans-serif;
  --font-montserrat: 'Montserrat', sans-serif;
  --font-poppins: 'Poppins', sans-serif;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  
  --nav-height: 72px;
}

html {
  background-color: var(--bg-dark);
  color: #ffffff;
  font-family: var(--font-sans);
  scroll-behavior: auto;
  overflow-x: clip;
}

body {
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg-dark);
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 0px;
}

/* ==========================================
   UTILITY CLASSES & GRID SYSTEM
   ========================================== */
.container-custom {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 640px) { .container-custom { padding-left: 2rem; padding-right: 2rem; } }
@media (min-width: 768px) { .container-custom { padding-left: 2.5rem; padding-right: 2.5rem; } }
@media (min-width: 1024px) { .container-custom { padding-left: 3.5rem; padding-right: 3.5rem; } }

.font-outfit { font-family: var(--font-outfit); }
.font-bebas { font-family: var(--font-bebas); }
.font-montserrat { font-family: var(--font-montserrat); }
.font-poppins { font-family: var(--font-poppins); }
.font-mono { font-family: var(--font-mono); }

/* Buttons */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  text-decoration: none;
}
.btn-cta:hover {
  transform: scale(1.02);
}
.btn-cta:active {
  transform: scale(0.98);
}

/* Theme styles for navbar button */
.btn-light-theme {
  background-color: #000000;
  color: #ffffff;
}
.btn-light-theme:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

.btn-dark-theme {
  background-color: #ffffff;
  color: #000000;
}
.btn-dark-theme:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* Global button on Globe section */
.btn-globe {
  background-color: #ffffff;
  color: #050505;
  padding: 16px 32px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  display: flex;
  align-items: center;
  gap: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.btn-globe:hover {
  transform: scale(1.02);
  box-shadow: 0 0 40px rgba(255,255,255,0.2);
}
.btn-globe:active {
  transform: scale(0.98);
}
.btn-globe-arrow {
  width: 32px;
  height: 32px;
  background-color: #050505;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.3s ease;
}
.btn-globe:hover .btn-globe-arrow {
  transform: translateX(4px);
}

/* ==========================================
   NAVBAR COMPONENT
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid transparent;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.navbar.scrolled-light {
  background-color: rgba(244, 246, 242, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.navbar.scrolled-dark {
  background-color: rgba(8, 13, 6, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.navbar-container {
  display: flex;
  width: 100%;
  max-width: 1440px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 12px;
}

.navbar-left {
  display: flex;
  align-items: center;
}

/* Logo block */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
}
.brand-logo-img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}
.nav-brand:hover .brand-logo-img {
  transform: scale(1.05);
}
.brand-logo-img-full {
  height: 32px;
  width: auto;
  display: block;
  transition: all 0.3s ease;
}
.nav-brand:hover .brand-logo-img-full {
  transform: scale(1.02);
}
.theme-dark .brand-logo-img-full,
.footer-brand .brand-logo-img-full {
  filter: brightness(0) invert(1);
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px;
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}
.nav-brand:hover .brand-grid {
  transform: scale(1.05);
}
.brand-grid-1 { background-color: var(--color-green-primary); border-radius: 2px; }
.brand-grid-2 { background-color: var(--color-green-accent); border-radius: 2px; }
.brand-grid-3 { background-color: var(--color-green-dark); border-radius: 2px; }
.brand-grid-4 { background-color: var(--color-green-light); border-radius: 2px; }

.brand-text-name {
  font-family: var(--font-outfit);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  transition: color 0.3s ease;
}
.brand-text-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
  line-height: 1;
  transition: color 0.3s ease;
}

/* Links List */
.nav-list {
  display: none;
  list-style: none;
  align-items: center;
  gap: 6px;
  margin-left: 2rem;
}
@media (min-width: 1024px) {
  .nav-list {
    display: flex;
  }
}
.nav-link-btn {
  background: none;
  border: none;
  font-size: 11px;
  padding: 8px 14px;
  border-radius: 9999px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Light / Dark Themes on Nav Links and Brand */
.theme-light .brand-text-name { color: #000000; }
.theme-light .brand-text-sub { color: #4d6a52; }
.theme-light .nav-link-btn { color: rgba(0, 0, 0, 0.6); }
.theme-light .nav-link-btn:hover { color: #000000; background-color: rgba(0,0,0,0.05); }

.theme-dark .brand-text-name { color: #ffffff; }
.theme-dark .brand-text-sub { color: #8aa38a; }
.theme-dark .nav-link-btn { color: rgba(255, 255, 255, 0.7); }
.theme-dark .nav-link-btn:hover { color: #ffffff; background-color: rgba(255,255,255,0.05); }

/* Right actions container */
.navbar-right-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hide CTA button on mobile, show hamburger */
@media (max-width: 1023px) {
  .navbar-right-actions .btn-cta {
    display: none;
  }
}

/* ==========================================
   HAMBURGER BUTTON
   ========================================== */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
}
@media (min-width: 1024px) {
  .hamburger-btn {
    display: none;
  }
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

/* Light theme hamburger lines */
.theme-light .hamburger-line,
.scrolled-light .hamburger-line {
  background-color: #000000;
}

/* Hamburger -> X animation when open */
.hamburger-btn.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger-btn.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================
   MOBILE DRAWER MENU
   ========================================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(5, 12, 5, 0.97);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.mobile-drawer.is-open {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1024px) {
  .mobile-drawer {
    display: none !important;
  }
}

.mobile-drawer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 5rem 2rem 3rem 2rem;
  gap: 3rem;
}

.mobile-drawer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.mobile-drawer-link {
  display: block;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-outfit);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  cursor: pointer;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.25s ease;
  text-align: center;
  width: 100%;
}
.mobile-drawer-link:hover,
.mobile-drawer-link:focus {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
}

.mobile-drawer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 40px;
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
}
.mobile-drawer-cta:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: scale(1.02);
}

/* Body scroll lock when drawer is open */
body.drawer-open {
  overflow: hidden;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-scroll {
  position: relative;
  min-h-screen: 100vh;
  height: 100vh;
  overflow: hidden;
  background-color: #000000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .hero-scroll {
    background-size: 100% auto;
  }
}

.hero-overlay-dark {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 1;
}
.hero-overlay-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.22) 68%, rgba(0,0,0,0.58) 100%);
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  /* Mobile: use flex column so content stacks without overlap */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 1.5rem 5rem 1.5rem;
  gap: 2rem;
}
@media (min-width: 768px) {
  .hero-content {
    display: block;
    padding: 0;
  }
}

.hero-title-left {
  position: relative;
  max-width: 100%;
}
@media (min-width: 768px) {
  .hero-title-left {
    position: absolute;
    left: 2.5rem;
    right: auto;
    top: 45%;
    transform: translateY(-50%);
  }
}
@media (min-width: 1024px) {
  .hero-title-left {
    left: 3.5rem;
  }
}

.hero-headline {
  color: #ffffff;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  font-size: clamp(2rem, 6vw, 4.5rem);
}
.hero-headline span {
  display: block;
}

.hero-meta-left {
  margin-top: 1.5rem;
}
.hero-tagline {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.6;
}
@media (min-width: 640px) {
  .hero-tagline {
    white-space: nowrap;
  }
}
.hero-divider {
  margin-top: 1rem;
  width: 32px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.6);
}
.hero-description {
  margin-top: 0.75rem;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.6;
  max-width: 380px;
  display: none;
}
@media (min-width: 768px) {
  .hero-description {
    display: block;
  }
}

/* Right Headline */
.hero-title-right {
  position: relative;
  text-align: left;
}
@media (min-width: 768px) {
  .hero-title-right {
    position: absolute;
    left: auto;
    right: 2.5rem;
    top: 45%;
    transform: translateY(-50%);
  }
}
@media (min-width: 1024px) {
  .hero-title-right {
    right: 3.5rem;
  }
}
.hero-title-right span {
  display: block;
  margin-bottom: 8px;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.5);
  text-decoration-thickness: 3px;
  text-underline-offset: 12px;
}

/* Scroll Hint */
.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}
@media (min-width: 768px) {
  .hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 0;
    right: 0;
    margin-top: 0;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .hero-scroll-hint {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}

.scroll-hint-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ==========================================
   STATEMENT & ABOUT SECTION
   ========================================== */
.about-section {
  position: relative;
  background-color: var(--bg-cream-dark);
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .about-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 10;
}
.about-title {
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #1a1a1a;
  font-family: var(--font-outfit);
}
.about-paragraph {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.75);
  max-width: 520px;
}

.about-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 300px;
  overflow: hidden;
  z-index: 5;
}
@media (min-width: 640px) { .about-right { height: 350px; } }
@media (min-width: 768px) { .about-right { height: 500px; } }
@media (min-width: 1024px) {
  .about-right {
    width: 110%;
    margin-left: -10%;
    mask-image: linear-gradient(to right, transparent 0%, black 25%, black 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%, black 100%);
  }
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  transform: scale(1.35);
  mix-blend-mode: darken;
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.04));
  will-change: transform;
}

/* Pillars Section */
.pillars-section {
  background-color: var(--bg-cream);
  padding-top: 3.5rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
}
@media (min-width: 768px) {
  .pillars-section {
    padding-top: 5rem;
    padding-bottom: 2rem;
  }
}
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .pillars-grid {
    grid-template-columns: 380px 1fr;
    gap: 4rem;
  }
}

.pillars-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pillars-brand {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #000000;
}
.pillars-brand-sub {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
}

.pillars-right-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .pillars-right-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 3rem;
    row-gap: 4rem;
  }
}
@media (min-width: 1024px) {
  .pillars-right-grid {
    column-gap: 5rem;
  }
}

.pillar-item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.pillar-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pillar-title {
  font-family: var(--font-outfit);
  font-size: clamp(1.45rem, 2vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #000000;
  white-space: nowrap;
}
.pillar-divider {
  height: 1px;
  width: 48px;
  background-color: rgba(0, 0, 0, 0.3);
}
.pillar-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pillar-subtitle {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: #000000;
}
.pillar-desc {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
  max-width: 24rem;
}

/* ==========================================
   PLANE MORPH SECTION (SCROLL SEQUENCE)
   ========================================== */
.intelligence-section {
  position: relative;
  height: 700vh;
  background-color: var(--bg-cream-dark);
  transition: background-color 0.1s ease;
}

.sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}
@media (min-width: 768px) { .sticky-wrapper { padding: 0 1.5rem; } }

/* Phase 1: Intro Text */
.intro-text-wrapper {
  position: absolute;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 1.5rem 6rem 1.5rem;
  will-change: transform, opacity;
}
@media (min-width: 768px) { .intro-text-wrapper { align-items: center; padding: 0 4rem; } }
@media (min-width: 1024px) { .intro-text-wrapper { padding-left: 6rem; padding-right: 6rem; } }

.intro-grid {
  width: 100%;
  max-width: 1440px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .intro-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 6rem;
    align-items: flex-start;
    transform: translateY(32px);
  }
}

.intro-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  padding-top: 0.5rem;
}
@media (min-width: 768px) {
  .intro-left {
    grid-column: span 5 / span 5;
    padding-top: 0;
  }
}
.intro-header-stack {
  font-family: var(--font-bebas);
  font-weight: 550;
  line-height: 0.9;
  color: #1a1a1a;
  text-transform: uppercase;
  font-size: clamp(3rem, 9vw, 125px);
  letter-spacing: -0.015em;
  transform: scaleY(1.15);
  display: inline-block;
  padding-top: 0.15em;
}
.intro-subtitle {
  font-family: var(--font-montserrat);
  font-weight: 300;
  text-transform: uppercase;
  padding-top: 1rem;
  color: rgba(26, 26, 26, 0.75);
  font-size: clamp(10px, 1vw, 13px);
  letter-spacing: 0.3em;
}

.intro-right {
  width: 100%;
}
@media (min-width: 768px) {
  .intro-right {
    grid-column: span 7 / span 7;
    margin-left: auto;
    padding-left: 3rem;
  }
}
.intro-description {
  font-size: 23px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.7);
  text-align: left;
}
@media (min-width: 768px) {
  .intro-description {
    text-align: justify;
    text-align-last: left;
    max-width: 760px;
  }
}

/* Phase 3: Specification Text grid */
.spec-text-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 40;
  pointer-events: none;
  will-change: opacity;
}
@media (min-width: 768px) {
  .spec-text-wrapper {
    display: grid;
    grid-template-columns: 1fr 440px 1fr;
    gap: 2rem;
  }
}
@media (min-width: 1200px) {
  .spec-text-wrapper {
    grid-template-columns: 1fr 520px 1fr;
    gap: 4rem;
  }
}

.spec-left {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  will-change: transform;
}
.spec-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
  color: rgba(26, 26, 26, 0.4);
}
.spec-title {
  font-family: var(--font-outfit);
  font-weight: 700;
  line-height: 1.05;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
}
.spec-title span {
  white-space: nowrap;
}
.spec-body-large {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.7);
  font-weight: 500;
}

.spec-center-spacer {
  display: none;
}
@media (min-width: 768px) {
  .spec-center-spacer {
    display: block;
    width: 440px;
  }
}
@media (min-width: 1200px) {
  .spec-center-spacer {
    width: 520px;
  }
}

.spec-right {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  will-change: transform;
}
@media (min-width: 768px) {
  .spec-right {
    margin-left: -2rem;
  }
}
@media (min-width: 1024px) {
  .spec-right {
    margin-left: -5rem;
  }
}
.spec-features {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  display: flex;
  gap: 3rem;
  justify-content: flex-start;
}
.spec-feature-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(26, 26, 26, 0.3);
  margin-bottom: 8px;
}
.spec-feature-val {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.spec-feature-sub {
  font-size: 12px;
  color: rgba(26, 26, 26, 0.6);
  line-height: 1.3;
}

/* Center Image (Morphing) */
.morph-image-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 10;
}
.morph-wrapper {
  position: relative;
  width: 260px;
  height: 260px;
  will-change: transform;
}
@media (min-width: 640px) { .morph-wrapper { width: 320px; height: 320px; } }
@media (min-width: 768px) { .morph-wrapper { width: 440px; height: 440px; } }

.morph-view {
  position: absolute;
  inset: 0;
  will-change: opacity;
}
.morph-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: 0 64px 128px -24px rgba(0,0,0,0.4);
}
.cad-img {
  filter: contrast(110%) grayscale(100%);
}
.blueprint-glow {
  position: absolute;
  inset: 0;
  background-color: rgba(59, 130, 246, 0.05);
  border-radius: 2rem;
  pointer-events: none;
  mix-blend-mode: overlay;
  will-change: opacity;
}

/* Transitions Overlays */
.cinematic-overlay-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30vh;
  pointer-events: none;
  z-index: 20;
  will-change: background-image;
}
.cinematic-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30vh;
  pointer-events: none;
  z-index: 20;
  will-change: background-image;
}

/* ==========================================
   ADVANTAGES / USE CASES SECTION
   ========================================== */
.advantages-section {
  position: relative;
  background-color: var(--bg-cream-dark);
  padding-top: 3rem;
  padding-bottom: 2rem;
  scroll-margin-top: var(--nav-height);
  overflow: hidden;
}
@media (min-width: 768px) {
  .advantages-section {
    padding-top: 3.5rem;
  }
}

.advantages-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .advantages-container {
    flex-direction: row;
    align-items: center;
  }
}

.advantages-left {
  width: 100%;
  z-index: 20;
}
@media (min-width: 1024px) {
  .advantages-left {
    width: 50%;
  }
}
.advantages-accordion-wrapper {
  max-width: 36rem;
  width: 100%;
}
.advantages-heading {
  color: #1a1a1a;
  font-family: var(--font-outfit);
  font-weight: 700;
  font-size: 1.875rem;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.accordion-group {
  display: flex;
  flex-direction: column;
  border-top: none;
}
.accordion-item {
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}
.accordion-title {
  font-family: var(--font-outfit);
  font-weight: 600;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}
.accordion-icon {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease, color 0.3s ease;
}

.accordion-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
}
.accordion-content p {
  padding-bottom: 2rem;
  font-size: 15px;
  color: rgba(26, 26, 26, 0.6);
  line-height: 1.6;
}

/* Accordion Open state classes */
.accordion-item.active .accordion-title {
  color: #1a1a1a;
}
.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  color: #1a1a1a;
}
.accordion-item.active .accordion-content {
  max-height: 200px; /* Big enough to fit paragraph */
  opacity: 1;
}

.accordion-item:not(.active) .accordion-title {
  color: rgba(26, 26, 26, 0.4);
}
.accordion-item:not(.active) .accordion-icon {
  color: rgba(26, 26, 26, 0.4);
}
.accordion-item:not(.active):hover .accordion-title {
  color: rgba(26, 26, 26, 0.7);
}

/* Right Content - Map image preview */
.advantages-right {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 20;
}
@media (min-width: 1024px) {
  .advantages-right {
    width: 50%;
    padding: 3rem;
  }
}

.map-preview-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background-color: #e8e4db;
}

.map-slide {
  position: absolute;
  inset: 0;
  background-color: #e8e4db;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}
.map-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(0,0,0,0.1), transparent);
  pointer-events: none;
}

/* Banner supporting info */
.support-banner {
  position: relative;
  background-color: var(--bg-cream);
  padding-top: 4rem;
  padding-bottom: 2rem;
  overflow: hidden;
}
.support-banner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.support-banner-title {
  color: #1a1a1a;
  font-family: var(--font-outfit);
  font-weight: 600;
  font-size: clamp(1.875rem, 3.5vw, 2.25rem);
  line-height: 1.3;
  text-align: center;
  letter-spacing: -0.02em;
}
.support-logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.support-logo-img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0.95;
  transition: opacity 0.3s ease;
}
.support-logo-img:hover {
  opacity: 1;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section {
  position: relative;
  background-color: var(--bg-cream-dark);
  padding-top: 6rem;
  padding-bottom: 6rem;
  scroll-margin-top: var(--nav-height);
  overflow: hidden;
}
.faq-container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 20;
}

.faq-header {
  text-align: center;
  max-width: 42rem;
  width: 100%;
  margin-bottom: 4rem;
}
.faq-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 700;
  margin-bottom: 1rem;
}
.faq-title {
  font-family: var(--font-outfit);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.025em;
  color: #1a1a1a;
  line-height: 1.2;
}

.faq-accordion-group {
  max-width: 800px;
  width: 100%;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}
.faq-accordion-item {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}
.faq-accordion-item:last-child {
  border-bottom: none;
}

.faq-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}
.faq-accordion-title {
  font-family: var(--font-outfit);
  font-weight: 600;
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  transition: color 0.3s ease;
}
.faq-accordion-icon {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-accordion-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.35s ease;
}
.faq-accordion-content p {
  padding-bottom: 2rem;
  font-size: clamp(14px, 1.5vw, 15px);
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.6;
  font-weight: 500;
}

.faq-accordion-item.active .faq-accordion-title {
  color: #1a1a1a;
}
.faq-accordion-item.active .faq-accordion-icon {
  transform: rotate(45deg);
  color: #1a1a1a;
}
.faq-accordion-item.active .faq-accordion-content {
  max-height: 300px;
  opacity: 1;
}

.faq-accordion-item:not(.active) .faq-accordion-title {
  color: rgba(26, 26, 26, 0.5);
}
.faq-accordion-item:not(.active) .faq-accordion-icon {
  color: rgba(26, 26, 26, 0.4);
}
.faq-accordion-item:not(.active):hover .faq-accordion-title {
  color: rgba(26, 26, 26, 0.85);
}

/* ==========================================
   GLOBE & CTA SECTION
   ========================================== */
.globe-section {
  position: relative;
  min-height: 120vh;
  background-color: #050505;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  scroll-margin-top: var(--nav-height);
}

.globe-vignette-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50vh;
  pointer-events: none;
  z-index: 10;
  background: linear-gradient(to top, transparent 0%, rgba(5, 5, 5, 0.4) 50%, #050505 100%);
}
.globe-vignette-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.2) 0%, transparent 50%, rgba(5, 5, 5, 0.8) 100%);
  z-index: 10;
  pointer-events: none;
}

.globe-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.7;
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.globe-text-layer {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;
  pointer-events: none;
}
.globe-text-container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  height: 100%;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .globe-text-container {
    flex-direction: row;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.globe-phrase-left {
  max-width: 650px;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) { .globe-phrase-left { text-align: left; } }
.globe-phrase-left p {
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: clamp(24px, 4vw, 40px);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  line-height: 1.2;
}

.globe-phrase-right {
  max-width: 650px;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) { .globe-phrase-right { text-align: right; } }
.globe-phrase-right p {
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: clamp(24px, 4vw, 40px);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  line-height: 1.2;
}

.globe-cta-layer {
  position: relative;
  z-index: 20;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 4rem;
  align-items: flex-end;
  height: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}
.globe-cta-container {
  max-width: 1440px;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* ==========================================
   FOOTER COMPONENT
   ========================================== */
.footer {
  position: relative;
  background-color: #080d06;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  scroll-margin-top: var(--nav-height, 72px);
}

/* Green wave/particle effect at the bottom */
.footer-glow-radial {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 260px;
  pointer-events: none;
  z-index: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 75% 100%, rgba(40,180,80,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 60% 95%, rgba(60,200,90,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 85% 90%, rgba(85,223,85,0.10) 0%, transparent 50%);
}

/* Animated wave lines */
.footer-waves-lines {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: 200px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  background: repeating-linear-gradient(
    170deg,
    transparent,
    transparent 8px,
    rgba(85,223,85,0.06) 8px,
    rgba(85,223,85,0.06) 9px
  );
  mask-image: radial-gradient(ellipse 80% 60% at 70% 100%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 70% 100%, black 0%, transparent 70%);
}

.footer-content {
  position: relative;
  z-index: 10;
  max-width: 896px;
  margin: 0 auto;
  padding-top: 4rem;
  padding-bottom: 3rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
@media (min-width: 768px) {
  .footer-content { padding-left: 2.5rem; padding-right: 2.5rem; }
}
@media (min-width: 1024px) {
  .footer-content { padding-left: 4rem; padding-right: 4rem; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr auto auto auto;
    gap: 6rem;
  }
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo-squares {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  width: 2rem;
  height: 2rem;
}
.footer-logo-squares .sq-1 { background-color: #7fa47f; border-radius: 3px; }
.footer-logo-squares .sq-2 { background-color: #4d6a52; border-radius: 3px; }
.footer-logo-squares .sq-3 { background-color: #b4cbb4; border-radius: 3px; }
.footer-logo-squares .sq-4 { background-color: #608765; border-radius: 3px; }

.footer-brand-name {
  font-family: var(--font-outfit, 'Outfit', sans-serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
  letter-spacing: 0.025em;
}
.footer-brand-subname {
  font-size: 9px;
  font-family: monospace;
  letter-spacing: 0.3em;
  color: #8aa38a;
  text-transform: uppercase;
  margin-top: 0.125rem;
  font-weight: 700;
  line-height: 1;
}

.footer-brand-desc {
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(138, 163, 138, 0.6);
  max-width: 240px;
  margin: 0;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding-top: 0.25rem;
}

.footer-social-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background-color: #2a3a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(138, 163, 138, 0.8);
  font-size: 0.75rem;
  font-family: monospace;
  font-weight: 600;
  transition: all 0.2s;
  text-decoration: none;
}
.footer-social-btn:hover {
  color: white;
  background-color: #3a4f3a;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-col-title {
  font-size: 0.75rem;
  font-family: monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(138, 163, 138, 0.4);
  font-weight: 700;
  margin: 0;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.footer-link {
  font-size: 0.875rem;
  color: rgba(138, 163, 138, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover {
  color: white;
}

.footer-bottom-bar {
  position: relative;
  z-index: 10;
  max-width: 896px;
  margin: 0 auto;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 768px) {
  .footer-bottom-bar {
    flex-direction: row;
    justify-content: space-between;
    padding-left: 2.5rem; 
    padding-right: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .footer-bottom-bar {
    padding-left: 4rem; 
    padding-right: 4rem;
  }
}

.footer-copy-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.footer-shield-icon {
  width: 1rem;
  height: 1rem;
  color: rgba(85, 223, 85, 0.6);
}

.footer-copy-text {
  color: rgba(138, 163, 138, 0.5);
  font-size: 0.75rem;
  font-weight: 500;
  margin: 0;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  row-gap: 0.75rem;
  column-gap: 0.25rem;
}

.legal-item {
  display: flex;
  align-items: center;
}

.legal-pipe {
  color: rgba(255, 255, 255, 0.1);
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
@media (min-width: 768px) {
  .legal-pipe {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }
}

.legal-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(138, 163, 138, 0.5);
  font-size: 0.75rem;
  font-weight: 500;
  transition: color 0.2s;
  text-decoration: none;
}
.legal-link:hover {
  color: white;
}

.legal-icon {
  width: 0.875rem;
  height: 0.875rem;
}

/* ==========================================
   PRICING PAGE STYLING
   ========================================== */
.pricing-main {
  min-height: 100vh;
  background-color: var(--bg-cream);
  color: #101510;
}
.pricing-section {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.5rem 5rem 1.5rem;
}
@media (min-width: 768px) { .pricing-section { padding-left: 2.5rem; padding-right: 2.5rem; padding-top: 2rem; } }
@media (min-width: 1024px) { .pricing-section { padding-left: 4rem; padding-right: 4rem; } }

.pricing-glow {
  pointer-events: none;
  position: absolute;
  right: -18%;
  top: -20%;
  height: 520px;
  width: 520px;
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(80px);
  background: radial-gradient(circle, rgba(85,223,85,0.55) 0%, rgba(53,123,86,0.28) 45%, transparent 72%);
}

.pricing-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) { .pricing-header-row { margin-bottom: 4rem; } }

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.55);
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(0, 0, 0, 0.7);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}
.btn-back:hover {
  background-color: #ffffff;
  color: #000000;
}

.pricing-center {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}
.pricing-eyebrow {
  margin-bottom: 1.25rem;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: #000000;
}

.pricing-title {
  font-family: var(--font-outfit);
  font-size: clamp(2.6rem, 12vw, 4.5rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #000000;
}
@media (min-width: 768px) { .pricing-title { font-size: 4.5rem; } }
.pricing-desc {
  max-width: 42rem;
  margin: 1.5rem auto 0 auto;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.55);
}
@media (min-width: 768px) { .pricing-desc { font-size: 18px; } }

/* Plan cards grid */
.plans-grid {
  max-width: 56rem;
  margin: 3rem auto 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .plans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 3.5rem;
  }
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 290px;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
.plan-card-standard {
  background-color: rgba(255, 255, 255, 0.8);
  color: #101510;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.plan-card-featured {
  background-color: #06513d;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-radial-glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background: 
    radial-gradient(circle at 12% 10%, rgba(143,204,92,0.55), transparent 24%), 
    radial-gradient(circle at 95% 6%, rgba(72,183,122,0.24), transparent 30%);
}

.plan-card-header {
  position: relative;
  z-index: 10;
}
.plan-badge-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.plan-icon {
  display: flex;
  height: 32px;
  width: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
}
.plan-card-standard .plan-icon {
  background-color: #f1f4ef;
  color: var(--color-green-primary);
}
.plan-card-featured .plan-icon {
  background-color: var(--color-green-light);
  color: #07351f;
}

.plan-popular-badge {
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.8);
}

.plan-name {
  font-family: var(--font-outfit);
  font-size: 18px;
  font-weight: 700;
}
.plan-eyebrow {
  margin-top: 8px;
  min-height: 44px;
  font-size: 14px;
  line-height: 1.5;
}
.plan-card-standard .plan-eyebrow { color: rgba(0, 0, 0, 0.48); }
.plan-card-featured .plan-eyebrow { color: rgba(255, 255, 255, 0.62); }

.plan-price-row {
  margin-top: 1.5rem;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.plan-price {
  font-family: var(--font-outfit);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
}
.plan-cadence {
  font-size: 12px;
  font-weight: 600;
  padding-bottom: 8px;
}
.plan-card-standard .plan-cadence { color: rgba(0,0,0,0.45); }
.plan-card-featured .plan-cadence { color: rgba(255,255,255,0.55); }

.btn-plan {
  position: relative;
  z-index: 10;
  margin-top: 2rem;
  width: 100%;
  border-radius: 9999px;
  border: 1px solid transparent;
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.btn-plan-standard {
  border-color: #9fb5a4;
  background-color: rgba(255, 255, 255, 0.55);
  color: var(--color-green-dark);
}
.btn-plan-standard:hover {
  background-color: #f5faf4;
}
.btn-plan-featured {
  background-color: var(--color-green-light);
  color: #07351f;
}
.btn-plan-featured:hover {
  background-color: #a9df72;
}

/* Plan Features Lists */
.features-lists-grid {
  max-width: 56rem;
  margin: 1.75rem auto 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .features-lists-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.features-col {
  padding-left: 8px;
  padding-right: 8px;
}
.features-col-title {
  margin-bottom: 1rem;
  font-size: 12px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.45);
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}
.feature-bullet-item {
  display: flex;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.68);
}
.feature-bullet-icon {
  margin-top: 2px;
  display: flex;
  height: 20px;
  width: 20px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #0f6b49;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
}

/* ==========================================
   CONTACT PAGE STYLING
   ========================================== */
.contact-glow {
  pointer-events: none;
  position: absolute;
  left: -20%;
  top: -18%;
  height: 520px;
  width: 520px;
  border-radius: 50%;
  opacity: 0.25;
  filter: blur(80px);
  background: radial-gradient(circle, rgba(143,204,92,0.55) 0%, rgba(72,183,122,0.28) 42%, transparent 72%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 10;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3rem;
  }
}

.contact-left-eyebrow {
  margin-bottom: 1.25rem;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: #000000;
}
.contact-left-title {
  font-family: var(--font-outfit);
  font-size: clamp(2.6rem, 12vw, 4.5rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #000000;
}
.contact-left-desc {
  margin-top: 1.75rem;
  max-width: 36rem;
  font-size: 16px;
  line-height: 1.75;
  color: #101510;
}
@media (min-width: 768px) { .contact-left-desc { font-size: 18px; } }

.support-points-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.support-point-item {
  display: flex;
  gap: 1rem;
}
.support-point-icon {
  margin-top: 4px;
  display: flex;
  height: 24px;
  width: 24px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #000000;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}
.support-point-title {
  font-family: var(--font-outfit);
  font-size: 16px;
  font-weight: 700;
  color: #000000;
}
.support-point-text {
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.5;
  color: #000000;
}

.support-footer-note {
  margin-top: 2.5rem;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
}
.support-footer-link {
  font-weight: 700;
  color: #000000;
  text-decoration: underline;
  text-decoration-color: rgba(0, 0, 0, 0.4);
  text-underline-offset: 4px;
}

/* Contact Form Card */
.contact-form-card {
  margin: 0 auto;
  width: 100%;
  max-width: 560px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.78);
  padding: 1.25rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.09);
  border: 1px solid rgba(0, 0, 0, 0.07);
}
@media (min-width: 640px) { .contact-form-card { padding: 1.5rem; } }
@media (min-width: 768px) { .contact-form-card { padding: 2.25rem; } }

.contact-form-title {
  font-family: var(--font-outfit);
  font-size: clamp(1.7rem, 7vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #000000;
}

.form-body {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-grid-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .form-grid-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.form-label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #000000;
}
.form-input {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  outline: none;
  transition: border-color 0.2s ease;
}
.form-input::placeholder {
  color: rgba(0, 0, 0, 0.35);
}
.form-input:focus {
  border-color: #000000;
}

.form-textarea {
  width: 100%;
  resize: none;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  padding: 16px;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  outline: none;
  transition: border-color 0.2s ease;
}
.form-textarea::placeholder {
  color: rgba(0, 0, 0, 0.35);
}
.form-textarea:focus {
  border-color: #000000;
}

.form-status-sent {
  border-radius: 8px;
  background-color: var(--bg-cream-dark);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
}
.form-status-error {
  border-radius: 8px;
  background-color: #fee2e2;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  color: #b91c1c;
}

.btn-form-submit {
  width: 100%;
  border-radius: 9999px;
  background-color: #000000;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.btn-form-submit:hover {
  background-color: rgba(0, 0, 0, 0.9);
}
.btn-form-submit:disabled {
  cursor: not-allowed;
  background-color: rgba(0, 0, 0, 0.6);
}

/* ==========================================
   PLANE MORPH SCROLL ANIMATION (CAPABILITIES)
   ========================================== */
.intelligence-section {
  position: relative;
  scroll-margin-top: var(--nav-height, 72px);
  height: 700vh;
  /* background-color updated dynamically via JS */
}
.sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}

/* Phase 1: Intro Text */
.intro-text-wrapper {
  position: absolute;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .intro-text-wrapper { padding: 0 4rem; }
}
@media (min-width: 1024px) {
  .intro-text-wrapper { padding: 0 6rem; }
}

.intro-grid {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .intro-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 6rem;
    align-items: flex-start;
    transform: translateY(2rem);
  }
}

.intro-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) {
  .intro-left { grid-column: span 5 / span 5; }
}

.intro-header-stack {
  font-family: var(--font-bebas, "Bebas Neue", sans-serif);
  font-weight: 550;
  line-height: 0.85;
  color: #1a1a1a;
  text-transform: uppercase;
  font-size: clamp(3.5rem, 9vw, 125px);
  letter-spacing: -0.015em;
  transform: scaleY(1.15);
  display: inline-block;
  margin: 0;
}

.intro-subtitle {
  font-family: var(--font-montserrat, "Montserrat", sans-serif);
  font-weight: 300;
  text-transform: uppercase;
  padding-top: 1rem;
  color: rgba(26, 26, 26, 0.75);
  font-size: clamp(10px, 1vw, 13px);
  letter-spacing: 0.3em;
  margin: 0;
}

.intro-right {
  border-radius: 0.5rem;
  padding: 0;
  max-width: 56rem;
  width: 100%;
  margin-left: auto;
}
@media (min-width: 768px) {
  .intro-right {
    padding-bottom: 1.5rem;
    padding-left: 3rem;
    padding-right: 1rem;
    grid-column: span 7 / span 7;
  }
}

.intro-description {
  font-family: sans-serif;
  font-size: 23px;
  line-height: 1.625;
  color: rgba(0, 0, 0, 0.7);
  text-align: left;
  max-width: 760px;
  margin-right: auto;
  margin-top: 0;
}
@media (min-width: 768px) {
  .intro-description {
    text-align: justify;
    text-align-last: left;
  }
}

/* Phase 3: Spec Text */
.spec-text-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 40;
  pointer-events: none;
  gap: 2rem;
  will-change: opacity, transform;
}
@media (min-width: 768px) {
  .spec-text-wrapper {
    display: grid;
    grid-template-columns: 1fr 440px 1fr;
    gap: 4rem;
  }
}
@media (min-width: 1280px) {
  .spec-text-wrapper {
    grid-template-columns: 1fr 520px 1fr;
  }
}

.spec-left {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 32rem;
  will-change: transform;
}

.spec-eyebrow {
  font-family: monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
  color: rgba(26, 26, 26, 0.4);
}

.spec-title {
  font-family: var(--font-outfit, "Outfit", sans-serif);
  font-weight: 700;
  line-height: 1.05;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
}
.spec-title span {
  white-space: nowrap;
}

.spec-body-large {
  font-size: 19px;
  line-height: 1.625;
  color: rgba(26, 26, 26, 0.7);
  font-weight: 500;
  margin: 0;
}

.spec-center-spacer {
  display: none;
}
@media (min-width: 768px) {
  .spec-center-spacer {
    display: block;
    width: 440px;
  }
}
@media (min-width: 1280px) {
  .spec-center-spacer {
    width: 520px;
  }
}

.spec-right {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 28rem;
  margin-right: auto;
  will-change: transform;
}
@media (min-width: 768px) {
  .spec-right { margin-left: -2rem; }
}
@media (min-width: 1024px) {
  .spec-right { margin-left: -5rem; }
}

.spec-features {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  display: flex;
  justify-content: flex-start;
  gap: 3rem;
  text-align: left;
}
.spec-features > div {
  display: flex;
  flex-direction: column;
}
.spec-feature-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(26, 26, 26, 0.3);
  margin-bottom: 0.5rem;
}
.spec-feature-val {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}
.spec-feature-sub {
  font-size: 12px;
  color: rgba(26, 26, 26, 0.6);
  line-height: 1.25;
  margin: 0;
}

/* Morph Images */
.morph-image-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.morph-wrapper {
  position: relative;
  width: 260px;
  height: 260px;
  will-change: transform;
}
@media (min-width: 640px) {
  .morph-wrapper { width: 320px; height: 320px; }
}
@media (min-width: 768px) {
  .morph-wrapper { width: 440px; height: 440px; }
}

.morph-view {
  position: absolute;
  inset: 0;
  will-change: opacity;
}
.morph-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: 0 64px 128px -24px rgba(0, 0, 0, 0.4);
}
.blueprint-glow {
  position: absolute;
  inset: 0;
  background-color: rgba(59, 130, 246, 0.05);
  border-radius: 2rem;
  pointer-events: none;
  mix-blend-mode: overlay;
  will-change: opacity;
}

/* Overlays */
.cinematic-overlay-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30vh;
  pointer-events: none;
  z-index: 20;
}
.cinematic-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30vh;
  pointer-events: none;
  z-index: 20;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
  position: relative;
  scroll-margin-top: var(--nav-height, 72px);
  background-color: #EAECE6; /* Light cream theme */
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .about-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 10;
}
@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.about-left.in-view {
  opacity: 1;
  transform: translateY(0);
}

.about-title {
  font-family: var(--font-outfit, "Outfit", sans-serif);
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #1a1a1a;
  margin: 0;
}

.about-paragraph {
  font-size: 17px;
  line-height: 1.625;
  color: rgba(0, 0, 0, 0.7);
  max-width: 520px;
  margin: 0;
}

.about-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 300px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%, black 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 25%, black 100%);
}
@media (min-width: 640px) {
  .about-right { height: 350px; }
}
@media (min-width: 768px) {
  .about-right { height: 500px; }
}
@media (min-width: 1024px) {
  .about-right {
    width: 110%;
    margin-left: -10%;
  }
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  transform: scale(1.35);
  mix-blend-mode: darken;
  filter: drop-shadow(0 15px 40px rgba(0,0,0,0.04));
}

/* ==========================================
   PILLARS SECTION
   ========================================== */
.pillars-section {
  background-color: #F4F6F2;
  padding-top: 3.5rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid rgba(26,26,26,0.1);
}
@media (min-width: 768px) {
  .pillars-section {
    padding-top: 5rem;
    padding-bottom: 2rem;
  }
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  .pillars-grid {
    grid-template-columns: 380px 1fr;
    gap: 4rem;
  }
}

.pillars-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.pillars-brand {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #000;
  font-weight: 700;
  margin: 0;
}

.pillars-brand-sub {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(0,0,0,0.6);
  line-height: 1.625;
  margin: 0;
}

.pillars-right-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .pillars-right-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 4rem;
    column-gap: 3rem;
  }
}
@media (min-width: 1024px) {
  .pillars-right-grid {
    column-gap: 5rem;
    row-gap: 5rem;
  }
}

.pillar-item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pillar-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pillar-title {
  font-size: clamp(1.45rem, 2vw, 1.875rem);
  white-space: nowrap;
  font-weight: 700;
  letter-spacing: -0.025em;
  font-family: var(--font-outfit, "Outfit", sans-serif);
  color: #000;
  margin: 0;
}

.pillar-divider {
  height: 1px;
  width: 3rem;
  background-color: rgba(0,0,0,0.3);
}

.pillar-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pillar-subtitle {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.375;
  color: #000;
  margin: 0;
}

.pillar-desc {
  font-size: 14px;
  line-height: 1.625;
  font-weight: 500;
  color: rgba(0,0,0,0.7);
  max-width: 24rem;
  margin: 0;
}

/* ==========================================
   ADVANTAGES SECTION (USE CASES)
   ========================================== */
.advantages-section {
  position: relative;
  background-color: #EAECE6;
  padding-top: 3rem;
  padding-bottom: 2rem;
  scroll-margin-top: var(--nav-height, 72px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .advantages-section { padding-top: 3.5rem; }
}

.advantages-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) {
  .advantages-container {
    flex-direction: row;
    padding: 0 3.5rem;
  }
}

.advantages-left {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  z-index: 20;
}
@media (min-width: 1024px) {
  .advantages-left { width: 50%; }
}

.advantages-accordion-wrapper {
  max-width: 36rem;
  width: 100%;
}

.advantages-heading {
  color: #1a1a1a;
  font-family: var(--font-outfit, "Outfit", sans-serif);
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 2.25rem;
  margin-bottom: 3rem;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.accordion-group {
  display: flex;
  flex-direction: column;
}
.accordion-item {
  border-bottom: 1px solid rgba(26,26,26,0.1);
}
.accordion-item:first-child {
  border-top: 1px solid rgba(26,26,26,0.1);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}
.accordion-trigger:hover .accordion-title {
  color: rgba(26,26,26,0.7);
}

.accordion-title {
  font-family: var(--font-outfit, "Outfit", sans-serif);
  font-weight: 600;
  font-size: 1.25rem;
  color: rgba(26,26,26,0.4);
  transition: color 0.3s;
}
.accordion-item.active .accordion-title {
  color: #1a1a1a;
}

.accordion-icon {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(26,26,26,0.4);
  transition: transform 0.3s, color 0.3s;
}
.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  color: #1a1a1a;
}

.accordion-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.25, 0, 0, 1), opacity 0.4s ease;
}
.accordion-item.active .accordion-content {
  max-height: 200px;
  opacity: 1;
}
.accordion-content p {
  padding-bottom: 2rem;
  font-size: 15px;
  color: rgba(26,26,26,0.6);
  line-height: 1.625;
  margin: 0;
}

/* Right Side - Map Preview */
.advantages-right {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  z-index: 20;
}
@media (min-width: 1024px) {
  .advantages-right {
    width: 50%;
    padding: 3rem;
  }
}

.map-preview-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background-color: #e8e4db;
}

.map-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  background-color: #e8e4db;
  z-index: 0;
}
.map-slide.active {
  opacity: 1;
  z-index: 10;
}

.map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(0,0,0,0.1), transparent);
  pointer-events: none;
}

/* ==========================================
   SUPPORT BANNER
   ========================================== */
.support-banner {
  position: relative;
  background-color: #F4F6F2;
  padding-top: 4rem;
  padding-bottom: 2rem;
  overflow: hidden;
}

.support-banner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  position: relative;
  z-index: 30;
  padding-bottom: 2rem;
}

.support-banner-title {
  color: #1a1a1a;
  font-family: var(--font-outfit, "Outfit", sans-serif);
  font-weight: 600;
  font-size: 1.875rem;
  line-height: 1.375;
  letter-spacing: -0.025em;
  text-align: center;
  margin: 0;
}
@media (min-width: 768px) {
  .support-banner-title { font-size: 2.25rem; }
}

.support-logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.support-logo-img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0.95;
  transition: opacity 0.3s;
}
.support-logo-img:hover {
  opacity: 1;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section {
  position: relative;
  background-color: #EAECE6;
  padding-top: 6rem;
  padding-bottom: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-margin-top: var(--nav-height, 72px);
  overflow: hidden;
}

.faq-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
  position: relative;
  z-index: 20;
}
@media (min-width: 768px) {
  .faq-container { padding: 0 2.5rem; }
}
@media (min-width: 1024px) {
  .faq-container { padding: 0 3.5rem; }
}

.faq-header {
  text-align: center;
  max-width: 42rem;
  width: 100%;
  margin-bottom: 4rem;
}

.faq-eyebrow {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: rgba(0,0,0,0.5);
  font-weight: 700;
  margin-bottom: 1rem;
}

.faq-title {
  font-family: var(--font-outfit, "Outfit", sans-serif);
  font-weight: 700;
  font-size: 2.25rem;
  letter-spacing: -0.025em;
  color: #1a1a1a;
  line-height: 1.25;
  margin: 0;
}
@media (min-width: 768px) {
  .faq-title { font-size: 3rem; }
}

.faq-accordion-group {
  max-width: 800px;
  width: 100%;
  border-top: 1px solid rgba(26,26,26,0.1);
  border-bottom: 1px solid rgba(26,26,26,0.1);
}

.faq-accordion-item {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(26,26,26,0.1);
}
.faq-accordion-item:last-child {
  border-bottom: none;
}

.faq-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.faq-accordion-title {
  font-family: var(--font-outfit, "Outfit", sans-serif);
  font-weight: 600;
  font-size: 1.125rem;
  color: rgba(26,26,26,0.5);
  transition: color 0.3s;
}
@media (min-width: 768px) {
  .faq-accordion-title { font-size: 1.25rem; }
}
.faq-accordion-trigger:hover .faq-accordion-title {
  color: rgba(26,26,26,0.85);
}
.faq-accordion-item.active .faq-accordion-title {
  color: #1a1a1a;
}

.faq-accordion-icon {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(26,26,26,0.4);
  transition: transform 0.3s, color 0.3s;
}
.faq-accordion-item.active .faq-accordion-icon {
  transform: rotate(45deg);
  color: #1a1a1a;
}

.faq-accordion-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s cubic-bezier(0.25, 0, 0, 1), opacity 0.35s ease;
}
.faq-accordion-item.active .faq-accordion-content {
  max-height: 400px;
  opacity: 1;
}
.faq-accordion-content p {
  padding-bottom: 2rem;
  font-size: 14px;
  color: rgba(26,26,26,0.7);
  line-height: 1.625;
  font-weight: 500;
  margin: 0;
}
@media (min-width: 768px) {
  .faq-accordion-content p { font-size: 15px; }
}

/* ==========================================
   GLOBE SECTION
   ========================================== */
.globe-section {
  position: relative;
  min-height: 120vh;
  background-color: #050505;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  scroll-margin-top: var(--nav-height, 72px);
}

.globe-vignette-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50vh;
  pointer-events: none;
  z-index: 10;
  background: linear-gradient(to top, transparent 0%, rgba(5,5,5,0.4) 50%, #050505 100%);
}
.globe-vignette-bottom {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(5,5,5,0.2) 0%, transparent 50%, rgba(5,5,5,0.8) 100%);
}

.globe-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.7;
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.globe-text-layer {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.globe-text-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  height: 100%;
  padding-top: 5rem;
  padding-bottom: 5rem;
  width: 100%;
}
@media (min-width: 768px) {
  .globe-text-container {
    flex-direction: row;
  }
}

.globe-phrase-left,
.globe-phrase-right {
  max-width: 650px;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .globe-phrase-left { text-align: left; }
  .globe-phrase-right { text-align: right; }
}

.globe-phrase-left p,
.globe-phrase-right p {
  color: #fff;
  font-size: clamp(24px, 4vw, 40px);
  font-family: var(--font-mono, ui-monospace, monospace);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  line-height: 1.25;
  margin: 0;
}

.globe-cta-layer {
  position: relative;
  z-index: 20;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  padding-bottom: 2rem;
}
.globe-cta-container {
  max-width: 1440px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.btn-globe {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background-color: #fff;
  color: #050505;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: -0.025em;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-globe:hover {
  transform: scale(1.02);
  box-shadow: 0 0 40px rgba(255,255,255,0.2);
}
.btn-globe:active {
  transform: scale(0.98);
}

.btn-globe-arrow {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.3s;
}
.btn-globe:hover .btn-globe-arrow {
  transform: translateX(4px);
}

/* ==========================================
   FINAL LAYOUT & ANIMATION MATCHING FIXES
   ========================================== */

/* Fix 1: Properly size the newly extracted logo image in the Navbar */
.logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  display: block;
}
@media (min-width: 768px) {
  .logo-img {
    height: 32px;
  }
}

/* Fix 2: Add the missing Hero section entrance animations (matching Framer Motion) */
.hero-left {
  opacity: 0;
  transform: translateX(-20px);
  animation: heroFadeLeft 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-right {
  opacity: 0;
  transform: translateX(20px);
  animation: heroFadeRight 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

@keyframes heroFadeLeft {
  to { opacity: 1; transform: translateX(0); }
}
@keyframes heroFadeRight {
  to { opacity: 1; transform: translateX(0); }
}

/* Fix 3: Hide the stray artix-logo.svg in the Plane Morph section because it does not exist in the Next.js version */
.morph-logo {
  display: none !important;
}

/* Fix 4: Ensure the About right image matches the Next.js w-full container */
.about-right {
  justify-content: center;
}
.about-img {
  max-width: 100%;
}
