/* ═══════════════════════════════════════════════════════════════
   RyderBuddy — Enterprise Landing Page Stylesheet
   Design Language: Obsidian Gold / Luxury Automotive Intelligence
   ═══════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
  color-scheme: dark;
  --bg-obsidian:    #05070f;
  --bg-base:        #05070f;
  --bg-deep:        #03050a;
  --bg-surface:     #0B0F19;
  --bg-raised:      #0F1521;
  --bg-elevated:    #141B2D;
  --bg-glass:       rgba(11, 15, 25, 0.72);
  --bg-glass-light: rgba(20, 27, 45, 0.60);

  --gold:           #D9A241;
  --gold-bright:    #E8B86D;
  --gold-dim:       rgba(217, 162, 65, 0.18);
  --gold-glow:      rgba(217, 162, 65, 0.08);
  --gold-border:    rgba(217, 162, 65, 0.22);
  --gold-border-hv: rgba(217, 162, 65, 0.44);

  --white:          #F4F4F4;
  --white-90:       rgba(244, 244, 244, 0.90);
  --white-70:       rgba(244, 244, 244, 0.70);
  --white-45:       rgba(244, 244, 244, 0.45);
  --white-20:       rgba(244, 244, 244, 0.20);
  --white-08:       rgba(244, 244, 244, 0.08);
  --white-04:       rgba(244, 244, 244, 0.04);

  --border:         rgba(244, 244, 244, 0.07);
  --border-subtle:  rgba(244, 244, 244, 0.04);

  --white-60:       rgba(244, 244, 244, 0.60);

  --green:          #22C55E;
  --green-dim:      rgba(34, 197, 94, 0.15);
  --amber:          #F59E0B;
  --amber-dim:      rgba(245, 158, 11, 0.15);
  --blue:           #3B82F6;
  --blue-dim:       rgba(59, 130, 246, 0.15);

  --radius-sm:      6px;
  --radius-md:      10px;
  --radius-lg:      14px;
  --radius-xl:      20px;
  --radius-2xl:     28px;

  --shadow-sm:      0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md:      0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg:      0 12px 40px rgba(0, 0, 0, 0.6);
  --shadow-gold:    0 0 24px rgba(217, 162, 65, 0.12);
  --shadow-gold-hv: 0 0 40px rgba(217, 162, 65, 0.20);

  --nav-h:          64px;
  --section-max:    1160px;
  --content-max:    720px;

  --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:    cubic-bezier(0.45, 0, 0.55, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 16px;
  height: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  /* Full-page fixed panoramic ghat backdrop */
  background-color: var(--bg-obsidian);
  background-image: url('ghat-backbone.png');
  background-size: 115%;
  background-position: 30% 12%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: var(--white-90);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Global page overlay — base dark wash over the entire scenic background */
.page-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: rgba(5, 7, 15, 0.62);
  pointer-events: none;
}

/* Cover Gemini watermark in bottom-right corner of the image */
body::after {
  content: '';
  position: fixed;
  bottom: 0;
  right: 0;
  width: 160px;
  height: 100px;
  background: linear-gradient(
    225deg,
    rgba(5, 7, 15, 0.95) 0%,
    rgba(5, 7, 15, 0.70) 50%,
    transparent 100%
  );
  z-index: 0;
  pointer-events: none;
}

/* Skip link — keyboard accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bg-base);
  background: var(--gold);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}

/* Focus visible — keyboard nav ring */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Remove focus ring for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
}

/* Enforce hidden attribute across all browsers */
[hidden] {
  display: none !important;
}

/* Prevent horizontal overflow at all costs */
section,
footer,
nav,
main {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Stack all layout elements above the fixed page overlay */
.navbar,
.mobile-nav-overlay,
main,
section,
footer {
  position: relative;
  z-index: 1;
}

/* ─── Typography Scale ─── */
.hero-headline {
  font-size: clamp(2.2rem, 4.8vw, 4.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: #ffffff;
  max-width: 780px;
  text-wrap: balance;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-shadow:
    0 2px 32px rgba(0,0,0,0.98),
    0 1px 10px rgba(0,0,0,0.95),
    0 0  4px  rgba(0,0,0,0.90);
}

.headline-accent {
  color: var(--gold);
  font-style: italic;
  white-space: nowrap;
}

.hero-subtext {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 400;
  line-height: 1.7;
  color: #ffffff;
  max-width: 560px;
  text-shadow:
    0 1px 20px rgba(0,0,0,0.98),
    0 1px 6px  rgba(0,0,0,0.90);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.85), 0 1px 5px rgba(0,0,0,0.7);
}

.section-sub {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255,255,255,0.80);
  max-width: 560px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.75);
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}

.eyebrow-line {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── Shared Utilities ─── */
.section-container {
  max-width: var(--section-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.section-header {
  margin-bottom: clamp(48px, 6vw, 80px);
  max-width: 680px;
}

.section-header .section-sub {
  margin-top: 16px;
}

/* ─── Reveal Animations ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-hero] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-reveal-hero].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(3, 7, 18, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--border);
}

.nav-container {
  max-width: var(--section-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-footer {
  height: 38px;
  margin-bottom: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white-70);
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease-out);
}

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

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--bg-base);
  background: var(--gold);
  border-radius: var(--radius-md);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.btn-nav-cta:hover {
  background: var(--gold-bright);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.nav-toggle:hover {
  background: var(--white-08);
}

.toggle-bar {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--white-70);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open .toggle-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.open .toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open .toggle-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(3, 7, 18, 0.97);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow: hidden;
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
  position: relative;
  padding: 40px 24px;
  width: 100%;
  max-width: 400px;
}

.mobile-nav-link {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white-70);
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
  padding: 4px 0;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
  color: var(--white);
}

.mobile-nav-cta {
  margin-top: 12px;
  width: 100%;
  max-width: 280px;
  justify-content: center;
}

.mobile-nav-close {
  position: absolute;
  top: -8px;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-45);
  border-radius: var(--radius-md);
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-nav-close:hover,
.mobile-nav-close:focus-visible {
  color: var(--white);
  background: var(--white-08);
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--bg-base);
  background: var(--gold);
  border-radius: var(--radius-md);
  transition: background 0.2s ease, box-shadow 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--gold-bright);
  box-shadow: 0 0 32px rgba(217, 162, 65, 0.25);
  transform: translateY(-2px);
}

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

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--white-70);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.btn-ghost:hover {
  color: var(--white);
  border-color: var(--white-20);
  background: var(--white-04);
  transform: translateY(-2px);
}

.btn-submit {
  width: 100%;
  padding: 15px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--bg-base);
  background: var(--gold);
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s ease, box-shadow 0.25s ease, transform 0.2s ease, opacity 0.2s ease;
  margin-top: 4px;
}

.btn-submit:hover:not(:disabled) {
  background: var(--gold-bright);
  box-shadow: 0 0 28px rgba(217, 162, 65, 0.2);
  transform: translateY(-1px);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-spinner {
  animation: spin 0.8s linear infinite;
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 60px) clamp(20px, 5vw, 60px) 80px;
  background: transparent;
}

/* Hero background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Hero grid overlay — removed, no dark scrim boxes */
.hero-grid-overlay {
  display: none;
}

.hero-ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

/* Warm gold glow — sunrise on ridgeline */
.hero-ambient-1 {
  width: 600px;
  height: 400px;
  top: 20%;
  left: -100px;
  background: radial-gradient(ellipse, rgba(217, 162, 65, 0.10) 0%, transparent 70%);
  animation: ambientDrift1 18s ease-in-out infinite;
}

/* Atmospheric blue haze — sky depth */
.hero-ambient-2 {
  width: 500px;
  height: 350px;
  top: 0;
  right: 0;
  background: radial-gradient(ellipse, rgba(100, 160, 255, 0.06) 0%, transparent 70%);
  animation: ambientDrift2 22s ease-in-out infinite;
}

/* Forest green warmth at base */
.hero-ambient-3 {
  width: 700px;
  height: 250px;
  bottom: 0;
  left: 20%;
  background: radial-gradient(ellipse, rgba(30, 80, 30, 0.18) 0%, transparent 70%);
  animation: ambientDrift3 15s ease-in-out infinite;
}

.hero-noise {
  display: none;
  pointer-events: none;
}

/* Telemetry floating cards */
.telemetry-card {
  position: absolute;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  padding: 14px 18px;
  min-width: 160px;
  animation: floatCard 6s ease-in-out infinite;
  pointer-events: none;
  will-change: transform;
  transform: translateZ(0);
  transition: opacity 0.5s ease;
}

.telemetry-card::before {
  display: none;
}

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

.tc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tc-dot--green  { background: var(--green); box-shadow: 0 0 6px rgba(34, 197, 94, 0.7); }
.tc-dot--gold   { background: var(--gold);  box-shadow: 0 0 6px rgba(217, 162, 65, 0.7); }
.tc-dot--blue   { background: var(--blue);  box-shadow: 0 0 6px rgba(59, 130, 246, 0.7); }

.tc-system {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,0.9);
}

.tc-value {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-shadow: 0 2px 16px rgba(0,0,0,0.95), 0 1px 4px rgba(0,0,0,0.85);
}

.tc-label {
  font-size: 0.65rem;
  color: #ffffff;
  margin-top: 3px;
  font-weight: 400;
  text-shadow: 0 1px 10px rgba(0,0,0,0.9);
}

.tc-1 {
  top: 22%;
  right: 8%;
  animation-delay: 0s;
  --tc-rotate: 1.5deg;
}

.tc-2 {
  top: 38%;
  right: 3%;
  animation-delay: -2s;
  --tc-rotate: -1deg;
}

.tc-3 {
  bottom: 26%;
  right: 10%;
  animation-delay: -4s;
  --tc-rotate: 0.8deg;
}

.tc-4 {
  top: 16%;
  right: 22%;
  animation-delay: -1.5s;
  --tc-rotate: -1.2deg;
  display: none;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--section-max);
  width: 100%;
  padding-right: clamp(0px, 22vw, 340px);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 10px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.eyebrow-pulse {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2.5s ease-in-out infinite;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--white-45);
  letter-spacing: 0.01em;
}

.trust-sep {
  width: 1px;
  height: 12px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.35;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--white-45), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════════
   CAPABILITIES BENTO GRID
   ═══════════════════════════════════════════════════════════════ */

.capabilities {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  background: transparent;
}

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

/* Bento grid layout */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 14px;
}

.bento-large { grid-column: span 2; }
.bento-tall  { grid-row:    span 2; }
.bento-wide  { grid-column: span 3; }

/* ─── Ghat Canvas Container ─── */
.ghat-canvas-container {
  grid-column: span 3;
  background-image: none;
  background-color: transparent;
  border-radius: 0;
  padding: 220px 32px 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  overflow: visible;
  min-height: 580px;
  border: none;
  align-items: end;
}

/* gcc-overlay removed — no background boxes */
.gcc-overlay {
  display: none;
}

/* Cards on the ghat backdrop — fully transparent, text on image */
.ghat-card {
  position: relative;
  z-index: 2;
  background: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  align-self: end;
  will-change: auto;
  contain: none;
  transition: transform 0.3s ease;
}

.ghat-card::before {
  display: none;
}

.ghat-card:hover {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  transform: translateY(-4px);
}

/* bc-bg and bc-border not needed on transparent cards */
.ghat-card .bc-bg,
.ghat-card .bc-border,
.ghat-card .bc-glow {
  display: none;
}

/* Strong text shadows so letters punch through any image complexity */
.ghat-canvas-container .bc-title {
  color: #ffffff;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  text-shadow:
    0 2px 24px rgba(0, 0, 0, 0.95),
    0 1px 6px  rgba(0, 0, 0, 0.90),
    0 0px 2px  rgba(0, 0, 0, 0.80);
}

.ghat-canvas-container .bc-desc {
  color: rgba(255, 255, 255, 0.92);
  text-shadow:
    0 1px 14px rgba(0, 0, 0, 0.90),
    0 1px 4px  rgba(0, 0, 0, 0.80);
}

.ghat-canvas-container .bc-eyebrow {
  opacity: 1;
  letter-spacing: 0.13em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
}

/* Tags — minimal pill outlines, no fill */
.ghat-canvas-container .bc-tag {
  background: rgba(0, 0, 0, 0.30);
  border-color: rgba(255, 255, 255, 0.30);
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* Icon box — slight dark backing so gold reads against green */
.ghat-canvas-container .bc-icon {
  background: rgba(0, 0, 0, 0.35);
  border-color: rgba(217, 162, 65, 0.50);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

/* Bento card — fully transparent, text floats on background */
.bento-card {
  position: relative;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  overflow: visible;
  transition: transform 0.35s var(--ease-out);
  cursor: default;
  will-change: transform;
  transform: translateZ(0);
  contain: none;
  border: none;
  box-shadow: none;
}

.bento-card:hover {
  transform: translateY(-4px) translateZ(0);
  box-shadow: none;
}

/* Inner decorative layers — hidden */
.bc-bg,
.bc-border,
.bc-glow {
  display: none;
}

/* Top edge highlight — removed */
.bento-card::before {
  display: none;
}

.bento-card:hover::before {
  display: none;
}

/* Card content */
.bc-body {
  position: relative;
  z-index: 3;
  padding: clamp(24px, 3vw, 36px);
}

.bc-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1.5px solid rgba(217, 162, 65, 0.65);
  border-radius: var(--radius-md);
  color: var(--gold);
  margin-bottom: 20px;
  transition: border-color 0.3s ease;
  filter: drop-shadow(0 1px 8px rgba(0,0,0,0.85));
}

.bento-card:hover .bc-icon {
  border-color: var(--gold);
}

.bc-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 1;
  text-shadow: 0 1px 10px rgba(0,0,0,0.9);
}

.bc-title {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 10px;
  text-shadow:
    0 2px 20px rgba(0,0,0,0.95),
    0 1px 6px  rgba(0,0,0,0.90),
    0 0 2px    rgba(0,0,0,0.80);
}

.bc-desc {
  font-size: 0.83rem;
  line-height: 1.65;
  color: #ffffff;
  max-width: 360px;
  text-shadow:
    0 1px 16px rgba(0,0,0,0.92),
    0 1px 4px  rgba(0,0,0,0.80);
}

.bc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}

.bc-tag {
  padding: 4px 10px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: none;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 100px;
  transition: color 0.2s ease, border-color 0.2s ease;
  text-shadow: 0 1px 8px rgba(0,0,0,0.85);
}

.bento-card:hover .bc-tag {
  color: #ffffff;
  border-color: rgba(217, 162, 65, 0.6);
}

/* Card visuals */
.bc-visual {
  position: relative;
  z-index: 3;
  padding: 0 clamp(20px, 3vw, 32px) clamp(20px, 3vw, 32px);
}

/* TourPlan mock */
.tourplan-mock {
  background: none;
  border: none;
  border-radius: 0;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tp-node {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.tp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
}

.tp-complete .tp-dot { background: var(--green); border-color: var(--green); box-shadow: 0 0 8px rgba(34,197,94,0.4); }
.tp-active   .tp-dot { background: var(--gold);  border-color: var(--gold);  box-shadow: 0 0 10px rgba(217,162,65,0.5); animation: nodePulse 2s ease-in-out infinite; }
.tp-pending  .tp-dot { background: transparent;  border-color: var(--white-20); }
.tp-locked   .tp-dot { background: transparent;  border-color: var(--border); }

.tp-connector {
  width: 1px;
  height: 18px;
  background: linear-gradient(to bottom, var(--white-20), var(--border));
  margin-left: 4px;
}

.tp-connector.tp-dashed {
  background: repeating-linear-gradient(to bottom, var(--border) 0, var(--border) 3px, transparent 3px, transparent 6px);
}

.tp-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tp-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.85);
}

.tp-locked .tp-name { color: rgba(255,255,255,0.70); }

.tp-meta {
  font-size: 0.65rem;
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.85);
}

.tp-badge {
  padding: 3px 9px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 100px;
  flex-shrink: 0;
}

.tp-done { background: rgba(34,197,94,0.12); color: var(--green); border: 1px solid rgba(34,197,94,0.25); }
.tp-live { background: rgba(217,162,65,0.12); color: var(--gold);  border: 1px solid rgba(217,162,65,0.25); }
.tp-eta  { background: none; color: #ffffff; border: 1px solid rgba(255,255,255,0.40); text-shadow: 0 1px 6px rgba(0,0,0,0.8); }

/* Proximity mesh visual */
.bc-visual-mesh {
  padding: 0 32px 28px;
}

.mesh-svg {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  display: block;
}

.mesh-pulse {
  transform-origin: 90px 80px;
  transform-box: fill-box;
  animation: meshPulse 3s ease-in-out infinite;
  will-change: transform, opacity;
}

/* Presence visual */
.bc-visual-presence {
  padding: 0 clamp(20px, 3vw, 32px) clamp(20px, 3vw, 32px);
}

.presence-strip {
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
}

.pres-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.pres-connector {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-border), var(--border), var(--gold-border));
  min-width: 20px;
  max-width: 60px;
}

.pn-ring {
  position: relative;
  display: inline-block;
}

.pn-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: hsl(var(--hue, 210), 30%, 18%);
  border: 1px solid rgba(244, 244, 244, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: hsl(var(--hue, 210), 60%, 70%);
  letter-spacing: 0;
}

.pn-status {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--bg-surface);
}

.pns-green { background: var(--green); box-shadow: 0 0 6px rgba(34,197,94,0.5); }
.pns-amber { background: var(--amber); box-shadow: 0 0 6px rgba(245,158,11,0.5); }

.pn-name {
  font-size: 0.7rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.90);
}

.pn-role {
  font-size: 0.6rem;
  color: #ffffff;
  font-weight: 400;
  text-shadow: 0 1px 6px rgba(0,0,0,0.90);
}

/* ═══════════════════════════════════════════════════════════════
   INFRASTRUCTURE
   ═══════════════════════════════════════════════════════════════ */

.infrastructure {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  background: transparent;
}

.infra-divider {
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(30, 80, 30, 0.4) 20%,
    rgba(217, 162, 65, 0.25) 50%,
    rgba(30, 80, 30, 0.4) 80%,
    transparent 100%
  );
}

.infra-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.infra-left .section-title {
  margin-top: 0;
}

.infra-left .section-sub {
  margin-top: 16px;
  margin-bottom: 40px;
}

.infra-pillars {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.infra-pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ip-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1.5px solid rgba(217, 162, 65, 0.65);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  transition: border-color 0.2s ease;
  filter: drop-shadow(0 1px 8px rgba(0,0,0,0.85));
}

.infra-pillar:hover .ip-icon {
  border-color: var(--gold);
}

.ip-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 6px;
}

.ip-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 10px rgba(0,0,0,0.7);
}

.ip-desc {
  font-size: 0.8rem;
  color: #ffffff;
  line-height: 1.6;
  text-shadow: 0 1px 10px rgba(0,0,0,0.88);
}

/* Metrics grid */
.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.metric-card {
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  padding: 22px 24px;
  position: relative;
  overflow: visible;
  transition: transform 0.3s ease;
  box-shadow: none;
}

.metric-card::before {
  display: none;
}

.metric-card:hover {
  border: none;
  box-shadow: none;
  transform: translateY(-3px);
}

.metric-wide {
  grid-column: span 2;
}

.mc-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

.mc-value {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 2px 16px rgba(0,0,0,0.7);
}

.mc-bar {
  height: 3px;
  background: var(--white-08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 10px;
}

.mc-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  border-radius: 2px;
  transition: width 1.5s var(--ease-out) 0.3s;
}

.mc-bar-fill.animated {
  width: var(--fill);
}

.mc-sub {
  font-size: 0.68rem;
  color: #ffffff;
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0,0,0,0.85);
}

/* Status grid */
.status-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.status-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sd {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: statusPulse 3s ease-in-out infinite;
}

.sd-green {
  background: var(--green);
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.5);
}

.sd-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.85);
  flex: 1;
}

.sd-state {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════════
   WAITLIST
   ═══════════════════════════════════════════════════════════════ */

.waitlist {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
  background: none;
}

.waitlist-ambient-1 {
  position: absolute;
  width: 600px;
  height: 400px;
  top: -100px;
  left: -200px;
  background: radial-gradient(ellipse, rgba(217, 162, 65, 0.05) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.waitlist-ambient-2 {
  position: absolute;
  width: 500px;
  height: 350px;
  bottom: -80px;
  right: -100px;
  background: radial-gradient(ellipse, rgba(217, 162, 65, 0.04) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.waitlist-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.waitlist-left .section-title {
  margin-top: 0;
}

.waitlist-left .section-sub {
  margin-top: 16px;
  margin-bottom: 36px;
}

.wl-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wl-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.90);
  font-weight: 400;
  line-height: 1.5;
  text-shadow: 0 1px 8px rgba(0,0,0,0.75);
}

.wlf-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}

/* Form card */
.wl-card {
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  padding: clamp(28px, 4vw, 44px);
  position: relative;
  overflow: visible;
}

.wl-card::before {
  display: none;
}

.wl-card::after {
  display: none;
}

.wlc-header {
  margin-bottom: 28px;
}

.wlc-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.8);
}

.wlc-desc {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}

/* Form styles */
.wl-form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.fg-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

.fg-input-wrap {
  position: relative;
}

.fg-input {
  width: 100%;
  padding: 12px 0;
  font-size: 0.875rem;
  font-weight: 400;
  color: #ffffff;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.40);
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}

.fg-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}

.fg-input:focus {
  border-bottom-color: var(--gold);
  box-shadow: none;
  background: none;
}

.fg.has-error .fg-input {
  border-bottom-color: rgba(239, 68, 68, 0.7);
  box-shadow: none;
}

.fg.is-valid .fg-input {
  border-bottom-color: rgba(34, 197, 94, 0.6);
}

.fg-select-wrap {
  position: relative;
}

.fg-select {
  padding-right: 40px;
  cursor: pointer;
}

.select-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.75);
  pointer-events: none;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}

.fg-error {
  font-size: 0.72rem;
  color: #EF4444;
  font-weight: 500;
  min-height: 16px;
  display: block;
  transition: opacity 0.2s ease;
}

/* Success state */
.wl-success {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  gap: 16px;
}

.wls-icon {
  animation: successPop 0.5s var(--ease-out);
}

.wls-title {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.9);
}

.wls-desc {
  font-size: 0.85rem;
  color: #ffffff;
  line-height: 1.65;
  max-width: 360px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.85);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */

.footer {
  padding: clamp(48px, 5vw, 72px) 0 clamp(28px, 3vw, 40px);
  position: relative;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.footer-minimal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 0.80rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.80);
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: var(--gold);
}

.footer-top-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(800px, 90%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--gold-border), var(--border), transparent);
}

.footer-logo-link {
  display: inline-block;
}

.footer-bottom-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin-bottom: 24px;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.80);
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}

.footer-pos {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}

/* ═══════════════════════════════════════════════════════════════
   KEYFRAME ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */

@keyframes ambientDrift1 {
  0%,  100% { transform: translate(0, 0)     scale(1);    opacity: 1; }
  33%        { transform: translate(60px, 30px)  scale(1.1); opacity: 0.8; }
  66%        { transform: translate(-30px, 60px) scale(0.9); opacity: 0.9; }
}

@keyframes ambientDrift2 {
  0%,  100% { transform: translate(0, 0)       scale(1);    opacity: 1; }
  40%        { transform: translate(-50px, 40px)  scale(1.05); opacity: 0.7; }
  70%        { transform: translate(30px, -30px)  scale(0.95); opacity: 0.9; }
}

@keyframes ambientDrift3 {
  0%,  100% { transform: translate(0, 0)      scale(1); }
  50%        { transform: translate(40px, -20px) scale(1.08); }
}

@keyframes floatCard {
  0%,  100% { transform: rotate(var(--tc-rotate, 1.5deg)) translateY(0px) translateZ(0); }
  50%        { transform: rotate(var(--tc-rotate, 1.5deg)) translateY(-8px) translateZ(0); }
}

@keyframes pulse {
  0%,  100% { opacity: 1;   box-shadow: 0 0 0 0 rgba(217, 162, 65, 0.5); }
  50%        { opacity: 0.7; box-shadow: 0 0 0 6px rgba(217, 162, 65, 0); }
}

@keyframes nodePulse {
  0%,  100% { box-shadow: 0 0 10px rgba(217, 162, 65, 0.5); }
  50%        { box-shadow: 0 0 18px rgba(217, 162, 65, 0.9); }
}

@keyframes meshPulse {
  0%,  100% { transform: scale(1);    opacity: 0.4; }
  50%        { transform: scale(1.7); opacity: 0.08; }
}

@keyframes statusPulse {
  0%,  100% { opacity: 1; }
  50%        { opacity: 0.6; }
}

@keyframes scrollDrop {
  0%        { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%       { transform: scaleY(1); transform-origin: top; opacity: 1; }
  80%       { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
  100%      { transform: scaleY(0); transform-origin: top; opacity: 0; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes successPop {
  0%   { transform: scale(0.7); opacity: 0; }
  60%  { transform: scale(1.08); }
  100% { transform: scale(1);  opacity: 1; }
}

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

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET 768–1024px
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {

  .tc-1 { top: 14%; right: 2%; }
  .tc-2 { top: 30%; right: 1%; }
  .tc-3 { display: none; }

  .hero-content {
    padding-right: clamp(0px, 16vw, 200px);
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-large { grid-column: span 2; }
  .bento-tall  { grid-column: span 1; grid-row: span 1; }
  .bento-wide  { grid-column: span 2; }

  .ghat-canvas-container {
    grid-column: span 2;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    padding: 160px 24px 28px;
  }

  .infra-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .infra-left .section-sub {
    max-width: 100%;
  }

  .metrics-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .metric-wide {
    grid-column: span 3;
  }

  .waitlist-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .footer-layout {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-layout .footer-col:last-child {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE < 768px
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* Navbar */
  .nav-links    { display: none; }
  .btn-nav-cta  { display: none; }
  .nav-toggle   { display: flex; }

  /* Hero */
  .hero {
    padding-top: calc(var(--nav-h) + 48px);
    padding-bottom: 64px;
    text-align: center;
    justify-content: flex-start;
  }

  .hero-content {
    padding-right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-subtext { max-width: 100%; text-align: center; }

  .hero-ctas {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .trust-sep { display: none; }

  .tc-1, .tc-2, .tc-3, .tc-4 { display: none; }

  /* Bento */
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-large,
  .bento-tall,
  .bento-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .ghat-canvas-container {
    grid-column: span 1;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 240px 18px 20px;
    background-position: center 30%;
  }

  .presence-strip {
    justify-content: center;
  }

  .pres-connector { display: none; }

  .presence-strip {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  /* Infrastructure */
  .metrics-grid {
    grid-template-columns: 1fr 1fr;
  }

  .metric-wide { grid-column: span 2; }

  /* Waitlist */
  .wl-card {
    padding: 28px 22px;
  }

  /* Footer */
  .footer-minimal-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 480px) {

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

  .metric-wide { grid-column: span 1; }

  .footer-legal-links {
    gap: 14px;
  }

  .hero-headline {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }
}

/* ═══════════════════════════════════════════════════════════════
   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;
  }

  html { scroll-behavior: auto; }

  [data-reveal],
  [data-reveal-hero] {
    opacity: 1;
    transform: none;
  }

  .telemetry-card {
    will-change: auto;
  }

  .bento-card {
    will-change: auto;
  }
}

/* ═══════════════════════════════════════════════════════════════
   NO-JS FALLBACK
   ═══════════════════════════════════════════════════════════════ */

.no-js [data-reveal],
.no-js [data-reveal-hero] {
  opacity: 1;
  transform: none;
}

.no-js .navbar {
  background: rgba(3, 7, 18, 0.95);
  border-bottom-color: var(--border);
}

.no-js .nav-toggle {
  display: none;
}

/* ═══════════════════════════════════════════════════════════════
   PRINT STYLES
   ═══════════════════════════════════════════════════════════════ */

@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .navbar,
  .hero-bg,
  .telemetry-card,
  .mobile-nav-overlay,
  .hero-scroll,
  .bento-card::before,
  .bc-bg,
  .bc-border,
  .bc-glow,
  .waitlist-ambient-1,
  .waitlist-ambient-2,
  .infra-divider,
  .footer-top-line,
  .btn-nav-cta,
  .btn-submit,
  .soc-link {
    display: none !important;
  }

  .hero,
  .capabilities,
  .infrastructure,
  .waitlist,
  .footer {
    padding: 24pt 0;
  }

  .section-title {
    font-size: 18pt;
    color: #000 !important;
  }

  .bento-card {
    border: 1pt solid #ccc;
    page-break-inside: avoid;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #555 !important;
  }

  a[href^="#"]::after,
  a[href^="javascript"]::after {
    content: "";
  }
}
