/* =========================================================================
   PEDRO TERRESTRE — INSTITUTIONAL BRAND & DIGITAL ARCHITECTURE STUDIO
   Awwwards / Apple / Google Level Design System & Stylesheet
   ========================================================================= */

/* --------------------------------------------------------------------------
   0. DESIGN SYSTEM TOKENS & VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette — Void & Titanium Matrix */
  --bg-primary: #070709;
  --bg-secondary: #0d0e14;
  --bg-tertiary: #13151f;
  --bg-card: rgba(255, 255, 255, 0.025);
  --bg-card-hover: rgba(255, 255, 255, 0.05);

  /* Glassmorphism & Borders */
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(255, 255, 255, 0.22);
  --glass-bg-nav: rgba(7, 7, 9, 0.75);

  /* Typography Colors */
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-subtle: #64748b;

  /* Accent Glows & Metals */
  --accent-gold: #e2b857;
  --accent-gold-glow: rgba(226, 184, 87, 0.35);
  --accent-purple: #a855f7;
  --accent-purple-glow: rgba(168, 85, 247, 0.35);
  --accent-blue: #3b82f6;
  --accent-cyan: #06b6d4;

  /* Typography Fonts */
  --font-display: 'Syne', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-serif: 'Cinzel', serif;

  /* Layout & Spacing */
  --container-max: 1280px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Motion & Easing */
  --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-in-out-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 0.2s var(--ease-out-cubic);
  --transition-smooth: 0.4s var(--ease-out-cubic);
  --transition-slow: 0.8s var(--ease-out-cubic);
}

/* --------------------------------------------------------------------------
   1. BASE & RESET STYLES
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  position: relative;
}

body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  position: relative;
  background-color: var(--bg-primary);
  line-height: 1.6;
  touch-action: pan-y;
}

.site-content {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  position: relative;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
  box-sizing: border-box;
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

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

/* Tactile Noise Texture Overlay */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Ambient Canvas Glow Background Orbs */
.ambient-glow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  pointer-events: none;
  z-index: 0;
  overflow: hidden !important;
  clip-path: inset(0);
  transition: opacity 0.5s ease;
}

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

.orb-primary {
  width: 600px;
  height: 600px;
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
}

.orb-secondary {
  width: 700px;
  height: 700px;
  bottom: -200px;
  right: -100px;
  background: radial-gradient(circle, var(--accent-blue) 0%, transparent 70%);
  animation-delay: -5s;
}

.orb-tertiary {
  width: 500px;
  height: 500px;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--accent-gold-glow) 0%, transparent 70%);
  animation-delay: -10s;
}

@keyframes orbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(60px, -40px) scale(1.1);
  }

  100% {
    transform: translate(-40px, 60px) scale(0.95);
  }
}

/* Architectural Blueprint Grid & Glow Beams Overlay */
.blueprint-grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden !important;
  clip-path: inset(0);
}

.grid-lines-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.035;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 100px 100px;
}

.grid-glow-beam {
  position: absolute;
  pointer-events: none;
  filter: blur(8px);
  opacity: 0.75;
}

.beam-v1 {
  width: 2px;
  height: 220px;
  left: 22%;
  background: linear-gradient(180deg, transparent 0%, var(--accent-gold) 50%, transparent 100%);
  box-shadow: 0 0 15px var(--accent-gold), 0 0 30px var(--accent-gold-glow);
  animation: moveBeamVertical 14s infinite ease-in-out;
}

.beam-v2 {
  width: 2px;
  height: 280px;
  left: 78%;
  background: linear-gradient(180deg, transparent 0%, var(--accent-purple) 50%, transparent 100%);
  box-shadow: 0 0 15px var(--accent-purple), 0 0 30px var(--accent-purple-glow);
  animation: moveBeamVertical 18s infinite ease-in-out 3s;
}

.beam-h1 {
  width: 260px;
  height: 2px;
  top: 38%;
  background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 50%, transparent 100%);
  box-shadow: 0 0 15px var(--accent-gold), 0 0 30px var(--accent-gold-glow);
  animation: moveBeamHorizontal 16s infinite ease-in-out 1.5s;
}

@keyframes moveBeamVertical {
  0% {
    top: -250px;
    opacity: 0;
  }

  15% {
    opacity: 0.75;
  }

  85% {
    opacity: 0.75;
  }

  100% {
    top: 110vh;
    opacity: 0;
  }
}

@keyframes moveBeamHorizontal {
  0% {
    left: -250px;
    opacity: 0;
  }

  15% {
    opacity: 0.75;
  }

  85% {
    opacity: 0.75;
  }

  100% {
    left: 110vw;
    opacity: 0;
  }
}

/* --------------------------------------------------------------------------
   2. PRELOADER / LOADING SCREEN
   -------------------------------------------------------------------------- */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #050507;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out-cubic), transform 0.8s var(--ease-out-cubic);
}

.loading-screen.dismissed {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}

.loading-content {
  text-align: center;
  max-width: 400px;
  padding: 2rem;
}

.loading-logo-wrap {
  margin-bottom: 1.5rem;
  display: inline-block;
  position: relative;
}

.pt-brand-emblem {
  animation: emblemPulse 3s infinite ease-in-out;
}

@keyframes emblemPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px var(--accent-gold-glow));
  }
}

.loading-brand-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.loading-sub-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.loading-progress-container {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.loading-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-gold), var(--accent-blue));
  transition: width 0.1s linear;
}

.loading-percentage {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent-gold);
}

/* --------------------------------------------------------------------------
   3. SLEEK POINTER DOT CURSOR (Fine Pointer Desktop Only)
   -------------------------------------------------------------------------- */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
}

.cursor-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.8), 0 0 20px var(--accent-gold-glow);
  transition: width 0.25s var(--ease-out-cubic), height 0.25s var(--ease-out-cubic), background-color 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

/* Card & Interactive Element Hover States */
.custom-cursor.hover-card .cursor-dot {
  width: 22px;
  height: 22px;
  background: var(--accent-gold);
  box-shadow: 0 0 25px var(--accent-gold), 0 0 45px var(--accent-gold-glow);
  border: 2px solid #ffffff;
}

.custom-cursor.hover-btn .cursor-dot {
  width: 16px;
  height: 16px;
  background: #ffffff;
  box-shadow: 0 0 20px #ffffff, 0 0 35px var(--accent-purple-glow);
}

.custom-cursor.hover-work .cursor-dot {
  width: 26px;
  height: 26px;
  background: rgba(226, 184, 87, 0.95);
  box-shadow: 0 0 30px var(--accent-gold), 0 0 50px rgba(226, 184, 87, 0.5);
  border: 2px solid #ffffff;
}

/* Mobile Touch & Tactile Response Optimizations */
button,
a,
.work-card,
.bento-card,
.pillar-card,
.t-card-3d {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 1024px) {

  .bento-card:active,
  .work-card:active,
  .pillar-card:active,
  .btn-primary-glow:active,
  .btn-secondary-glass:active {
    transform: scale(0.97) !important;
    transition: transform 0.12s ease-out;
  }
}

/* Strictly hide custom cursor on touch/mobile devices */
@media (pointer: coarse),
(max-width: 1024px) {
  .custom-cursor {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------
   4. FLOATING GLASS NAVBAR
   -------------------------------------------------------------------------- */
.navbar-wrapper {
  position: fixed;
  top: 1.25rem;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1.25rem;
  pointer-events: none;
}

.navbar-inner {
  pointer-events: auto;
  position: relative;
  width: min(92vw, 1180px);
  background: var(--glass-bg-nav);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  padding: 0.75rem 2.25rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75), 0 0 35px rgba(226, 184, 87, 0.1);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.navbar-inner:hover {
  border-color: var(--glass-border-hover);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 45px rgba(226, 184, 87, 0.16);
}

/* Nav Groups (Left & Right Wings) */
.nav-group {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.5rem);
  z-index: 2;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-group-left {
  justify-content: flex-end;
}

.nav-group-right {
  justify-content: flex-start;
}

/* Dead-Center Brand Logo (PEDRO TERRESTRE with Metallic Gold Gradient) */
.nav-brand-center {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.5rem;
  text-decoration: none;
  z-index: 10;
  white-space: nowrap;
}

.brand-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #ffffff 0%, #fff2ac 35%, #e2b857 75%, #b88a28 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(226, 184, 87, 0.35));
  transition: filter var(--transition-fast), transform var(--transition-fast);
}

.nav-brand-center:hover .brand-wordmark {
  filter: drop-shadow(0 0 18px rgba(226, 184, 87, 0.75));
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  padding: 0.25rem 0.3rem;
  white-space: nowrap;
  opacity: 0.88;
  transition: color var(--transition-fast), opacity var(--transition-fast), text-shadow var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  opacity: 1;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7), 0 0 18px rgba(226, 184, 87, 0.45);
}

.nav-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.nav-icon-btn:hover {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
  background: rgba(226, 184, 87, 0.1);
}

/* Button Component Styles */
.btn-primary-glow {
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  color: #070709;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.25);
  transition: all var(--transition-fast);
}

.btn-primary-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(226, 184, 87, 0.4);
  background: linear-gradient(135deg, var(--accent-gold) 0%, #ffffff 100%);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.8rem;
}

.btn-secondary-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.btn-secondary-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   5. HERO SECTION — APPLE & GOOGLE LEVEL PRESTIGE STAGE
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: 10rem;
  padding-bottom: 6rem;
  position: relative;
  z-index: 1;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-meta-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  max-width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  margin-bottom: 2.5rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  white-space: nowrap;
}

.meta-label {
  color: var(--text-subtle);
}

.meta-val {
  color: var(--text-main);
  font-weight: 600;
}

.meta-divider {
  color: var(--glass-border);
}

.hero-headline-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 100%;
}

.hero-tag-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100%;
  text-align: center;
  gap: 0.4rem;
  color: var(--accent-gold);
  font-family: var(--font-mono);
  font-size: clamp(0.65rem, 2.5vw, 0.75rem);
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.1vw, 4.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

/* --------------------------------------------------------------------------
   LIQUID METAL SHIMMER & STAGGERED REVEAL ANIMATIONS
   -------------------------------------------------------------------------- */
@keyframes textShimmer {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes textRevealKinematic {
  0% {
    opacity: 0;
    transform: translateY(35px) scale(0.98);
    filter: blur(6px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.title-line {
  display: block;
  max-width: 100%;
  white-space: nowrap;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  animation: textRevealKinematic 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.title-line:nth-child(1) {
  animation-delay: 0.1s;
}

.title-line:nth-child(2) {
  animation-delay: 0.25s;
}

.title-gradient,
.title-solid {
  background: linear-gradient(110deg,
      #ffffff 0%,
      #e2b857 30%,
      #ffffff 55%,
      #fef08a 75%,
      #ffffff 100%);
  background-size: 220% auto;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  animation: textShimmer 8s ease infinite;
}

.accent-dot {
  -webkit-text-fill-color: var(--accent-gold) !important;
  color: var(--accent-gold) !important;
  text-shadow: 0 0 15px var(--accent-gold-glow);
  display: inline-block;
  animation: pulseDot 3s ease-in-out infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.15);
  }
}

.hero-subtitle {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

/* 3D Tilt Panoramic Banner Stage */
.hero-stage-wrapper {
  width: 100%;
  perspective: 1200px;
}

.hero-banner-frame {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(168, 85, 247, 0.15);
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out, border-color 0.3s;
}

.hero-banner-frame:hover {
  border-color: var(--glass-border-hover);
}

.hero-banner-img {
  width: 100%;
  height: auto;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  display: block;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 7, 9, 0.1) 0%, rgba(7, 7, 9, 0.4) 100%);
  pointer-events: none;
}

.stage-floating-badge {
  position: absolute;
  background: rgba(7, 7, 9, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.badge-top-left {
  top: 1.5rem;
  left: 1.5rem;
}

.badge-bottom-right {
  bottom: 1.5rem;
  right: 1.5rem;
  border-color: rgba(226, 184, 87, 0.4);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-purple);
  border-radius: 50%;
}

/* --------------------------------------------------------------------------
   6. BRAND MANIFESTO SECTION
   -------------------------------------------------------------------------- */
.manifesto-section {
  padding: 8rem 0;
  border-top: 1px solid var(--glass-border);
  position: relative;
  z-index: 1;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.section-kicker {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-gold);
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 1rem;
}

.manifesto-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.text-gold {
  color: var(--accent-gold);
}

.manifesto-lead {
  font-size: 1.3rem;
  color: var(--text-main);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.manifesto-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.manifesto-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

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

.pillar-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  min-height: 2.7em;
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
}

.pillar-desc {
  font-size: 0.85rem;
  color: var(--text-subtle);
  line-height: 1.55;
  flex-grow: 1;
}

/* --------------------------------------------------------------------------
   7. BENTO GRID CORE ECOSYSTEM
   -------------------------------------------------------------------------- */
.bento-section {
  padding: 8rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  position: relative;
  z-index: 1;
}

.section-header-center {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 4rem auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
}

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

.bento-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  overflow: hidden !important;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  transition: border-color 0.3s, transform 0.3s var(--ease-out-cubic);
}

.bento-card:hover {
  border-color: var(--glass-border-hover);
}

.bento-card-large {
  grid-column: span 2;
}

.bento-card-wide {
  grid-column: span 3;
  min-height: 220px;
}

.bento-card-bg {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  opacity: 0.15;
  transition: opacity 0.5s;
}

.glow-purple {
  background: radial-gradient(circle at center, var(--accent-purple) 0%, transparent 60%);
}

.glow-gold {
  background: radial-gradient(circle at center, var(--accent-gold) 0%, transparent 60%);
}

.glow-blue {
  background: radial-gradient(circle at center, var(--accent-blue) 0%, transparent 60%);
}

.glow-cyan {
  background: radial-gradient(circle at center, var(--accent-cyan) 0%, transparent 60%);
}

.bento-card:hover .bento-card-bg {
  opacity: 0.3;
}

.bento-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.bento-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.bento-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Bento Visual Elements */
.visual-code-terminal {
  margin-top: 2rem;
  background: #050507;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  max-width: 100%;
  overflow-x: auto;
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.term-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.term-dot.red {
  background: #ef4444;
}

.term-dot.yellow {
  background: #f59e0b;
}

.term-dot.green {
  background: #10b981;
}

.term-title {
  font-size: 0.7rem;
  color: var(--text-subtle);
  margin-left: 0.5rem;
}

.terminal-body code {
  display: block;
  margin-bottom: 0.2rem;
}

.c-keyword {
  color: #c678dd;
}

.c-var {
  color: #e06c75;
}

.c-class {
  color: #e5c07b;
}

.c-str {
  color: #98c379;
}

.c-num {
  color: #d19a66;
}

.visual-palette {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.palette-swatch {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  outline: none;
  transition: transform 0.3s var(--ease-out-cubic), border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.palette-swatch:hover {
  transform: scale(1.18);
}

.palette-swatch.active {
  border-color: #ffffff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  transform: scale(1.12);
}

.s-1 {
  background: #070709;
  border-color: rgba(255, 255, 255, 0.25);
}

.s-2 {
  background: #e2e8f0;
}

.s-3 {
  background: #e2b857;
}

.s-4 {
  background: #a855f7;
}

/* Interactive Theme Switching for Design System Bento Card */
.bento-card.theme-card {
  transition: background-color 0.5s var(--ease-out-cubic), border-color 0.5s var(--ease-out-cubic), box-shadow 0.5s var(--ease-out-cubic);
}

.theme-obsidian {
  background: #070709 !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.9) !important;
}

.theme-obsidian .bento-title {
  color: #f8fafc !important;
}

.theme-obsidian .bento-desc {
  color: #94a3b8 !important;
}

.theme-obsidian .bento-tag {
  color: #e2b857 !important;
}

.theme-platinum {
  background: #f1f5f9 !important;
  border-color: rgba(15, 23, 42, 0.25) !important;
  box-shadow: 0 15px 45px rgba(255, 255, 255, 0.2) !important;
}

.theme-platinum .bento-title {
  color: #0f172a !important;
}

.theme-platinum .bento-desc {
  color: #334155 !important;
}

.theme-platinum .bento-tag {
  color: #0284c7 !important;
}

.theme-gold {
  background: #1c170b !important;
  border-color: rgba(226, 184, 87, 0.6) !important;
  box-shadow: 0 15px 45px rgba(226, 184, 87, 0.25) !important;
}

.theme-gold .bento-title {
  color: #fef08a !important;
}

.theme-gold .bento-desc {
  color: #e2b857 !important;
}

.theme-gold .bento-tag {
  color: #fbbf24 !important;
}

.theme-violet {
  background: #140924 !important;
  border-color: rgba(168, 85, 247, 0.6) !important;
  box-shadow: 0 15px 45px rgba(168, 85, 247, 0.3) !important;
}

.theme-violet .bento-title {
  color: #f472b6 !important;
}

.theme-violet .bento-desc {
  color: #c084fc !important;
}

.theme-violet .bento-tag {
  color: #e879f9 !important;
}

.visual-score-circle {
  margin-top: 1.5rem;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid #10b981;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.score-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

.score-label {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  color: var(--text-muted);
}

.visual-conversion-tag {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 1.25rem;
  background: rgba(6, 182, 212, 0.06);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: var(--radius-full);
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.12);
  width: fit-content;
}

.conv-badge {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent-cyan);
}

.conv-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-subtle);
  letter-spacing: 0.08em;
}

/* --------------------------------------------------------------------------
   8. FILTERABLE WORKS MATRIX
   -------------------------------------------------------------------------- */
.works-section {
  padding: 8rem 0;
  position: relative;
  z-index: 1;
}

.works-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.works-filter-nav {
  display: flex;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 0.35rem;
  border-radius: var(--radius-full);
}

.filter-btn {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.filter-btn.active,
.filter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-main);
}

.filter-btn.active {
  color: var(--accent-gold);
}

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

.work-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-out-cubic);
  cursor: pointer;
}

.work-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.work-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.work-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-cubic);
}

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

.work-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 9, 0.6);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.work-card:hover .work-hover-overlay {
  opacity: 1;
}

.btn-view-project {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: #070709;
  background: var(--accent-gold);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  box-shadow: 0 0 20px var(--accent-gold-glow);
}

.work-meta-info {
  padding: 2rem;
}

.work-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.work-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.work-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.work-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   9. METRICS & INSTITUTIONAL IMPACT
   -------------------------------------------------------------------------- */
.metrics-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.metrics-inner-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  overflow: hidden;
  box-sizing: border-box;
}

.metrics-header-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem auto;
}

.metrics-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.metrics-subtitle {
  color: var(--text-muted);
}

.metrics-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: flex-start;
  width: 100%;
}

.metric-card {
  text-align: center;
  padding: 1rem 0.5rem;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.metric-number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
  white-space: nowrap;
  max-width: 100%;
}

.metric-number span {
  color: var(--accent-gold);
}

.metric-label {
  font-family: var(--font-mono);
  font-size: clamp(0.62rem, 0.85vw, 0.7rem);
  color: var(--text-subtle);
  letter-spacing: 0.05em;
  line-height: 1.4;
  word-break: break-word;
  max-width: 100%;
}

/* --------------------------------------------------------------------------
   10. PRESTIGE WALL & CLIENT REVIEWS
   -------------------------------------------------------------------------- */
.clients-section {
  padding: 8rem 0;
}

.logo-marquee-wrapper {
  overflow: hidden !important;
  width: 100%;
  max-width: 100vw;
  position: relative;
  margin-bottom: 5rem;
  mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}

.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: marquee 25s linear infinite;
}

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

  100% {
    transform: translateX(-50%);
  }
}

.marquee-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.1em;
  transition: color 0.3s;
  white-space: nowrap;
}

.marquee-logo:hover {
  color: var(--accent-gold);
}

.logo-serif {
  font-family: var(--font-serif);
}

.logo-sans {
  font-family: var(--font-body);
  font-weight: 800;
}

.logo-wide {
  font-family: var(--font-display);
  letter-spacing: 0.3em;
}

/* Apple 3D Cover Flow Testimonial Stage */
.testimonial-stage {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  perspective: 1200px;
  position: relative;
}

.testimonial-3d-viewport {
  position: relative;
  width: 100%;
  min-height: 380px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.testimonial-3d-cards {
  position: relative;
  width: 100%;
  max-width: 680px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
}

.testimonial-card-frame.t-card-3d {
  position: absolute;
  width: 100%;
  background: rgba(13, 14, 20, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  transition: transform 0.5s var(--ease-out-cubic), opacity 0.5s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  transform-origin: center center;
  cursor: pointer;
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.t-card-3d.active {
  transform: translate3d(0, 0, 0) scale(1) rotateY(0deg);
  opacity: 1;
  z-index: 10;
  border-color: rgba(226, 184, 87, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px var(--accent-gold-glow);
}

.t-card-3d.prev {
  transform: translate3d(-32%, 0, -120px) scale(0.85) rotateY(16deg);
  opacity: 0.45;
  z-index: 5;
  pointer-events: auto;
}

.t-card-3d.next {
  transform: translate3d(32%, 0, -120px) scale(0.85) rotateY(-16deg);
  opacity: 0.45;
  z-index: 5;
  pointer-events: auto;
}

.t-card-3d.hidden-left {
  transform: translate3d(-65%, 0, -240px) scale(0.7) rotateY(28deg);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.t-card-3d.hidden-right {
  transform: translate3d(65%, 0, -240px) scale(0.7) rotateY(-28deg);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.t-quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: -2rem;
  opacity: 0.4;
}

.t-quote-text {
  font-size: 1.15rem;
  color: var(--text-main);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2rem;
}

.t-author-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-gold));
  color: #000;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

.t-meta {
  text-align: left;
}

.t-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

.t-role {
  font-size: 0.8rem;
  color: var(--text-subtle);
}

.t-controls {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.t-dot-btn {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}

.t-dot-btn.active {
  background: var(--accent-gold);
  transform: scale(1.3);
}

/* --------------------------------------------------------------------------
   11. FOOTER & CONTACT TERMINAL
   -------------------------------------------------------------------------- */
.footer-section {
  padding-top: 6rem;
  padding-bottom: 3rem;
  border-top: 1px solid var(--glass-border);
  background: var(--bg-secondary);
}

.footer-banner-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(226, 184, 87, 0.05) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.footer-display-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(110deg,
      #ffffff 0%,
      #e2b857 25%,
      #ffffff 50%,
      #a855f7 75%,
      #ffffff 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShimmer 8s ease infinite;
}

.contact-card-box {
  background: #070709;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.contact-card-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent-gold);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 1rem;
}

.email-copy-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}

.email-address-text {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-main);
}

.btn-copy-email {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent-gold);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  background: rgba(226, 184, 87, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  transition: background 0.2s;
}

.btn-copy-email:hover {
  background: rgba(226, 184, 87, 0.25);
}

.contact-links-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all 0.2s;
}

.social-chip:hover {
  color: var(--text-main);
  border-color: var(--glass-border-hover);
  background: rgba(255, 255, 255, 0.05);
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-subtle);
}

.btn-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
}

.btn-top:hover {
  color: var(--accent-gold);
}

/* --------------------------------------------------------------------------
   12. PROJECT MODAL DRAWER
   -------------------------------------------------------------------------- */
.project-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out-cubic);
}

.project-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
}

.modal-content-panel {
  position: relative;
  width: 90%;
  max-width: 850px;
  max-height: 85vh;
  background: #0d0e14;
  border: 1px solid var(--glass-border-hover);
  border-radius: var(--radius-lg);
  overflow-y: auto;
  z-index: 2;
  padding: 3rem;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.9);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s var(--ease-out-cubic);
}

.project-modal.active .modal-content-panel {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.modal-project-img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}

.modal-project-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.modal-project-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.modal-project-specs {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
}

.spec-item {
  font-family: var(--font-mono);
}

.spec-label {
  font-size: 0.65rem;
  color: var(--text-subtle);
  display: block;
}

.spec-val {
  font-size: 0.85rem;
  color: var(--accent-gold);
}

/* --------------------------------------------------------------------------
   13. ANIMATION REVEAL UTILITIES
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-cubic), transform 0.8s var(--ease-out-cubic);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   14. SECTION 06 // SOBRE O FUNDADOR (ABOUT THE FOUNDER)
   -------------------------------------------------------------------------- */
.about-section {
  padding: 9rem 0;
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.about-name-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

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

.about-lead {
  font-size: 1.18rem;
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.about-paragraph {
  margin-bottom: 1.25rem;
}

.about-highlights-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.about-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-subtle);
  transition: border-color 0.3s, color 0.3s;
}

.about-pill:hover {
  border-color: rgba(226, 184, 87, 0.4);
  color: var(--accent-gold);
}

.pill-gold-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-gold);
}

/* Portrait Stage (Matching Reference Image) */
.about-stage-col {
  position: relative;
}

.about-portrait-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(226, 184, 87, 0.12);
  transition: transform 0.4s var(--ease-out-cubic), border-color 0.3s;
}

.about-portrait-card:hover {
  border-color: rgba(226, 184, 87, 0.4);
}

.about-portrait-glow {
  position: absolute;
  top: -20%;
  right: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, var(--accent-gold-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.about-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.08) brightness(0.95);
  transition: transform 0.7s var(--ease-out-cubic);
}

.about-portrait-card:hover .about-portrait-img {
  transform: scale(1.04);
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 7, 9, 0.7) 80%, rgba(7, 7, 9, 0.95) 100%);
}

.about-signature-text {
  position: absolute;
  bottom: 1.25rem;
  right: 1.5rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 0 12px var(--accent-gold-glow);
  z-index: 2;
  letter-spacing: 0.04em;
  opacity: 0.95;
  pointer-events: none;
}

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

.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.3s;
}

.delay-3 {
  transition-delay: 0.45s;
}

/* --------------------------------------------------------------------------
   14. MOBILE MENU DRAWER & HAMBURGER
   -------------------------------------------------------------------------- */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  z-index: 1001;
  transition: all var(--transition-fast);
}

.hamburger-bar {
  width: 16px;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu-btn.active .hamburger-bar:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-bar:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu-overlay {
  position: fixed;
  top: 4.2rem;
  left: 1rem;
  right: 1rem;
  z-index: 9999;
  background: rgba(7, 7, 9, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border-hover);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px) scale(0.98);
  transition: opacity 0.3s var(--ease-out-cubic), transform 0.3s var(--ease-out-cubic);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: center;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-muted);
  display: block;
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-link.highlight {
  color: var(--accent-gold);
}

/* --------------------------------------------------------------------------
   15. RESPONSIVE BREAKPOINTS (MOBILE-FIRST & TABLET)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .mobile-menu-btn {
    display: flex;
  }

  .manifesto-grid,
  .footer-banner-box {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

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

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

  .stage-floating-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.6rem;
  }
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }

  .navbar-wrapper {
    top: 0.75rem;
    padding: 0 0.75rem;
  }

  .navbar-inner {
    padding: 0.45rem 0.6rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.25rem;
    width: 100%;
  }

  .nav-group-right {
    order: 1;
    position: relative;
    flex-shrink: 0;
    margin: 0;
    z-index: 10;
  }

  .nav-brand-center {
    order: 2;
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    padding: 0 0.25rem;
    margin: 0 auto;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    z-index: 1;
    pointer-events: auto;
  }

  .brand-wordmark {
    font-size: clamp(0.62rem, 3.2vw, 0.76rem);
    white-space: nowrap;
    letter-spacing: 0.04em;
  }

  .mobile-menu-btn {
    order: 3;
    position: relative;
    display: flex;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    margin-left: 0;
    z-index: 10;
  }

  .lang-switcher-trigger {
    padding: 0.35rem 0.5rem;
    font-size: 0.65rem;
    gap: 0.25rem;
  }

  .lang-switcher-trigger svg {
    width: 12px;
    height: 12px;
  }

  .lang-switcher-dropdown {
    left: 0;
    right: auto;
  }

  .hero-section {
    padding-top: 6.5rem;
    padding-bottom: 3.5rem;
  }

  .hero-meta-bar {
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.65rem 1rem;
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 100%;
  }

  .meta-divider {
    display: none;
  }

  .meta-item {
    font-size: 0.65rem;
    justify-content: center;
  }

  .hero-title {
    font-size: clamp(1.6rem, 5.2vw, 3.2rem);
    letter-spacing: -0.03em;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

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

  .hero-cta-group .btn-primary-glow,
  .hero-cta-group .btn-secondary-glass {
    width: 100%;
    justify-content: center;
  }

  /* Image Exposure Optimizations for Hero Stage */
  .hero-banner-img {
    aspect-ratio: 16 / 10;
    object-position: center top;
    filter: contrast(1.06) brightness(1.02);
  }

  .stage-floating-badge {
    padding: 0.4rem 0.75rem;
    font-size: 0.62rem;
  }

  .badge-top-left {
    top: 0.75rem;
    left: 0.75rem;
  }

  .badge-bottom-right {
    bottom: 0.75rem;
    right: 0.75rem;
  }

  .manifesto-section,
  .bento-section,
  .works-section,
  .clients-section {
    padding: 3.5rem 0;
  }

  .manifesto-heading {
    font-size: clamp(1.35rem, 5vw, 2.2rem);
  }

  .section-title {
    font-size: clamp(1.35rem, 5vw, 2.2rem);
    letter-spacing: -0.03em;
  }

  .metrics-headline {
    font-size: clamp(1.35rem, 5vw, 2.2rem);
  }

  .footer-display-title {
    font-size: clamp(1.35rem, 5vw, 2.2rem);
  }

  .manifesto-pillars-grid {
    grid-template-columns: 1fr;
  }

  /* Portfolio Works Cards & Image Exposure on Mobile */
  .works-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .work-card {
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  }

  .work-img-wrapper {
    aspect-ratio: 16 / 10;
  }

  .work-img {
    filter: contrast(1.06) brightness(1.02);
  }

  /* Mobile Touch Indicator for Portfolio Cards */
  .work-img-wrapper::after {
    content: "VER PROJETO ↗";
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(7, 7, 9, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--accent-gold);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(226, 184, 87, 0.35);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    z-index: 2;
    pointer-events: none;
  }

  /* Founder Portrait Image Exposure on Mobile */
  .about-portrait-card {
    max-width: 100%;
    margin: 0 auto;
    border-radius: var(--radius-lg);
  }

  .about-image-wrapper {
    aspect-ratio: 4 / 5;
    max-height: 480px;
  }

  .about-signature-text {
    bottom: 1rem;
    right: 1.25rem;
    font-size: clamp(1rem, 3.8vw, 1.35rem);
  }

  .bento-card {
    padding: 1.5rem;
    min-height: auto;
  }

  .metrics-inner-box,
  .footer-banner-box {
    padding: 1.75rem 1.25rem;
  }

  .metrics-stats-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* Testimonial 3D Carousel Mobile Adjustments */
  .testimonial-3d-viewport {
    height: 380px;
  }

  .testimonial-card-frame {
    padding: 1.75rem 1.15rem;
    width: 95%;
  }

  .t-card-3d.prev {
    transform: translate3d(-10%, 0, -60px) scale(0.88);
    opacity: 0.2;
  }

  .t-card-3d.next {
    transform: translate3d(10%, 0, -60px) scale(0.88);
    opacity: 0.2;
  }

  .t-quote-text {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .contact-card-box {
    padding: 1.15rem;
  }

  .email-copy-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .email-address-text {
    font-size: clamp(0.72rem, 3.2vw, 0.85rem);
    word-break: break-all;
  }

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

  .footer-bottom-bar {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* Modal Mobile Optimization */
  .modal-content-panel {
    width: 92%;
    padding: 1.5rem 1.25rem;
    max-height: 88vh;
  }

  .modal-close-btn {
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
  }

  .modal-project-img {
    max-height: 40vh;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
  }

  .modal-project-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
  }

  .modal-project-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .modal-project-specs {
    flex-direction: column;
    gap: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hide-mobile-sm {
    display: none !important;
  }

  .brand-wordmark {
    font-size: 0.72rem;
  }

  .stage-floating-badge {
    padding: 0.3rem 0.55rem;
    font-size: 0.58rem;
  }

  .badge-top-left {
    top: 0.5rem;
    left: 0.5rem;
  }

  .badge-bottom-right {
    bottom: 0.5rem;
    right: 0.5rem;
  }

  .hero-title {
    font-size: clamp(1.15rem, 5.2vw, 2rem);
    letter-spacing: -0.04em;
  }

  .section-title {
    font-size: clamp(1.2rem, 4.8vw, 2rem);
  }

  .manifesto-heading {
    font-size: clamp(1.2rem, 4.8vw, 2rem);
  }

  .footer-display-title {
    font-size: clamp(1.2rem, 4.8vw, 2rem);
  }

  .about-image-wrapper {
    max-height: 400px;
  }
}

/* 3D Layered Parallax Scroll Performance Optimization */
[data-parallax-speed] {
  will-change: transform;
  transform-style: preserve-3d;
  transition: transform 0.1s cubic-bezier(0.2, 0.8, 0.4, 1);
}

/* =========================================================================
   LANGUAGE SWITCHER COMPONENT (PT, EN, ES)
   ========================================================================= */
.lang-switcher-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.lang-switcher-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.25s var(--ease-out-cubic);
  cursor: pointer;
  letter-spacing: 0.05em;
  white-space: nowrap;
  flex-shrink: 0;
}

.lang-switcher-trigger:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: 0 0 15px var(--accent-gold-glow);
}

.lang-switcher-trigger svg.chevron {
  transition: transform 0.25s ease;
}

.lang-switcher-wrapper:has(.lang-switcher-dropdown.open) .lang-switcher-trigger svg.chevron {
  transform: rotate(180deg);
}

.lang-switcher-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 140px;
  background: rgba(12, 12, 16, 0.94);
  border: 1px solid var(--glass-border-hover);
  border-radius: var(--radius-md);
  padding: 0.4rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.95);
  transition: all 0.25s var(--ease-out-cubic);
  z-index: 1000;
}

.lang-switcher-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lang-dropdown-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  background: transparent;
  cursor: pointer;
}

.lang-dropdown-option:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
}

.lang-dropdown-option.active {
  color: var(--accent-gold);
  background: rgba(226, 184, 87, 0.1);
  font-weight: 700;
}

.lang-dropdown-option .opt-flag {
  font-size: 0.9rem;
}

/* Mobile drawer lang switcher styling */
.mobile-lang-switcher {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
  width: 100%;
}

.mobile-lang-title {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
}

.mobile-lang-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  width: 100%;
}

.mobile-lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.25s var(--ease-out-cubic);
  cursor: pointer;
  white-space: nowrap;
}

.mobile-lang-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  border-color: var(--glass-border-hover);
}

.mobile-lang-btn.active {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
  background: rgba(226, 184, 87, 0.12);
  box-shadow: 0 0 15px rgba(226, 184, 87, 0.2);
  font-weight: 700;
}

/* =========================================================================
   PREMIUM VISUAL IMPROVEMENTS (PARTICLES, PROCESS, MAGNETIC, STICKY CTA)
   ========================================================================= */
html {
  scroll-behavior: smooth;
}

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

/* 2. Hero Trust Bar */
.hero-trust-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.trust-avatars {
  display: flex;
  align-items: center;
}

.trust-avatar-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  color: #000;
  border: 2px solid #070709;
  margin-left: -8px;
}

.trust-avatar-dot:first-child {
  margin-left: 0;
}

.trust-avatar-dot.a1 {
  background: var(--accent-gold);
}

.trust-avatar-dot.a2 {
  background: var(--accent-purple);
  color: #fff;
}

.trust-avatar-dot.a3 {
  background: var(--accent-cyan);
}

.trust-text {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* 3. Magnetic Button Physics */
.btn-magnetic {
  transition: transform 0.25s var(--ease-out-cubic), box-shadow 0.25s ease, background 0.25s ease;
  will-change: transform;
}

/* 4. Enhanced Work Card Hover Lift */
.work-card {
  transition: transform 0.4s var(--ease-out-cubic), border-color 0.4s ease, box-shadow 0.4s ease;
}

.work-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(226, 184, 87, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px var(--accent-gold-glow);
}

.work-img {
  transition: transform 0.6s var(--ease-out-cubic), filter 0.6s ease;
}

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

/* 5. Metrics Number Finished Pulse */
.metric-number.finished {
  animation: metricPulseGlow 1.2s ease-out;
}

@keyframes metricPulseGlow {
  0% {
    transform: scale(1);
    text-shadow: 0 0 0px transparent;
  }

  50% {
    transform: scale(1.08);
    text-shadow: 0 0 25px var(--accent-gold-glow);
  }

  100% {
    transform: scale(1);
    text-shadow: 0 0 10px rgba(226, 184, 87, 0.3);
  }
}

/* 6. Workflow Process Section */
.process-section {
  padding: 8rem 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--glass-border);
  position: relative;
  z-index: 1;
}

.process-timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.process-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  transition: all 0.3s var(--ease-out-cubic);
}

.process-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-5px);
}

.process-num-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-gold);
  background: rgba(226, 184, 87, 0.1);
  border: 1px solid rgba(226, 184, 87, 0.3);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.process-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.65rem;
}

.process-card-desc {
  font-size: 0.85rem;
  color: var(--text-subtle);
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .process-timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .process-timeline-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) {
  .hide-desktop {
    display: none !important;
  }
}