/* ============================================================
   NGM Landing Page — V3 Minimal Dark
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600&family=Outfit:wght@100;200;300;400;500;600&display=swap');

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

:root {
  --accent: #3dca8b;
  --accent-hover: #34b87a;
  --accent-glow: rgba(61, 202, 139, 0.10);
  --accent-glow-strong: rgba(61, 202, 139, 0.22);
  --bg: #050505;
  --bg-card: rgba(255,255,255,0.03);
  --bg-card-hover: rgba(255,255,255,0.06);
  --text: #f0f0f0;
  --text-dim: #888;
  --text-muted: #555;
  --border: rgba(255,255,255,0.06);
  --border-strong: rgba(255,255,255,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(160deg, #0e0e0e 0%, #0a0a0a 25%, #060606 50%, var(--bg) 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ============================================================
   NAV
   ============================================================ */

.landing-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  transition: background 0.4s, padding 0.3s, box-shadow 0.4s;
}
.landing-nav.nav-scrolled {
  background: rgba(5,5,5,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 40px;
  box-shadow: 0 1px 0 var(--border);
}

.nav-brand img {
  height: 28px;
  width: auto;
  transition: opacity 0.3s;
}
.nav-brand:hover img { opacity: 0.8; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.nav-hub-link {
  color: var(--accent);
  font-weight: 400;
  padding: 6px 16px;
  border: 1px solid rgba(61,202,139,0.25);
  border-radius: 8px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.nav-links a.nav-hub-link:hover {
  background: rgba(61,202,139,0.08);
  border-color: rgba(61,202,139,0.45);
  color: var(--accent);
}

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-dim);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-open .nav-hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-open .nav-hamburger span:nth-child(2) { opacity: 0; }
.mobile-open .nav-hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   BACKGROUND LAYERS (mesh + grain + vignette)
   ============================================================ */

/* Layer 1: Multi-gradient mesh — mostly grays with a hint of accent */
.bg-mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    /* Top-center overhead ambient light (gray) */
    radial-gradient(ellipse 90% 45% at 50% -15%, rgba(55,55,55,0.30) 0%, transparent 70%),
    /* Upper-left soft gray wash */
    radial-gradient(ellipse 70% 55% at 8% 10%, rgba(40,40,40,0.25) 0%, transparent 65%),
    /* Right side: barely perceptible green accent bleed */
    radial-gradient(ellipse 45% 65% at 88% 35%, rgba(61,202,139,0.02) 0%, transparent 50%),
    /* Center-left neutral depth */
    radial-gradient(ellipse 55% 50% at 25% 50%, rgba(30,30,30,0.20) 0%, transparent 60%),
    /* Bottom-center: wide neutral floor glow */
    radial-gradient(ellipse 85% 35% at 50% 105%, rgba(50,50,50,0.22) 0%, transparent 65%),
    /* Bottom-left faint green whisper */
    radial-gradient(circle 500px at 12% 85%, rgba(61,202,139,0.015) 0%, transparent 55%),
    /* Large diffuse center glow */
    radial-gradient(circle at 50% 45%, rgba(22,22,22,0.40) 0%, transparent 65%),
    /* Upper-right diagonal gray shaft */
    conic-gradient(from 200deg at 75% 10%, transparent 35%, rgba(35,35,35,0.15) 45%, transparent 55%),
    /* Diagonal base gradients */
    linear-gradient(160deg, rgba(18,18,18,0.35) 0%, transparent 45%),
    linear-gradient(340deg, rgba(12,12,12,0.25) 55%, transparent 100%);
}

/* Layer 2: Film grain texture (SVG feTurbulence) */
.bg-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 182px;
  opacity: 0.030;
  mix-blend-mode: soft-light;
}

/* Layer 3: Vignette (edge darkening for depth) */
.bg-vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(ellipse at 50% 50%, transparent 45%, rgba(0,0,0,0.35) 100%);
}

/* Layer 4: Mouse-follow glow */
.cursor-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,202,139,0.025) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}

/* ============================================================
   SCROLL-REVEAL
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
              transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ============================================================
   KEYFRAMES
   ============================================================ */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}
@keyframes border-glow {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes pulse-soft {
  0%,100% { transform: scale(1); opacity: 0.15; }
  50%     { transform: scale(1.15); opacity: 0.05; }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes spin-reverse {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
@keyframes bar-grow {
  from { transform: scaleY(0.2); }
  to   { transform: scaleY(1); }
}
@keyframes flow-pulse {
  0%,100% { opacity: 0.3; transform: scale(0.85); }
  50%     { opacity: 1; transform: scale(1); }
}
@keyframes ring-expand {
  0%   { transform: scale(0.4); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}
@keyframes logo-breathe {
  0%,100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50%     { transform: translate(-50%, -50%) scale(1.15); opacity: 0.6; }
}

/* ============================================================
   HERO
   ============================================================ */

.landing-hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding: 40px 60px 100px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  max-width: 620px;
  margin-bottom: 0;
  animation: fadeInUp 0.8s ease-out both;
}

.hero-logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180%;
  height: 180%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(61,202,139,0.04) 0%, rgba(61,202,139,0.015) 40%, transparent 65%);
  border-radius: 50%;
  animation: logo-breathe 5s ease-in-out infinite;
  pointer-events: none;
}

.hero-icon {
  width: 350px;
  height: 350px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 20px rgba(61,202,139,0.06));
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 200;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}
.hero-title .accent {
  font-weight: 300;
  background: linear-gradient(135deg, var(--accent) 0%, #6ee7b7 50%, var(--accent) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
}

.hero-slogan {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(16px, 1.8vw, 21px);
  font-weight: 200;
  color: var(--text);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 36px;
  letter-spacing: -0.01em;
  animation: fadeInUp 0.8s ease-out 0.25s both;
}

.hero-pitch {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-pitch p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 520px;
}

.hero-value {
  margin-top: 16px;
  color: var(--text-muted) !important;
  font-size: 13px !important;
}

/* Scroll indicator + suite link */
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeIn 1s ease-out 1.5s both;
}

.hero-suite-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 300;
  color: var(--accent);
  letter-spacing: 0.04em;
  opacity: 0.7;
  transition: gap 0.3s, opacity 0.3s;
}
.hero-suite-link:hover {
  gap: 14px;
  opacity: 1;
}
.hero-suite-link svg {
  width: 14px;
  height: 14px;
}

/* Mobile fallback link (hidden on desktop where scroll indicator shows it) */
.hero-suite-link-mobile {
  display: none;
}
.hero-scroll-mouse {
  width: 22px; height: 36px;
  border: 1.5px solid var(--border-strong);
  border-radius: 11px;
  position: relative;
}
.hero-scroll-mouse::after {
  content: '';
  position: absolute;
  top: 7px; left: 50%;
  transform: translateX(-50%);
  width: 2px; height: 6px;
  background: var(--accent);
  border-radius: 3px;
  animation: float 1.5s ease-in-out infinite;
}
.hero-scroll span {
  font-size: 9px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* ============================================================
   CENTRALIZE SECTION (portal showcase)
   ============================================================ */

.centralize-section {
  position: relative;
  z-index: 10;
  padding: 120px 60px;
  overflow: hidden;
}

.centralize-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.centralize-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 200;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 28px;
}

.centralize-desc {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 16px;
}
.centralize-desc:last-child { margin-bottom: 0; }

/* ---- Portal Mockup ---- */
.centralize-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.portal-mockup {
  position: relative;
  width: 320px;
}

.portal-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
}

/* Color-cycling accent for SVG elements */
.portal-accent-fill {
  fill: #3dca8b;
  animation: portal-color-cycle 10s ease-in-out infinite;
}

@keyframes portal-color-cycle {
  0%, 100% { fill: #3dca8b; }
  20%      { fill: #6366f1; }
  40%      { fill: #f59e0b; }
  60%      { fill: #ef4444; }
  80%      { fill: #06b6d4; }
}

/* Swatch active indicator follows the cycle */
.portal-swatches circle:nth-child(1) { animation: swatch-pulse 10s ease-in-out infinite 0s; }
.portal-swatches circle:nth-child(2) { animation: swatch-pulse 10s ease-in-out infinite 2s; }
.portal-swatches circle:nth-child(3) { animation: swatch-pulse 10s ease-in-out infinite 4s; }
.portal-swatches circle:nth-child(4) { animation: swatch-pulse 10s ease-in-out infinite 6s; }
.portal-swatches circle:nth-child(5) { animation: swatch-pulse 10s ease-in-out infinite 8s; }

@keyframes swatch-pulse {
  0%, 8%   { transform-origin: center; transform: scale(1); opacity: 0.5; }
  4%       { transform: scale(1.5); opacity: 1; }
  12%, 100% { transform: scale(1); opacity: 0.5; }
}

/* Floating label */
.portal-color-label {
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20,20,20,0.9);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  white-space: nowrap;
}

.portal-color-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3dca8b;
  animation: dot-color-cycle 10s ease-in-out infinite;
}

@keyframes dot-color-cycle {
  0%, 100% { background: #3dca8b; }
  20%      { background: #6366f1; }
  40%      { background: #f59e0b; }
  60%      { background: #ef4444; }
  80%      { background: #06b6d4; }
}

.portal-color-text {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
  .centralize-section { padding: 80px 24px; }
  .centralize-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .centralize-desc { margin-left: auto; margin-right: auto; }
  .portal-mockup { width: 260px; }
}

/* ============================================================
   SERVICE PANELS (full-screen, Apple-style)
   ============================================================ */

.svc-panel {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}
.svc-panel-alt { direction: rtl; }
.svc-panel-alt > * { direction: ltr; }

.svc-text { padding: 40px; }

.svc-label {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.svc-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 200;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.svc-desc {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 440px;
}
.svc-desc + .svc-desc {
  margin-top: 14px;
}
.svc-desc-secondary {
  font-size: 14px;
  color: var(--text-muted);
}

.svc-trademark {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 440px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.svc-trademark span {
  color: var(--accent);
  font-weight: 500;
}

/* ---- Service visuals ---- */
.svc-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.svc-anim-sphere {
  width: 100%;
  max-width: 600px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 12px;
}

.svc-anim {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Flow nodes (Process Efficiency) */
.svc-anim-flow {
  flex-direction: column;
  gap: 0;
}
.flow-node {
  width: 48px; height: 48px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.5s, box-shadow 0.5s;
  position: relative;
  z-index: 1;
}
.flow-line {
  width: 1.5px;
  height: 40px;
  background: linear-gradient(180deg, var(--border) 0%, var(--accent) 50%, var(--border) 100%);
  opacity: 0.4;
}
.svc-anim-flow.active .flow-node {
  border-color: rgba(61,202,139,0.3);
  box-shadow: 0 0 20px rgba(61,202,139,0.1);
  animation: flow-pulse 2s ease-in-out infinite;
}
.svc-anim-flow.active .flow-n2 { animation-delay: 0.4s; }
.svc-anim-flow.active .flow-n3 { animation-delay: 0.8s; }
.svc-anim-flow.active .flow-line { opacity: 1; transition: opacity 0.8s; }

/* Bars (Data & Predictions) */
.svc-anim-bars {
  align-items: flex-end;
  gap: 16px;
}
.bar {
  width: 36px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(61,202,139,0.2) 100%);
  transform-origin: bottom;
  transform: scaleY(0.2);
  opacity: 0.3;
  transition: transform 1s cubic-bezier(0.16,1,0.3,1), opacity 0.6s;
}
.bar-1 { height: 80px; }
.bar-2 { height: 140px; }
.bar-3 { height: 100px; }
.bar-4 { height: 180px; }
.bar-5 { height: 120px; }
.svc-anim-bars.active .bar {
  opacity: 1;
  animation: bar-grow 1s cubic-bezier(0.16,1,0.3,1) both;
}
.svc-anim-bars.active .bar-1 { animation-delay: 0.1s; }
.svc-anim-bars.active .bar-2 { animation-delay: 0.2s; }
.svc-anim-bars.active .bar-3 { animation-delay: 0.3s; }
.svc-anim-bars.active .bar-4 { animation-delay: 0.4s; }
.svc-anim-bars.active .bar-5 { animation-delay: 0.5s; }

/* Gears (Automation) */
.gear {
  border-radius: 50%;
  border: 2px solid rgba(61,202,139,0.2);
  position: absolute;
}
.gear-lg {
  width: 140px; height: 140px;
  top: 50px; left: 60px;
}
.gear-sm {
  width: 80px; height: 80px;
  bottom: 70px; right: 70px;
}
.gear::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1.5px dashed rgba(61,202,139,0.15);
}
.gear::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 10px;
  transform: translate(-50%, -50%);
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.5;
}
.svc-anim-gears.active .gear-lg { animation: spin-slow 12s linear infinite; }
.svc-anim-gears.active .gear-sm { animation: spin-reverse 8s linear infinite; }
.svc-anim-gears.active .gear { border-color: rgba(61,202,139,0.35); }
.svc-anim-gears.active .gear::after { opacity: 1; }

/* Pulse rings (Financial Control) */
.svc-anim-pulse { align-items: center; justify-content: center; }
.pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  opacity: 0;
}
.pulse-r1 { width: 80px; height: 80px; }
.pulse-r2 { width: 140px; height: 140px; }
.pulse-r3 { width: 200px; height: 200px; }
.pulse-dot {
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(61,202,139,0.4);
}
.svc-anim-pulse.active .pulse-r1 { animation: ring-expand 3s ease-out infinite; }
.svc-anim-pulse.active .pulse-r2 { animation: ring-expand 3s ease-out 0.8s infinite; }
.svc-anim-pulse.active .pulse-r3 { animation: ring-expand 3s ease-out 1.6s infinite; }

/* ============================================================
   SECTION COMMON
   ============================================================ */

.landing-section {
  padding: 120px 60px;
  max-width: 1140px;
  margin: 0 auto;
}

.section-header { margin-bottom: 56px; }

.section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}

/* ============================================================
   ABOUT
   ============================================================ */

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.9;
}
.about-text p + p { margin-top: 20px; }
.about-highlight { color: var(--text); font-weight: 500; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.stat-item:hover {
  border-color: rgba(61,202,139,0.2);
  transform: translateY(-2px);
}
.stat-number {
  font-size: 30px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), #6ee7b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ============================================================
   CONTACT
   ============================================================ */

/* ---- Minimal Contact ---- */
.contact-minimal {
  position: relative;
  z-index: 10;
  padding: 120px 60px;
  text-align: center;
}

.contact-minimal-inner {
  max-width: 560px;
  margin: 0 auto;
}

.contact-minimal-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 200;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.contact-minimal-desc {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-minimal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.contact-minimal-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--text);
  transition: color 0.2s;
}
.contact-minimal-link:hover { color: var(--accent); }
.contact-minimal-link svg {
  width: 16px;
  height: 16px;
  opacity: 0.5;
}

.contact-minimal-sep {
  width: 1px;
  height: 16px;
  background: var(--border-strong);
}

.contact-minimal-location {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .contact-minimal { padding: 80px 24px; }
  .contact-minimal-links { flex-direction: column; gap: 16px; }
  .contact-minimal-sep { width: 40px; height: 1px; }
}

/* ============================================================
   FOOTER
   ============================================================ */

.landing-footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { height: 22px; width: 22px; border-radius: 5px; opacity: 0.6; }
.footer-brand span { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 12px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  .landing-nav { padding: 14px 20px; }
  .landing-nav.nav-scrolled { padding: 12px 20px; }
  .nav-brand img { height: 26px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(5,5,5,0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
  }
  .mobile-open .nav-links { display: flex; }
  .nav-links a {
    padding: 14px 24px;
    font-size: 14px;
  }
  .nav-links a.nav-hub-link {
    margin: 8px 24px;
    text-align: center;
    justify-content: center;
  }
  .nav-hamburger { display: flex; }

  .landing-hero { padding: 80px 24px 60px; }
  .hero-icon { width: 180px; height: 180px; }
  .hero-logo-wrap { margin-bottom: 0; max-width: 100%; }
  .hero-title { font-size: clamp(32px, 9vw, 48px); }
  .hero-scroll { display: none; }
  .hero-suite-link-mobile {
    display: inline-flex !important;
    margin-top: 36px;
    animation: fadeInUp 0.8s ease-out 0.55s both;
  }

  .svc-panel {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 60px 24px;
    gap: 32px;
  }
  .svc-panel-alt { direction: ltr; }
  .svc-text { padding: 0; }
  .svc-anim { width: 200px; height: 200px; }
  .svc-visual { order: -1; }

  .landing-section { padding: 80px 24px; }
  .about-content { grid-template-columns: 1fr; gap: 40px; }

  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { justify-content: center; }
  .bg-mesh { opacity: 0.7; }
  .bg-grain { opacity: 0.02; }
  .cursor-glow { display: none; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .landing-nav { padding: 16px 30px; }
  .landing-hero { padding: 80px 40px 80px; }
  .svc-panel { padding: 60px 40px; }
  .landing-section { padding: 100px 40px; }
  .svc-anim { width: 240px; height: 240px; }
}
