/* ========================================
   ZAEON LABS — Creative Agency Stylesheet
   Colors: #E0E5FF (logo lavender) + light green accent
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --bg-primary: #07070a;
  --bg-secondary: #0b0b12;
  --bg-card: #0d0d15;
  --bg-card-hover: #12121a;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.65);
  --text-muted: rgba(255, 255, 255, 0.4);
  --accent-lavender: #E0E5FF;
  --accent-green: #c8f7d5;
  --accent-blue: #a0c4ff;
  --accent-pink: #ffc2d1;
  --accent-cyan: #00f2ff;
  --accent-gold: #ff4d00;
  --accent-gradient: linear-gradient(135deg, #E0E5FF 0%, #c8f7d5 100%);
  --grid-border: rgba(224, 229, 255, 0.08);
  --grid-border-heavy: rgba(224, 229, 255, 0.15);
  --font-primary: 'Inter', -apple-system, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --transition: 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition-slow: 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  --radius-none: 0;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --glow-lavender: 0 8px 32px rgba(224, 229, 255, 0.15);
  --glow-accent: 0 0 40px rgba(224, 229, 255, 0.1);
}



/* ── Glow Follower ── */
.mouse-glow {
  position: fixed;
  top: 0; left: 0;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(224, 229, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: opacity 0.6s ease, background 0.6s ease;
  mix-blend-mode: screen;
  opacity: 0;
  filter: blur(80px);
}



body.glow-accent .mouse-glow {
  opacity: 1;
  background: radial-gradient(circle, rgba(200, 247, 213, 0.1) 0%, transparent 60%);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Atmospheric Background Blobs ── */
body::before, body::after {
  content: '';
  position: fixed;
  width: 80vw;
  height: 80vw;
  border-radius: 50%;
  z-index: -1;
  filter: blur(150px);
  pointer-events: none;
  opacity: 0.07;
}

body::before {
  top: -20vh;
  right: -20vw;
  background: radial-gradient(circle, var(--accent-lavender) 0%, transparent 70%);
  animation: float-blob 20s infinite alternate ease-in-out;
}

body::after {
  bottom: -20vh;
  left: -20vw;
  background: radial-gradient(circle, var(--accent-green) 0%, transparent 70%);
  animation: float-blob 25s infinite alternate-reverse ease-in-out;
}

@keyframes float-blob {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(10%, 10%) scale(1.1); }
}

.ambient-blob {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.12;
  border-radius: 50%;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(224, 229, 255, 0.15); border-radius: 3px; }

/* ── Container ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 60px); }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 60px); }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); line-height: 1.1; font-weight: 700; }

.heading-xl {
  font-size: clamp(3.5rem, 9vw, 8rem);
  letter-spacing: -0.05em;
  line-height: 0.85;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.1em;
}

.heading-massive {
  font-size: clamp(2.8rem, 12vw, 12rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.82;
  text-transform: uppercase;
}

/* ── Grid Intersections (Kaleida Style) ── */
.intersection-plus {
  position: absolute;
  width: 13px;
  height: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grid-border-heavy);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 300;
  z-index: 5;
  pointer-events: none;
}

.plus-tl { top: -7px; left: -7px; }
.plus-tr { top: -7px; right: -7px; }
.plus-bl { bottom: -7px; left: -7px; }
.plus-br { bottom: -7px; right: -7px; }

.section-island {
  width: 100%;
  border-top: 1px solid var(--grid-border);
  border-bottom: 1px solid var(--grid-border);
  position: relative;
  background: var(--bg-primary);
}

.heading-md {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.02em;
}

.heading-sm {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
}

.text-lg { font-size: clamp(1.1rem, 2vw, 1.4rem); line-height: 1.5; }
.text-md { font-size: 1rem; line-height: 1.6; }
.text-sm { font-size: 0.875rem; line-height: 1.6; }
.text-xs { font-size: 0.75rem; letter-spacing: 0.05em; }

.text-muted { color: var(--text-secondary); }
.text-accent { color: var(--accent-lavender); }
.text-green { color: var(--accent-green); }

.label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--text-muted);
  display: block;
  margin-bottom: 12px;
}

/* ── Editorial Grid ── */
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  width: 100%;
  border-top: 1px solid var(--grid-border);
}

.grid-cell {
  border-right: 1px solid var(--grid-border);
  border-bottom: 1px solid var(--grid-border);
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}

.grid-cell:last-child {
  border-right: none;
}

.grid-full { grid-column: span 12; }
.grid-6 { grid-column: span 6; }
.grid-4 { grid-column: span 4; }
.grid-8 { grid-column: span 8; }
.grid-3 { grid-column: span 3; }

/* ── Responsive Tiers ── */

/* Tablet & Smaller Desktop (768px - 1150px) */
@media (max-width: 1150px) {
  .grid-cell { padding: 40px 32px; }
  .grid-4, .grid-3 { grid-column: span 6; } /* 3 and 4 col grids become 2 col */
  .grid-8 { grid-column: span 12; }
  
  .heading-massive { font-size: clamp(2.8rem, 10vw, 7rem); } /* Scaled back for tablets */
  .heading-xl { font-size: clamp(3.5rem, 8vw, 6.5rem); }
}

/* Mobile (Under 768px) */
@media (max-width: 1100px) {
  .grid-6, .grid-4, .grid-3, .grid-8 { grid-column: span 12; } /* Everything stacks */
  .grid-cell { border-right: none !important; padding: 32px 24px; }
  
  .hero-content-overlay { padding: 100px 24px 40px; } /* Less top pad on mobile */
  .heading-massive { font-size: clamp(2.2rem, 11vw, 4.5rem); }
  
  /* 2x2 Grid for Stats stays 2x2 */
  .grid-3-mobile { grid-column: span 6 !important; border-right: 1px solid var(--grid-border) !important; }
  .grid-3-mobile:nth-child(2n) { border-right: none !important; }
}

/* Very Small Mobile (Under 480px) */
@media (max-width: 480px) {
  .grid-cell { padding: 32px 20px; }
  .heading-massive { font-size: clamp(2.2rem, 12vw, 4rem); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  font-weight: 600; font-size: 0.88rem;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative; overflow: hidden;
  letter-spacing: 0.2px;
  z-index: 1;
  border: none;
  outline: none;
  /* Fix for subpixel leaking on rounded corners */
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.btn span {
  position: relative;
  z-index: 5;
  mix-blend-mode: difference;
  display: inline-block;
  pointer-events: none;
}

.btn:hover { transform: translateY(-3px); }

.btn::after {
  content: '';
  position: absolute;
  top: var(--y, 50%);
  left: var(--x, 50%);
  width: 0;
  height: 0;
  background: #000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1), height 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 2;
}

.btn:hover::after {
  width: 600px;
  height: 600px;
}

.btn-primary {
  background: var(--accent-lavender);
  color: #fff;
  border-radius: 4px;
}

.btn-outline {
  border: 1px solid var(--grid-border-heavy);
  background: rgba(224, 229, 255, 0.05);
  color: #fff;
  border-radius: 4px;
}

.btn-outline::after {
  background: #fff;
}

.btn-ghost {
  color: var(--accent-lavender);
  padding: 10px 0;
  overflow: visible;
}
.btn-ghost:hover { color: var(--accent-green); }
.btn-ghost::after { display: none; }
.btn-ghost .arrow { transition: var(--transition); }
.btn-ghost:hover .arrow { transform: translateX(4px); }

/* Disable Liquid Hover Effect */
.btn.no-liquid::after {
  display: none !important;
}

.btn.no-liquid {
  transform: none !important;
  color: #000 !important;
}

.btn.no-liquid span {
  mix-blend-mode: normal !important;
  color: #000 !important;
}

/* ── Navigation ── */
.nav {
  position: fixed; 
  top: 0;
  left: 0; 
  right: 0; 
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
  background: transparent;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--grid-border);
}

.nav.scrolled {
  background: var(--bg-primary);
  opacity: 0.98;
  border-bottom: 2px solid var(--grid-border-heavy);
}



/* ── Revealed Animation ── */
.grid-cell {
  opacity: 0;
  transform: translateY(30px) perspective(1000px) rotateX(2deg);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), 
              transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
              background 0.3s ease;
}

.grid-cell.revealed {
  opacity: 1;
  transform: translateY(0) perspective(1000px) rotateX(0deg);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.revealed {
  opacity: 1;
  transform: translateY(0);
}

.grid-cell:hover {
  background: var(--bg-card-hover);
}

.project-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--grid-border);
}

.nav-item-box {
  padding: 16px clamp(20px, 4vw, 60px);
  display: flex;
  align-items: center;
  border-right: 1px solid var(--grid-border);
}

.nav-item-box:last-child {
  border-right: none;
}

.nav-logo-box { grid-column: span 3; display: flex; align-items: center; justify-content: center; }
.nav-tagline-box { grid-column: span 3; display: flex; align-items: center; justify-content: center; }
.nav-links-box { grid-column: span 4; display: flex; align-items: center; justify-content: center; }
.nav-cta-box { grid-column: span 2; display: flex; align-items: center; justify-content: center; }

.nav-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 200px;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .nav-tagline-box, .nav-links-box { display: none; }
  .nav-logo-box { grid-column: span 6; padding-left: 28px; display: flex; align-items: center; justify-content: flex-start; }
  .nav-cta-box { grid-column: span 6; border-right: none; display: flex; justify-content: flex-end; align-items: center; gap: 20px; padding-right: 28px; }
  .nav-item-box { padding-top: 10px; padding-bottom: 10px; }
  .nav-cta { display: inline-flex !important; }
  .nav-logo img { height: 28px !important; }
}

@media (max-width: 600px) {
  .nav-cta { display: none !important; }
  .nav-logo-box { grid-column: span 8; }
  .nav-cta-box { grid-column: span 4; }
}

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 26px; width: auto; }
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.2rem;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links { display: flex; align-items: center; gap: 56px; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent-gradient);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  padding: 9px 22px;
  border-radius: 4px;
  background: var(--accent-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.2px;
  transition: var(--transition);
}
.nav-theme-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--grid-border);
  border-radius: 12px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

body.light-mode .nav-theme-btn {
  background: rgba(0, 0, 0, 0.03);
}

.nav-theme-btn:hover {
  background: var(--accent-gradient);
  color: var(--bg-primary);
  transform: rotate(15deg);
}

.btn-download {
  width: 44px; height: 44px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--grid-border);
  border-radius: 50%;
  color: var(--text-muted);
  transition: var(--transition);
}

.btn-download:hover {
  background: var(--accent-green);
  color: var(--bg-primary);
  border-color: var(--accent-green);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(200, 247, 213, 0.2);
}

body.light-mode .btn-download {
  background: rgba(0, 0, 0, 0.02);
}

.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--glow-lavender); }

/* Mobile menu */
.nav-toggle {
  display: none; flex-direction: column; gap: 6px;
  width: 24px; cursor: pointer;
  z-index: 1001;
}
.nav-toggle span {
  display: block; height: 1.5px; width: 100%;
  background: var(--text-primary);
  border-radius: 2px; transition: transform 0.4s ease, opacity 0.3s ease;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; height: 100vh;
  background: rgba(7, 7, 10, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 40px;
}

.mobile-menu.open { 
  transform: translateY(0); 
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation for links */
.mobile-menu.open a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.3s; }

.mobile-close {
  position: absolute; top: 32px; right: 32px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
}

@media (max-width: 1100px) {
  .nav-links, .nav-tagline-box { display: none; }
  /* Logo and toggle spans handled in 1024px/600px queries */
  .nav-inner { height: 72px; }
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: blobFloat 20s ease-in-out infinite;
}

.hero-blob-1 {
  width: 500px; height: 500px;
  background: var(--accent-gold);
  top: -10%; right: -5%;
  animation-delay: 0s;
}

.hero-blob-2 {
  width: 400px; height: 400px;
  background: var(--accent-cyan);
  bottom: 10%; left: -10%;
  animation-delay: -7s;
}

.hero-blob-3 {
  width: 300px; height: 300px;
  background: #d0c0ff;
  top: 40%; left: 40%;
  animation-delay: -14s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(40px, 30px) scale(1.02); }
}

/* ── Editorial Hero ── */
.hero-editorial-grid {
  border-top: none;
  margin-top: 0;
  min-height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 0 !important;
}

.hero-island {
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  overflow: visible;
  border-top: none !important;
  height: 100%;
}

.hero-integrated-module {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(7,7,10,0.6));
}

.hero-content-overlay {
  position: absolute;
  inset: 0;
  padding: 120px 48px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 10;
}

.hero-top-signal {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-tagline {
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent-lavender);
  opacity: 0.9;
}

.hero-main-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-headline-box {
  flex: 1;
}

.hero-headline {
  margin: 0;
  line-height: 0.8 !important;
}

.hero-description-box {
  max-width: 440px;
  text-align: left;
  background: rgba(224, 229, 255, 0.05);
  backdrop-filter: blur(40px);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
}

.hero-desc-text {
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 500;
}

.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
}

.plus-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--grid-border-heavy);
  font-size: 14px;
  opacity: 0.3;
}

/* ── Hero Mobile Adjustments ── */
@media (max-width: 1100px) {
  .hero-content-overlay {
    padding: 120px 24px 40px;
  }

  .hero-main-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .hero-headline {
    font-size: clamp(2rem, 11vw, 4.5rem);
    line-height: 0.9 !important;
  }

  .hero-description-box {
    max-width: 100%;
    padding: 32px 28px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

  .project-actions {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 16px;
  }
}

.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px;
  background: rgba(224, 229, 255, 0.06);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  margin-bottom: 28px;
  font-size: 0.8rem; color: var(--text-secondary);
}

.hero-label .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero h1 .gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 48px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

.hero-stat h3 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-family: var(--font-display);
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── Sections ── */
.section {
  padding: clamp(60px, 10vw, 120px) 0;
  position: relative;
}

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

.section-header .label { margin-bottom: 14px; display: block; }

.section-divider {
  height: 1px;
  background: var(--border-color);
  margin: 0;
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.service-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: rgba(224, 229, 255, 0.06);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-family: var(--font-display);
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.service-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 20px;
}

.service-tag {
  padding: 4px 12px;
  background: rgba(224, 229, 255, 0.05);
  border-radius: 50px;
  font-size: 0.7rem;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
}

/* ── Standard Standard Section Layouts ── */
.promise-grid, .apps-header-grid, .capability-header-grid {
  border-top: none;
  display: flex;
  justify-content: center;
}

.standard-header-island {
  padding: 120px 60px;
  width: 100%;
  position: relative;
  overflow: visible;
  border-bottom: none !important;
}

.promise-island {
  padding: 140px 60px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  overflow: visible;
  border-bottom: none !important;
}

.promise-glow {
  width: 700px;
  height: 700px;
  background: var(--accent-gold);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.12;
}

.promise-accent-glow {
  width: 500px;
  height: 500px;
  background: var(--accent-cyan);
  top: 10%;
  right: 10%;
  opacity: 0.08;
}

.promise-content {
  max-width: 1100px;
  position: relative;
  z-index: 5;
}

.promise-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.06em;
  color: var(--text-primary);
  text-align: center;
  text-transform: uppercase;
}

.apps-header-island {
  background: var(--bg-secondary);
}

.header-glow {
  width: 600px;
  height: 600px;
  background: var(--accent-cyan);
  top: -20%;
  right: -10%;
  opacity: 0.12;
}

.header-content-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.header-subtitle {
  color: var(--text-muted);
  max-width: 440px;
  border-left: 1px solid var(--accent-cyan);
  padding-left: 24px;
}

.capability-island {
  padding: 120px 60px;
  background: var(--bg-primary);
  text-align: center;
  overflow: visible;
  border-bottom: none !important;
}

.capability-glow {
  width: 700px;
  height: 700px;
  background: var(--accent-cyan);
  top: -20%;
  right: -20%;
  opacity: 0.07;
}

.capability-content {
  position: relative;
  z-index: 5;
}

.capability-subtitle {
  color: var(--text-secondary);
  max-width: 440px;
  line-height: 1.7;
  opacity: 0.6;
  margin: 0 auto;
}

/* ── Responsive Refinements ── */
@media (max-width: 1024px) {
  .promise-island, .standard-header-island, .capability-island {
    padding: 80px 24px;
  }
}

@media (max-width: 1100px) {
  .promise-heading {
    font-size: 2.25rem;
  }
  
  .header-content-column {
    gap: 20px;
  }
  
  .header-title {
    font-size: 3.5rem !important;
  }
  
  .capability-title {
    font-size: 3.5rem !important;
    margin-bottom: 24px;
  }

  /* Universal Editorial Grid fix for mobile */
  .editorial-grid {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
  }
  
  .grid-cell {
    width: 100%;
    border-right: none !important;
  }
}

/* ── Projects / Work ── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 1100px) {
  .projects-grid { grid-template-columns: 1fr; }
}

.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  aspect-ratio: 16/10;
}

.project-card:hover {
  border-color: var(--border-hover);
  transform: scale(1.01);
}

.project-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.project-card:hover .project-card-img { transform: scale(1.05); }

.project-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,15,0.9) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px;
}

.project-card-overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
  font-family: var(--font-display);
}

.project-card-overlay p {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.project-card-tag {
  position: absolute; top: 20px; left: 20px;
  padding: 6px 14px;
  background: rgba(10, 10, 15, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.7rem;
  color: var(--accent-lavender);
  border: 1px solid rgba(224, 229, 255, 0.15);
}

.project-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
  font-size: 3rem;
  color: var(--text-muted);
}

/* ── About / Intro section ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

.about-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex; align-items: center; justify-content: center;
}

.about-visual-inner {
  text-align: center; padding: 40px;
}

.about-visual-inner img {
  width: 60%;
  margin: 0 auto;
  opacity: 0.15;
}

/* ── Stats Bar ── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 60px 0;
}

@media (max-width: 1100px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

.stat-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 4px;
}

/* ── Process Section ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  counter-reset: step;
}

.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  counter-increment: step;
  transition: var(--transition);
}

.process-step:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.process-step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
  margin-bottom: 16px;
}

.process-step h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-family: var(--font-display);
}

.process-step p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ── Testimonials ── */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.testimonial-text {
  font-size: 1.15rem;
  color: var(--text-primary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex; align-items: center; gap: 14px;
}

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--bg-primary);
}

.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-role { color: var(--text-muted); font-size: 0.8rem; }

/* ── CTA Section ── */
.cta-section {
  text-align: center;
  padding: 100px 0;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(224, 229, 255, 0.04) 0%, transparent 70%);
}

.cta-content { position: relative; z-index: 1; }

.cta-section h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--text-secondary);
  max-width: 500px; margin: 0 auto 32px;
  font-size: 1.05rem;
}

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
}

.faq-question {
  width: 100%; display: flex;
  justify-content: space-between; align-items: center;
  font-size: 1.05rem; font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
  background: none; border: none;
  font-family: var(--font-display);
}

.faq-icon {
  font-size: 1.5rem; color: var(--text-muted);
  transition: var(--transition);
  flex-shrink: 0; margin-left: 16px;
}

.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--accent-lavender); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--text-secondary);
  font-size: 0.95rem; line-height: 1.7;
}

.faq-item.open .faq-answer { max-height: 300px; padding-top: 16px; }

/* ── Contact Form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

@media (max-width: 1100px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.form-group { margin-bottom: 24px; }

.form-group label {
  display: block; margin-bottom: 8px;
  font-size: 0.85rem; font-weight: 500;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent-lavender);
  box-shadow: 0 0 0 3px rgba(224, 229, 255, 0.08);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.contact-info { display: flex; flex-direction: column; gap: 32px; }

.contact-info-item { display: flex; gap: 16px; }

.contact-info-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: var(--radius-md);
  background: rgba(224, 229, 255, 0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}

.contact-info-item h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-item p { color: var(--text-secondary); font-size: 0.9rem; }

/* ── Footer ── */
.footer {
  margin-top: 0;
  border-top: 1px solid var(--grid-border);
}

.footer-main-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}

.footer-cta-box {
  padding: 80px 60px;
  border-right: 1px solid var(--grid-border);
  border-bottom: 1px solid var(--grid-border);
}

.desktop-only-cta {
  display: block;
}

@media (max-width: 1100px) {
  .desktop-only-cta {
    display: none;
  }
}

.footer-cta-box:last-child {
  border-right: none;
}

.footer-bottom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

.footer-bottom-cell {
  padding: 40px 60px;
  border-right: 1px solid var(--grid-border);
  border-bottom: 1px solid var(--grid-border);
}

.footer-bottom-cell:last-child {
  border-right: none;
}

@media (max-width: 1024px) {
  .footer-main-grid, .footer-bottom-grid { grid-template-columns: 1fr; }
  .footer-cta-box, .footer-bottom-cell { border-right: none; padding: 40px 20px; }
}

/* ── Blog Cards ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.blog-card-img {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover;
}

.blog-card-body { padding: 24px; }
.blog-card-body .label { margin-bottom: 10px; display: block; }
.blog-card-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.blog-card-body p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.6; }

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
}

.pricing-card.featured {
  border-color: rgba(224, 229, 255, 0.3);
  background: var(--bg-card-hover);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--accent-gradient);
  color: var(--bg-primary);
  font-size: 0.7rem; font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.pricing-card .price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.pricing-card .price span { font-size: 0.9rem; color: var(--text-muted); font-weight: 400; }

.pricing-features { margin-bottom: 28px; }
.pricing-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex; align-items: center; gap: 10px;
}
.pricing-features li::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: 700;
  font-size: 0.8rem;
}

/* ── Page Header ── */
.page-header {
  padding: 160px 0 60px;
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top center, rgba(224, 229, 255, 0.04) 0%, transparent 60%);
}

.page-header .label { margin-bottom: 14px; display: block; }

.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 16px;
}

.page-header p {
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ── Toast ── */
.toast {
  position: fixed; bottom: 30px; right: 30px;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  font-size: 0.9rem; font-weight: 500;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: var(--accent-green); color: var(--bg-primary); }
.toast.error { background: #ff6b6b; color: white; }

/* ── Blog Post ── */
.blog-post-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 0 80px;
}

.blog-post-content h1, .blog-post-content h2, .blog-post-content h3 {
  margin: 32px 0 16px;
  font-family: var(--font-display);
}

.blog-post-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.blog-post-content img {
  border-radius: var(--radius-md);
  margin: 24px 0;
}

.blog-post-content code {
  background: var(--bg-card);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.9rem;
}

.blog-post-content pre {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  overflow-x: auto;
  margin: 20px 0;
}

/* ── Animations ── */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ── Marquee ── */
.marquee-wrap {
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.marquee {
  display: flex; gap: 60px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee span {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.4;
}

.marquee span .sep { margin: 0 30px; color: var(--accent-lavender); opacity: 0.3; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Page content (for legal pages etc.) ── */
.page-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 0 80px;
}

.page-content h2 { margin: 24px 0 12px; }
.page-content p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }

/* ── Project detail ── */
.project-hero {
  width: 100%;
  aspect-ratio: 21/9;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 40px;
}

.project-hero img { width: 100%; height: 100%; object-fit: cover; }

.project-meta {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin-bottom: 40px;
}

.project-meta-item h5 { color: var(--text-muted); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.project-meta-item p { font-size: 0.95rem; }

.project-body {
  max-width: 720px;
  margin: 0 auto;
}

.project-body p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ── Utility ── */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-4 { gap: 32px; }

/* ── Services page detailed ── */
.services-detailed { display: flex; flex-direction: column; gap: 0; }

.service-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border-color);
  align-items: start;
}

@media (max-width: 1100px) {
  .service-row { grid-template-columns: 1fr; gap: 20px; }
}

.service-row h3 {
  font-size: 1.4rem;
  font-family: var(--font-display);
  position: sticky; top: 100px;
}

.service-row-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ── Responsive final ── */
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 24px; }
  .hero h1 { font-size: 2.5rem; }
  .stats-bar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Online Status Blinker ── */
.status-blinker {
  width: 8px;
  height: 8px;
  background-color: #00ff88;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
  animation: blink-animation 1.5s infinite;
}

@keyframes blink-animation {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

/* ── Accessible Form Groups ── */
.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-group label {
  position: absolute;
  top: 12px;
  left: 0;
  font-size: 1.1rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.3s ease;
}

/* Floating label logic */
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:not([value=""]) ~ label {
  top: -20px;
  font-size: 0.75rem;
  color: var(--accent-lavender);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group select {
  padding-right: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 18px;
}

.btn-primary.submit-btn {
  background: var(--accent-lavender);
  color: #000;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-primary.submit-btn:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(224, 229, 255, 0.2);
}

/* ── Social Links ── */
.social-link {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.social-link:hover {
  color: var(--text-primary);
  transform: translateX(4px);
}

.social-link::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.social-link:hover::before {
  opacity: 1;
  left: -24px;
}

/* ── Footer Responsiveness ── */
.footer-newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-box {
  background: var(--bg-secondary);
}

@media (max-width: 1100px) {
  .footer-newsletter-form {
    flex-direction: column;
  }
  .footer-newsletter-form button {
    width: 100%;
    justify-content: center;
    padding: 14px 22px !important;
  }
}

/* ========================================
   MOBILE VIEW ISOLATION
   ======================================== */

.mobile-view { display: none; }

@media (max-width: 1100px) {
  .desktop-view { display: none !important; }
  .mobile-view { display: block !important; }
}

/* ── Mobile Hero ── */
.mobile-hero {
  min-height: 100vh;
  padding: 120px 24px 60px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-primary);
}

.mobile-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mobile-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: saturate(0.8) brightness(0.8);
}

.mobile-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    rgba(3, 3, 5, 0.4) 0%, 
    var(--bg-primary) 100%
  );
  z-index: 1;
}

.mobile-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
  z-index: 2;
}

.blob-1 {
  width: 300px; height: 300px;
  background: var(--accent-gold);
  top: -10%; right: -10%;
  opacity: 0.15;
}

.blob-2 {
  width: 250px; height: 250px;
  background: var(--accent-cyan);
  bottom: 0%; left: -10%;
  opacity: 0.12;
}

.mobile-hero-content {
  position: relative;
  z-index: 10;
}

.mobile-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--accent-lavender);
  margin-bottom: 24px;
  font-weight: 700;
}

.mobile-headline {
  font-size: clamp(3rem, 15vw, 5rem);
  line-height: 0.85;
  letter-spacing: -0.05em;
  font-weight: 800;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.mobile-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 280px;
  margin-bottom: 48px;
  line-height: 1.5;
}

.btn.full-width {
  width: 100%;
  justify-content: center;
}

/* ── Mobile Sections ── */
.mobile-section {
  padding: 80px 24px;
  background: var(--bg-primary);
}

.bg-alt {
  background: var(--bg-secondary);
}

.mobile-section-header {
  margin-bottom: 40px;
}

.mobile-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 12px;
}

.mobile-section-title {
  font-size: 2.2rem;
  letter-spacing: -0.04em;
  font-weight: 800;
}

/* ── Mobile Grid ── */
.mobile-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-card {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--grid-border);
  border-radius: 12px;
  overflow: hidden;
}

.mobile-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
}

.mobile-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.mobile-card-info {
  padding: 24px;
}

.mobile-card-info h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.mobile-card-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Capabilities Mobile ── */
.mobile-capabilities {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cap-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.cap-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-primary);
  border: 1px solid var(--grid-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cap-text h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.cap-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ── Mobile Stats ── */
.mobile-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--grid-border);
  border-bottom: 1px solid var(--grid-border);
}

.mobile-stat-box {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid var(--grid-border);
}

.mobile-stat-box:last-child {
  border-right: none;
}

.mobile-stat-box .num {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-display);
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mobile-stat-box .lab {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

/* ── Mobile Footer CTA ── */
.mobile-footer-cta {
  padding: 100px 24px;
  text-align: center;
  background: var(--bg-primary);
}

.mobile-footer-title {
  font-size: 3rem;
  line-height: 0.9;
  font-weight: 900;
  margin-bottom: 40px;
  letter-spacing: -0.05em;
}

.mobile-btn-contact {
  display: inline-block;
  padding: 18px 48px;
  background: var(--text-primary);
  color: var(--bg-primary);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  border-radius: 4px;
}
