/* ================================================================
   SWIRLCRAFT DIGITAL — WORLD-CLASS EDITION
   Competing for: Awwwards SOTD · CSS Design Awards · FWA
   Aesthetic: Locomotive × Active Theory × Resn
   ================================================================ */

/* ── DESIGN TOKENS ── */
:root {
  /* Depth palette */
  --ink:      #020308;
  --ink-1:    #05070f;
  --ink-2:    #080b18;
  --ink-3:    #0d1025;

  /* Signal colors */
  --azure:         #0ea5e9;
  --azure-mid:     #0284c7;
  --azure-glow:    rgba(14,165,233,0.22);
  --violet:        #7c3aed;
  --violet-bright: #a855f7;
  --violet-glow:   rgba(124,58,237,0.22);
  --gold:          #f59e0b;
  --gold-light:    #fbbf24;
  --gold-glow:     rgba(245,158,11,0.18);
  --emerald:       #10b981;
  --emerald-glow:  rgba(16,185,129,0.18);
  --rose:          #f43f5e;
  --rose-glow:     rgba(244,63,94,0.18);

  /* Glass system */
  --glass-1:      rgba(255,255,255,0.025);
  --glass-2:      rgba(255,255,255,0.05);
  --glass-3:      rgba(255,255,255,0.09);
  --glass-border: rgba(255,255,255,0.07);
  --glass-border-hi: rgba(255,255,255,0.14);

  /* Type scale */
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', monospace;
  --font-brand:   'Syncopate', sans-serif;

  /* Motion */
  --ease-out:    cubic-bezier(0.22,1,0.36,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
  --ease-expo:   cubic-bezier(0.16,1,0.3,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:17px; } /* Enlarged baseline font size site-wide */

body {
  background: var(--ink);
  color: #dde4f0;
  font-family: var(--font-display);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior-x: none;
}

/* Grain noise overlay — world-class texture */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 99997; pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  animation: grain-drift 0.5s steps(2) infinite;
}
@keyframes grain-drift {
  0%,100% { transform: translate(0,0); }
  25%      { transform: translate(-2px,1px); }
  50%      { transform: translate(1px,-2px); }
  75%      { transform: translate(2px,2px); }
}

::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--azure),var(--violet)); border-radius:99px; }



/* ─────────────────────────────────────────
   SCROLL PROGRESS
───────────────────────────────────────── */
#scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 9999;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--azure), var(--violet-bright), var(--gold));
  box-shadow: 0 0 16px var(--azure);
  transition: transform 0.05s linear;
}

/* ─────────────────────────────────────────
   AMBIENT BACKGROUND
───────────────────────────────────────── */
.hero-orbs-boundary {
  position: absolute;
  top: 72px; /* Starts below navigation bar */
  bottom: 0; /* Ends above the powered by marquee section */
  left: 0;
  right: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}
.ambient-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0;
  filter: blur(60px);
  will-change: transform;
}
.orb-azure  { width:700px; height:700px; background:radial-gradient(circle, rgba(14,165,233,0.18) 0%, rgba(124,58,237,0.03) 60%, transparent 80%);  top:-250px; right:-250px; }
.orb-violet { width:600px; height:600px; background:radial-gradient(circle, rgba(168,85,247,0.2) 0%, rgba(244,63,94,0.04) 60%, transparent 80%);  bottom:-200px; left:-200px; }
.orb-gold   { width:450px; height:450px; background:radial-gradient(circle, rgba(251,191,36,0.14) 0%, rgba(245,158,11,0.02) 60%, transparent 80%);  top:20%; left:25%; }

/* ─────────────────────────────────────────
   LOADER
───────────────────────────────────────── */
#loader {
  position: fixed; inset:0; background: var(--ink);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap:0;
  z-index: 999999; /* Absolute top above custom cursor, grain, and orbs */
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
#loader.fade-out { opacity:0; transform:scale(1.04); pointer-events:none; }

.loader-emblem {
  width: 140px; height: 140px;
  position: relative;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader-center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
@keyframes loader-logo-pulse {
  0%,100% { filter:drop-shadow(0 0 16px rgba(14,165,233,0.3)) drop-shadow(0 0 6px rgba(124,58,237,0.15)); }
  50%      { filter:drop-shadow(0 0 32px rgba(14,165,233,0.6)) drop-shadow(0 0 14px rgba(124,58,237,0.35)); }
}

.loader-brand-text {
  font-family: var(--font-brand);
  font-size: clamp(1.8rem, 6vw, 3rem); /* Enlarged for better mobile readability */
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: linear-gradient(135deg,#fff 0%,var(--azure) 35%,var(--violet-bright) 70%,#fff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: shimmer 2.4s ease infinite;
}
.loader-sub {
  font-family: var(--font-mono);
  font-size: clamp(9px, 2vw, 11px); /* Enlarged and readable */
  letter-spacing: 0.35em;
  color: rgba(14,165,233,0.85); /* Increased contrast */
  text-transform:uppercase; margin-top:12px;
}
@keyframes shimmer { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }

.loader-progress {
  width: 240px; height: 6px;
  background: rgba(255,255,255,0.03);
  border-radius: 99px;
  margin-top: 36px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.4);
}
.loader-progress-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--azure), var(--violet-bright), var(--rose));
  border-radius: 99px;
  position: relative;
  box-shadow: 0 0 14px rgba(14,165,233,0.5);
  transition: width 0.08s linear;
}
.loader-progress-spark {
  position: absolute; right: -4px; top: 50%;
  transform: translateY(-50%); width: 8px; height: 8px;
  border-radius: 50%; background: #fff;
  box-shadow: 0 0 8px #fff, 0 0 16px var(--violet-bright), 0 0 24px var(--azure);
  animation: spark-pulse 1.2s ease-in-out infinite;
}
@keyframes spark-pulse {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50% { transform: translateY(-50%) scale(1.3); }
}

.loader-sparkle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10;
  animation: loader-sparkle-float 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes loader-sparkle-float {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--drift-x), var(--drift-y)) scale(0);
    opacity: 0;
  }
}

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
#navbar {
  position: fixed; top:0; left:0; right:0; z-index:9000;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#navbar.visible { transform: translateY(0); }

.nav-glass {
  background: rgba(2, 3, 8, 0.65);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  transition: background 0.3s, border-color 0.3s;
}

.nav-inner {
  height: 68px;
  max-width: 1440px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex; align-items: center; gap:12px;
  text-decoration: none; flex-shrink:0;
}
.nav-logo-mark {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items:center; justify-content:center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav-logo:hover .nav-logo-mark { transform: scale(1.12) rotate(-8deg); }
.nav-logo-text {
  font-family: var(--font-brand);
  font-size: 14px; letter-spacing:0.18em;
  color: #fff; text-transform:uppercase;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(255,255,255,0.15);
}

.nav-links {
  display: flex; gap: 4px; list-style:none; align-items: center;
}
@media(max-width:1200px){ .nav-links{display:none;} }

.nav-links a {
  font-family: var(--font-display);
  font-size: 13.5px; letter-spacing:0.07em; text-transform:uppercase; font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-decoration: none; padding: 6px 12px;
  border-radius: 99px;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  white-space: nowrap;
  border: 1px solid transparent;
}
.nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
}
.nav-links a.active {
  color: #fff;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.25);
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.12);
}

.nav-cta {
  display: flex; align-items: center; gap:12px;
}

/* Mobile burger */
.burger-btn {
  display: none; background:none; border:none;
  width:40px; height:40px;
  flex-direction: column; gap:5px;
  align-items: flex-end; justify-content:center;
}
@media(max-width:1200px){ .burger-btn{display:flex;} }

.burger-line {
  height: 1.5px; background:#fff; border-radius:99px;
  transition: all 0.35s var(--ease-spring);
}
.burger-line-1 { width:28px; }
.burger-line-2 { width:18px; box-shadow:0 0 8px rgba(14,165,233,0.6); background:var(--azure); }
.burger-line-3 { width:24px; }
.burger-btn.open .burger-line-1 { transform:translateY(6.5px) rotate(45deg); width:24px; }
.burger-btn.open .burger-line-2 { opacity:0; transform:translateX(-12px); }
.burger-btn.open .burger-line-3 { transform:translateY(-6.5px) rotate(-45deg); width:24px; }

/* Mobile drawer */
#mobile-menu {
  position: fixed; top: 76px; left: 12px; right: 12px; z-index: 8999;
  background: rgba(2,3,8,0.95);
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  transform: translateY(-8px); opacity:0; pointer-events:none;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  padding: 16px 28px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  display: flex; flex-direction: column; gap: 0;
}
#mobile-menu.open { transform: translateY(0); opacity:1; pointer-events:all; }
#mobile-menu a {
  display: block; padding: 14px 0;
  font-family: var(--font-brand); font-size: 11px; letter-spacing: 0.16em;
  color: rgba(255,255,255,0.6); text-decoration: none; text-transform: uppercase;
  border-bottom: 1px solid var(--glass-border);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
#mobile-menu a:hover {
  color: #fff; padding-left: 8px;
}
#mobile-menu a:last-child { border:none; }

/* Disney floating menu stars keyframes */
@keyframes float-star-1 {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.2; }
  50% { transform: translateY(-40px) rotate(180deg); opacity: 0.7; }
}
@keyframes float-star-2 {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  50% { transform: translateY(-60px) rotate(-180deg); opacity: 0.9; }
}
@keyframes float-star-3 {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.15; }
  50% { transform: translateY(-30px) rotate(90deg); opacity: 0.6; }
}
@keyframes float-star-4 {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.25; }
  50% { transform: translateY(-50px) rotate(120deg); opacity: 0.8; }
}
@keyframes float-star-5 {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.2; }
  50% { transform: translateY(-70px) rotate(-120deg); opacity: 0.85; }
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items:center; gap:8px;
  font-family: var(--font-mono); font-size:10px; letter-spacing:0.22em; text-transform:uppercase;
  color: #000; text-decoration:none;
  padding: 14px 32px; border-radius: 99px; border:none;
  background: linear-gradient(135deg, var(--azure), var(--violet));
  box-shadow: 0 0 0 0 rgba(14,165,233,0);
  transition: box-shadow 0.4s ease, transform 0.3s var(--ease-spring), filter 0.3s ease;
  position: relative; overflow:hidden; white-space:nowrap;
}
.btn-primary::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg,var(--violet),var(--azure));
  opacity:0; transition:opacity 0.4s ease;
}
.btn-primary:hover { box-shadow:0 0 32px rgba(14,165,233,0.4), 0 0 64px rgba(124,58,237,0.2); transform:translateY(-2px) scale(1.02); filter:brightness(1.1); }
.btn-primary:hover::before { opacity:1; }
.btn-primary:active { transform:scale(0.97); }
.btn-primary span { position:relative; z-index:1; color:#fff; font-weight:700; }

.btn-secondary {
  display: inline-flex; align-items:center; gap:8px;
  font-family: var(--font-mono); font-size:10px; letter-spacing:0.22em; text-transform:uppercase;
  color: rgba(255,255,255,0.75); text-decoration:none;
  padding: 13px 28px; border-radius:99px;
  border: 1px solid var(--glass-border-hi);
  background: var(--glass-1);
  backdrop-filter: blur(8px);
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease, transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
  white-space:nowrap;
}
.btn-secondary:hover {
  color:#fff; border-color:rgba(14,165,233,0.5);
  background: rgba(14,165,233,0.06);
  box-shadow: 0 0 24px rgba(14,165,233,0.12);
  transform: translateY(-2px);
}

.ghost-btn {
  display: inline-flex; align-items:center; gap:6px;
  font-family: var(--font-mono); font-size:9px; letter-spacing:0.2em; text-transform:uppercase;
  color: var(--azure); text-decoration:none;
  padding: 9px 20px; border-radius:99px;
  border: 1px solid rgba(14,165,233,0.25);
  background: rgba(14,165,233,0.04);
  transition: all 0.25s ease;
  white-space:nowrap; cursor:pointer;
}
.ghost-btn:hover { background:rgba(14,165,233,0.1); border-color:rgba(14,165,233,0.6); box-shadow:0 0 16px rgba(14,165,233,0.15); transform:translateY(-1px); }

/* ─────────────────────────────────────────
   SECTION BASE
───────────────────────────────────────── */
.view-section {
  display: none; min-height:100vh;
  padding-top: 140px; padding-bottom: 100px;
  position: relative; z-index:1;
}
/* Active state handled by both CSS class and inline extra style tag */
.view-section.active {
  display: block;
  animation: section-enter 0.5s var(--ease-expo) forwards;
}
.view-section.fade-out {
  animation: section-exit 0.3s var(--ease-expo) forwards;
}
@keyframes section-enter {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes section-exit {
  from { opacity:1; transform:translateY(0); }
  to   { opacity:0; transform:translateY(-12px); }
}
@media(max-width:768px){ .view-section{ padding-top:120px; padding-bottom:80px; } }

.section {
  max-width: 1360px; margin:0 auto; padding:0 40px;
}
@media(max-width:768px){ .section{padding:0 20px;} }

/* ─────────────────────────────────────────
   REVEAL ANIMATIONS
───────────────────────────────────────── */
.reveal {
  opacity:0; transform:translateY(40px);
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─────────────────────────────────────────
   SECTION LABELS
───────────────────────────────────────── */
.section-badge {
  display: inline-flex; align-items:center; gap:8px;
  font-family: var(--font-brand); font-size: clamp(10.5px, 2.5vw, 12.5px); letter-spacing:0.22em; text-transform:uppercase; font-weight:700;
  padding: 10px 24px; border-radius:99px;
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--glass-border);
  margin-bottom: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}
.section-badge:hover {
  transform: translateY(-2px) scale(1.05);
}
.section-badge::before {
  content: '';
  width: 11px;
  height: 11px;
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2L14.85 9.15L22 12L14.85 14.85L12 22L9.15 14.85L2 12L9.15 9.15L12 2Z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2L14.85 9.15L22 12L14.85 14.85L12 22L9.15 14.85L2 12L9.15 9.15L12 2Z'/></svg>");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  filter: drop-shadow(0 0 3px currentColor);
  animation: waitlist-icon-pulse 2s infinite ease-in-out;
}
@keyframes waitlist-icon-pulse { 0%,100%{opacity:1;} 50%{opacity:0.6;} }
.section-badge-azure  { color:var(--azure);         border-color:rgba(14,165,233,0.3);  background:rgba(14,165,233,0.06); text-shadow:0 0 8px rgba(14,165,233,0.35); }
.section-badge-azure:hover { box-shadow:0 4px 15px rgba(14,165,233,0.25); border-color:var(--azure); }
.section-badge-violet { color:var(--violet-bright); border-color:rgba(168,85,247,0.3); background:rgba(168,85,247,0.06); text-shadow:0 0 8px rgba(168,85,247,0.35); }
.section-badge-violet:hover { box-shadow:0 4px 15px rgba(168,85,247,0.25); border-color:var(--violet-bright); }
.section-badge-gold   { color:var(--gold);          border-color:rgba(245,158,11,0.3);  background:rgba(245,158,11,0.06); text-shadow:0 0 8px rgba(245,158,11,0.35); }
.section-badge-gold:hover { box-shadow:0 4px 15px rgba(245,158,11,0.25); border-color:var(--gold); }

.section-headline {
  font-family: var(--font-brand);
  font-size: clamp(2.2rem,5vw,4.5rem);
  line-height: 1.05; letter-spacing: -0.01em;
  color: #fff; font-weight: 700;
  text-transform: uppercase;
}
.section-sub {
  font-size: clamp(1.15rem, 3.2vw, 1.45rem); color: rgba(255,255,255,0.85); /* Much larger size and high readability contrast */
  max-width: 720px; line-height:1.7; margin-top:16px;
}

/* ─────────────────────────────────────────
   TOAST
───────────────────────────────────────── */
#toast {
  position: fixed; bottom:32px; right:32px; z-index:99995;
  font-family: var(--font-mono); font-size:11px; letter-spacing:0.15em; text-transform:uppercase;
  color: var(--azure);
  background: rgba(2,3,8,0.9); border:1px solid rgba(14,165,233,0.3);
  padding: 14px 28px; border-radius:12px;
  backdrop-filter: blur(16px);
  box-shadow: 0 0 40px rgba(14,165,233,0.12);
  transform: translateY(16px); opacity:0;
  transition: all 0.5s var(--ease-spring);
  pointer-events:none;
}
#toast.visible { transform:translateY(0); opacity:1; }
@media(max-width:768px){ #toast{bottom:20px;right:50%;transform:translateX(50%) translateY(16px);width:90%;text-align:center;} #toast.visible{transform:translateX(50%) translateY(0);} }

/* ─────────────────────────────────────────
   ARI AI SIDEBAR
───────────────────────────────────────── */
#ari-pill {
  position: fixed; bottom:32px; right:32px; z-index:9100;
  display: flex; align-items:center; gap:12px;
  padding: 12px 22px; border-radius:99px;
  background: rgba(2,3,8,0.88); border:1px solid rgba(14,165,233,0.25);
  backdrop-filter: blur(20px);
  box-shadow: 0 0 32px rgba(14,165,233,0.1);
  cursor: pointer;
  transition: all 0.35s var(--ease-spring);
  animation: pill-enter 0.6s 3s var(--ease-spring) both;
}
@keyframes pill-enter { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
#ari-pill:hover { transform:translateY(-3px) scale(1.02); box-shadow:0 0 48px rgba(14,165,233,0.2); border-color:rgba(14,165,233,0.5); }
.ari-pill-dot { width:8px; height:8px; border-radius:50%; background:var(--emerald); box-shadow:0 0 8px var(--emerald); animation:pulse-dot 1.5s ease-in-out infinite; }
.ari-pill-label { font-family:var(--font-mono); font-size:9px; letter-spacing:0.25em; text-transform:uppercase; color:rgba(255,255,255,0.7); }

#ari-sidebar {
  position: fixed; right:-440px; top:0; bottom:0; width:420px; z-index:9200;
  background: rgba(3,4,10,0.97); border-left:1px solid var(--glass-border);
  backdrop-filter: blur(32px);
  display: flex; flex-direction:column;
  transition: right 0.5s var(--ease-expo);
  box-shadow: -24px 0 80px rgba(0,0,0,0.5);
}
#ari-sidebar.open { right:0; }

.ari-header {
  padding: 24px 28px; border-bottom:1px solid var(--glass-border);
  display: flex; align-items:center; justify-content:space-between;
  flex-shrink:0;
}
.ari-status {
  display: flex; align-items:center; gap:10px;
}
.ari-avatar {
  width:38px; height:38px; border-radius:50%;
  background: linear-gradient(135deg,var(--azure),var(--violet));
  display: flex; align-items:center; justify-content:center;
  font-family:var(--font-brand); font-size:10px; color:#fff; letter-spacing:0.1em;
  box-shadow: 0 0 20px rgba(14,165,233,0.3);
  animation: ari-glow 3s ease-in-out infinite;
}
@keyframes ari-glow { 0%,100%{box-shadow:0 0 20px rgba(14,165,233,0.3)} 50%{box-shadow:0 0 36px rgba(14,165,233,0.6)} }

.ari-name { font-family:var(--font-brand); font-size:10px; letter-spacing:0.2em; color:#fff; text-transform:uppercase; }
.ari-subtitle { font-family:var(--font-mono); font-size:8px; letter-spacing:0.2em; color:var(--emerald); text-transform:uppercase; margin-top:2px; }
.ari-close {
  background:none; border:none; color:rgba(255,255,255,0.4);
  font-size:18px; cursor:pointer; padding:4px 8px; border-radius:6px;
  transition: color 0.2s ease, background 0.2s ease;
}
.ari-close:hover { color:#fff; background:var(--glass-2); }

.ari-messages {
  flex:1; overflow-y:auto; padding:24px 28px;
  display: flex; flex-direction:column; gap:16px;
  scrollbar-width: thin; scrollbar-color: rgba(14,165,233,0.3) transparent;
}
.ari-msg {
  max-width: 88%; padding:12px 16px; border-radius:16px;
  font-size: 0.875rem; line-height:1.65;
  animation: msg-in 0.3s var(--ease-spring) both;
}
@keyframes msg-in { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
.ari-msg.bot {
  background: var(--glass-2); border:1px solid var(--glass-border);
  border-bottom-left-radius:4px; color:rgba(255,255,255,0.85);
}
.ari-msg.user {
  align-self: flex-end;
  background: linear-gradient(135deg,rgba(14,165,233,0.2),rgba(124,58,237,0.2));
  border:1px solid rgba(14,165,233,0.2);
  border-bottom-right-radius:4px; color:#fff;
}
.ari-chips {
  padding: 0 28px 16px; display:flex; flex-wrap:wrap; gap:8px;
}
.ari-chip {
  font-family:var(--font-mono); font-size:8.5px; letter-spacing:0.15em; text-transform:uppercase;
  padding:7px 14px; border-radius:99px;
  border:1px solid var(--glass-border-hi); background:var(--glass-1);
  color:rgba(255,255,255,0.6); cursor:pointer;
  transition: all 0.2s ease;
}
.ari-chip:hover { background:rgba(14,165,233,0.1); border-color:rgba(14,165,233,0.4); color:#fff; transform:translateY(-1px); }

.ari-input-row {
  padding: 20px 28px; border-top:1px solid var(--glass-border);
  display: flex; gap:10px; flex-shrink:0;
}
.ari-input {
  flex:1; background:var(--glass-2); border:1px solid var(--glass-border);
  border-radius:12px; padding:12px 16px;
  font-family:var(--font-display); font-size:0.9rem; color:#fff; outline:none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.ari-input:focus { border-color:rgba(14,165,233,0.5); background:var(--glass-3); }
.ari-send {
  background:linear-gradient(135deg,var(--azure),var(--violet));
  border:none; border-radius:12px; width:46px; height:46px;
  display:flex; align-items:center; justify-content:center; cursor:pointer;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s ease;
  flex-shrink:0;
}
.ari-send:hover { transform:scale(1.06); box-shadow:0 0 20px rgba(14,165,233,0.3); }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
#view-home { padding-top: 0; }

.hero-stage {
  min-height: 100svh; display:flex; flex-direction:column;
  align-items: center; justify-content:center;
  position: relative; overflow:hidden; padding:120px 40px 80px;
  text-align: center;
}
@media(max-width:768px){ .hero-stage{padding:100px 20px 60px;} }

/* Animated grid lines */
.hero-stage::before {
  content:''; position:absolute; inset:0; z-index:0; pointer-events:none;
  background-image:
    linear-gradient(rgba(14,165,233,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 100%);
  animation: grid-shift 20s linear infinite;
}
@keyframes grid-shift { from{background-position:0 0} to{background-position:80px 80px} }

#canvas-container {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  background: transparent;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}

#canvas-container canvas {
  display: block;
  position: absolute; top: 0; left: 0;
  width: 100vw !important; height: 100vh !important;
  opacity: 0.88;
  filter: saturate(0.92) contrast(1.06) brightness(0.86);
}

.hero-eyebrow {
  position: relative; z-index:2;
  display: inline-flex; align-items:center; gap:10px;
  font-family: var(--font-mono); font-size: clamp(10px, 2.5vw, 12px); letter-spacing:0.25em; text-transform:uppercase;
  color: rgba(56, 189, 248, 0.95); margin-bottom:28px;
}
.hero-eyebrow::before, .hero-eyebrow::after { content:''; flex:1; height:1px; background:linear-gradient(90deg,transparent,rgba(14,165,233,0.4)); width: clamp(20px, 5vw, 40px); }
.hero-eyebrow::after { background:linear-gradient(90deg,rgba(14,165,233,0.4),transparent); }

.hero-title {
  position: relative; z-index:2;
  font-family: var(--font-brand);
  font-size: clamp(2.8rem, 8vw, 8rem);
  line-height: 0.95; letter-spacing: -0.02em;
  text-transform: uppercase; color:#fff;
  margin-bottom: 8px;
}
.hero-title-gradient {
  background: linear-gradient(135deg, var(--azure) 0%, var(--violet-bright) 50%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: shimmer 4s ease infinite;
  display: block;
}
.hero-subtitle {
  position: relative; z-index:2;
  font-size: clamp(1.1rem, 2.8vw, 1.45rem); color: rgba(255, 255, 255, 0.65); /* Boosted contrast from 0.38 */
  letter-spacing: 0.08em; margin-bottom: 48px;
  font-weight: 300; line-height: 1.6;
}

.hero-actions {
  position: relative; z-index:2;
  display: flex; gap:16px; flex-wrap:wrap; justify-content:center;
  margin-bottom: 72px;
}

/* Hero stat strip */
.hero-stats {
  position: relative; z-index:2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--glass-border);
  border-radius: 16px; overflow:hidden;
  background: var(--glass-1); backdrop-filter:blur(12px);
}
.hero-stat {
  padding: 20px 24px; border-right:1px solid var(--glass-border);
  text-align:center; transition: background 0.3s ease;
}
@media (max-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-stat:nth-child(2) {
    border-right: none;
  }
  .hero-stat:nth-child(even) {
    border-right: none;
  }
  .hero-stat {
    border-bottom: 1px solid var(--glass-border);
  }
  .hero-stat:nth-child(3), .hero-stat:nth-child(4) {
    border-bottom: none;
  }
}
@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .hero-stat {
    border-right: none !important;
    border-bottom: 1px solid var(--glass-border) !important;
  }
  .hero-stat:last-child {
    border-bottom: none !important;
  }
}
.hero-stat:hover { background:var(--glass-2); }
.hero-stat-num {
  font-family: var(--font-brand); font-size:1.6rem; font-weight:700;
  background: linear-gradient(135deg,var(--azure),var(--violet-bright));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  display:block; line-height:1;
}
.hero-stat-label {
  font-family: var(--font-mono); font-size:8px; letter-spacing:0.25em; text-transform:uppercase;
  color:rgba(255,255,255,0.35); margin-top:6px; display:block;
}
@media(max-width:600px){ .hero-stat{padding:16px 20px;} .hero-stat-num{font-size:1.3rem;} }

/* Scroll indicator */
.hero-scroll-hint {
  position: absolute; bottom:32px; left:50%; transform:translateX(-50%);
  z-index:2; display:flex; flex-direction:column; align-items:center; gap:8px;
  animation: float-hint 2.4s ease-in-out infinite;
}
@keyframes float-hint { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-8px)} }
.scroll-mouse {
  width:22px; height:34px; border:1.5px solid rgba(255,255,255,0.2); border-radius:99px;
  position:relative; display:flex; justify-content:center; padding-top:6px;
}
.scroll-wheel {
  width:2px; height:6px; background:var(--azure); border-radius:99px;
  animation: scroll-wheel 1.6s ease-in-out infinite;
}
@keyframes scroll-wheel { 0%{opacity:1;transform:translateY(0)} 100%{opacity:0;transform:translateY(10px)} }
.scroll-label { font-family:var(--font-mono); font-size:10px; letter-spacing:0.25em; color:rgba(255,255,255,0.45); text-transform:uppercase; }

/* ─────────────────────────────────────────
   MARQUEE / TECH TICKER
───────────────────────────────────────── */
.marquee-wrapper {
  position: relative; overflow:hidden; padding:32px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.marquee-wrapper::before, .marquee-wrapper::after {
  content:''; position:absolute; top:0; bottom:0; width:200px; z-index:2; pointer-events:none;
}
.marquee-wrapper::before { left:0; background:linear-gradient(90deg,var(--ink),transparent); }
.marquee-wrapper::after  { right:0; background:linear-gradient(-90deg,var(--ink),transparent); }

.marquee-track {
  display: flex; width:max-content; gap: 80px; /* Expanded for larger text layout */
  animation: marquee-slide 30s linear infinite;
  will-change: transform;
}
.marquee-track-reverse { animation-direction:reverse; animation-duration:36s; }
.marquee-wrapper:hover .marquee-track { animation-play-state:paused; }

.marquee-item {
  display: flex; align-items:center; gap: 16px;
  font-family: var(--font-mono); font-size: clamp(1.2rem, 3.5vw, 1.85rem); letter-spacing: 0.15em; text-transform:uppercase;
  color: rgba(255,255,255,0.8); white-space:nowrap; /* Boosted size and readability */
  transition: color 0.3s ease;
}
.marquee-item:hover { color: var(--azure); text-shadow: 0 0 10px rgba(14, 165, 233, 0.4); }
.marquee-dot { width: 0.4em; height: 0.4em; border-radius:50%; background:var(--azure); flex-shrink:0; box-shadow: 0 0 8px var(--azure); }
@keyframes marquee-slide { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─────────────────────────────────────────
   SERVICES GRID
───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top:56px;
}
@media(max-width:1000px){ .services-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:600px)  { .services-grid{grid-template-columns:1fr;} }

.service-card {
  position: relative; overflow:hidden;
  background: var(--glass-1);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 36px 32px;
  transition: transform 0.4s var(--ease-expo), border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
  cursor: default;
}
.service-card::before {
  content:''; position:absolute; inset:0; border-radius:20px;
  background: radial-gradient(ellipse 80% 60% at var(--mx,50%) var(--my,50%), rgba(14,165,233,0.08), transparent 70%);
  opacity:0; transition:opacity 0.4s ease;
}
.service-card:hover { transform:translateY(-6px); border-color:rgba(14,165,233,0.2); background:var(--glass-2); box-shadow:0 24px 64px rgba(0,0,0,0.3), 0 0 0 1px rgba(14,165,233,0.08); }
.service-card:hover::before { opacity:1; }

/* Featured card spanning 2 cols */
.service-card.featured {
  grid-column: span 2; background:linear-gradient(135deg,rgba(14,165,233,0.06),rgba(124,58,237,0.06));
  border-color:rgba(14,165,233,0.15);
}
@media(max-width:1000px){ .service-card.featured{grid-column:span 1;} }

.service-icon {
  width: 48px; height:48px; border-radius:14px;
  display: flex; align-items:center; justify-content:center;
  margin-bottom: 24px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.5s, box-shadow 0.5s;
}
.service-card:hover .service-icon { transform: scale(1.18) rotate(6deg); }
.service-icon-azure  { background:rgba(14,165,233,0.1);  border:1px solid rgba(14,165,233,0.25); }
.service-card:hover .service-icon-azure { box-shadow: 0 0 15px rgba(14,165,233,0.3); border-color: var(--azure); }
.service-icon-violet { background:rgba(168,85,247,0.1);  border:1px solid rgba(168,85,247,0.25); }
.service-card:hover .service-icon-violet { box-shadow: 0 0 15px rgba(168,85,247,0.3); border-color: var(--violet-bright); }
.service-icon-gold   { background:rgba(245,158,11,0.1);  border:1px solid rgba(245,158,11,0.25); }
.service-card:hover .service-icon-gold { box-shadow: 0 0 15px rgba(245,158,11,0.3); border-color: var(--gold); }
.service-icon-emerald{ background:rgba(16,185,129,0.1);  border:1px solid rgba(16,185,129,0.25); }
.service-card:hover .service-icon-emerald { box-shadow: 0 0 15px rgba(16,185,129,0.3); border-color: var(--emerald); }
.service-icon-rose   { background:rgba(244,63,94,0.1);   border:1px solid rgba(244,63,94,0.25);  }
.service-card:hover .service-icon-rose { box-shadow: 0 0 15px rgba(244,63,94,0.3); border-color: var(--rose); }

.service-tag {
  font-family: var(--font-mono); font-size:8px; letter-spacing:0.3em; text-transform:uppercase;
  color: var(--azure); margin-bottom:10px; display:block;
}
.service-title {
  font-family: var(--font-brand); font-size:1.05rem; font-weight:700;
  text-transform:uppercase; letter-spacing:0.05em; color:#fff;
  margin-bottom:12px; line-height:1.2;
}
.service-desc {
  font-size: clamp(14px, 1.8vw, 15.5px); color:rgba(255,255,255,0.75); line-height:1.65; margin-bottom:24px;
}
.service-price {
  font-family: var(--font-brand); font-size:1.4rem; font-weight:700; color:#fff;
  margin-bottom: 4px;
}
.service-price-sub { font-size:0.75rem; color:rgba(255,255,255,0.3); margin-bottom:20px; display:block; }

/* ─────────────────────────────────────────
   PROCESS
───────────────────────────────────────── */
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px; margin-top:56px; position:relative;
}
@media(max-width:900px){ .process-steps{grid-template-columns:repeat(2,1fr);} }
@media(max-width:500px){ .process-steps{grid-template-columns:1fr;} }

.process-connector {
  position:absolute; top:32px; left:0; right:0; height:1px;
  background:linear-gradient(90deg,transparent,var(--glass-border-hi),transparent);
  pointer-events:none; z-index:0;
}
@media(max-width:900px){ .process-connector{display:none;} }

.process-step {
  position: relative; z-index:1;
  background: var(--glass-1); border:1px solid var(--glass-border);
  border-radius:20px; padding:32px 24px;
  text-align:center;
  transition: transform 0.4s var(--ease-expo), border-color 0.4s ease, background 0.4s ease;
}
.process-step:hover { transform:translateY(-8px); border-color:rgba(14,165,233,0.25); background:var(--glass-2); }

.process-num {
  width:52px; height:52px; border-radius:50%; margin:0 auto 20px;
  border:1px solid var(--glass-border-hi); background:var(--glass-2);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-brand); font-size:11px; letter-spacing:0.1em; color:rgba(255,255,255,0.5);
  position:relative;
}
.process-num::before {
  content:''; position:absolute; inset:-6px; border-radius:50%;
  border:1px solid rgba(14,165,233,0.12);
}
.process-step:hover .process-num { border-color:rgba(14,165,233,0.4); color:var(--azure); background:rgba(14,165,233,0.08); }
.process-step-title { font-family:var(--font-brand); font-size:0.9rem; letter-spacing:0.12em; text-transform:uppercase; color:#fff; margin-bottom:10px; }
.process-step-desc  { font-size: clamp(13px, 1.8vw, 15px); color:rgba(255,255,255,0.72); line-height:1.65; }

/* ─────────────────────────────────────────
   PORTFOLIO
───────────────────────────────────────── */
.portfolio-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap:16px; margin-top:56px;
  perspective: 1000px;
}
@media(max-width:700px){ .portfolio-grid{grid-template-columns:1fr;} }

.portfolio-card {
  position:relative; border-radius:20px; overflow:hidden;
  border:1px solid var(--glass-border);
  aspect-ratio: 16/10;
  cursor:pointer;
  transition: transform 0.15s ease-out, box-shadow 0.4s ease;
  transform-style: preserve-3d;
}
.portfolio-card:hover { transform:scale(1.02); box-shadow:0 32px 80px rgba(0,0,0,0.5); }
.portfolio-card img {
  width:100%; height:100%; object-fit:cover;
  transition: transform 0.6s var(--ease-expo), filter 0.4s ease;
  filter: saturate(0.7) brightness(0.85);
}
.portfolio-card:hover img { transform:scale(1.06); filter:saturate(1.1) brightness(1); }
.portfolio-overlay {
  position:absolute; inset:0;
  background:linear-gradient(180deg,transparent 40%,rgba(2,3,8,0.96) 100%);
  display:flex; flex-direction:column; justify-content:flex-end; padding:28px;
  transform:translateY(0);
  transform-style: preserve-3d;
}
.portfolio-tag, .portfolio-name, .portfolio-desc {
  transform: translateZ(30px);
}
.portfolio-tag  { font-family:var(--font-mono); font-size:10px; letter-spacing:0.22em; text-transform:uppercase; color:var(--azure); margin-bottom:8px; }
.portfolio-name { font-family:var(--font-brand); font-size:1.15rem; font-weight:700; text-transform:uppercase; color:#fff; letter-spacing:0.06em; }
.portfolio-desc { font-size: clamp(13px, 1.8vw, 15px); color:rgba(255,255,255,0.75); margin-top:8px; line-height:1.6; max-height:0; overflow:hidden; transition:max-height 0.4s var(--ease-expo), opacity 0.4s ease, transform 0.15s ease-out; opacity:0; }
.portfolio-card:hover .portfolio-desc { max-height:60px; opacity:1; }

/* ─────────────────────────────────────────
   AI SYSTEMS
───────────────────────────────────────── */
.ai-layout {
  display: grid; grid-template-columns:1fr 1fr;
  gap:60px; align-items:center; margin-top:60px;
}
@media(max-width:900px){ .ai-layout{grid-template-columns:1fr;} }

.ai-terminal {
  background: rgba(2,3,8,0.98); border:1px solid var(--glass-border);
  border-radius:20px; overflow:hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6), 0 0 0 1px rgba(14,165,233,0.08);
}
.ai-terminal-bar {
  padding:14px 20px; background:rgba(255,255,255,0.03); border-bottom:1px solid var(--glass-border);
  display:flex; align-items:center; gap:12px;
}
.ai-term-dot { width:10px; height:10px; border-radius:50%; }
.ai-term-dot-r { background:#ff5f57; }
.ai-term-dot-y { background:#febc2e; }
.ai-term-dot-g { background:#28c840; }
.ai-term-title { font-family:var(--font-mono); font-size:10px; letter-spacing:0.15em; color:rgba(255,255,255,0.3); margin-left:auto; text-transform:uppercase; }

.ai-terminal-body {
  padding:24px 28px; font-family:var(--font-mono); font-size:12px; line-height:2; min-height:240px;
}
.ai-line-prompt  { color:rgba(14,165,233,0.7); }
.ai-line-output  { color:rgba(255,255,255,0.55); margin-left:16px; }
.ai-line-success { color:var(--emerald); margin-left:16px; }
.ai-line-error   { color:var(--rose); margin-left:16px; }
.ai-cursor-blink { display:inline-block; width:8px; height:14px; background:var(--azure); animation:blink 1s step-end infinite; vertical-align:middle; border-radius:1px; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.ai-features-list { list-style:none; display:flex; flex-direction:column; gap:16px; margin-top:32px; }
.ai-feature-item {
  display:flex; align-items:flex-start; gap:16px;
  padding:20px 24px; border-radius:16px;
  background:var(--glass-1); border:1px solid var(--glass-border);
  transition: all 0.3s ease;
}
.ai-feature-item:hover { background:var(--glass-2); border-color:rgba(14,165,233,0.25); transform: translate3d(6px, 0, 0); box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
.ai-feature-icon { width:36px; height:36px; border-radius:10px; display:flex; align-items:center; justify-content:center; flex-shrink:0; transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.ai-feature-item:hover .ai-feature-icon { transform: scale(1.15) rotate(8deg); }
.ai-feature-title { font-family:var(--font-brand); font-size:0.72rem; letter-spacing:0.1em; text-transform:uppercase; color:#fff; margin-bottom:4px; }
.ai-feature-desc  { font-size: clamp(13px, 1.8vw, 15px); color:rgba(255,255,255,0.72); line-height:1.6; }

/* ─────────────────────────────────────────
   PRICING
───────────────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns:repeat(3,1fr);
  gap:16px; margin-top:56px; align-items:start;
}
@media(max-width:960px){ .pricing-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:600px){ .pricing-grid{grid-template-columns:1fr;} }

.pricing-card {
  background: var(--glass-1); border:1px solid var(--glass-border);
  border-radius:24px; padding:36px 32px;
  position:relative; overflow:hidden;
  transition: transform 0.4s var(--ease-expo), box-shadow 0.4s ease, border-color 0.4s ease;
}
.pricing-card::after {
  content:''; position:absolute; top:0; left:0; right:0; height:1px;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.1),transparent);
}
.pricing-card:hover { transform:translateY(-8px); box-shadow:0 40px 100px rgba(0,0,0,0.4); }

.pricing-card.featured {
  background: linear-gradient(160deg,rgba(14,165,233,0.08),rgba(124,58,237,0.1));
  border-color: rgba(14,165,233,0.25);
  box-shadow: 0 0 0 1px rgba(14,165,233,0.08), 0 24px 80px rgba(14,165,233,0.08);
  transform: translateY(-8px) scale(1.01);
}
.pricing-card.featured:hover { transform:translateY(-16px) scale(1.01); }
.pricing-card.featured::after { background:linear-gradient(90deg,transparent,var(--azure),transparent); }

.pricing-badge {
  position:absolute; top:20px; right:20px;
  font-family:var(--font-mono); font-size:10px; letter-spacing:0.25em; text-transform:uppercase;
  padding:4.5px 12px; border-radius:99px;
  background:linear-gradient(135deg,var(--azure),var(--violet));
  color:#fff; font-weight:700;
}
.pricing-tier { font-family:var(--font-mono); font-size:10px; letter-spacing:0.22em; text-transform:uppercase; color:rgba(255,255,255,0.55); margin-bottom:16px; }
.pricing-name { font-family:var(--font-brand); font-size:1.15rem; letter-spacing:0.08em; text-transform:uppercase; color:#fff; margin-bottom:20px; }
.pricing-price { font-family:var(--font-brand); font-size:2.8rem; font-weight:700; color:#fff; line-height:1; }
.pricing-price span { font-size:1rem; color:rgba(255,255,255,0.4); font-weight:400; margin-left:4px; }
.pricing-desc { font-size: clamp(13px, 1.8vw, 15px); color:rgba(255,255,255,0.72); line-height:1.65; margin:16px 0 24px; }
.pricing-divider { height:1px; background:var(--glass-border); margin:24px 0; }

.pricing-features { list-style:none; display:flex; flex-direction:column; gap:12px; margin-bottom:28px; }
.pricing-features li {
  display:flex; align-items:flex-start; gap:10px;
  font-size:0.82rem; color:rgba(255,255,255,0.55); line-height:1.5;
}
.pricing-features li::before { content:''; width:16px; height:16px; border-radius:50%; flex-shrink:0; margin-top:1px; }
.pricing-features li.check::before { background:rgba(16,185,129,0.15); border:1px solid rgba(16,185,129,0.4); background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2310b981' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-size:10px; background-repeat:no-repeat; background-position:center; }

.pricing-btn {
  width:100%; padding:14px; border-radius:12px; border:none;
  font-family:var(--font-mono); font-size:10px; letter-spacing:0.2em; text-transform:uppercase;
  cursor:pointer; transition:all 0.3s var(--ease-spring);
}
.pricing-btn-primary {
  background:linear-gradient(135deg,var(--azure),var(--violet));
  color:#fff;
  box-shadow: 0 0 0 0 rgba(14,165,233,0);
}
.pricing-btn-primary:hover { box-shadow:0 0 32px rgba(14,165,233,0.4); transform:translateY(-2px); }
.pricing-btn-ghost {
  background:var(--glass-1); border:1px solid var(--glass-border-hi); color:rgba(255,255,255,0.6);
}
.pricing-btn-ghost:hover { background:var(--glass-2); border-color:rgba(14,165,233,0.3); color:#fff; transform:translateY(-1px); }

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
.about-layout {
  display: grid; grid-template-columns:480px 1fr;
  gap: 80px; align-items:start;
}
@media(max-width:1100px){ .about-layout{grid-template-columns:360px 1fr;gap:48px;} }
@media(max-width:800px)  { .about-layout{grid-template-columns:1fr;} }

.about-image-area { position:relative; }

.about-image-card {
  position: relative; border-radius:24px; overflow:hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 40px 120px rgba(0,0,0,0.5);
  aspect-ratio: 3/4;
}
.about-image-bg {
  width:100%; height:100%;
  display:flex; align-items:center; justify-content:center;
  background: var(--glass-2);
  position:relative;
}
.about-accolade {
  position: relative;
  margin-top: 16px;
  background:rgba(2,3,8,0.88); backdrop-filter:blur(16px);
  border:1px solid var(--glass-border-hi); border-radius:14px;
  padding: 14px 18px;
  display:flex; align-items:center; gap:12px;
  z-index:5;
}
.about-accolade-icon { color:var(--gold); flex-shrink:0; }
.about-content { padding-top:8px; }
.about-skills { display:flex; flex-wrap:wrap; gap:8px; margin-top:32px; }
.about-skill {
  font-family:var(--font-mono); font-size:11.5px; letter-spacing:0.12em; text-transform:uppercase;
  padding:8px 18px; border-radius:99px;
  background:var(--glass-1); border:1px solid rgba(255, 255, 255, 0.12);
  color:rgba(255, 255, 255, 0.85);
  transition:all 0.3s ease;
}
.about-skill:hover { background:var(--glass-2); border-color:var(--azure); color:#fff; box-shadow: 0 0 12px rgba(14, 165, 233, 0.2); }

/* ─────────────────────────────────────────
   MARKETPLACE
───────────────────────────────────────── */
.marketplace-grid {
  display: grid; grid-template-columns:repeat(3,1fr);
  gap:16px; margin-top:56px;
}
@media(max-width:960px){ .marketplace-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:600px){ .marketplace-grid{grid-template-columns:1fr;} }

.marketplace-card {
  background:var(--glass-1); border:1px solid var(--glass-border);
  border-radius:20px; overflow:hidden;
  transition:transform 0.4s var(--ease-expo), box-shadow 0.4s ease, border-color 0.4s ease;
}
.marketplace-card:hover { transform:translateY(-8px); box-shadow:0 32px 80px rgba(0,0,0,0.4); border-color:rgba(255,255,255,0.12); }
.marketplace-card-img {
  width:100%; aspect-ratio:16/9; object-fit:cover;
  transition:transform 0.5s var(--ease-expo), filter 0.4s ease;
  filter:brightness(0.85);
}
.marketplace-card:hover .marketplace-card-img { transform:scale(1.04); filter:brightness(1); }
.marketplace-card-body { padding:24px; }
.marketplace-card-tag  { font-family:var(--font-mono); font-size:8px; letter-spacing:0.3em; text-transform:uppercase; margin-bottom:8px; }
.marketplace-card-title { font-family:var(--font-brand); font-size:0.9rem; letter-spacing:0.06em; text-transform:uppercase; color:#fff; margin-bottom:10px; }
.marketplace-card-desc  { font-size:0.8rem; color:rgba(255,255,255,0.4); line-height:1.7; margin-bottom:20px; }
.marketplace-card-footer { display:flex; align-items:center; justify-content:space-between; }
.marketplace-card-price  { font-family:var(--font-brand); font-size:1.3rem; font-weight:700; color:#fff; }

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact-layout {
  display: grid; grid-template-columns:1fr 1fr;
  gap: 80px; margin-top:60px;
}
@media(max-width:900px){ .contact-layout{grid-template-columns:1fr;gap:48px;} }

.contact-info-list { display:flex; flex-direction:column; gap:24px; margin-top:36px; }
.contact-info-item {
  display:flex; align-items:center; gap:16px;
  padding:18px 22px; border-radius:14px;
  background:var(--glass-1); border:1px solid var(--glass-border);
  text-decoration:none; color:inherit;
  transition:all 0.3s ease;
}
.contact-info-item:hover { background:var(--glass-2); border-color:rgba(14,165,233,0.3); transform: translate3d(6px, 0, 0); box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
.contact-info-icon { width:40px; height:40px; border-radius:12px; display:flex; align-items:center; justify-content:center; flex-shrink:0; transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.contact-info-item:hover .contact-info-icon { transform: scale(1.15) rotate(-8deg); }
.contact-info-label { font-family:var(--font-mono); font-size:8px; letter-spacing:0.25em; text-transform:uppercase; color:rgba(255,255,255,0.3); margin-bottom:3px; }
.contact-info-value { font-weight:600; color:#fff; font-size:0.9rem; }

.contact-form-card {
  background:var(--glass-1); border:1px solid var(--glass-border);
  border-radius:24px; padding:40px;
}
@media(max-width:600px){ .contact-form-card{padding:28px 20px;} }

.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media(max-width:600px){ .form-row{grid-template-columns:1fr;} }

.form-group { display:flex; flex-direction:column; gap:8px; margin-bottom:16px; }
.form-label {
  font-family:var(--font-mono); font-size:8px; letter-spacing:0.3em; text-transform:uppercase;
  color:rgba(255,255,255,0.35);
}
.form-input, .form-select, .form-textarea {
  background:var(--glass-2); border:1px solid var(--glass-border);
  border-radius:12px; padding:14px 18px;
  font-family:var(--font-display); font-size:0.9rem; color:#fff; outline:none;
  transition:border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  -webkit-appearance:none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color:rgba(14,165,233,0.5); background:var(--glass-3);
  box-shadow:0 0 0 3px rgba(14,165,233,0.08);
}
.form-select option { background:#0d1025; }
.form-textarea { resize:vertical; min-height:120px; font-family:var(--font-display); }
.form-input::placeholder, .form-textarea::placeholder { color:rgba(255,255,255,0.2); }
.form-submit {
  width:100%; padding:16px; border-radius:12px; border:none;
  background:linear-gradient(135deg,var(--azure),var(--violet));
  color:#fff; font-family:var(--font-mono); font-size:10px; letter-spacing:0.25em; text-transform:uppercase; font-weight:700;
  cursor:pointer; transition:all 0.35s var(--ease-spring);
  box-shadow: 0 0 0 0 rgba(14,165,233,0);
}
.form-submit:hover { transform:translateY(-2px); box-shadow:0 0 40px rgba(14,165,233,0.35), 0 8px 24px rgba(0,0,0,0.3); filter:brightness(1.1); }
.form-submit:active { transform:scale(0.98); }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  border-top: 1px solid var(--glass-border);
  padding: 48px 40px;
  position:relative; z-index:1;
}
.footer-inner {
  max-width:1360px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
}
.footer-copy {
  font-family:var(--font-mono); font-size:10px; letter-spacing:0.15em;
  text-transform:uppercase; color:rgba(255,255,255,0.3);
}
.footer-links { display:flex; gap:24px; flex-wrap:wrap; }
.footer-links a {
  font-family:var(--font-mono); font-size:10px; letter-spacing:0.15em; text-transform:uppercase;
  color:rgba(255,255,255,0.45); text-decoration:none;
  transition:color 0.25s ease, text-shadow 0.25s ease;
}
.footer-links a:hover { color:#fff; text-shadow: 0 0 8px rgba(255,255,255,0.3); }

/* ─────────────────────────────────────────
   MISC UTILITIES
───────────────────────────────────────── */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }

/* Industries micro-grid */
.industries-grid {
  display:grid; grid-template-columns:repeat(5,1fr);
  gap:8px; margin-top:40px;
}
@media(max-width:900px){ .industries-grid{grid-template-columns:repeat(3,1fr);} }
@media(max-width:500px){ .industries-grid{grid-template-columns:repeat(2,1fr);} }

.industry-chip {
  padding:12px 10px; border-radius:12px; text-align:center;
  background:var(--glass-1); border:1px solid var(--glass-border);
  font-family:var(--font-mono); font-size:8px; letter-spacing:0.15em; text-transform:uppercase;
  color:rgba(255,255,255,0.4); transition:all 0.25s ease;
}
.industry-chip:hover { background:var(--glass-2); border-color:rgba(14,165,233,0.2); color:rgba(255,255,255,0.75); transform:translateY(-2px); }

/* Guarantee strip */
.guarantee-strip {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:16px; margin-top:56px;
}
@media(max-width:800px){ .guarantee-strip{grid-template-columns:repeat(2,1fr);} }
@media(max-width:440px){ .guarantee-strip{grid-template-columns:1fr;} }

.guarantee-item {
  text-align:center; padding:28px 16px; border-radius:16px;
  background:var(--glass-1); border:1px solid var(--glass-border);
  transition:all 0.3s ease;
}
.guarantee-item:hover { background:var(--glass-2); transform:translate3d(0, -4px, 0); box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.guarantee-icon { font-size:1.8rem; margin-bottom:12px; display:inline-flex; transition:transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.guarantee-item:hover .guarantee-icon { transform: scale(1.18) rotate(-6deg); }
.guarantee-title { font-family:var(--font-brand); font-size:0.85rem; letter-spacing:0.1em; text-transform:uppercase; color:#fff; margin-bottom:6px; }
.guarantee-desc  { font-size: clamp(12px, 1.6vw, 14px); color:rgba(255,255,255,0.7); line-height:1.6; }

/* Shoutout quote card */
.press-quote {
  background:linear-gradient(135deg,rgba(14,165,233,0.04),rgba(124,58,237,0.04));
  border:1px solid rgba(255,255,255,0.06);
  border-radius:20px; padding:40px 44px; position:relative; overflow:hidden;
  margin-top:60px;
}
.press-quote::before {
  content:'"'; position:absolute; top:-20px; left:24px;
  font-size:8rem; color:rgba(14,165,233,0.07);
  font-family:Georgia,serif; line-height:1; pointer-events:none;
}

@media(max-width:480px){
  .press-quote{padding:28px 24px;}
}

/* ─────────────────────────────────────────
   AI SERVICES GRID (Extended)
───────────────────────────────────────── */
.ai-services-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.ai-service-card {
  background:var(--glass-1);
  border:1px solid var(--glass-border);
  border-radius:20px;
  padding:32px 28px;
  transition:all 0.4s var(--ease-expo);
  position:relative;
  overflow:hidden;
}
.ai-service-card::before {
  content:'';
  position:absolute; top:0; left:0; right:0;
  height:2px;
  background:linear-gradient(90deg,transparent,var(--card-accent,var(--azure)),transparent);
  opacity:0;
  transition:opacity 0.4s ease;
}
.ai-service-card:hover {
  border-color:rgba(255,255,255,0.12);
  transform:translateY(-6px);
  box-shadow:0 20px 60px rgba(0,0,0,0.4), 0 0 40px color-mix(in srgb, var(--card-accent,var(--azure)) 12%, transparent);
}
.ai-service-card:hover::before { opacity:1; }
.ai-service-card-icon {
  width:48px; height:48px;
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background:color-mix(in srgb, var(--card-accent,var(--azure)) 10%, transparent);
  border:1px solid color-mix(in srgb, var(--card-accent,var(--azure)) 20%, transparent);
  margin-bottom:20px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.5s, box-shadow 0.5s;
}
.ai-service-card:hover .ai-service-card-icon {
  transform: scale(1.18) rotate(6deg);
  border-color: var(--card-accent);
  box-shadow: 0 0 15px color-mix(in srgb, var(--card-accent,var(--azure)) 30%, transparent);
}
.ai-service-card-title {
  font-family:var(--font-brand); font-size:clamp(0.85rem,1.5vw,1.05rem);
  letter-spacing:0.12em; text-transform:uppercase;
  color:rgba(255,255,255,0.95);
  margin-bottom:12px;
}
.ai-service-card-desc {
  font-family:var(--font-body); font-size: clamp(14px, 1.8vw, 15.5px);
  color:rgba(255,255,255,0.75);
  line-height:1.65; margin-bottom:16px;
}
.ai-service-card-tags {
  display:flex; flex-wrap:wrap; gap:8px;
}
.ai-service-card-tags span {
  font-family:var(--font-mono); font-size:10px;
  letter-spacing:0.2em; text-transform:uppercase;
  padding:5.5px 11px;
  border-radius:99px;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.06);
  color:rgba(255,255,255,0.65);
}
@media(max-width:900px){
  .ai-services-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:600px){
  .ai-services-grid { grid-template-columns:1fr; }
  .ai-service-card { padding:24px 20px; }
}

.section-badge-emerald {
  color:var(--emerald);
  border-color:rgba(16,185,129,0.3);
  background:rgba(16,185,129,0.06);
  text-shadow:0 0 8px rgba(16,185,129,0.35);
}
.section-badge-emerald:hover { box-shadow:0 4px 15px rgba(16,185,129,0.25); border-color:var(--emerald); }

/* ─────────────────────────────────────────
   TECH MARQUEE TICKER
───────────────────────────────────────── */
.ticker-container {
  width:100%; overflow:hidden;
  padding:48px 0 32px;
  position:relative; z-index:2;
  border-top:1px solid var(--glass-border);
  border-bottom:1px solid var(--glass-border);
}
.ticker-label {
  text-align:center;
  font-family:var(--font-mono); font-size: clamp(10px, 2.5vw, 12px); letter-spacing:0.35em; text-transform:uppercase;
  color: rgba(56, 189, 248, 0.95); margin-bottom:24px;
}
.ticker-track {
  display:flex; width:max-content;
  gap:2.8rem;
  animation:ticker-scroll 35s linear infinite;
  will-change:transform;
  padding:8px 0;
}
.ticker-track:hover { animation-play-state:paused; }
@keyframes ticker-scroll {
  0%   { transform:translate3d(0,0,0); }
  100% { transform:translate3d(-50%,0,0); }
}
.ticker-item {
  position:relative; flex-shrink:0;
  cursor:pointer;
  transition:transform 0.35s cubic-bezier(0.25,0.8,0.25,1);
}
.ticker-item:hover { transform:scale(1.16); z-index:10; }
.ticker-icon {
  width:56px; height:56px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:rgba(4,6,15,0.95);
  border:1.5px solid rgba(255,255,255,0.08);
  box-shadow:0 4px 12px rgba(0,0,0,0.5), inset 0 2px 4px rgba(255,255,255,0.05);
  transition:all 0.35s cubic-bezier(0.25,0.8,0.25,1);
  animation:ticker-wave 3.2s ease-in-out infinite;
}
.ticker-icon svg { width:24px; height:24px; }
@keyframes ticker-wave {
  0%,100% { transform:translateY(0) scale(1);    box-shadow:0 4px 12px rgba(0,0,0,0.5),inset 0 2px 4px rgba(255,255,255,0.05); }
  25%     { transform:translateY(-10px) scale(1.04); box-shadow:0 12px 24px rgba(0,0,0,0.4),0 0 18px rgba(14,165,233,0.12),inset 0 2px 4px rgba(255,255,255,0.08); }
  50%     { transform:translateY(0) scale(1);    box-shadow:0 4px 12px rgba(0,0,0,0.5),inset 0 2px 4px rgba(255,255,255,0.05); }
  75%     { transform:translateY(4px) scale(0.97); box-shadow:0 2px 8px rgba(0,0,0,0.6),inset 0 2px 4px rgba(255,255,255,0.03); }
}
/* Staggered wave delays */
.ticker-item:nth-child(1)  .ticker-icon { animation-delay:0.00s; }
.ticker-item:nth-child(2)  .ticker-icon { animation-delay:0.18s; }
.ticker-item:nth-child(3)  .ticker-icon { animation-delay:0.36s; }
.ticker-item:nth-child(4)  .ticker-icon { animation-delay:0.54s; }
.ticker-item:nth-child(5)  .ticker-icon { animation-delay:0.72s; }
.ticker-item:nth-child(6)  .ticker-icon { animation-delay:0.90s; }
.ticker-item:nth-child(7)  .ticker-icon { animation-delay:1.08s; }
.ticker-item:nth-child(8)  .ticker-icon { animation-delay:1.26s; }
.ticker-item:nth-child(9)  .ticker-icon { animation-delay:1.44s; }
.ticker-item:nth-child(10) .ticker-icon { animation-delay:1.62s; }
.ticker-item:nth-child(11) .ticker-icon { animation-delay:1.80s; }
.ticker-item:nth-child(12) .ticker-icon { animation-delay:1.98s; }
/* Reset for duplicated set */
.ticker-item:nth-child(13) .ticker-icon { animation-delay:0.00s; }
.ticker-item:nth-child(14) .ticker-icon { animation-delay:0.18s; }
.ticker-item:nth-child(15) .ticker-icon { animation-delay:0.36s; }
.ticker-item:nth-child(16) .ticker-icon { animation-delay:0.54s; }
.ticker-item:nth-child(17) .ticker-icon { animation-delay:0.72s; }
.ticker-item:nth-child(18) .ticker-icon { animation-delay:0.90s; }
.ticker-item:nth-child(19) .ticker-icon { animation-delay:1.08s; }
.ticker-item:nth-child(20) .ticker-icon { animation-delay:1.26s; }
.ticker-item:nth-child(21) .ticker-icon { animation-delay:1.44s; }
.ticker-item:nth-child(22) .ticker-icon { animation-delay:1.62s; }
.ticker-item:nth-child(23) .ticker-icon { animation-delay:1.80s; }
.ticker-item:nth-child(24) .ticker-icon { animation-delay:1.98s; }
/* Hover brand glow */
.ticker-item:hover .ticker-icon {
  border-color:var(--brand-color, rgba(255,255,255,0.5));
  box-shadow:0 0 25px var(--brand-color, rgba(255,255,255,0.3)), inset 0 0 12px var(--brand-color, rgba(255,255,255,0.1));
}
/* Tooltip */
.ticker-tooltip {
  position:absolute; bottom:calc(100% + 12px); left:50%;
  transform:translate(-50%,6px) scale(0.88);
  opacity:0; visibility:hidden;
  transition:all 0.25s cubic-bezier(0.25,0.8,0.25,1);
  z-index:50; pointer-events:none;
  padding:6px 14px;
  font-family:var(--font-mono); font-size:9px; font-weight:700;
  letter-spacing:0.15em; text-transform:uppercase;
  border-radius:99px;
  background:rgba(3,5,12,0.98); backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,0.15);
  color:#fff; white-space:nowrap;
  box-shadow:0 0 15px rgba(255,255,255,0.08);
}
.ticker-item:hover .ticker-tooltip {
  opacity:1; visibility:visible;
  transform:translate(-50%,0) scale(1);
}


/* ─────────────────────────────────────────
   COMPANY LOGO MARQUEE STRIP
───────────────────────────────────────── */
.logo-strip {
  overflow: hidden;
  background: transparent;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0;
  position: relative;
  margin-bottom: 60px;
}
.logo-strip::before, .logo-strip::after {
  content:'';
  position:absolute;
  top:0;
  bottom:0;
  width:120px;
  z-index:2;
  pointer-events:none;
}
.logo-strip::before {
  left:0;
  background: linear-gradient(to right, #020308, transparent);
}
.logo-strip::after {
  right:0;
  background: linear-gradient(to left,  #020308, transparent);
}
.logo-track {
  display:flex;
  gap:48px;
  width:max-content;
  align-items:center;
}
.logo-track.fwd {
  animation: logo-scroll-fwd 35s linear infinite;
}
.logo-track.rev {
  animation: logo-scroll-rev 38s linear infinite;
  margin-top: 20px;
}
@keyframes logo-scroll-fwd {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes logo-scroll-rev {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.logo-pill {
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 20px;
  border-radius:9999px;
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.03);
  backdrop-filter:blur(8px);
  transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
  white-space:nowrap;
}
.logo-pill:hover {
  border-color:rgba(14,165,233,0.3);
  background:rgba(14,165,233,0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(14,165,233,0.15);
}
.logo-pill img {
  width:24px;
  height:24px;
  object-fit:contain;
  border-radius:4px;
  filter:brightness(1.1);
}
.logo-pill span {
  font-size:11.5px;
  font-weight:700;
  letter-spacing:0.06em;
  color:rgba(255,255,255,0.55);
  font-family: var(--font-mono), monospace;
}

/* ─────────────────────────────────────────
   MOBILE LAYOUT & RESPONSIBILITY FIXES
───────────────────────────────────────── */
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Optimize header layout on laptop screen widths (between 1200px and 1380px) to prevent layout break/cut-off */
@media (max-width: 1380px) and (min-width: 1200px) {
  .nav-inner {
    padding: 0 16px;
    gap: 12px;
  }
  .nav-links {
    gap: 2px;
  }
  .nav-links a {
    font-size: 11.5px !important;
    padding: 6px 8px;
  }
  #nav-call-btn {
    display: none !important; /* Hide secondary phone button on standard laptops to prevent overflow */
  }
}

@media (max-width: 1200px) {
  #nav-call-btn, #nav-cta-btn {
    display: none !important;
  }
  #navbar {
    top: 10px;
    padding: 0 12px;
    pointer-events: none;
  }
  #navbar::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: var(--ink);
    z-index: -1;
    pointer-events: none;
  }
  .nav-glass {
    background: rgba(3, 5, 12, 0.96) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 99px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.65), 0 0 20px rgba(14, 165, 233, 0.08);
    pointer-events: auto;
  }
  .nav-inner {
    height: 60px;
    justify-content: space-between;
    padding: 0 16px;
    gap: 0;
  }
  .nav-logo-mark {
    width: 36px !important;
    height: 36px !important;
  }
  .nav-logo-text {
    font-size: 14.5px !important;
    letter-spacing: 0.14em !important;
  }
  #mobile-menu {
    top: 76px;
  }
  .tech-ticker-container, .ticker-container {
    padding: 32px 0 20px 0;
  }
}

/* ─────────────────────────────────────────
   ANIMATED STAT COUNTERS
───────────────────────────────────────── */
.stat-counter-section {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
  background: rgba(2,3,8,0.2);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.stat-counter-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(14,165,233,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.stat-flex-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.stat-item {
  text-align: center;
  position: relative;
}
.stat-number {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  font-family: var(--font-mono);
}
.stat-number .counter-val {
  background: linear-gradient(135deg, var(--azure) 0%, var(--violet-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-number .counter-plus {
  background: linear-gradient(135deg, rgba(14,165,233,0.6), rgba(168,85,247,0.6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.6em;
  vertical-align: top;
  margin-left: 2px;
}
.stat-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-mono);
  margin-top: 12px;
  text-transform: uppercase;
  font-weight: 700;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, rgba(14,165,233,0.2), transparent);
  align-self: center;
}
@media (max-width: 768px) {
  .stat-flex-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 24px;
  }
  .stat-item {
    flex: 0 1 calc(50% - 16px);
    min-width: 120px;
  }
  .stat-number { font-size: clamp(1.8rem, 8vw, 3rem); }
  .stat-divider { display: none; }
}

/* ─────────────────────────────────────────
   KINETIC ANIMATION LABORATORY
───────────────────────────────────────── */
.anim-lab-card {
  background: var(--glass-1);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
}
.anim-lab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 900px) {
  .anim-lab-grid {
    grid-template-columns: 1fr;
  }
}
.anim-sandbox {
  background: rgba(2, 3, 8, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.anim-sandbox:hover {
  border-color: rgba(14, 165, 233, 0.2);
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.05);
}
.anim-sandbox-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--azure);
  margin-bottom: 8px;
}
.anim-sandbox-desc {
  font-size: clamp(13px, 1.8vw, 15px);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
  margin-bottom: 16px;
}

/* Magic sparkle styling */
.magic-sparkle {
  position: absolute;
  pointer-events: none;
  width: 14px;
  height: 14px;
  color: var(--gold-light);
  filter: drop-shadow(0 0 8px var(--gold));
  animation: floatSparkle 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes floatSparkle {
  0% {
    transform: translate(-50%, -50%) scale(0) rotate(0deg);
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -100px) scale(1.5) rotate(180deg);
    opacity: 0;
  }
}

/* Elastic Sandbox elements */
.magnetic-area {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: rgba(255, 255, 255, 0.01);
  border-radius: 12px;
}
.magnetic-button {
  background: linear-gradient(135deg, var(--azure), var(--violet-bright));
  color: #fff;
  border: none;
  border-radius: 99px;
  padding: 10px 22px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: box-shadow 0.2s;
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.3);
}

/* Physics Sandbox elements */
.physics-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: all;
  cursor: crosshair;
}

/* ─────────────────────────────────────────
   ADVERTISING & ACQUISITION
───────────────────────────────────────── */
.ad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media(max-width:900px){ .ad-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:600px){ .ad-grid { grid-template-columns: 1fr; } }

.ad-card {
  background: var(--glass-1);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s var(--ease-expo), background 0.4s var(--ease-expo), transform 0.4s var(--ease-expo);
}
.ad-card:hover {
  background: var(--glass-2);
  border-color: rgba(245,158,11,0.25);
  transform: translateY(-4px);
}
.ad-card-badge {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(245,158,11,0.2);
  background: rgba(245,158,11,0.05);
  padding: 4px 10px;
  border-radius: 99px;
  display: inline-block;
  margin-bottom: 16px;
}
.ad-card-title {
  font-family: var(--font-brand);
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 12px;
}
.ad-card-desc {
  font-size: clamp(13px, 1.8vw, 15px);
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

/* Interactive Funnel Component */
.ad-funnel-section {
  margin-top: 80px;
  padding: 50px 40px;
  background: linear-gradient(135deg, rgba(245,158,11,0.02), rgba(124,58,237,0.02));
  border: 1px solid var(--glass-border);
  border-radius: 24px;
}
@media(max-width:768px){ .ad-funnel-section { padding: 30px 20px; } }

.ad-funnel-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}
@media(max-width:900px){ .ad-funnel-layout { grid-template-columns: 1fr; gap: 32px; } }

.funnel-graphic {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.funnel-tier {
  width: 100%;
  padding: 20px 24px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.funnel-tier::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(90deg, transparent, rgba(245,158,11,0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.funnel-tier:hover::before, .funnel-tier.active::before {
  opacity: 1;
}
.funnel-tier:hover, .funnel-tier.active {
  transform: scale(1.02);
  border-color: rgba(245,158,11,0.4);
  box-shadow: 0 0 30px rgba(245,158,11,0.12);
  background: rgba(245,158,11,0.04);
}
.funnel-tier-label {
  font-family: var(--font-brand);
  font-size: 0.95rem;
  color: #fff;
  z-index: 1;
}
.funnel-tier-arrow {
  color: rgba(255,255,255,0.25);
  font-size: 0.8rem;
  z-index: 1;
  transition: transform 0.3s;
}
.funnel-tier:hover .funnel-tier-arrow, .funnel-tier.active .funnel-tier-arrow {
  color: var(--gold);
  transform: translateX(4px);
}

/* Width scaling down to show funnel structure */
#tier-awareness { max-width: 100%; }
#tier-interest  { max-width: 85%; }
#tier-intent    { max-width: 70%; }
#tier-conversion{ max-width: 55%; }

.funnel-details-panel {
  background: var(--glass-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.funnel-details-badge {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.funnel-details-title {
  font-family: var(--font-brand);
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 16px;
}
.funnel-details-desc {
  font-size: clamp(14px, 1.8vw, 16px);
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 24px;
}
.funnel-details-tactics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.funnel-tactic-tag {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 12px;
  border-radius: 99px;
}

/* Capabilities / Digital Mastery Section */
.capabilities-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.capability-card {
  display: grid;
  grid-template-columns: 80px 240px 1fr;
  align-items: center;
  gap: 24px;
  background: var(--glass-1);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 24px 32px;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s, box-shadow 0.4s;
}
.capability-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.015), transparent 40%, transparent 60%, rgba(255,255,255,0.015));
  pointer-events: none;
}
.capability-card:hover {
  transform: translate3d(0, -4px, 0);
  border-color: var(--accent-color);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 20px var(--accent-glow);
}
.cap-number {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: rgba(255,255,255,0.07);
  transition: color 0.4s, text-shadow 0.4s;
}
.capability-card:hover .cap-number {
  color: var(--accent-color);
  text-shadow: 0 0 15px var(--accent-glow);
}
.cap-title {
  font-family: var(--font-brand);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.cap-subtitle {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.cap-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  border-left: 1px solid rgba(255,255,255,0.08);
  padding-left: 32px;
}
.capability-card:hover .cap-details span {
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
}

/* Responsive Capabilities */
@media (max-width: 768px) {
  .capability-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
    text-align: left;
  }
  .cap-details {
    grid-template-columns: 1fr;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-left: 0;
    padding-top: 16px;
  }
}

/* ─────────────────────────────────────────
   CUSTOM DISNEY MAGIC CURSOR
───────────────────────────────────────── */
@media (pointer: fine) {
  /* Hide standard cursor globally when a mouse pointer device is active */
  html, body, * {
    cursor: none !important;
  }
  #magic-cursor {
    position: fixed; inset: 0; pointer-events: none; z-index: 99999;
  }
  .magic-cursor-dot {
    position: absolute; width: 16px; height: 16px;
    display: flex; align-items: center; justify-content: center;
    color: var(--azure); font-size: 14px;
    transform: translate(-50%, -50%);
    text-shadow: 0 0 8px var(--azure), 0 0 16px rgba(14, 165, 233, 0.4);
    pointer-events: none;
    transition: transform 0.1s ease, color 0.2s;
  }
  .magic-cursor-ring {
    position: absolute; width: 36px; height: 36px;
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.3s, background 0.3s;
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.1), inset 0 0 10px rgba(14, 165, 233, 0.05);
  }
  
  /* Hover active interactive elements state */
  body.cursor-hover .magic-cursor-dot {
    color: var(--rose);
    transform: translate(-50%, -50%) scale(1.3) rotate(45deg);
    text-shadow: 0 0 10px var(--rose), 0 0 20px rgba(244, 63, 94, 0.5);
  }
  }
}

/* ─────────────────────────────────────────
   MAGICAL CLIENT WAITLIST
───────────────────────────────────────── */
.waitlist-card {
  position: relative;
  max-width: 800px;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(14, 165, 233, 0.16);
  background: rgba(3, 5, 12, 0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  text-align: center;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.65), 0 0 45px rgba(14,165,233,0.07);
}
.waitlist-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -20%, rgba(14, 165, 233, 0.18), transparent 70%);
  pointer-events: none;
  border-radius: 24px;
}
.waitlist-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 99px;
  background: rgba(52, 211, 153, 0.04);
  border: 1px solid rgba(52, 211, 153, 0.12);
  color: #34d399;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.waitlist-badge-icon {
  width: 12px; height: 12px;
  color: #34d399;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  animation: waitlist-icon-pulse 2s infinite ease-in-out;
}
@keyframes waitlist-icon-pulse {
  0%, 100% { filter: drop-shadow(0 0 2px rgba(52,211,153,0.4)); opacity: 0.85; transform: scale(1); }
  50% { filter: drop-shadow(0 0 6px rgba(52, 211, 153, 0.9)); opacity: 1; transform: scale(1.08); }
}
.waitlist-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}
.waitlist-desc {
  font-size: clamp(14px, 2vw, 16.5px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  max-width: 660px;
  margin: 0 auto 28px;
}
.waitlist-form {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.waitlist-input-group {
  display: flex;
  gap: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 6px 6px 18px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.waitlist-input-group:focus-within {
  border-color: rgba(14, 165, 233, 0.4);
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.15);
}
.waitlist-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: var(--font-display);
  font-size: 13.5px;
  min-width: 0;
}
.waitlist-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.waitlist-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 99px;
  border: none;
  background: linear-gradient(135deg, var(--azure), var(--violet-bright));
  color: #fff;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3);
  position: relative;
  overflow: hidden;
}
.waitlist-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.45);
  filter: brightness(1.1);
}
.waitlist-btn:active {
  transform: scale(0.98);
}
.waitlist-btn-icon {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}
.waitlist-btn:hover .waitlist-btn-icon {
  transform: rotate(90deg);
}

/* Responsive Waitlist */
@media (max-width: 600px) {
  .waitlist-card {
    padding: 28px 20px;
    border-radius: 20px;
  }
  .waitlist-badge {
    margin-bottom: 16px;
  }
  .waitlist-title {
    font-size: 20px;
  }
  .waitlist-desc {
    margin-bottom: 20px;
  }
  .waitlist-input-group {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    gap: 12px;
  }
  .waitlist-input-group:focus-within {
    box-shadow: none;
  }
  .waitlist-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 18px;
    border-radius: 99px;
    width: 100%;
    font-size: 13px;
    text-align: center;
  }
  .waitlist-input:focus {
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.15);
  }
  .waitlist-btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
  }
}

/* ── DESKTOP SCALING OVERRIDES ── */
@media (min-width: 1200px) {
  html {
    font-size: 18px; /* High-end desktop root sizing */
  }
}

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

/* ── MOBILE READABILITY & ACCESSIBILITY OVERRIDES ── */
@media (max-width: 768px) {
  html {
    font-size: 18.5px !important; /* Scale up all mobile text by default */
  }
  
  /* Services section: What's Included grid collapse to vertical stack to eliminate horizontal overflow */
  .included-grid {
    grid-template-columns: 1fr !important;
  }
  .included-grid .value-item {
    border-right: none !important;
    border-bottom: 1px solid var(--glass-border) !important;
    padding: 24px 0 !important;
  }
  .included-grid .value-item:last-child {
    border-bottom: none !important;
  }
  
  /* Comparison table: transform rows to stacked mobile comparison cards to avoid horizontal scroll */
  .compare-table, 
  .compare-table thead, 
  .compare-table tbody, 
  .compare-table tr, 
  .compare-table th, 
  .compare-table td {
    display: block !important;
    width: 100% !important;
  }
  .compare-table thead tr {
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
  }
  .compare-table tr {
    border-bottom: 2px solid var(--glass-border) !important;
    padding: 20px 16px !important;
    background: rgba(255, 255, 255, 0.01) !important;
  }
  .compare-table tr:last-child {
    border-bottom: none !important;
  }
  .compare-table td {
    border: none !important;
    padding: 10px 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    text-align: right !important;
    font-size: 1rem !important;
  }
  .compare-table td.col-us {
    color: var(--azure) !important;
    font-weight: 700 !important;
    background: rgba(14, 165, 233, 0.04) !important;
    border-left: 2px solid var(--azure) !important;
    padding-left: 10px !important;
    border-radius: 0 6px 6px 0 !important;
    margin: 4px 0 !important;
  }
  .compare-table td:not(.col-us):not(:first-child) {
    color: rgba(255, 255, 255, 0.4) !important;
  }
  .compare-table td::before {
    content: attr(data-label) !important;
    font-family: var(--font-mono) !important;
    font-size: 11px !important;
    color: rgba(255, 255, 255, 0.5) !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    letter-spacing: 0.12em !important;
    margin-right: 16px !important;
    text-align: left !important;
  }
  .compare-table td.col-us::before {
    color: var(--azure) !important;
    font-weight: 700 !important;
  }
  .compare-table td:first-child {
    font-family: var(--font-brand) !important;
    font-size: 13.5px !important;
    color: #fff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-bottom: 12px !important;
    margin-bottom: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    display: block !important;
    text-align: left !important;
  }
  .compare-table td:first-child::before {
    content: "Feature" !important;
    display: block !important;
    font-size: 9px !important;
    color: var(--azure) !important;
    letter-spacing: 0.2em !important;
    margin-bottom: 4px !important;
  }
  
  /* Mobile Navigation Menu Drawer adjustments */
  #mobile-menu a {
    color: #ffffff !important; /* Pure white navigation links for highest legibility */
    font-size: 13.5px !important; /* Larger size to read easily */
    letter-spacing: 0.12em !important;
  }
  
  /* Mobile Footer Centering and Contrast boosts */
  footer {
    padding: 32px 20px !important;
  }
  .footer-inner {
    flex-direction: column !important;
    text-align: center !important;
    gap: 20px !important;
  }
  .footer-brand-area {
    align-items: center !important;
  }
  .footer-links {
    justify-content: center !important;
    gap: 12px 20px !important;
  }
  .footer-copy {
    color: rgba(255, 255, 255, 0.3) !important;
    font-size: 10px !important;
    letter-spacing: 0.12em !important;
  }
  .footer-links a {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 10px !important;
    letter-spacing: 0.12em !important;
  }
  .footer-links a:hover {
    color: #fff !important;
  }

  /* Force all body copies, subtitles, subtexts, and card descriptions to be bright and highly legible */
  .section-sub,
  .hero-subtitle,
  .service-desc,
  .process-step-desc,
  .portfolio-desc,
  .ai-feature-desc,
  .pricing-desc,
  .guarantee-desc,
  .ai-service-card-desc,
  .anim-sandbox-desc,
  .ad-card-desc,
  .funnel-details-desc,
  .waitlist-desc,
  .value-desc,
  .testimonial-text,
  .faq-a-inner,
  .cta-banner-sub,
  .mission-item-desc {
    color: rgba(255, 255, 255, 0.9) !important; /* Force high-contrast, bright text */
    font-size: 1rem !important; /* Legible body size on phone screens */
    line-height: 1.65 !important;
  }
  
  /* Scale up metadata tags, pricing tiers, badges, processes, labels, and tag elements */
  .portfolio-tag,
  .pricing-tier,
  .ai-stat-label,
  .scroll-label,
  .pricing-badge,
  .guarantee-title,
  .process-step-title,
  .value-label,
  .testimonial-role,
  .ai-service-card-tags span,
  .compare-table th,
  .asset-detail-key,
  .section-badge,
  .waitlist-badge {
    color: rgba(255, 255, 255, 0.85) !important; /* High contrast white-silver labels */
    font-size: 12.5px !important; /* Legible label font size */
    letter-spacing: 0.18em !important;
  }
  
  /* Make lists, specifications, and comparison table items extra readable */
  .compare-table td,
  .asset-detail-val {
    color: #fff !important;
    font-size: 1rem !important;
  }
}

