/* ============================================================
   PORTFOLIO — style.css
   TechNest Studio | Digital Engineering Team
   ============================================================ */

/* ─── CSS Custom Properties ─── */
:root {
  --color-bg: #161f30;
  --color-bg-2: #1c263a;
  --color-bg-3: #24324c;
  --color-surface: #222f46;
  --color-surface-2: #2a3b56;
  --color-border: rgba(255, 255, 255, 0.09);
  --color-border-hover: rgba(255, 255, 255, 0.18);

  --color-white: #ffffff;
  --color-text: #f1f5f9;
  --color-text-muted: #94a3b8;
  --color-text-dim: #7888a0;

  --color-accent: #3b82f6;
  --color-accent-light: #60a5fa;
  --color-accent-dim: rgba(59, 130, 246, 0.12);
  --color-accent-glow: rgba(59, 130, 246, 0.25);

  --color-green: #4ade80;
  --color-green-dim: rgba(74, 222, 128, 0.12);
  --color-amber: #fbbf24;
  --color-purple: #a78bfa;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 28px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-accent: 0 4px 24px rgba(59, 130, 246, 0.25);

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  --container-width: 1180px;
  --container-pad: 1.5rem;

  --section-gap: 7rem;
  --header-height: 68px;

  --in-oklab: ;
  --in-oklch: ;
}

@supports (background: linear-gradient(in oklab, white, black)) {
  :root {
    --in-oklab: in oklab;
    --in-oklch: in oklch;
  }
}

/* ─── Scroll Progress Bar ─── */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #6366f1, #38bdf8, #4ade80);
  background-size: 300% 100%;
  animation: progressGlow 4s ease infinite;
  z-index: 1000;
  pointer-events: none;
  transition: width 0.08s linear;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.6), 0 0 4px rgba(99, 102, 241, 0.4);
}

@keyframes progressGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
input, select, textarea { font: inherit; }

::selection {
  background: var(--color-accent-glow);
  color: var(--color-white);
}

/* ─── Typography Scale ─── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--color-white);
  font-weight: 700;
}

/* ─── Container ─── */
.container {
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ─── Section Spacing ─── */
.section { padding-block: var(--section-gap); }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  background: var(--color-accent-dim);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 540px;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-subtitle { margin-inline: auto; }

.text-accent { color: var(--color-accent-light); }
.desktop-break { display: none; }

@media (min-width: 900px) { .desktop-break { display: block; } }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.9s ease;
  pointer-events: none;
}

.btn-primary:hover::before {
  left: 140%;
}

.btn-primary:hover {
  background: #2b70e4;
  transform: translateY(-2.5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35), 0 0 12px rgba(59, 130, 246, 0.2);
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(96, 165, 250, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-1.5px);
}

.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.875rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-icon { flex-shrink: 0; }

/* ─── Reveal animation ─── */
.reveal-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   NAVIGATION
============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-height);
  background: rgba(22, 31, 48, 0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition-slow), backdrop-filter var(--transition-slow), border-color var(--transition-slow);
}

.site-header.scrolled {
  background: rgba(22, 31, 48, 0.88);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--color-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-white);
  transition: color var(--transition-fast);
}

.nav-logo:hover { color: var(--color-accent-light); }

/* ─── 3D Brand Logo Treatment ─── */
.brand-logo-3d {
  perspective: 700px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  vertical-align: middle;
}

.logo-3d-inner {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  will-change: transform, filter;
}

.brand-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 0;
  border: none;
  background: transparent;
  flex-shrink: 0;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 12px rgba(168, 85, 247, 0.35));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  image-rendering: -webkit-optimize-contrast;
}

.logo-3d-glare {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.5) 0%, rgba(192, 132, 252, 0.2) 40%, transparent 70%);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translateZ(10px) scale(0.95);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-logo:hover .logo-3d-inner {
  transform: rotateY(12deg) rotateX(-6deg) scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 10px rgba(192, 132, 252, 0.35)) drop-shadow(0 0 6px rgba(56, 189, 248, 0.2));
}

.nav-logo:hover .logo-3d-glare {
  opacity: 0.65;
  transform: translateZ(12px) scale(1.02);
}

footer .brand-logo-img {
  width: 32px;
  height: 32px;
}

.logo-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--color-accent-dim);
  color: var(--color-accent-light);
  border: 1px solid rgba(59, 130, 246, 0.25);
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  margin-left: 0.4rem;
  vertical-align: middle;
}

.logo-mark {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg var(--in-oklch), var(--color-accent) 0%, #6366f1 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  flex-shrink: 0;
}

.logo-dot { color: var(--color-accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.04);
}

.nav-cta {
  background: var(--color-accent) !important;
  color: #fff !important;
  margin-left: 0.5rem;
  padding: 0.45rem 1rem;
  transition: background 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease !important;
}

.nav-cta:hover {
  background: #2563eb !important;
  transform: translateY(-1.5px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3), 0 0 10px rgba(59, 130, 246, 0.22);
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.mobile-menu-btn:hover { background: rgba(255, 255, 255, 0.06); }

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
  transform-origin: center;
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--header-height) 0 0 0;
  background: rgba(22, 31, 48, 0.97);
  backdrop-filter: blur(20px);
  z-index: 800;
  padding: 1.5rem;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

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

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  display: block;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.mobile-nav-link:hover { background: rgba(255, 255, 255, 0.06); color: var(--color-white); }

.mobile-nav-cta {
  background: var(--color-accent);
  color: #fff !important;
  text-align: center;
  margin-top: 0.75rem;
  font-weight: 600;
}

.mobile-nav-cta:hover { background: var(--color-accent-light) !important; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 3rem;
  overflow: hidden;
}

/* Hero Canvas Constellation */
.hero-particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

/* Background grid */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Glow effects */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: floatGlow1 16s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.14) 0%, transparent 70%);
  bottom: 0;
  left: -100px;
  animation: floatGlow2 20s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes floatGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-45px, 35px) scale(1.1); }
  100% { transform: translate(25px, -30px) scale(0.92); }
}

@keyframes floatGlow2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -35px) scale(1.12); }
  100% { transform: translate(-30px, 25px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 2rem;
}

/* Hero Staggered Cinematic Entrance */
.hero-entry-item {
  animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0s) backwards;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.availability-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(13, 24, 20, 0.7);
  border: 1px solid rgba(74, 222, 128, 0.28);
  padding: 0.4rem 0.95rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-green);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

/* ============================================================
   SIGNATURE MAGICAL STAGE: ✨ IMAGINE • BUILD • TRANSFORM
============================================================ */
.signature-magical-stage {
  position: relative;
  display: inline-block;
  perspective: 1000px;
  margin-bottom: 1.5rem;
  z-index: 10;
}

.magical-canvas {
  position: absolute;
  top: -24px;
  left: -30px;
  width: calc(100% + 60px);
  height: calc(100% + 48px);
  pointer-events: none;
  z-index: 3;
}

.magical-stage-card {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 260px;
  padding: 0.45rem 1.35rem;
  background: rgba(22, 31, 48, 0.72);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 100px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35), 0 0 12px rgba(168, 85, 247, 0.1);
  transform-style: preserve-3d;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.2s ease-out;
  cursor: default;
  user-select: none;
}

.magical-stage-card:hover {
  border-color: rgba(192, 132, 252, 0.42);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.4), 0 0 14px rgba(168, 85, 247, 0.16);
}

.magical-stage-glow {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(192, 132, 252, 0.15) 0%, rgba(59, 130, 246, 0.05) 50%, transparent 80%);
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.magical-sequence {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
}

/* Sequential Word Items */
.magical-word-item {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.94);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  filter: blur(5px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  will-change: opacity, transform, filter;
}

.magical-word-item.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  filter: blur(0);
}

.magical-word-item.exit {
  opacity: 0;
  transform: translate(-50%, -50%) scale(1.05);
  filter: blur(6px);
}

.word-emoji {
  font-size: 0.92rem;
  vertical-align: -0.05em;
  display: inline-block;
  flex-shrink: 0;
}

/* Word 1: ✨ IMAGINE */
.word-imagine {
  color: #f3e8ff;
  text-shadow: 0 0 10px rgba(192, 132, 252, 0.5);
}

.word-imagine .word-emoji {
  animation: sparkleTwinkle 1.8s ease-in-out infinite alternate;
}

.idea-light-emitter {
  position: absolute;
  inset: -6px;
  border-radius: 20px;
  background: radial-gradient(circle, rgba(192, 132, 252, 0.22), transparent 70%);
  opacity: 0;
  pointer-events: none;
}

.word-imagine.active .idea-light-emitter {
  animation: ideaPulse 1.4s ease-in-out infinite alternate;
}

@keyframes ideaPulse {
  0% { opacity: 0.2; transform: scale(0.95); }
  100% { opacity: 0.6; transform: scale(1.08); }
}

@keyframes sparkleTwinkle {
  0% { transform: scale(0.92) rotate(-6deg); filter: drop-shadow(0 0 3px rgba(250, 204, 21, 0.3)); }
  100% { transform: scale(1.12) rotate(6deg); filter: drop-shadow(0 0 8px rgba(250, 204, 21, 0.7)); }
}

/* Word 2: 🛠️ BUILD with structured wireframe lines */
.word-build {
  color: #e0f2fe;
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

.build-wireframe-lines {
  position: absolute;
  inset: -5px -10px;
  pointer-events: none;
}

.wire-h {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.6), transparent);
  transform: scaleX(0);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.wire-top { top: 0; }
.wire-bottom { bottom: 0; }

.wire-v {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(56, 189, 248, 0.6), transparent);
  transform: scaleY(0);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.08s;
}

.wire-left { left: 0; }
.wire-right { right: 0; }

.word-build.active .wire-h { transform: scaleX(1); }
.word-build.active .wire-v { transform: scaleY(1); }

.word-build.active .word-chars {
  background: linear-gradient(90deg, #93c5fd 0%, #ffffff 50%, #93c5fd 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: buildConstructSheen 1.6s ease infinite;
}

@keyframes buildConstructSheen {
  0% { background-position: -100% center; }
  100% { background-position: 200% center; }
}

/* Word 3: 🚀 TRANSFORM with radiating ripple rings */
.word-transform {
  color: #ede9fe;
  text-shadow: 0 0 10px rgba(168, 85, 247, 0.55);
}

.energy-expanding-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(168, 85, 247, 0.55);
  transform: translate(-50%, -50%) scale(0.2);
  opacity: 0;
  pointer-events: none;
}

.word-transform.active .energy-expanding-ring {
  animation: energyRingPulse 1.3s cubic-bezier(0.1, 0.8, 0.2, 1) infinite;
}

.word-transform.active .energy-expanding-ring.delay {
  animation-delay: 0.5s;
}

@keyframes energyRingPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.3);
    opacity: 0.65;
    border-color: rgba(192, 132, 252, 0.7);
  }
  100% {
    transform: translate(-50%, -50%) scale(2.6);
    opacity: 0;
    border-color: rgba(56, 189, 248, 0);
  }
}

.word-transform.active .word-chars {
  background: linear-gradient(110deg, #c084fc 0%, #ffffff 40%, #38bdf8 80%, #c084fc 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: transformGradientTravel 1.6s ease infinite;
}

@keyframes transformGradientTravel {
  0% { background-position: 0% center; }
  100% { background-position: 250% center; }
}

/* Final Complete Unified Phrase */
.magical-full-phrase {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transform: scale(0.95);
  filter: blur(4px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
  will-change: opacity, transform, filter;
  pointer-events: none;
}

.magical-full-phrase.active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  pointer-events: auto;
}

.phrase-item {
  display: inline-flex;
  align-items: center;
  transition: filter 0.35s ease, transform 0.35s ease;
}

.phrase-emoji {
  font-size: 0.85em;
  vertical-align: -0.05em;
  margin-right: 0.32rem;
  display: inline-block;
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.15));
  flex-shrink: 0;
}

.phrase-word {
  background: linear-gradient(135deg, #ffffff 15%, #d8b4fe 65%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.phrase-item-imagine:hover { filter: drop-shadow(0 0 5px rgba(192, 132, 252, 0.4)); transform: translateY(-1px); }
.phrase-item-build:hover { filter: drop-shadow(0 0 5px rgba(56, 189, 248, 0.4)); transform: translateY(-1px); }
.phrase-item-transform:hover { filter: drop-shadow(0 0 5px rgba(168, 85, 247, 0.4)); transform: translateY(-1px); }

/* Sequential soft glow during reveal */
.phrase-item.soft-glow-imagine { filter: drop-shadow(0 0 6px rgba(192, 132, 252, 0.5)); }
.phrase-item.soft-glow-build { filter: drop-shadow(0 0 6px rgba(56, 189, 248, 0.5)); }
.phrase-item.soft-glow-transform { filter: drop-shadow(0 0 6px rgba(168, 85, 247, 0.5)); }

.phrase-sep {
  color: rgba(168, 85, 247, 0.45);
  font-size: 0.72rem;
  margin: 0 0.1rem;
}

.phrase-breathing-aura {
  position: absolute;
  inset: -8px -18px;
  border-radius: 100px;
  background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.12) 0%, rgba(59, 130, 246, 0.05) 45%, transparent 75%);
  filter: blur(10px);
  z-index: -1;
  animation: breathingGlow 4.5s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes breathingGlow {
  0% {
    opacity: 0.3;
    transform: scale(0.97);
    filter: blur(8px);
  }
  100% {
    opacity: 0.6;
    transform: scale(1.03);
    filter: blur(12px);
  }
}

/* Footer motto phrase subtle pulse */
.footer-motto-phrase {
  display: inline-block;
  color: #c084fc;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  text-shadow: 0 0 10px rgba(192, 132, 252, 0.35);
}

.availability-badge:hover {
  border-color: rgba(74, 222, 128, 0.42);
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.12);
  transform: translateY(-1px);
}

.availability-dot {
  position: relative;
  width: 8px;
  height: 8px;
  background: var(--color-green);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

.availability-beacon {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  animation: beaconPing 2.4s cubic-bezier(0, 0, 0.2, 1) infinite;
  pointer-events: none;
}

@keyframes beaconPing {
  0% { transform: translateY(-50%) scale(1); opacity: 0.8; }
  75%, 100% { transform: translateY(-50%) scale(2.8); opacity: 0; }
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  50% { box-shadow: 0 0 0 5px rgba(74, 222, 128, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .availability-dot,
  .availability-beacon,
  .hero-entry-item {
    animation: none;
  }
}

.hero-headline {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  max-width: 780px;
}

.headline-line {
  display: inline-block;
}

/* Kinetic Word Rotator */
.headline-rotator-container {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: nowrap;
}

.headline-prefix {
  white-space: pre;
}

.headline-rotator {
  display: inline-block;
  position: relative;
  height: 1.18em;
  vertical-align: bottom;
  overflow: hidden;
  min-width: 270px;
}

.rotator-word {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(110%) rotateX(-55deg);
  transform-origin: 50% 100%;
  filter: blur(6px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
  will-change: transform, opacity, filter;
}

.rotator-word.active {
  opacity: 1;
  transform: translateY(0%) rotateX(0deg);
  filter: blur(0);
  position: relative;
}

.rotator-word.exit {
  opacity: 0;
  transform: translateY(-110%) rotateX(55deg);
  transform-origin: 50% 0%;
  filter: blur(6px);
}

.headline-accent {
  background: linear-gradient(135deg, #60a5fa 0%, #818cf8 35%, #c084fc 70%, #60a5fa 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: headlineShimmer 7s linear infinite;
}

@keyframes headlineShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 250% center; }
}

.hero-subheadline {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--color-text-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 2.25rem;
}

.hero-tagline-lead {
  display: block;
  font-weight: 600;
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  line-height: 1.5;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff 40%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Tagline Reveal & Light Sweep ─── */
.hero-tagline-reveal {
  display: block;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px);
  filter: blur(5px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
  margin-bottom: 0.6rem;
  border-radius: 4px;
}

.hero-tagline-reveal.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.tagline-text {
  display: inline-block;
  font-weight: 600;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.45;
  background: linear-gradient(135deg, #ffffff 40%, #c084fc 80%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline-shimmer-sweep {
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
  transform: skewX(-25deg);
  pointer-events: none;
}

.hero-tagline-reveal.active .tagline-shimmer-sweep {
  animation: sweepLight 1.6s cubic-bezier(0.2, 0, 0, 1) 0.3s forwards;
}

@keyframes sweepLight {
  0% { left: -120%; }
  100% { left: 180%; }
}

.hero-subtext {
  display: block;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: var(--color-text-muted);
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.95rem;
  margin-bottom: 2.5rem;
}

.hero-cta-group .btn { font-size: 1rem; padding: 0.85rem 1.75rem; }

/* ─── Hero CTA Buttons: Refined Animations & Glows ─── */
.btn-hero-discuss {
  position: relative;
  z-index: 1;
  background: var(--color-accent);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35), 0 0 10px rgba(59, 130, 246, 0.15);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, background-color 0.3s ease;
  overflow: hidden;
}

/* Occasional subtle light sweep across button */
.btn-hero-discuss::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.14) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
  animation: btnOccasionalSweep 5.5s cubic-bezier(0.2, 0, 0, 1) infinite;
}

@keyframes btnOccasionalSweep {
  0%, 75% { left: -120%; }
  90%, 100% { left: 160%; }
}

.btn-glow-pulse {
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.16), transparent 70%);
  animation: btnPulseAura 3.2s ease-in-out infinite alternate;
  z-index: -1;
  pointer-events: none;
}

@keyframes btnPulseAura {
  0% { opacity: 0.25; transform: scale(0.97); }
  100% { opacity: 0.55; transform: scale(1.04); }
}

.btn-hero-discuss .btn-arrow-icon {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-hero-discuss:hover {
  transform: translateY(-2.5px);
  background-color: #2563eb;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), 0 0 14px rgba(59, 130, 246, 0.22);
}

.btn-hero-discuss:hover .btn-arrow-icon {
  transform: translateX(4px);
}

/* Secondary CTA: View Our Work */
.hero-btn-secondary {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
  overflow: hidden;
}

.hero-btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(96, 165, 250, 0.35);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), 0 0 10px rgba(59, 130, 246, 0.1);
  color: var(--color-white);
}

.hero-tech-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0;
  font-size: 0.82rem;
  color: var(--color-text-dim);
}

.hero-tech-strip span { padding: 0 0.5rem; }
.tech-divider { color: var(--color-border-hover); }

/* Hero Visual */
.hero-visual-wrapper {
  position: relative;
  z-index: 1;
  margin-top: 4rem;
  perspective: 1200px;
}

.hero-mockup {
  position: relative;
  max-width: 860px;
  margin-inline: auto;
  transform-style: preserve-3d;
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* Browser Mockup */
.mockup-browser {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(59, 130, 246, 0.08);
}

.mockup-browser-bar {
  background: var(--color-surface-2);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}

.mockup-traffic-lights {
  display: flex;
  gap: 6px;
}

.mockup-traffic-lights span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.mockup-traffic-lights span:nth-child(1) { background: #ff6b6b; }
.mockup-traffic-lights span:nth-child(2) { background: #ffd93d; }
.mockup-traffic-lights span:nth-child(3) { background: #6bcb77; }

.mockup-url-bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  max-width: 300px;
}

.mockup-browser-content {
  padding: 0;
  background: #1a2438;
}

/* Simulated site content inside browser */
.sim-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
}

.sim-logo-bar {
  width: 80px;
  height: 10px;
  background: var(--color-accent);
  border-radius: 100px;
  opacity: 0.7;
}

.sim-nav-links {
  display: flex;
  gap: 12px;
}

.sim-nav-links span {
  width: 36px;
  height: 6px;
  background: rgba(255,255,255,0.12);
  border-radius: 100px;
}

.sim-hero {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 1.5rem 1.5rem;
}

.sim-headline-block { flex: 1; }

.sim-line {
  background: rgba(255,255,255,0.12);
  border-radius: 100px;
  margin-bottom: 8px;
}
.sim-line.sim-line-xl { height: 14px; width: 90%; }
.sim-line.sim-line-lg { height: 14px; width: 70%; }
.sim-line.sim-line-md { height: 8px; width: 55%; margin-top: 12px; }
.sim-line.sim-line-sm { height: 7px; width: 80%; }
.sim-line.sim-line-xs { height: 6px; width: 60%; }

.sim-btn-group { display: flex; gap: 8px; margin-top: 14px; }

.sim-btn {
  height: 24px;
  border-radius: 6px;
}
.sim-btn-primary { width: 80px; background: var(--color-accent); opacity: 0.8; }
.sim-btn-outline { width: 64px; background: transparent; border: 1px solid rgba(255,255,255,0.2); }

.sim-hero-visual { flex: 1; }

.sim-card-grid { display: flex; flex-direction: column; gap: 8px; }

.sim-stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sim-stat-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--color-accent-dim);
  flex-shrink: 0;
}
.sim-icon-green { background: var(--color-green-dim); }
.sim-icon-purple { background: rgba(167, 139, 250, 0.12); }

.sim-stat-lines { flex: 1; }

/* Floating Dashboard Panel */
.mockup-dashboard {
  position: absolute;
  top: -20px;
  right: -40px;
  width: 240px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-lg), 0 16px 36px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  transform: translateZ(28px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-mockup:hover .mockup-dashboard {
  transform: translateZ(36px) translateY(-3px);
  box-shadow: var(--shadow-lg), 0 24px 44px rgba(0, 0, 0, 0.5);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}

.dashboard-title { font-size: 0.78rem; font-weight: 600; color: var(--color-white); }

.dashboard-badge {
  font-size: 0.65rem;
  background: var(--color-green-dim);
  color: var(--color-green);
  padding: 0.15rem 0.45rem;
  border-radius: 100px;
  border: 1px solid rgba(74, 222, 128, 0.2);
  font-weight: 600;
}

.dashboard-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  font-size: 0.78rem;
}

.dashboard-label { color: var(--color-text-muted); }
.dashboard-value { font-weight: 700; font-size: 0.88rem; }
.dashboard-value.accent { color: var(--color-accent-light); }
.dashboard-value.warning { color: var(--color-amber); }
.dashboard-value.success { color: var(--color-green); }

.dashboard-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 50px;
  margin-top: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--color-border);
}

.chart-bar {
  flex: 1;
  height: 0;
  background: rgba(59, 130, 246, 0.25);
  border-radius: 3px 3px 0 0;
  transition: height 1s cubic-bezier(0.34, 1.56, 0.64, 1), background var(--transition-fast);
}

.chart-bar.animated {
  height: var(--h);
}

.chart-bar.active { background: var(--color-accent); }

/* Floating notification */
.mockup-notification {
  position: absolute;
  bottom: -18px;
  left: -30px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-md);
  animation: float-notif 4s ease-in-out infinite;
}

@keyframes float-notif {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (prefers-reduced-motion: reduce) {
  .mockup-notification { animation: none; }
}

.notif-icon { font-size: 1.2rem; }

.notif-title { font-size: 0.75rem; font-weight: 600; color: var(--color-white); }
.notif-sub { font-size: 0.68rem; color: var(--color-text-muted); }

/* Responsive hero visual */
@media (max-width: 900px) {
  .mockup-dashboard { right: -10px; top: -10px; width: 200px; }
  .mockup-notification { left: -10px; bottom: -10px; }
}

@media (max-width: 640px) {
  .mockup-dashboard { display: none; }
  .mockup-notification { display: none; }
}

/* ============================================================
   ABOUT
============================================================ */
.about { background: var(--color-bg-2); }

.about-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 4rem;
  align-items: start;
}

/* Team visual card */
.team-card-visual {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.team-card-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #38bdf8, #6366f1, #a855f7);
}

.team-badge-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.team-emblem-small {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(168, 85, 247, 0.35);
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(168, 85, 247, 0.25);
}

.team-title-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
  font-family: var(--font-display);
}

.team-sub-text {
  font-size: 0.78rem;
  color: var(--color-accent-light);
  font-weight: 500;
}

.team-roles-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.team-role-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.85rem;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.team-role-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(59, 130, 246, 0.25);
}

.role-icon-box {
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.role-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-white);
}

.role-desc {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin-top: 1px;
}

.avatar-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
  margin-bottom: 2rem;
}

.avatar-placeholder {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--color-bg-3);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.avatar-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(59, 130, 246, 0.3);
  animation: spin-slow 20s linear infinite;
}

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

@media (prefers-reduced-motion: reduce) {
  .avatar-ring { animation: none; }
}

.about-tags {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.about-tag:hover {
  border-color: var(--color-border-hover);
  background: var(--color-surface-2);
}

.tag-icon { font-size: 1.1rem; flex-shrink: 0; }
.tag-label { font-size: 0.7rem; color: var(--color-text-dim); text-transform: uppercase; letter-spacing: 0.05em; }
.tag-value { font-size: 0.85rem; font-weight: 600; color: var(--color-white); }

.about-magical-motto {
  margin: 1.25rem 0 1.5rem;
  padding: 0.85rem 1.15rem;
  background: linear-gradient(135deg, rgba(34, 47, 70, 0.55) 0%, rgba(168, 85, 247, 0.1) 100%);
  border-left: 3px solid #a855f7;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.about-magical-motto .motto-badge-small {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c084fc;
  margin-bottom: 0.25rem;
}

.about-magical-motto .motto-quote {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.5;
  margin: 0;
}

.about-text {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

.tech-group-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-dim);
  margin-bottom: 0.6rem;
}

.tech-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.chip {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 500;
  background: var(--color-accent-dim);
  color: var(--color-accent-light);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 100px;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .avatar-wrapper { margin-inline: auto; }
  .about-tags { flex-direction: row; flex-wrap: wrap; }
  .about-tag { flex: 1 1 calc(50% - 0.4rem); }
  .about-tech-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .about-tag { flex: 1 1 100%; }
  .about-tech-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICES
============================================================ */
.services { background: var(--color-bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  cursor: default;
}

.service-card:hover {
  border-color: rgba(59, 130, 246, 0.22);
  background: var(--color-surface-2);
  transform: translateY(-2.5px);
  box-shadow: var(--shadow-md), 0 0 12px rgba(59, 130, 246, 0.03);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--color-accent-dim);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-light);
  margin-bottom: 1.25rem;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.service-card:hover .service-icon {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.3);
}

.service-title { font-size: 1.05rem; margin-bottom: 0.6rem; }
.service-desc { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.7; margin-bottom: 1.25rem; }

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.service-tags span {
  font-size: 0.72rem;
  padding: 0.2rem 0.6rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  color: var(--color-text-muted);
}

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ============================================================
   WHO I WORK WITH
============================================================ */
.who-section { background: var(--color-bg-2); }

.who-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.who-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: border-color 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.who-card:hover {
  border-color: rgba(59, 130, 246, 0.22);
  transform: translateY(-2.5px);
  box-shadow: var(--shadow-md), 0 0 12px rgba(59, 130, 246, 0.03);
}

.who-emoji { font-size: 2.2rem; margin-bottom: 0.85rem; }
.who-title { font-size: 0.95rem; margin-bottom: 0.5rem; }
.who-desc { font-size: 0.82rem; color: var(--color-text-muted); line-height: 1.6; }

@media (max-width: 1000px) { .who-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .who-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .who-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PROJECTS
============================================================ */
.projects { background: var(--color-bg); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.project-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.project-card:hover {
  border-color: rgba(59, 130, 246, 0.22);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), 0 0 16px rgba(59, 130, 246, 0.04);
}

.project-image {
  background: var(--color-bg-3);
  padding: 1.25rem;
  border-bottom: 1px solid var(--color-border);
  height: 220px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-mockup {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #1a2438;
  display: flex;
  flex-direction: column;
  font-size: 0.7rem;
}

.pm-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.65rem;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.pm-dots { display: flex; gap: 4px; }
.pm-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.pm-dots span:nth-child(1) { background: #ff6b6b; }
.pm-dots span:nth-child(2) { background: #ffd93d; }
.pm-dots span:nth-child(3) { background: #6bcb77; }

.pm-url { font-size: 0.6rem; color: rgba(255,255,255,0.3); flex: 1; }

.pm-content { flex: 1; overflow: hidden; }

.pm-nav-strip {
  height: 28px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.blue-nav { background: rgba(59, 130, 246, 0.12); }

.pm-hero-block { padding: 0.75rem; }
.dark-hero { background: rgba(59, 130, 246, 0.05); }

.pm-heading-group { margin-bottom: 0.75rem; }

.pm-line {
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  margin-bottom: 5px;
}
.pm-line.big { height: 10px; width: 90%; }
.pm-line.med { height: 8px; width: 65%; }
.pm-line.sm { height: 6px; width: 70%; }
.pm-line.xs { height: 5px; width: 55%; }
.orange-line { background: rgba(251, 191, 36, 0.4); }
.blue-line { background: rgba(59, 130, 246, 0.5); }
.green-line { background: rgba(74, 222, 128, 0.5); }
.purple-line { background: rgba(167, 139, 250, 0.5); }

.pm-card-row {
  display: flex;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem 0.75rem;
}

.pm-eq-card {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 0.5rem 0.4rem;
  text-align: center;
}

.pm-eq-icon { font-size: 1rem; margin-bottom: 4px; }

/* Project 2 — ClipOwn */
.pm-search-box {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
}
.pm-search-input {
  flex: 1;
  height: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
}
.pm-search-btn {
  width: 36px;
  height: 20px;
  background: var(--color-accent);
  border-radius: 4px;
  opacity: 0.8;
}

.pm-media-preview {
  display: flex;
  gap: 0.5rem;
}
.pm-video-thumb {
  width: 60px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  flex-shrink: 0;
}
.pm-dl-options { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.pm-dl-row { display: flex; align-items: center; gap: 4px; }
.pm-dl-chip {
  font-size: 0.55rem;
  padding: 2px 5px;
  background: var(--color-accent);
  border-radius: 3px;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
  opacity: 0.85;
}

/* Project 3 — Dashboard */
.pm-content.has-sidebar {
  display: flex;
}

.pm-sidebar {
  width: 40px;
  background: rgba(255,255,255,0.03);
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 0.5rem 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}

.pm-sidebar-item {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
}
.active-item { background: var(--color-accent); opacity: 0.8; }

/* Project 3 layout fix — sidebar inside pm-content */
.project-mockup-3 .pm-content {
  display: flex;
}

.pm-main-content { flex: 1; padding: 0.5rem; }

.pm-stat-row { display: flex; gap: 5px; margin-bottom: 0.4rem; }
.pm-stat-box {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 5px;
  padding: 5px;
}

.pm-table { background: rgba(255,255,255,0.02); border-radius: 4px; overflow: hidden; }
.pm-table-header { height: 14px; background: rgba(255,255,255,0.06); margin-bottom: 2px; }
.pm-table-row {
  height: 10px;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.project-content { padding: 1.5rem; }
.project-category {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent-light);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.project-title { font-size: 1.05rem; margin-bottom: 0.6rem; }
.project-desc { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.65; margin-bottom: 1rem; }

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.project-tech span {
  font-size: 0.72rem;
  padding: 0.2rem 0.6rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  color: var(--color-text-muted);
}

.project-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }

@media (max-width: 1000px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .projects-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PROCESS
============================================================ */
.process {
  background: var(--color-bg-2);
  position: relative;
  overflow: hidden;
}

.process-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 1.75rem 1.4rem 2rem;
  background: linear-gradient(170deg, rgba(34, 47, 70, 0.75) 0%, rgba(26, 36, 56, 0.88) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
}

.process-step:hover {
  border-color: rgba(96, 165, 250, 0.3);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.5), 0 0 16px rgba(59, 130, 246, 0.08);
  transform: translateY(-4px);
}

/* Step 01 Discuss Highlight */
.process-step-discuss {
  border-color: rgba(96, 165, 250, 0.28);
  background: linear-gradient(175deg, rgba(38, 54, 88, 0.8) 0%, rgba(26, 36, 56, 0.92) 100%);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.45), 0 0 18px rgba(59, 130, 246, 0.08);
}

/* Symmetrical Phase Badge Wrappers - Fixes overlap & clipping permanently */
.step-badge-wrap {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.discuss-step-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25), rgba(124, 58, 237, 0.25));
  border: 1px solid rgba(96, 165, 250, 0.42);
  color: #93c5fd;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.8rem;
  border-radius: 9999px;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
  white-space: nowrap;
  animation: badgeGlowPulse 3s ease-in-out infinite alternate;
}

.discuss-step-badge .badge-dot-live {
  width: 7px;
  height: 7px;
  background: #38bdf8;
  box-shadow: 0 0 6px #38bdf8;
  border-radius: 50%;
  animation: pulseLiveDot 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

.step-sub-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
  padding: 0.22rem 0.65rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.process-step:hover .step-sub-badge {
  color: #94a3b8;
  border-color: rgba(96, 165, 250, 0.25);
  background: rgba(59, 130, 246, 0.06);
}

@keyframes badgeGlowPulse {
  0% { box-shadow: 0 0 6px rgba(59, 130, 246, 0.15); transform: scale(1); }
  100% { box-shadow: 0 0 14px rgba(124, 58, 237, 0.28); transform: scale(1.02); }
}

/* Step Icons with Distinct Dynamic Animations */
.discuss-step-icon {
  display: inline-block;
  animation: discussIconBounce 3.2s ease-in-out infinite;
}
@keyframes discussIconBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-7px) scale(1.1); filter: drop-shadow(0 4px 14px rgba(59, 130, 246, 0.5)); }
}

.plan-step-icon {
  display: inline-block;
  animation: planIconPulse 3.6s ease-in-out infinite;
}
@keyframes planIconPulse {
  0%, 100% { transform: rotate(0deg) scale(1); }
  30% { transform: rotate(-5deg) scale(1.08); }
  70% { transform: rotate(5deg) scale(1.08); }
}

.build-step-icon {
  display: inline-block;
  animation: buildGearTurn 8s linear infinite;
  transform-origin: center;
}
@keyframes buildGearTurn {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.launch-step-icon {
  display: inline-block;
  animation: launchRocketFloat 3s ease-in-out infinite;
}
@keyframes launchRocketFloat {
  0%, 100% { transform: translateY(0) translateX(0) scale(1); }
  50% { transform: translateY(-7px) translateX(3px) scale(1.12); filter: drop-shadow(-3px 6px 14px rgba(244, 63, 94, 0.45)); }
}

.process-connector {
  width: 36px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  align-self: center;
  flex-shrink: 0;
  margin-top: 15px;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.process-connector-pulse::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #38bdf8 40%, #818cf8 80%, transparent);
  animation: connectorFlow 2.2s ease-in-out infinite;
}

@keyframes connectorFlow {
  0% { left: -100%; }
  100% { left: 200%; }
}

.step-number {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.12);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  border: 1px solid rgba(96, 165, 250, 0.3);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.process-step:hover .step-number {
  color: #ffffff;
  background: #2563eb;
  border-color: rgba(96, 165, 250, 0.6);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.25);
  transform: scale(1.04);
}

.step-icon { font-size: 1.85rem; margin-bottom: 0.75rem; }
.step-title { font-size: 1.1rem; margin-bottom: 0.5rem; color: #ffffff; }
.step-desc { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.65; margin: 0; }

@media (max-width: 900px) {
  .process-steps { flex-direction: column; align-items: center; }
  .process-connector { width: 3px; height: 30px; margin: 0; }
  .process-connector-pulse::after {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, #38bdf8 40%, #818cf8 80%, transparent);
    animation: connectorFlowV 2.2s ease-in-out infinite;
  }
  @keyframes connectorFlowV {
    0% { top: -100%; left: 0; }
    100% { top: 200%; left: 0; }
  }
  .process-step { width: 100%; max-width: 480px; }
}

/* ============================================================
   WHY SECTION
============================================================ */
.why-section { background: var(--color-bg); }

.why-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: start;
}

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

.why-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  transition: border-color var(--transition-base), background var(--transition-base);
}

.why-item:hover {
  border-color: rgba(59, 130, 246, 0.25);
  background: var(--color-surface-2);
}

.why-icon {
  width: 38px;
  height: 38px;
  background: var(--color-accent-dim);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-light);
  flex-shrink: 0;
}

.why-title { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.3rem; }
.why-desc { font-size: 0.82rem; color: var(--color-text-muted); line-height: 1.55; }

@media (max-width: 1000px) {
  .why-inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) { .why-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PRICING
============================================================ */
.pricing { background: var(--color-bg-2); }

.pricing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.pricing-text { font-size: 1rem; color: var(--color-text-muted); line-height: 1.75; margin-bottom: 1rem; }

.pricing-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.pricing-card-title { font-size: 1rem; margin-bottom: 1.25rem; }

.pricing-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-checklist li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.pricing-checklist li svg { flex-shrink: 0; }

@media (max-width: 768px) { .pricing-inner { grid-template-columns: 1fr; } }

/* ============================================================
   DISCUSS PROJECT / CONTACT (Modernized)
============================================================ */
.contact {
  position: relative;
  background: var(--color-bg);
  overflow: hidden;
  padding: 6rem 0;
}

/* Ambient glow orbs in the background */
.discuss-ambient-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.discuss-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.4;
  animation: orbFloat 14s ease-in-out infinite alternate;
}

.discuss-glow-orb.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
  top: -120px;
  left: -100px;
}

.discuss-glow-orb.orb-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.16) 0%, transparent 70%);
  bottom: -80px;
  right: -80px;
  animation-duration: 18s;
  animation-delay: -5s;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(45px, 35px) scale(1.08); }
  100% { transform: translate(-35px, 50px) scale(0.94); }
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-text {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

/* Modern Trust Perks */
.discuss-perks {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.discuss-perk {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.discuss-perk:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(96, 165, 250, 0.25);
  transform: translateX(3px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.perk-icon {
  font-size: 1.15rem;
  flex-shrink: 0;
}

.perk-text {
  font-size: 0.85rem;
  color: #cbd5e1;
  font-weight: 500;
}

/* Modern Contact Action Cards */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.contact-method::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent);
  transform: skewX(-20deg);
  transition: left 0.65s ease;
  pointer-events: none;
}

.contact-method:hover::before {
  left: 140%;
}

.contact-method:hover {
  border-color: rgba(96, 165, 250, 0.28);
  background: rgba(255, 255, 255, 0.04);
  transform: translateX(3px);
  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.28), 0 0 12px rgba(59, 130, 246, 0.08);
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.contact-method:hover .contact-method-icon {
  transform: scale(1.08);
}

.whatsapp-icon {
  background: rgba(74, 222, 128, 0.12);
  color: var(--color-green);
  border: 1px solid rgba(74, 222, 128, 0.3);
  box-shadow: 0 0 16px rgba(74, 222, 128, 0.2);
}

.email-icon {
  background: rgba(59, 130, 246, 0.12);
  color: var(--color-accent-light);
  border: 1px solid rgba(59, 130, 246, 0.3);
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.2);
}

.contact-method-label {
  font-size: 0.72rem;
  color: var(--color-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.contact-method-value {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--color-white);
}

.contact-header-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.contact-header-wrap .section-label {
  margin-bottom: 0;
}

.contact-availability {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: #86efac;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.25);
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  backdrop-filter: blur(8px);
}

.contact-availability .availability-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: pulseLiveDot 1.4s ease-in-out infinite;
}

/* Contact Form */
.contact-form-wrapper {
  position: relative;
  background: linear-gradient(165deg, rgba(30, 42, 65, 0.82) 0%, rgba(22, 31, 48, 0.92) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-2xl);
  padding: 2.25rem;
  overflow: hidden;
  box-shadow: 0 20px 45px -12px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

/* Subtle glowing accent line at the top of form card */
.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.6), rgba(168, 85, 247, 0.5), transparent);
  opacity: 0.5;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* Soft, balanced hover state without harsh contrast or glaring spotlights */
.contact-form-wrapper:hover {
  border-color: rgba(96, 165, 250, 0.18);
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.5), 0 0 16px -6px rgba(59, 130, 246, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-form-wrapper:hover::before {
  opacity: 1;
}

.confetti-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 25;
  border-radius: inherit;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  position: relative;
  z-index: 2;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.contact-form.form-hidden {
  display: none !important;
}

.form-row { display: flex; gap: 1rem; }
.form-row-2 > * { flex: 1; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  transition: transform 0.25s ease;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #cbd5e1;
  transition: color 0.25s ease, transform 0.25s ease;
}

.form-field:focus-within label {
  color: #93c5fd;
}

.required { color: #60a5fa; }

/* Soft frosted glass inputs - eliminating harsh jet-black contrast */
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-sm);
  padding: 0.72rem 0.95rem;
  color: #f1f5f9;
  font-size: 0.9rem;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  outline: none;
  width: 100%;
  font-family: inherit;
  box-sizing: border-box;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(148, 163, 184, 0.55);
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%2394a3b8' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-field select option {
  background: #1e293b;
  color: #f8fafc;
}

/* Input Hover: smooth gentle lift, subtle glow, refined feel */
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(96, 165, 250, 0.25);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

/* Input Focus: crisp modern focus ring */
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: rgba(30, 41, 59, 0.88);
  border-color: #60a5fa;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.22), 0 6px 20px -4px rgba(59, 130, 246, 0.25);
  transform: translateY(-1px);
}

.form-field input:user-valid,
.form-field textarea:user-valid {
  border-color: rgba(74, 222, 128, 0.45);
}

.form-field input:user-invalid,
.form-field textarea:user-invalid {
  border-color: rgba(248, 113, 113, 0.5);
}

.form-field textarea { resize: vertical; min-height: 110px; }

/* Interactive Submit Button with Shimmer */
#submit-btn {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #1d4ed8 100%);
  background-size: 200% auto;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35), 0 0 10px rgba(37, 99, 235, 0.2);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

#submit-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -80%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    60deg,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0) 80%
  );
  transform: rotate(25deg);
  transition: none;
  pointer-events: none;
}

#submit-btn:hover:not(:disabled)::after {
  left: 130%;
  transition: left 0.85s ease-in-out;
}

#submit-btn:hover:not(:disabled) {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px -4px rgba(0, 0, 0, 0.4), 0 0 14px rgba(59, 130, 246, 0.22);
}

#submit-btn:active:not(:disabled) {
  transform: translateY(0);
}

/* Form alternative direct actions */
.form-alt-section {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.form-alt-label {
  font-size: 0.75rem;
  color: var(--color-text-dim);
  text-align: center;
}

.form-alt-buttons {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
}

.form-alt-buttons .btn {
  flex: 1;
  font-size: 0.82rem;
  padding: 0.55rem 0.85rem;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: all 0.25s ease;
}

.form-alt-buttons .btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(96, 165, 250, 0.3);
  transform: translateY(-1px);
}

/* Submit Button Loading & Spinner */
.btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spinRing 0.75s linear infinite;
  margin-right: 0.5rem;
  vertical-align: middle;
  flex-shrink: 0;
}

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

.btn-submitting {
  opacity: 0.85 !important;
  cursor: wait !important;
  pointer-events: none;
}

/* ============================================================
   NEAT GREEN ANIMATED SUCCESS CELEBRATION SCREEN
============================================================ */
.form-success-container {
  position: relative;
  z-index: 10;
}

.form-success-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.75rem 1.75rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(170deg, rgba(14, 38, 25, 0.92) 0%, rgba(8, 22, 16, 0.97) 100%);
  border: 1.5px solid rgba(74, 222, 128, 0.45);
  box-shadow: 
    0 24px 50px -10px rgba(0, 0, 0, 0.7),
    0 0 55px -10px rgba(74, 222, 128, 0.3),
    inset 0 1px 0 rgba(74, 222, 128, 0.35);
  position: relative;
  overflow: hidden;
  animation: successCardSpring 0.65s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes successCardSpring {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(24px);
  }
  60% {
    opacity: 1;
    transform: scale(1.02) translateY(-4px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.success-glow-halo {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 200px;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.25) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  animation: successHaloBreath 3.5s ease-in-out infinite alternate;
}

@keyframes successHaloBreath {
  0% { opacity: 0.45; transform: translateX(-50%) scale(0.9); }
  100% { opacity: 1; transform: translateX(-50%) scale(1.2); }
}

.success-icon-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-ring-ripple {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(74, 222, 128, 0.65);
  animation: successRipple 2.2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  pointer-events: none;
}

.success-ring-ripple.delay {
  animation-delay: 0.75s;
}

@keyframes successRipple {
  0% {
    transform: scale(0.65);
    opacity: 0.95;
  }
  100% {
    transform: scale(1.75);
    opacity: 0;
  }
}

/* Animated SVG Checkmark for Success Feedback */
.success-checkmark-svg {
  width: 72px;
  height: 72px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 18px rgba(74, 222, 128, 0.6));
}

.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2.5;
  stroke-miterlimit: 10;
  stroke: #4ade80;
  fill: rgba(74, 222, 128, 0.12);
  animation: strokeCircle 0.65s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke: #4ade80;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: strokeCheck 0.4s cubic-bezier(0.65, 0, 0.45, 1) 0.45s forwards;
}

@keyframes strokeCircle {
  100% { stroke-dashoffset: 0; }
}

@keyframes strokeCheck {
  100% { stroke-dashoffset: 0; }
}

/* Prominent green badge pill requested by user */
.success-badge-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.6rem 1.15rem;
  background: rgba(74, 222, 128, 0.14);
  border: 1px solid rgba(74, 222, 128, 0.45);
  border-radius: 14px;
  color: #86efac;
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 1.15rem;
  box-shadow: 0 4px 18px rgba(74, 222, 128, 0.18);
  animation: successBadgePulse 2.6s ease-in-out infinite;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.badge-pill-text {
  display: inline;
  text-align: center;
}

.success-target-email {
  color: #4ade80;
  font-weight: 700;
  display: inline;
  word-break: break-all;
}

.badge-dot-live {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 10px #4ade80, 0 0 20px #4ade80;
  animation: pulseLiveDot 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulseLiveDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.8); }
}

@keyframes successBadgePulse {
  0%, 100% { border-color: rgba(74, 222, 128, 0.5); box-shadow: 0 4px 18px rgba(74, 222, 128, 0.2); }
  50% { border-color: rgba(74, 222, 128, 0.8); box-shadow: 0 4px 26px rgba(74, 222, 128, 0.4); }
}

.success-heading {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

.success-message {
  font-size: 0.95rem;
  color: #cbd5e1;
  max-width: 440px;
  line-height: 1.6;
  margin-bottom: 1.35rem;
}

.success-message strong {
  color: #ffffff;
}

.success-client-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1.6rem;
  max-width: 440px;
}

.summary-chip {
  font-size: 0.82rem;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #94a3b8;
}

.summary-chip strong {
  color: #e2e8f0;
}

.success-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 420px;
}

.btn-success-wa {
  background: #22c55e !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 6px 20px -3px rgba(34, 197, 94, 0.45) !important;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease !important;
  text-decoration: none;
}

.btn-success-wa:hover {
  background: #16a34a !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -4px rgba(34, 197, 94, 0.6) !important;
}

.btn-reset-form {
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-reset-form:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Fallback status cards for offline or errors */
.form-status-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  border-radius: var(--radius-md);
  padding: 1.15rem 1.35rem;
  margin-top: 1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.form-status-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.form-status-card .status-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.form-status-card.form-info,
.form-status-card.form-fallback {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: #e2e8f0;
}
.form-status-card.form-info strong,
.form-status-card.form-fallback strong {
  color: var(--color-accent-light);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
}

@media (max-width: 560px) {
  .form-row { flex-direction: column; }
  .contact-form-wrapper {
    padding: 1.35rem 1rem;
    border-radius: var(--radius-lg);
  }
  .form-success-overlay {
    padding: 1.85rem 1rem;
    border-radius: var(--radius-lg);
  }
  .success-icon-wrap {
    width: 66px;
    height: 66px;
    margin-bottom: 0.85rem;
  }
  .success-checkmark-svg {
    width: 58px;
    height: 58px;
  }
  .success-badge-pill {
    padding: 0.5rem 0.75rem;
    font-size: 0.82rem;
    line-height: 1.45;
    border-radius: 12px;
    width: 100%;
  }
  .success-target-email {
    display: inline-block;
    background: rgba(74, 222, 128, 0.12);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    margin: 0.15rem 0;
  }
  .success-heading {
    font-size: 1.45rem;
  }
  .success-message {
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 1.1rem;
  }
  .success-client-summary {
    margin-bottom: 1.25rem;
    gap: 0.4rem;
  }
  .summary-chip {
    font-size: 0.76rem;
    padding: 0.25rem 0.6rem;
  }
  .success-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.6rem;
  }
  .success-actions .btn {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 480px) {
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }
  .container {
    padding: 0 1rem;
  }
  .hero-headline {
    font-size: clamp(2rem, 8.5vw, 2.75rem);
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
  }
  .headline-rotator {
    min-width: 185px;
  }
  .availability-badge {
    font-size: 0.72rem;
    padding: 0.35rem 0.7rem;
    margin-bottom: 1.25rem;
    line-height: 1.35;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }
  .contact {
    padding: 4rem 0;
  }
  .contact-method {
    padding: 0.85rem 1rem;
  }
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--color-bg-2);
  border-top: 1px solid var(--color-border);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-tagline { 
  font-size: 0.85rem; 
  color: var(--color-text-dim); 
  margin-top: 0.6rem;
  line-height: 1.6;
}

.footer-motto-phrase {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #c084fc;
  margin-bottom: 0.2rem;
}

.footer-links ul { display: flex; gap: 1.5rem; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--color-white); }

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}
.footer-contact a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}
.footer-contact a:hover { color: var(--color-accent-light); }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-copy, .footer-built {
  font-size: 0.8rem;
  color: var(--color-text-dim);
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-links ul { flex-wrap: wrap; gap: 1rem; }
  .footer-contact { align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   SCROLLBAR
============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: var(--color-border-hover); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-text-dim); }

/* ============================================================
   UTILITY
============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   SPOTLIGHT CARD INTERACTIVE LIGHTING
============================================================ */
.spotlight-card {
  position: relative;
  overflow: hidden;
}

.spotlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: radial-gradient(
    380px circle at var(--mouse-x, -999px) var(--mouse-y, -999px),
    rgba(96, 165, 250, 0.45),
    transparent 65%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.spotlight-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    420px circle at var(--mouse-x, -999px) var(--mouse-y, -999px),
    rgba(59, 130, 246, 0.08),
    transparent 65%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.spotlight-card:hover::before,
.spotlight-card:hover::after {
  opacity: 1;
}

/* ============================================================
   CONTACT & DISCUSSION AREA ANIMATIONS
============================================================ */
.beacon-pulse-wa {
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 1.5px solid rgba(74, 222, 128, 0.7);
  animation: waPulse 2.2s cubic-bezier(0, 0, 0.2, 1) infinite;
  pointer-events: none;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.85; }
  80%, 100% { transform: scale(1.45); opacity: 0; }
}

.contact-method {
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.25s ease;
}

.contact-method:hover {
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transform: translateX(4px) translateY(-2px);
}

.form-ambient-aura {
  position: absolute;
  top: -60%;
  left: -60%;
  width: 220%;
  height: 220%;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.07) 0%, transparent 60%);
  animation: auraDrift 16s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes auraDrift {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ============================================================
   ACCESSIBILITY: REDUCED MOTION OVERRIDES
============================================================ */
@media (prefers-reduced-motion: reduce) {
  .scroll-progress-bar,
  .headline-accent,
  .hero-glow-1,
  .hero-glow-2,
  .btn-primary::before,
  .btn-spinner,
  .checkmark-circle,
  .checkmark-check,
  .form-status-card,
  .reveal-card,
  .hero-mockup,
  .chart-bar,
  .hero-entry-item,
  .availability-beacon,
  .availability-dot,
  .btn-glow-pulse,
  .discuss-step-badge,
  .discuss-step-icon,
  .process-connector-pulse::after,
  .beacon-pulse-wa,
  .form-ambient-aura {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .rotator-word {
    position: static !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .rotator-word:not(.active) {
    display: none !important;
  }

  .signature-magical-stage,
  .magical-canvas,
  .magical-stage-card,
  .magical-word-item,
  .energy-expanding-ring,
  .wire-h,
  .wire-v,
  .phrase-breathing-aura,
  .tagline-shimmer-sweep,
  .logo-3d-inner,
  .logo-3d-glare,
  .brand-logo-img,
  .btn-hero-discuss::after,
  .idea-light-emitter {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .magical-word-item {
    display: none !important;
  }

  .magical-full-phrase {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    pointer-events: auto !important;
  }

  .hero-tagline-reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}


