/* ==========================================================================
   PRISMLINE™ - AFFORDABLE SECURE WEB DEVELOPMENT STUDIO
   Clean Modern Minimalist Theme (Reference-Grade Corporate Typography)
   Human-Crafted Agency Aesthetics. Pixel-Perfect Alignment. GoDaddy Ready.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800;900&family=Plus+Jakarta+Sans:wght@600;700;800;900&family=Urbanist:wght@700;800;900&family=Outfit:wght@600;700;800;900&family=Syne:wght@700;800;900&family=Playfair+Display:ital,wght@0,700;0,800;0,900;1,700;1,800;1,900&family=Fraunces:ital,opsz,wght@0,9..144,700..900;1,9..144,700..900&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
  /* 100% Light Theme Palette */
  --bg-white: #FFFFFF;
  --bg-page: #FFFFFF;
  --bg-subtle: #F8FAFC;
  --bg-surface: #F1F5F9;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FAFCFE;

  /* Typography Colors */
  --text-heading: #0F172A; /* Deep Slate Navy */
  --text-body: #475569;    /* Readable Slate Grey */
  --text-muted: #64748B;   /* Secondary Slate */
  --text-light: #94A3B8;   /* Subtle labels */

  /* Brand Colors (From Logo in Image 1) */
  --brand-crimson: #D50000;
  --brand-red: #E52E2D;
  --brand-orange: #FF4D00;
  --brand-sunset: #FF6B00;
  --brand-amber: #FFA000;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #D50000 0%, #FF4D00 50%, #FF7A00 100%);
  --grad-btn: linear-gradient(135deg, #FF4500 0%, #FF6B00 100%);
  --grad-text: linear-gradient(135deg, #D50000 0%, #FF4D00 55%, #FF7A00 100%);
  --grad-subtle-glow: radial-gradient(circle at 80% 20%, rgba(255, 77, 0, 0.06) 0%, rgba(213, 0, 0, 0.03) 35%, transparent 70%);

  /* Borders & Dividers */
  --border-subtle: #E2E8F0;
  --border-hover: #CBD5E1;
  --border-focus: #FF4D00;

  /* Human-Crafted Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05), 0 1px 2px rgba(15, 23, 42, 0.03);
  --shadow-md: 0 4px 16px -2px rgba(15, 23, 42, 0.06), 0 2px 6px -1px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 16px 32px -8px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
  --shadow-orange: 0 8px 24px -4px rgba(255, 77, 0, 0.28);

  /* Fonts - Awwwards-Grade Editorial Pairing (iti.ca + dayos.com inspired) */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: var(--font-sans);
  --font-main: var(--font-sans);
  --font-hero: var(--font-serif);
  --font-accent: var(--font-serif);
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-white);
  color: var(--text-body);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #F7F5F0;
  background-image: none;
  line-height: 1.65;
  overflow-x: hidden;
  font-family: var(--font-main);
}

/* Container */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading);
  font-family: var(--font-serif);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.025em;
}

p {
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.75;
}

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

.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

/* Buttons */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--grad-btn);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-orange);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -2px rgba(255, 77, 0, 0.4);
  filter: brightness(1.05);
}

.btn-hero-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  color: var(--text-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.btn-hero-phone:hover {
  background: var(--bg-subtle);
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--brand-orange);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  color: var(--text-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--bg-subtle);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

/* ==========================================================================
   CLEAN LIGHT-THEMED INTRO ANIMATION (NO SOUND, NO LINES, NO SKIP BUTTON)
/* ==========================================================================
   GRAND CYBERSECURITY LOADING ANIMATION INTRO (IMAGE 2 AESTHETIC)
   Clean White Canvas + Concentric Orbital Cyber Defense Rings + Laser Scanner
   + Red Winged Logo Ignition + Zero-Trust Verification Telemetry + Aperture Unlock
   ========================================================================== */
#grand-security-intro {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: #FFFFFF;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  overflow: hidden;
  transition: opacity 0.6s cubic-bezier(0.8, 0, 0.2, 1), transform 0.6s cubic-bezier(0.8, 0, 0.2, 1), visibility 0.6s ease;
  user-select: none;
}

#grand-security-intro.intro-aperture-reveal {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.06);
  pointer-events: none;
}

/* Background Cyber Grid */
.intro-cyber-grid {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 50% 45%, rgba(255, 77, 0, 0.08) 0%, rgba(213, 0, 0, 0.03) 40%, transparent 70%),
    linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 36px 36px, 36px 36px;
  pointer-events: none;
}

/* Skip Button */
.btn-skip-intro {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.45rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--shadow-sm);
}

.btn-skip-intro:hover {
  color: var(--brand-crimson);
  border-color: var(--brand-orange);
  background: #FFFFFF;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* Central Stage Container */
.intro-stage-wrap {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 620px;
  width: 90%;
  text-align: center;
}

/* SVG Cyber Radar & Shield Stage */
.intro-cyber-stage {
  position: relative;
  width: 270px;
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.intro-radar-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Laser Scanner Bar Moving Vertically */
.intro-laser-scanner {
  position: absolute;
  left: 12%;
  width: 76%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #FF4D00 25%, #FFFFFF 50%, #FF4D00 75%, transparent 100%);
  box-shadow: 0 0 16px 3px rgba(255, 77, 0, 0.8), 0 0 4px rgba(255, 255, 255, 0.9);
  top: 15%;
  animation: laserScanMove 2.2s ease-in-out infinite alternate;
  z-index: 8;
  pointer-events: none;
}

@keyframes laserScanMove {
  0% { top: 12%; opacity: 0.4; }
  50% { opacity: 1; }
  100% { top: 86%; opacity: 0.4; }
}

/* Concentric Rings Animations */
.ring-rotate-cw {
  transform-origin: 135px 135px;
  animation: ringRotateClockwise 16s linear infinite;
}

.ring-rotate-ccw {
  transform-origin: 135px 135px;
  animation: ringRotateCounter 12s linear infinite;
}

@keyframes ringRotateClockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes ringRotateCounter {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

/* Central Winged Emblem */
.intro-center-emblem {
  position: relative;
  z-index: 6;
  width: 140px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(213, 0, 0, 0.35));
  animation: emblemSurge 2s ease-in-out infinite alternate;
}

@keyframes emblemSurge {
  0% {
    transform: scale(0.96);
    filter: drop-shadow(0 4px 14px rgba(213, 0, 0, 0.25));
  }
  100% {
    transform: scale(1.04);
    filter: drop-shadow(0 10px 32px rgba(255, 77, 0, 0.5));
  }
}

/* Brand Reveal (Matching Image 2) */
.intro-brand-title {
  font-size: 2.35rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--brand-crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.35rem;
  text-shadow: 0 2px 14px rgba(213, 0, 0, 0.15);
  animation: brandLetterTracking 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.intro-brand-title span {
  color: var(--brand-sunset);
}

@keyframes brandLetterTracking {
  0% {
    opacity: 0;
    letter-spacing: 0.32em;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    letter-spacing: 0.18em;
    transform: translateY(0);
  }
}

.intro-brand-subtitle {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  color: #475569;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  animation: fadeInSubtitle 1.2s ease 0.3s forwards;
  opacity: 0;
}

@keyframes fadeInSubtitle {
  to { opacity: 1; }
}

/* Telemetry Box & Progress Bar */
.intro-telemetry-panel {
  width: 100%;
  max-width: 480px;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.intro-progress-track {
  width: 100%;
  height: 6px;
  background: var(--bg-surface);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.intro-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #D50000 0%, #FF4D00 60%, #FFA000 100%);
  border-radius: var(--radius-full);
  transition: width 0.12s linear;
  box-shadow: 0 0 10px rgba(255, 77, 0, 0.5);
}

.intro-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
}

.intro-status-text {
  color: var(--text-heading);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.intro-percent-text {
  color: var(--brand-orange);
  font-weight: 700;
}

/* Verification Pills */
.intro-pills-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.2rem;
}

.intro-sec-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.intro-sec-pill.active {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.35);
  color: #059669;
}

.intro-sec-pill .pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #94A3B8;
  transition: background 0.3s ease;
}

.intro-sec-pill.active .pill-dot {
  background: #10B981;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.8);
}

/* ==========================================================================
   NAVIGATION HEADER (CLEAN WHITE FULL-WIDTH CLASSIC BAR - REFERENCE IMAGE 1)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
  pointer-events: auto;
  transition: all 0.25s ease;
}

.site-header .container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.navbar {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  width: 100%;
}

.navbar.is-scrolled {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Poppins', 'Outfit', sans-serif;
  font-size: 1.38rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #D50000;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-emblem-wrap {
  display: flex;
  align-items: center;
}

.brand-emblem-icon {
  height: 32px;
  width: auto;
  transition: transform 0.25s ease;
}

.nav-brand:hover .brand-emblem-icon {
  transform: scale(1.06);
}

.brand-title-wrap {
  display: inline-flex;
  align-items: baseline;
  letter-spacing: 0.02em;
}

.brand-title-wrap .brand-m {
  color: #FF5722;
}

.brand-badge-pill {
  display: none !important;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.nav-links a {
  font-family: 'Poppins', 'Plus Jakarta Sans', sans-serif;
  font-size: 0.94rem;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  padding: 0.5rem 0.2rem;
  border-radius: 0;
  background: transparent;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  display: inline-block;
}

.nav-links a:hover {
  color: #0F172A;
  background: transparent;
}

.nav-links a.active {
  color: #FF5722;
  font-weight: 700;
  border-bottom: 2px solid #FF5722;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.nav-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Poppins', 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0F172A;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  padding: 0.52rem 1.15rem;
  border-radius: 9999px;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}

.nav-phone-link:hover {
  border-color: #FF5722;
  color: #FF5722;
  box-shadow: 0 2px 8px rgba(255, 87, 34, 0.15);
}

.nav-actions .btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.52rem 1.35rem;
  font-size: 0.88rem;
  font-family: 'Poppins', 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  border-radius: 9999px;
  background: #FF5722;
  color: #FFFFFF;
  border: none;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(255, 87, 34, 0.28);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-actions .btn-hero-primary:hover {
  background: #E64A19;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 87, 34, 0.38);
}

.nav-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.8);
  animation: liveDotBreathe 2s infinite ease-in-out;
}

@keyframes liveDotBreathe {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.mobile-toggle {
  display: none;
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  color: var(--text-heading);
  font-size: 1.3rem;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION (BESPOKE EDITORIAL AGENCY THEME - BOUTIQUE STUDIO FINISH)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  padding: 4.2rem 0 4.6rem;
  isolation: isolate;
  overflow: hidden;
  background: #FCFAF8;
}

/* Base subtle warm ambient studio lighting */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: 
    radial-gradient(ellipse 70% 60% at 75% 45%, rgba(255, 122, 0, 0.14) 0%, rgba(255, 171, 64, 0.06) 45%, transparent 80%),
    radial-gradient(ellipse 55% 45% at 15% 30%, rgba(255, 87, 34, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, #FAF7F2 100%);
}

/* Subtle Tactile Grain/Noise Overlay for Boutique Editorial Texture */
.hero-grain-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.032;
  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.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* Ambient Canvas Layer */
.hero-ambient-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.14fr 1fr;
  gap: 4.2rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* Reference Tag: 🟠 PRISMLINE — IT ENGINEERING × CYBERSECURITY */
.hero-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF5722;
  box-shadow: 0 0 8px rgba(255, 87, 34, 0.6);
}

/* Left Ambient Glowing Orb */
.hero-ambient-orb-left {
  position: absolute;
  top: 12%;
  left: -100px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 112, 67, 0.28) 0%, rgba(255, 167, 38, 0.12) 50%, transparent 70%);
  filter: blur(65px);
  pointer-events: none;
  z-index: 0;
  animation: orbDriftLeft 9s ease-in-out infinite alternate;
}

@keyframes orbDriftLeft {
  0% { transform: translate(0, 0) scale(1); opacity: 0.75; }
  50% { transform: translate(35px, -25px) scale(1.15); opacity: 0.98; }
  100% { transform: translate(15px, 25px) scale(0.95); opacity: 0.8; }
}

/* ==========================================================================
   EDITORIAL HEADLINE & HIGH-CONTRAST TYPOGRAPHY
   Headline: Playfair Display 800 + Italic Swashes for "Secured unbreakable."
   Body: Plus Jakarta Sans with consistent left-edge alignment
   ========================================================================== */
.hero-headline {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(3.2rem, 5.8vw, 5.2rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.028em;
  color: #0F172A;
  margin-bottom: 1.8rem;
  text-rendering: optimizeLegibility;
}

.hero-title-main {
  display: block;
  color: #0F172A;
  font-weight: 800;
  margin-bottom: 0.06em;
}

.hero-title-accent {
  display: block;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.005em;
  background: linear-gradient(135deg, #FF3D00 0%, #FF6500 50%, #FF8A00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 24px rgba(255, 69, 0, 0.22));
}

.hero-desc {
  font-family: var(--font-main);
  font-size: 1.12rem;
  line-height: 1.74;
  color: #475569;
  max-width: 520px;
  margin-bottom: 2.2rem;
  font-weight: 450;
  letter-spacing: -0.01em;
  text-align: left;
}

.hero-btn-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #FF4500 0%, #FF6B00 100%);
  color: #FFFFFF !important;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.95rem 1.85rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px -2px rgba(255, 69, 0, 0.32), 0 2px 6px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -2px rgba(255, 69, 0, 0.45), 0 4px 10px rgba(15, 23, 42, 0.08);
}

.btn-hero-phone {
  background: #FFFFFF;
  color: var(--text-heading);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, background-color 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-hero-phone:hover {
  transform: translateY(-2px);
  border-color: var(--border-hover);
  background: #F8FAFC;
}

/* ==========================================================================
   CLEAN MACBOOK PRO CYBER DEFENSE SHOWCASE
   Ultra-realistic laptop chassis, live site preview, simulated cyber attack,
   zero-trust shield deflection & real-time mitigation telemetry.
   ========================================================================== */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}

/* Ambient Background: Clean & Plain Light Backdrop Behind Laptop with Glowing Orange Ambient Bubbles & Tech Lines */
.hero-ambient-backdrop {
  display: none !important;
}

/* Ambient Orange Glow Bubbles & Tech Lines Behind Laptop (Replaced by Hero Ambient Canvas Engine) */
.laptop-bg-ambient {
  display: none !important;
}

.ambient-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.72;
  pointer-events: none;
}

.ambient-glow-orb.orb-1 {
  width: 320px;
  height: 320px;
  top: -40px;
  right: -40px;
  background: radial-gradient(circle, rgba(255, 77, 0, 0.55) 0%, rgba(255, 122, 0, 0.3) 50%, transparent 75%);
  animation: floatOrb1 7s ease-in-out infinite alternate;
}

.ambient-glow-orb.orb-2 {
  width: 280px;
  height: 280px;
  bottom: -35px;
  left: -50px;
  background: radial-gradient(circle, rgba(255, 138, 0, 0.5) 0%, rgba(255, 87, 34, 0.25) 50%, transparent 75%);
  animation: floatOrb2 8s ease-in-out infinite alternate-reverse;
}

.ambient-glow-orb.orb-3 {
  width: 210px;
  height: 210px;
  top: 40%;
  left: 36%;
  background: radial-gradient(circle, rgba(255, 176, 32, 0.45) 0%, rgba(255, 77, 0, 0.2) 60%, transparent 80%);
  animation: floatOrb3 6s ease-in-out infinite alternate;
}

/* Floating Glassy Orange Tech Bubbles Only (Circles Removed, Bubbles Only) */
.ambient-tech-bubble {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}

.ambient-tech-bubble.bubble-1 {
  width: 58px;
  height: 58px;
  top: 15px;
  right: 15px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 176, 32, 0.5) 0%, rgba(255, 77, 0, 0.22) 60%, transparent 100%);
  border: 1.5px solid rgba(255, 77, 0, 0.65);
  box-shadow: 0 0 24px rgba(255, 77, 0, 0.4), inset 0 0 12px rgba(255, 176, 32, 0.35);
  animation: floatBubble1 6s ease-in-out infinite alternate;
}

.ambient-tech-bubble.bubble-2 {
  width: 44px;
  height: 44px;
  bottom: 25px;
  left: 10px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 122, 0, 0.5) 0%, rgba(255, 87, 34, 0.22) 60%, transparent 100%);
  border: 1.5px solid rgba(255, 122, 0, 0.6);
  box-shadow: 0 0 18px rgba(255, 122, 0, 0.35), inset 0 0 10px rgba(255, 122, 0, 0.3);
  animation: floatBubble2 7s ease-in-out infinite alternate-reverse;
}

.ambient-tech-bubble.bubble-3 {
  width: 28px;
  height: 28px;
  top: 65px;
  left: 20px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 200, 60, 0.55) 0%, rgba(255, 77, 0, 0.25) 70%, transparent 100%);
  border: 1.2px solid rgba(255, 176, 32, 0.7);
  box-shadow: 0 0 14px rgba(255, 176, 32, 0.4);
  animation: floatBubble3 5s ease-in-out infinite alternate;
}

.ambient-tech-bubble.bubble-4 {
  width: 48px;
  height: 48px;
  bottom: 55px;
  right: 5px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 87, 34, 0.45) 0%, rgba(255, 77, 0, 0.18) 60%, transparent 100%);
  border: 1.5px solid rgba(255, 87, 34, 0.6);
  box-shadow: 0 0 20px rgba(255, 87, 34, 0.38);
  animation: floatBubble1 8s ease-in-out infinite alternate-reverse;
}

.ambient-tech-bubble.bubble-5 {
  width: 36px;
  height: 36px;
  top: -15px;
  left: 32%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 138, 0, 0.48) 0%, rgba(255, 77, 0, 0.2) 60%, transparent 100%);
  border: 1.2px solid rgba(255, 138, 0, 0.6);
  box-shadow: 0 0 16px rgba(255, 138, 0, 0.38);
  animation: floatBubble2 6.5s ease-in-out infinite alternate;
}

.ambient-tech-bubble.bubble-6 {
  width: 42px;
  height: 42px;
  top: 45%;
  right: -25px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 77, 0, 0.52) 0%, rgba(255, 176, 32, 0.22) 60%, transparent 100%);
  border: 1.4px solid rgba(255, 77, 0, 0.65);
  box-shadow: 0 0 18px rgba(255, 77, 0, 0.42);
  animation: floatBubble3 7.5s ease-in-out infinite alternate-reverse;
}

.ambient-tech-bubble.bubble-7 {
  width: 22px;
  height: 22px;
  bottom: -15px;
  left: 45%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 176, 32, 0.58) 0%, rgba(255, 122, 0, 0.24) 70%, transparent 100%);
  border: 1px solid rgba(255, 176, 32, 0.75);
  box-shadow: 0 0 12px rgba(255, 176, 32, 0.38);
  animation: floatBubble1 5.5s ease-in-out infinite alternate;
}

.ambient-tech-bubble.bubble-8 {
  width: 18px;
  height: 18px;
  top: 50%;
  left: -20px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 87, 34, 0.58) 0%, rgba(255, 77, 0, 0.22) 70%, transparent 100%);
  border: 1px solid rgba(255, 87, 34, 0.75);
  box-shadow: 0 0 10px rgba(255, 87, 34, 0.38);
  animation: floatBubble2 6s ease-in-out infinite alternate-reverse;
}

@keyframes floatBubble1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-12px, -16px) scale(1.1); }
}

@keyframes floatBubble2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(14px, -12px) scale(1.12); }
}

@keyframes floatBubble3 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(10px, 15px) scale(1.15); }
}

@keyframes floatOrb1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-18px, 22px) scale(1.12); }
}

@keyframes floatOrb2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(22px, -18px) scale(1.08); }
}

@keyframes floatOrb3 {
  0% { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-42%, -58%) scale(1.18); }
}

/* ==========================================================================
   CLEAN 3D MACBOOK PRO SHOWCASE - STATIC OPEN & ZERO-TRUST SECURITY AUDIT
   - Statically Open MacBook Pro with Authentic VS Code IDE & AuraGift Storefront
   - Seamless Typing -> Multi-Page Creation -> Scrolled Data Protection -> Auto-Repeat
   ========================================================================== */

/* 3D MacBook Pro Stage */
.macbook-device {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 530px;
  margin: 0 auto;
  perspective: 1500px;
  transform-style: preserve-3d;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Realistic Soft Contact Drop Shadow Beneath Laptop Base */
.macbook-shadow {
  width: 94%;
  height: 24px;
  margin: 0 auto;
  background: radial-gradient(ellipse at 50% 30%, rgba(15, 23, 42, 0.26) 0%, rgba(15, 23, 42, 0.08) 45%, transparent 75%);
  filter: blur(8px);
  border-radius: 50%;
  margin-top: -2px;
  transform: scaleY(0.7);
  pointer-events: none;
}

/* 3D Lid (Permanently Open Statically in Crisp Display) */
.macbook-lid-wrapper {
  transform-origin: bottom center;
  transform-style: preserve-3d;
  transform: rotateX(0deg);
  opacity: 1;
}

.macbook-lid-wrapper.is-open {
  transform: rotateX(0deg);
  opacity: 1;
}

/* Space Gray Aluminum Lid Housing */
.macbook-lid {
  background: linear-gradient(135deg, #3A3F4D 0%, #2A2E38 40%, #1E222A 100%);
  border-radius: 12px 12px 0 0;
  padding: 8px 8px 0 8px;
  box-shadow: 
    0 -1px 0 rgba(255, 255, 255, 0.15) inset,
    0 1px 2px rgba(0, 0, 0, 0.3);
  position: relative;
  transform-style: preserve-3d;
}

/* Top Center Camera Notch */
.macbook-camera {
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background: #14171E;
  border-radius: 0 0 3px 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.macbook-camera::after {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #090B0E;
  border: 0.5px solid rgba(255, 255, 255, 0.2);
}

/* MacBook Retina Screen (Clean, Crisp, Permanently Awake) */
.macbook-screen {
  background: #FFFFFF;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
  opacity: 1;
  filter: brightness(1);
}

.macbook-screen.is-awake {
  opacity: 1;
  filter: brightness(1);
}

/* Screen Browser Chrome Bar */
.screen-browser-bar {
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
  padding: 7px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.browser-dots {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.browser-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}

.dot-red { background: #FF5F56; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #27C93F; }

.browser-address {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 3px 10px;
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  color: #334155;
  flex: 1;
  max-width: 330px;
  white-space: nowrap;
  min-width: 0;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.browser-address.is-hardened {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.15);
}

.ssl-lock {
  font-size: 0.75rem;
  color: #10B981;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.ssl-lock.pulse-glow {
  transform: scale(1.2);
  filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.8));
}

.address-url {
  font-weight: 600;
  color: #0F172A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shield-tag {
  font-size: 0.62rem;
  color: #059669;
  background: rgba(16, 185, 129, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: auto;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  letter-spacing: 0.02em;
}

.browser-action {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.btn-replay-laptop {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 6px;
  padding: 3px 8px;
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-replay-laptop:hover {
  background: #F1F5F9;
  color: #0F172A;
  border-color: #94A3B8;
  transform: scale(1.02);
}

.btn-laptop-mode {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 5px;
  padding: 2px 7px;
  font-family: var(--font-mono, monospace);
  font-size: 0.65rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-laptop-mode:hover,
.btn-laptop-mode.active {
  background: #0F172A;
  color: #FFFFFF;
  border-color: #0F172A;
}

.btn-laptop-mode-term {
  border-color: rgba(255, 87, 34, 0.4);
  color: #FF5722;
  background: rgba(255, 87, 34, 0.06);
}

.btn-laptop-mode-term:hover,
.btn-laptop-mode-term.active {
  background: #FF5722;
  color: #FFFFFF;
  border-color: #FF5722;
}

/* Screen Viewport (Inside Screen) */
.screen-viewport {
  position: relative;
  height: 315px;
  background: radial-gradient(circle at 85% 15%, rgba(255, 77, 0, 0.03) 0%, transparent 50%), #FFFFFF;
  overflow: hidden;
  padding: 12px 14px 10px;
}

/* Multi-Page Canvas with Smooth Auto-Scroll */
.mock-site-scroll-canvas {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(0);
  transition: transform 1.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.mock-site-scroll-canvas.scrolled-down {
  transform: translateY(-215px);
}

.mock-page-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

/* Page Navigation Tabs inside screen header */
.mock-nav-tabs {
  display: flex;
  align-items: center;
  gap: 3px;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  border-radius: 9999px;
  padding: 2px 4px;
}

.mock-nav-tabs .nav-tab {
  font-family: var(--font-mono, monospace);
  font-size: 0.56rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 9999px;
  color: #64748B;
  cursor: default;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.mock-nav-tabs .nav-tab.active {
  background: #FFFFFF;
  color: #0F172A;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Showcase Section: Pages Created with Images & Dummy Details */
.mock-pages-showcase {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-top: 2px;
  padding-bottom: 48px;
}

.showcase-section-title {
  font-family: var(--font-mono, monospace);
  font-size: 0.58rem;
  font-weight: 800;
  color: #FF5722;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 1px;
}

.mock-showcase-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 7px 9px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.mock-showcase-card.is-active-target {
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 3px 12px rgba(16, 185, 129, 0.12);
  transform: scale(1.01);
}

.showcase-img-wrap {
  position: relative;
  width: 64px;
  height: 48px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid #E2E8F0;
  background: #0F172A;
}

.showcase-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase-tag-badge {
  position: absolute;
  bottom: 2px;
  left: 2px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  font-family: var(--font-mono, monospace);
  font-size: 0.48rem;
  font-weight: 700;
  padding: 1px 4px;
  border-radius: 3px;
  line-height: 1;
}

.showcase-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.showcase-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.showcase-row-head strong {
  font-size: 0.68rem;
  font-weight: 700;
  color: #0F172A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sec-micro-badge {
  font-family: var(--font-mono, monospace);
  font-size: 0.54rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 4px;
  background: #F1F5F9;
  color: #64748B;
  border: 1px solid #E2E8F0;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sec-micro-badge.is-protected {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.15);
  animation: microBadgePulse 1.2s ease-out;
}

@keyframes microBadgePulse {
  0% { transform: scale(0.9); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.showcase-dummy-desc {
  font-size: 0.60rem;
  color: #475569;
  margin: 0;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.showcase-dummy-desc code {
  font-family: var(--font-mono, monospace);
  font-size: 0.58rem;
  background: #F1F5F9;
  padding: 1px 4px;
  border-radius: 3px;
  color: #0F172A;
  font-weight: 600;
}

.showcase-sec-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono, monospace);
  font-size: 0.54rem;
  color: #10B981;
  font-weight: 700;
  margin-top: 1px;
}

.showcase-sec-bar .sec-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 5px rgba(16, 185, 129, 0.8);
}

/* Clip 2: Dark VS Code Style Code Editor Overlay (Typing & Smooth Crossfade) */
.mock-code-editor {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0E131F;
  z-index: 25;
  display: flex;
  flex-direction: column;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.7s;
  pointer-events: auto;
  border-radius: 0;
}

.mock-code-editor.fade-out {
  opacity: 0;
  transform: scale(1.02);
  pointer-events: none;
  visibility: hidden;
}

.editor-header {
  background: #161C2A;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.editor-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
}

.editor-tab.active {
  background: #0E131F;
  color: #E2E8F0;
  padding: 3px 10px;
  border-radius: 4px 4px 0 0;
  border-top: 2px solid #007ACC;
  font-size: 0.68rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.editor-tab .vscode-icon-svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.editor-tab .tab-icon {
  color: #38BDF8;
  font-size: 0.74rem;
}

.editor-body {
  flex: 1;
  display: flex;
  padding: 10px 14px;
  gap: 12px;
  overflow: hidden;
  background: #0E131F;
}

.code-line-numbers {
  display: flex;
  flex-direction: column;
  color: #475569;
  font-size: 0.63rem;
  letter-spacing: -0.01em;
  line-height: 1.55;
  text-align: right;
  user-select: none;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  padding-right: 9px;
  gap: 0;
}

.code-line-numbers span {
  display: block;
  height: 1.55em;
  line-height: 1.55;
}

.code-typing-area {
  flex: 1;
  font-size: 0.63rem;
  letter-spacing: -0.01em;
  line-height: 1.55;
  color: #F1F5F9;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  white-space: pre-wrap;
  word-break: break-word;
}

.code-cursor {
  display: inline-block;
  color: #38BDF8;
  font-weight: 900;
  margin-left: 2px;
  animation: codeCursorPulse 0.7s infinite;
}

@keyframes codeCursorPulse {
  0%, 45% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

/* Code Syntax Highlighting */
.syn-kw { color: #F43F5E; font-weight: 600; }
.syn-fn { color: #38BDF8; }
.syn-str { color: #10B981; }
.syn-prop { color: #FBBF24; }
.syn-comm { color: #64748B; font-style: italic; }

/* Security Scanning line removed per user request */
.security-shimmer-sweep {
  display: none !important;
}

/* Step 2: Staggered Build Elements */
.anim-build-item {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-build-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mock Site Header inside MacBook */
.mock-site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #F1F5F9;
  padding-bottom: 8px;
  margin-bottom: 10px;
}

.mock-logo {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mock-logo-img {
  height: 22px !important;
  width: auto !important;
  max-height: 24px !important;
  max-width: 32px !important;
  filter: drop-shadow(0 2px 4px rgba(213, 0, 0, 0.25));
  display: inline-block;
}

.mock-brand-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--brand-crimson, #D50000);
  letter-spacing: -0.01em;
}

.mock-brand-name span {
  color: var(--brand-sunset, #FF5722);
}

/* AuraGift Atelier Styling */
.auragift-brand-name {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.auragift-brand-name span {
  color: #E08B41;
}

.auragift-brand-gem {
  font-size: 0.78rem;
  color: #E08B41;
  display: inline-block;
  margin-right: 2px;
}

.auragift-hero {
  position: relative;
  border-radius: 7px;
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 5120 / 2144;
  margin-bottom: 7px;
  background: #0B0F19;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.auragift-hero-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 5120 / 2144;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Continuous Smooth Scrolling Store Canvas */
.store-scroll-container {
  position: relative;
  width: 100%;
  height: 268px;
  overflow: hidden;
}

.store-scroll-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  transform: translateY(0);
  transition: transform 0.85s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.store-scroll-section {
  width: 100%;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

/* Page Navigation Tabs in Screen Header */
.mock-nav-tabs {
  display: flex;
  align-items: center;
  gap: 3px;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  border-radius: 9999px;
  padding: 2px 4px;
  margin-left: auto;
}

.mock-nav-tabs .nav-tab {
  font-family: var(--font-mono, monospace);
  font-size: 0.58rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 9999px;
  color: #64748B;
  cursor: default;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.mock-nav-tabs .nav-tab.active {
  background: #FFFFFF;
  color: #0F172A;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* HOME VIEW */
.home-categories-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 6px;
}

.home-cat-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 7px 8px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.home-cat-card strong {
  font-size: 0.64rem;
  color: #0F172A;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.home-cat-card span {
  font-size: 0.54rem;
  color: #64748B;
  line-height: 1.3;
}

.home-cat-card .cat-link {
  font-size: 0.52rem;
  font-weight: 700;
  color: #E08B41;
  margin-top: auto;
}

/* SHOP VIEW */
.view-section-header {
  font-family: var(--font-mono, monospace);
  font-size: 0.58rem;
  font-weight: 800;
  color: #E08B41;
  letter-spacing: 0.06em;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.view-section-header span.sec-badge {
  font-size: 0.52rem;
  color: #10B981;
  background: rgba(16, 185, 129, 0.1);
  padding: 1px 5px;
  border-radius: 3px;
}

.shop-products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  flex: 1;
}

.shop-product-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 7px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.shop-product-thumb {
  width: 100%;
  height: 72px;
  border-radius: 5px;
  object-fit: cover;
  background: #0F172A;
  border: 1px solid #E2E8F0;
}

.shop-product-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.shop-product-title {
  font-size: 0.68rem;
  font-weight: 700;
  color: #0F172A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shop-product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  margin-top: 1px;
}

.shop-product-price {
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  font-weight: 700;
  color: #0F172A;
}

.shop-product-stock {
  font-size: 0.52rem;
  color: #059669;
  font-weight: 600;
  background: rgba(16, 185, 129, 0.1);
  padding: 1px 4px;
  border-radius: 3px;
}

.btn-shop-add {
  background: #0F172A;
  color: #FFFFFF;
  border: none;
  border-radius: 5px;
  font-size: 0.58rem;
  font-weight: 600;
  padding: 4px 8px;
  cursor: pointer;
  text-align: center;
  width: 100%;
  margin-top: 2px;
}

/* ABOUT VIEW */
.about-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 12px 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-hero-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.3;
}

.about-text {
  font-size: 0.62rem;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

.about-pillars-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 4px;
}

.about-pillar {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 6px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-pillar .pillar-icon {
  font-size: 0.85rem;
}

.about-pillar strong {
  font-size: 0.58rem;
  color: #0F172A;
}

.about-pillar small {
  font-size: 0.50rem;
  color: #64748B;
}

/* CART VIEW */
.cart-box {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.cart-item-row {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #F1F5F9;
  padding-bottom: 8px;
}

.cart-item-img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid #E2E8F0;
  background: #0F172A;
  flex-shrink: 0;
}

.cart-item-meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cart-item-meta strong {
  font-size: 0.68rem;
  color: #0F172A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-meta small {
  font-size: 0.56rem;
  color: #64748B;
}

.cart-item-price {
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  font-weight: 800;
  color: #0F172A;
}

.cart-summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.64rem;
  color: #64748B;
}

.cart-summary-line.total-line {
  font-weight: 800;
  font-size: 0.76rem;
  color: #0F172A;
  border-top: 1px dashed #CBD5E1;
  padding-top: 6px;
  margin-top: 2px;
}

.btn-cart-checkout {
  background: linear-gradient(135deg, #D50000 0%, #FF5722 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  padding: 7px 12px;
  font-size: 0.68rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(213, 0, 0, 0.25);
}

.cart-security-note {
  font-family: var(--font-mono, monospace);
  font-size: 0.52rem;
  color: #059669;
  text-align: center;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* PAYMENT SUCCESS MODAL */
.payment-success-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  width: 86%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid #10B981;
  border-radius: 10px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 5px;
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.2), 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 22;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.payment-success-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.pay-success-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.45);
}

.pay-success-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: #0F172A;
  margin: 2px 0 0 0;
}

.pay-success-order {
  font-family: var(--font-mono, monospace);
  font-size: 0.60rem;
  color: #64748B;
  margin: 0;
}

.pay-success-vault {
  font-family: var(--font-mono, monospace);
  font-size: 0.54rem;
  font-weight: 700;
  color: #059669;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 4px;
  padding: 3px 8px;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* LIVE XSS INJECTION ALERT BANNER */
.xss-live-banner {
  position: absolute;
  top: 10px;
  left: 12px;
  right: 12px;
  background: #FFF1F2;
  border: 1px solid #F43F5E;
  border-radius: 6px;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(244, 63, 94, 0.2);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.xss-live-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
}

.xss-icon {
  font-size: 1.15rem;
}

.xss-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.xss-tag {
  font-family: var(--font-mono, monospace);
  font-size: 0.52rem;
  font-weight: 800;
  color: #E11D48;
  letter-spacing: 0.05em;
}

.xss-code {
  font-family: var(--font-mono, monospace);
  font-size: 0.60rem;
  font-weight: 700;
  color: #0F172A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* AUTHENTIC 403 FORBIDDEN NGINX SCREEN (IMAGE 2) - FULL VIEWPORT TAKEOVER */
.view-403-nginx {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  z-index: 50;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 55px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.view-403-nginx.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nginx-403-content {
  width: 90%;
  text-align: center;
}

.nginx-title {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-size: 2.15rem;
  font-weight: 700;
  color: #000000;
  margin: 0 0 10px 0;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.nginx-divider {
  border: none;
  border-top: 1px solid #D1D5DB;
  width: 100%;
  margin: 0 auto 10px auto;
}

.nginx-server {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.88rem;
  color: #111827;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* Ensure Store Header is Completely Hidden During Security Screens */
.mock-site-header.is-hidden,
.screen-viewport.is-security-mode .mock-site-header {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  display: none !important;
}

/* FULL VIEWPORT TAKEOVER ATTACK CMD CONSOLE (MASKS ENTIRE SCREEN, NO LEAKAGE) */
.mock-attack-cmd {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #090D16;
  border: none;
  border-radius: 0;
  box-shadow: none;
  z-index: 55;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px) scale(0.99);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
  visibility: hidden;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.mock-attack-cmd.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.attack-cmd-header {
  background: #111726;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cmd-dots {
  display: flex;
  gap: 4px;
}

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

.cmd-title {
  font-size: 0.58rem;
  color: #94A3B8;
  font-weight: 600;
}

.cmd-tag {
  font-size: 0.50rem;
  font-weight: 800;
  color: #EF4444;
  background: rgba(239, 68, 68, 0.15);
  padding: 1px 5px;
  border-radius: 3px;
  letter-spacing: 0.04em;
}

.attack-cmd-body {
  padding: 10px 12px;
  font-size: 0.58rem;
  line-height: 1.5;
  color: #E2E8F0;
  flex: 1;
  overflow: hidden;
  white-space: pre-wrap;
  word-break: break-all;
}

.cmd-cursor {
  display: inline-block;
  color: #EF4444;
  font-weight: 900;
  animation: cmdCursorBlink 0.7s infinite;
}

@keyframes cmdCursorBlink {
  0%, 45% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

/* MacBook Base / Chin */
.macbook-base {
  height: 18px;
  background: linear-gradient(180deg, #3A3F4D 0%, #252830 50%, #1A1C23 100%);
  border-radius: 0 0 16px 16px;
  box-shadow: 
    0 18px 42px -8px rgba(15, 23, 42, 0.28),
    0 4px 10px -2px rgba(0, 0, 0, 0.15);
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: -1px;
}

.macbook-notch-indent {
  width: 72px;
  height: 5px;
  background: #121418;
  border-radius: 0 0 5px 5px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.6);
}

@media (max-width: 640px) {
  .macbook-device { max-width: 100%; }
  .screen-viewport { height: 265px; padding: 10px; }
  .browser-address { max-width: 220px; font-size: 0.62rem; }
  .store-views-wrapper { height: 250px; }
  .shop-products-grid { grid-template-columns: 1fr; }
}

/* Trust Bar */
.trust-bar {
  padding: 3rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-subtle);
}

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

.trust-metric-card {
  text-align: left;
  padding: 0.5rem 1rem;
}

.trust-metric-value {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1;
  margin-bottom: 0.4rem;
  font-family: var(--font-main);
}

.trust-metric-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.2rem;
}

.trust-metric-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Section Common Styles */
.section-wrapper {
  padding: 6.5rem 0;
  position: relative;
  background: #FFFFFF;
}

.section-wrapper.bg-subtle {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-head {
  margin-bottom: 3.8rem;
  max-width: 680px;
}

/* .section-eyebrow is defined in editorial typography section */


.section-title {
  font-family: var(--font-hero);
  font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin-bottom: 1rem;
}

/* Services Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.agency-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  cursor: default;
}

.agency-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(255, 87, 34, 0.06), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.agency-card:hover {
  border-color: rgba(255, 87, 34, 0.45);
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -12px rgba(255, 77, 0, 0.16), 0 0 0 1.5px rgba(255, 87, 34, 0.25);
}

.agency-card:hover::before {
  opacity: 1;
}

.agency-card > div {
  position: relative;
  z-index: 1;
}

.card-num {
  display: none !important;
}

.phase-badge {
  display: none !important;
}

.phase-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #FF5722;
  line-height: 1;
  display: inline-block;
  margin-bottom: 0.6rem;
}

.card-title {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.7rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.card-text {
  font-size: 0.95rem;
  margin-bottom: 1.35rem;
  color: var(--text-body);
  line-height: 1.65;
}

.card-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.88rem;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}

.card-specs li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.card-specs li::before {
  content: '✓';
  color: var(--brand-crimson);
  font-weight: 800;
}

/* Interactive Hover Details Drawer - Collapsed at rest, expands smoothly on hover */
.card-hover-drawer {
  background: #FFFFFF;
  border: 1px solid rgba(255, 87, 34, 0.35);
  border-radius: 12px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(12px);
  pointer-events: none;
  padding: 0 1.15rem;
  margin-top: 0;
  box-shadow: 0 12px 28px -4px rgba(255, 77, 0, 0.12);
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.35s ease,
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.35s ease,
              margin-top 0.35s ease;
  position: relative;
  z-index: 5;
}

/* Interactive Hover Details Drawer */
.card-hover-drawer {
  background: #F8FAFC;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  margin-top: 0.5rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 2;
}

.agency-card:hover .card-hover-drawer {
  background: #FFFFFF;
  border-color: rgba(255, 87, 34, 0.35);
  box-shadow: 0 6px 20px -4px rgba(255, 77, 0, 0.10);
  transform: translateY(-2px);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.drawer-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.drawer-status {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  color: #059669;
  background: rgba(16, 185, 129, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.drawer-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.tech-pill {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  color: #334155;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  padding: 3px 7px;
  border-radius: 6px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.agency-card:hover .tech-pill {
  border-color: rgba(255, 87, 34, 0.3);
  color: #0F172A;
}

.tech-pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #FF5722;
}

.drawer-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  background: #F1F5F9;
  padding: 0.6rem 0.5rem;
  border-radius: 8px;
  margin-bottom: 0.85rem;
  text-align: center;
}

.agency-card:hover .drawer-metrics-row {
  background: #FFF7ED;
}

.drawer-metric-item {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.drawer-metric-val {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  color: #D50000;
}

.drawer-metric-lbl {
  font-size: 0.58rem;
  color: #64748B;
  font-weight: 600;
}

.btn-card-drawer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #FFFFFF;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  border: none;
  border-radius: 7px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
}

.agency-card:hover .btn-card-drawer {
  background: linear-gradient(135deg, #D50000 0%, #FF5722 100%);
  box-shadow: 0 4px 14px rgba(213, 0, 0, 0.28);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.drawer-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.drawer-status {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  color: #059669;
  background: rgba(16, 185, 129, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.drawer-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.tech-pill {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  color: #334155;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  padding: 3px 7px;
  border-radius: 6px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.agency-card:hover .tech-pill {
  border-color: rgba(255, 87, 34, 0.3);
  color: #0F172A;
}

.tech-pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #FF5722;
}

.drawer-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  background: #FFF7ED;
  padding: 0.6rem 0.5rem;
  border-radius: 8px;
  margin-bottom: 0.85rem;
  text-align: center;
}

.drawer-metric-item {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.drawer-metric-val {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  color: #D50000;
}

.drawer-metric-lbl {
  font-size: 0.58rem;
  color: #64748B;
  font-weight: 600;
}

.btn-card-drawer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #FFFFFF;
  background: linear-gradient(135deg, #D50000 0%, #FF5722 100%);
  border: none;
  border-radius: 7px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(213, 0, 0, 0.28);
}

/* The Rectification Guarantee Showcase Box */
.guarantee-box-human {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-left: 5px solid var(--brand-crimson);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 3rem;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.guarantee-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin: 1.8rem 0 2.2rem;
}

.guarantee-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 1.02rem;
  color: var(--text-heading);
}

.guarantee-check {
  color: var(--brand-crimson);
  font-weight: 800;
  font-size: 1.15rem;
  margin-top: 1px;
}

/* Card Preview Media (Photos & Previews for What We Build) */
.card-media-preview {
  position: relative;
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: #0E131F;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.card-media-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.agency-card:hover .card-media-preview img {
  transform: scale(1.08);
}

.card-media-badge {
  display: none !important;
}

/* The Rectification Guarantee Side Panel with Trust Photo */
.guarantee-panel-side {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0;
  text-align: left;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.guarantee-panel-side:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 87, 34, 0.4);
  transform: translateY(-2px);
}

.guarantee-photo-wrap {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
  background: #0E131F;
}

.guarantee-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.guarantee-panel-side:hover .guarantee-photo-wrap img {
  transform: scale(1.05);
}

.guarantee-photo-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 87, 34, 0.5);
  color: #FFFFFF;
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.guarantee-photo-badge .badge-gold-shield {
  color: #FFA000;
}

.guarantee-content-body {
  padding: 2rem;
  text-align: center;
  background: var(--bg-subtle);
}

.guarantee-stat-lg {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.4rem;
}

/* GoDaddy-Ready Contact / Lead Capture Form */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3.5rem;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow-md);
}

.contact-meta-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  margin: 1.8rem 0;
}

.direct-phone-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-heading);
  display: block;
  margin: 0.4rem 0;
}
.direct-phone-num:hover {
  color: var(--brand-orange);
}

.form-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.3rem;
}

.form-field-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-heading);
}

.input-agency {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.15rem;
  color: var(--text-heading);
  font-family: var(--font-main);
  font-size: 0.95rem;
  outline: none;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.input-agency:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(255, 77, 0, 0.15);
}

textarea.input-agency {
  min-height: 110px;
  resize: vertical;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

/* Toast Alerts */
.toast-box {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--brand-orange);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  color: var(--text-heading);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.92rem;
  font-weight: 500;
  animation: toastFade 0.3s ease;
}

@keyframes toastFade {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Global Light Footer */
.site-footer {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0 2rem;
  margin-top: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  margin: 1rem 0 1.2rem;
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-col h5 {
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-heading);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.footer-col a:hover {
  color: var(--brand-orange);
}

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

/* ==========================================================================
   SMOOTH SCROLL SECTIONS & UNIQUE ENTRANCE ANIMATIONS
   ========================================================================== */
.scroll-section {
  scroll-margin-top: 88px;
  position: relative;
}

/* Base Reveal Trigger */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed,
body:not(.js-ready) .reveal-on-scroll {
  opacity: 1;
  transform: translateY(0);
}

/* 1. Services Section Entrance: Staggered card rise & radiant underglow */
.reveal-services {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-services.is-revealed .agency-card:nth-child(1) {
  animation: cardStaggerPop 0.8s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.reveal-services.is-revealed .agency-card:nth-child(2) {
  animation: cardStaggerPop 0.8s 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.reveal-services.is-revealed .agency-card:nth-child(3) {
  animation: cardStaggerPop 0.8s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes cardStaggerPop {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* 2. Process Section: 4-Phase Lifecycle & Neon Timeline Track */
.process-timeline-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.process-phase-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2.8rem;
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
}

.process-phase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -8px rgba(15, 23, 42, 0.08);
}

.process-phase-card.phase-1 { border-left: 5px solid var(--brand-crimson); }
.process-phase-card.phase-2 { border-left: 5px solid var(--brand-orange); }
.process-phase-card.phase-3 { border-left: 5px solid var(--brand-sunset); }
.process-phase-card.phase-4 { border-left: 5px solid #10B981; }

.reveal-process {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-process.is-revealed .process-phase-card:nth-child(1) {
  animation: phaseSlideIn 0.75s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.reveal-process.is-revealed .process-phase-card:nth-child(2) {
  animation: phaseSlideIn 0.75s 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.reveal-process.is-revealed .process-phase-card:nth-child(3) {
  animation: phaseSlideIn 0.75s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.reveal-process.is-revealed .process-phase-card:nth-child(4) {
  animation: phaseSlideIn 0.75s 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes phaseSlideIn {
  from {
    opacity: 0;
    transform: translateX(-35px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 3. Guarantee Section Entrance: Shield Pulse & Radiant Counter */
.reveal-guarantee {
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-guarantee.is-revealed {
  opacity: 1;
  transform: scale(1);
}

.reveal-guarantee.is-revealed .guarantee-box-human {
  animation: guaranteeAura 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes guaranteeAura {
  0% {
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  }
  50% {
    box-shadow: 0 20px 50px -10px rgba(255, 77, 0, 0.22), 0 0 0 2px rgba(255, 87, 34, 0.35);
  }
  100% {
    box-shadow: 0 12px 32px -8px rgba(15, 23, 42, 0.08);
  }
}

/* 4. About Studio Section Entrance: Split cinematic entrance */
.reveal-about {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-about.is-revealed .about-narrative-col {
  animation: aboutLeftIn 0.85s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.reveal-about.is-revealed .about-crest-card {
  animation: aboutRightIn 0.85s 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes aboutLeftIn {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes aboutRightIn {
  from { opacity: 0; transform: translateX(40px) scale(0.96); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

/* 5. Contact / Consultation Entrance: Upward elevator lift & focus glow */
.reveal-contact {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-contact.is-revealed .lead-capture-form {
  animation: formGlowIn 0.9s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes formGlowIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 20px 48px -12px rgba(255, 77, 0, 0.12);
  }
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .nav-brand { margin-right: 1.5rem; }
  .nav-links { gap: 1.25rem; }
  .nav-links a { font-size: 0.88rem; }
  .nav-phone-link { padding: 0.45rem 0.75rem; font-size: 0.82rem; }
}

@media (max-width: 1040px) {
  .navbar { height: 68px; }
  .nav-brand { margin-right: 0; }
  .nav-links {
    position: fixed !important;
    top: 68px;
    left: -100% !important;
    width: 100% !important;
    height: calc(100vh - 68px);
    background: #FFFFFF;
    flex-direction: column;
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
    transition: left 0.3s ease;
    border-top: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
  }
  .nav-links.active {
    left: 0 !important;
  }
  .nav-actions .btn-hero-primary { display: none !important; }
  .nav-actions .nav-phone-link { display: none !important; }
  .mobile-toggle { display: inline-flex !important; }
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-right { order: 2; width: 100%; min-height: auto; margin-top: 1rem; }
  .hero-ambient-backdrop { display: none !important; }
  .hero-graphic-wrap { max-width: 440px; margin: 0 auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: 1fr; }
  .guarantee-box-human { grid-template-columns: 1fr; }
  .contact-container { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 1rem !important; }
  .hero-headline { font-size: 2.35rem; }
  .hero-tag-badge { font-size: 0.64rem; letter-spacing: 0.06em; padding: 0.35rem 0.7rem; max-width: 100%; white-space: normal; }
  .macbook-device { width: 100% !important; max-width: 330px !important; margin: 0 auto !important; }
  .screen-viewport { height: auto; min-height: 250px; padding: 10px; }
  .screen-browser-bar { padding: 6px 8px; gap: 6px; }
  .browser-address { max-width: 200px; font-size: 0.65rem; padding: 2px 6px; }
  .address-url { max-width: 150px; overflow: hidden; text-overflow: ellipsis; }
  .store-views-wrapper { height: 250px; }
  .shop-products-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom-bar { flex-direction: column; gap: 1rem; text-align: center; }
  .intro-brand-title { font-size: 1.85rem; letter-spacing: 0.12em; }
  .intro-brand-subtitle { font-size: 0.72rem; letter-spacing: 0.16em; }
  .intro-cyber-stage { width: 220px; height: 220px; }
  .intro-center-emblem { width: 110px; }
}


/* ==========================================================================
   3D MACBOOK PRO SHOWCASE & SCREEN CYBER DEFENSE STYLES
   Consolidated from index.html into canonical style.css
   ========================================================================== */

    /* ==========================================================================
       CLEAN 3D MACBOOK PRO SHOWCASE - 3-STEP PURE CODE ANIMATION
       Step 1: 3D Laptop Opens smoothly (rotateX) with soft realistic shadow
       Step 2: Website Builds Inside Screen (staggered ease-in-out reveal)
       Step 3: Security Activates (subtle shimmer, lock pulse, Zero-Trust Online, live counter)
       /* Ambient Orange Glow Bubbles & Tech Lines Behind Laptop */
    .hero-right {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 480px;
      isolation: isolate;
    }

    /* Simple Animated Orange Mesh Gradient Behind Laptop */
    .hero-right::before {
      display: none;
    }

    .hero-right::after {
      display: none;
    }

    .laptop-bg-ambient {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 760px;
      height: 520px;
      pointer-events: none;
      z-index: 1;
      overflow: visible;
      display: block !important;
    }

    /* Ambient Orange Mesh Gradient Canvas */
    .orange-mesh-canvas {
      position: absolute;
      inset: -30px -40px;
      border-radius: 50px;
      filter: blur(45px);
      opacity: 0.88;
      background:
        radial-gradient(ellipse 65% 55% at 80% 25%, rgba(255, 87, 34, 0.50) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 20% 75%, rgba(255, 145, 0, 0.45) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(255, 109, 0, 0.38) 0%, transparent 65%),
        radial-gradient(ellipse 45% 45% at 85% 80%, rgba(255, 167, 38, 0.35) 0%, transparent 60%);
      animation: meshPulseBreathe 9s ease-in-out infinite alternate;
      will-change: transform, opacity;
    }

    /* Floating Animated Mesh Fluid Blobs */
    .mesh-blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(50px);
      pointer-events: none;
      will-change: transform;
    }

    .mesh-blob-1 {
      width: 380px;
      height: 320px;
      top: -20px;
      right: -10px;
      background: radial-gradient(circle, rgba(255, 87, 34, 0.65) 0%, rgba(255, 122, 0, 0.30) 60%, transparent 80%);
      animation: meshFloat1 10s ease-in-out infinite alternate;
    }

    .mesh-blob-2 {
      width: 340px;
      height: 300px;
      bottom: -20px;
      left: -20px;
      background: radial-gradient(circle, rgba(255, 145, 0, 0.60) 0%, rgba(255, 87, 34, 0.25) 60%, transparent 80%);
      animation: meshFloat2 12s ease-in-out infinite alternate-reverse;
    }

    .mesh-blob-3 {
      width: 360px;
      height: 280px;
      top: 25%;
      left: 28%;
      background: radial-gradient(circle, rgba(255, 61, 0, 0.52) 0%, rgba(255, 167, 38, 0.20) 60%, transparent 80%);
      animation: meshFloat3 8s ease-in-out infinite alternate;
    }

    @keyframes meshPulseBreathe {
      0% {
        transform: scale(0.95);
        opacity: 0.78;
      }
      50% {
        transform: scale(1.06);
        opacity: 0.95;
      }
      100% {
        transform: scale(0.98);
        opacity: 0.82;
      }
    }

    @keyframes meshFloat1 {
      0% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(-35px, 25px) scale(1.14); }
      100% { transform: translate(-15px, 45px) scale(0.96); }
    }

    @keyframes meshFloat2 {
      0% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(35px, -25px) scale(1.12); }
      100% { transform: translate(20px, -40px) scale(0.94); }
    }

    @keyframes meshFloat3 {
      0% { transform: translate(0, 0) scale(0.92); }
      50% { transform: translate(25px, 15px) scale(1.16); }
      100% { transform: translate(-20px, -15px) scale(1.02); }
    }

    /* 3D Browser Mockup Card Stage */
    .macbook-device {
      position: relative;
      z-index: 3;
      width: 100%;
      max-width: 640px;
      margin: 0 auto;
      perspective: 1400px;
      transform-style: preserve-3d;
      transform: perspective(1400px) rotateY(-5deg) rotateX(3.5deg) rotateZ(-0.75deg);
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
    }

    .macbook-device:hover {
      transform: perspective(1400px) rotateY(0deg) rotateX(0deg) rotateZ(0deg) translateY(-4px);
    }

    .macbook-device::after {
      content: '';
      position: absolute;
      inset: 20px -20px auto;
      height: 85%;
      z-index: -1;
      border-radius: 30px;
      background: radial-gradient(ellipse at center, rgba(255, 87, 34, 0.18) 0%, rgba(255, 145, 0, 0.06) 45%, transparent 70%);
      filter: blur(24px);
      pointer-events: none;
    }

    /* Hide redundant laptop desk shadows & keyboard base */
    .macbook-shadow {
      display: none !important;
    }

    .macbook-base {
      display: none !important;
    }

    /* 3D Browser Mockup Wrapper */
    .macbook-lid-wrapper {
      transform-style: preserve-3d;
      opacity: 1;
    }

    .macbook-lid-wrapper.is-open {
      opacity: 1;
    }

    /* Sleek Dark Browser Frame with Rounded Corners and Subtle Glow */
    .macbook-lid {
      background: linear-gradient(135deg, #252A34 0%, #1A1D24 50%, #12141A 100%);
      border-radius: 16px;
      padding: 9px;
      border: 1px solid rgba(255, 87, 34, 0.18);
      box-shadow: 
        0 30px 70px -15px rgba(15, 23, 42, 0.18),
        0 12px 32px -8px rgba(255, 87, 34, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
      position: relative;
      transform-style: preserve-3d;
    }

    .macbook-camera {
      display: none;
    }

    /* Browser Screen (Clean, Crisp, Permanently Awake) */
    .macbook-screen {
      background: #FFFFFF;
      border-radius: 10px;
      overflow: hidden;
      position: relative;
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
      opacity: 1;
      filter: brightness(1);
    }

    .macbook-screen.is-awake {
      opacity: 1;
      filter: brightness(1);
    }

    /* Screen Browser Chrome Bar */
    .screen-browser-bar {
      background: #F8FAFC;
      border-bottom: 1px solid #E2E8F0;
      padding: 7px 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }

    .browser-dots {
      display: flex;
      align-items: center;
      gap: 5px;
      flex-shrink: 0;
    }

    .browser-dots .dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      display: inline-block;
    }

    .dot-red { background: #FF5F56; }
    .dot-yellow { background: #FFBD2E; }
    .dot-green { background: #27C93F; }

    .browser-address {
      display: flex;
      align-items: center;
      gap: 6px;
      background: #FFFFFF;
      border: 1px solid #E2E8F0;
      border-radius: 6px;
      padding: 4px 12px;
      font-family: var(--font-mono, monospace);
      font-size: 0.70rem;
      color: #334155;
      flex: 1;
      max-width: 420px;
      margin: 0 auto;
      white-space: nowrap;
      min-width: 0;
      transition: border-color 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
    }

    .browser-address.is-hardened {
      border-color: rgba(16, 185, 129, 0.4);
      box-shadow: 0 0 8px rgba(16, 185, 129, 0.15);
    }

    .browser-address.is-warning {
      border-color: rgba(239, 68, 68, 0.6) !important;
      background: #FFF5F5 !important;
      box-shadow: 0 0 10px rgba(239, 68, 68, 0.25) !important;
    }

    .ssl-lock {
      font-size: 0.75rem;
      color: #10B981;
      flex-shrink: 0;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease, color 0.4s ease;
    }

    .ssl-lock.pulse-glow {
      transform: scale(1.15);
      filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.8));
    }

    .ssl-lock.is-warning {
      color: #EF4444 !important;
      filter: drop-shadow(0 0 6px rgba(239, 68, 68, 0.7)) !important;
    }

    .address-url {
      font-weight: 600;
      color: #0F172A;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      transition: color 0.3s ease;
    }

    .browser-address.is-warning .address-url {
      color: #DC2626 !important;
    }

    /* Screen Viewport (Inside Screen - Sleek 16:10 MacBook Pro Aspect Ratio) */
    .screen-viewport {
      position: relative;
      height: 335px;
      background: radial-gradient(circle at 85% 15%, rgba(255, 77, 0, 0.03) 0%, transparent 50%), #FFFFFF;
      overflow: hidden;
      padding: 10px 14px 10px;
    }

    .store-scroll-container { height: 280px; }
    .store-scroll-track { gap: 12px; }
    .store-scroll-section { min-height: 280px; }

    /* Multi-View Store Container (Home, Shop, About, Cart, 404) */
    .store-views-wrapper {
      position: relative;
      width: 100%;
      height: 298px;
      overflow: hidden;
    }

    .store-view {
      position: absolute;
      inset: 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
      display: flex;
      flex-direction: column;
      pointer-events: none;
    }

    .store-view.is-active {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
      z-index: 5;
    }

    /* Page Navigation Tabs in Screen Header */
    .mock-nav-tabs {
      display: flex;
      align-items: center;
      gap: 3px;
      background: #F1F5F9;
      border: 1px solid #E2E8F0;
      border-radius: 9999px;
      padding: 2px 4px;
      margin-left: auto;
    }

    .mock-nav-tabs .nav-tab {
      font-family: var(--font-mono, monospace);
      font-size: 0.58rem;
      font-weight: 700;
      padding: 2px 7px;
      border-radius: 9999px;
      color: #64748B;
      cursor: default;
      transition: all 0.25s ease;
      white-space: nowrap;
    }

    .mock-nav-tabs .nav-tab.active {
      background: #FFFFFF;
      color: #0F172A;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    }

    /* HOME VIEW */
    .home-categories-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
      margin-top: 6px;
    }

    .home-cat-card {
      background: #FFFFFF;
      border: 1px solid #E2E8F0;
      border-radius: 6px;
      padding: 7px 8px;
      display: flex;
      flex-direction: column;
      gap: 3px;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
    }

    .home-cat-card strong {
      font-size: 0.64rem;
      color: #0F172A;
      display: flex;
      align-items: center;
      gap: 4px;
      white-space: nowrap;
    }

    .home-cat-card span {
      font-size: 0.54rem;
      color: #64748B;
      line-height: 1.3;
    }

    .home-cat-card .cat-link {
      font-size: 0.52rem;
      font-weight: 700;
      color: #E08B41;
      margin-top: auto;
    }

    /* SHOP VIEW */
    .view-section-header {
      font-family: var(--font-mono, monospace);
      font-size: 0.58rem;
      font-weight: 800;
      color: #E08B41;
      letter-spacing: 0.06em;
      margin-bottom: 7px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .view-section-header span.sec-badge {
      font-size: 0.52rem;
      color: #10B981;
      background: rgba(16, 185, 129, 0.1);
      padding: 1px 5px;
      border-radius: 3px;
    }

    .shop-products-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 7px;
      flex: 1;
    }

    .shop-product-card {
      background: #FFFFFF;
      border: 1px solid #E2E8F0;
      border-radius: 7px;
      padding: 6px;
      display: flex;
      flex-direction: column;
      gap: 4px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    }

    .shop-product-thumb {
      width: 100%;
      height: 72px;
      border-radius: 5px;
      object-fit: cover;
      background: #0F172A;
      border: 1px solid #E2E8F0;
    }

    .shop-product-details {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .shop-product-title {
      font-size: 0.68rem;
      font-weight: 700;
      color: #0F172A;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .shop-product-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 4px;
      margin-top: 1px;
    }

    .shop-product-price {
      font-family: var(--font-mono, monospace);
      font-size: 0.68rem;
      font-weight: 700;
      color: #0F172A;
    }

    .shop-product-stock {
      font-size: 0.52rem;
      color: #059669;
      font-weight: 600;
      background: rgba(16, 185, 129, 0.1);
      padding: 1px 4px;
      border-radius: 3px;
    }

    .btn-shop-add {
      background: #0F172A;
      color: #FFFFFF;
      border: none;
      border-radius: 5px;
      font-size: 0.58rem;
      font-weight: 600;
      padding: 4px 8px;
      cursor: pointer;
      text-align: center;
      width: 100%;
      margin-top: 2px;
    }

    /* ABOUT VIEW */
    .about-card {
      background: #FFFFFF;
      border: 1px solid #E2E8F0;
      border-radius: 8px;
      padding: 12px 14px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .about-hero-title {
      font-size: 0.82rem;
      font-weight: 800;
      color: #0F172A;
      line-height: 1.3;
    }

    .about-text {
      font-size: 0.62rem;
      color: #475569;
      line-height: 1.5;
      margin: 0;
    }

    .about-pillars-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
      margin-top: 4px;
    }

    .about-pillar {
      background: #F8FAFC;
      border: 1px solid #E2E8F0;
      border-radius: 6px;
      padding: 6px 8px;
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .about-pillar .pillar-icon {
      font-size: 0.85rem;
    }

    .about-pillar strong {
      font-size: 0.58rem;
      color: #0F172A;
    }

    .about-pillar small {
      font-size: 0.50rem;
      color: #64748B;
    }

    /* CART VIEW */
    .cart-box {
      background: #FFFFFF;
      border: 1px solid #E2E8F0;
      border-radius: 8px;
      padding: 10px 12px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .cart-item-row {
      display: flex;
      align-items: center;
      gap: 10px;
      border-bottom: 1px solid #F1F5F9;
      padding-bottom: 8px;
    }

    .cart-item-img {
      width: 48px;
      height: 48px;
      border-radius: 6px;
      object-fit: cover;
      border: 1px solid #E2E8F0;
      background: #0F172A;
      flex-shrink: 0;
    }

    .cart-item-meta {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .cart-item-meta strong {
      font-size: 0.68rem;
      color: #0F172A;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .cart-item-meta small {
      font-size: 0.56rem;
      color: #64748B;
    }

    .cart-item-price {
      font-family: var(--font-mono, monospace);
      font-size: 0.72rem;
      font-weight: 800;
      color: #0F172A;
    }

    .cart-summary-line {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.64rem;
      color: #64748B;
    }

    .cart-summary-line.total-line {
      font-weight: 800;
      font-size: 0.76rem;
      color: #0F172A;
      border-top: 1px dashed #CBD5E1;
      padding-top: 6px;
      margin-top: 2px;
    }

    .btn-cart-checkout {
      background: linear-gradient(135deg, #D50000 0%, #FF5722 100%);
      color: #FFFFFF;
      border: none;
      border-radius: 6px;
      padding: 7px 12px;
      font-size: 0.68rem;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      box-shadow: 0 2px 8px rgba(213, 0, 0, 0.25);
    }

    .cart-security-note {
      font-family: var(--font-mono, monospace);
      font-size: 0.52rem;
      color: #059669;
      text-align: center;
      margin-top: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
    }

    /* 404 SECURITY DEFENSE VIEW */
    .view-404-card {
      background: #FFFFFF;
      border: 1px solid rgba(239, 68, 68, 0.35);
      border-radius: 8px;
      padding: 12px 14px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      box-shadow: 0 4px 16px rgba(239, 68, 68, 0.08);
      position: relative;
    }

    .sec-404-badge-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .sec-404-tag {
      font-family: var(--font-mono, monospace);
      font-size: 0.56rem;
      font-weight: 800;
      color: #DC2626;
      background: rgba(239, 68, 68, 0.1);
      border: 1px solid rgba(239, 68, 68, 0.25);
      padding: 2px 7px;
      border-radius: 4px;
      letter-spacing: 0.04em;
    }

    .sec-404-status {
      font-family: var(--font-mono, monospace);
      font-size: 0.54rem;
      font-weight: 700;
      color: #059669;
      background: rgba(16, 185, 129, 0.1);
      padding: 2px 6px;
      border-radius: 4px;
    }

    .sec-404-title {
      font-size: 0.88rem;
      font-weight: 800;
      color: #0F172A;
      line-height: 1.25;
      margin: 0;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .sec-404-desc {
      font-size: 0.62rem;
      color: #475569;
      line-height: 1.45;
      margin: 0;
    }

    .sec-404-audit-panel {
      background: #0F172A;
      border-radius: 6px;
      padding: 8px 10px;
      font-family: var(--font-mono, monospace);
      font-size: 0.56rem;
      color: #94A3B8;
      display: flex;
      flex-direction: column;
      gap: 4px;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .sec-audit-line {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 6px;
    }

    .sec-audit-line .audit-key {
      color: #64748B;
    }

    .sec-audit-line .audit-val-red {
      color: #F87171;
      font-weight: 700;
    }

    .sec-audit-line .audit-val-green {
      color: #34D399;
      font-weight: 700;
    }

    .sec-404-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-family: var(--font-mono, monospace);
      font-size: 0.54rem;
      color: #10B981;
      font-weight: 700;
      background: rgba(16, 185, 129, 0.08);
      border: 1px solid rgba(16, 185, 129, 0.2);
      border-radius: 5px;
      padding: 4px 8px;
    }

    /* LIVE XSS INJECTION ALERT BANNER */
    .xss-live-banner {
      position: absolute;
      top: 10px;
      left: 12px;
      right: 12px;
      background: #FFF1F2;
      border: 1px solid #F43F5E;
      border-radius: 6px;
      padding: 7px 10px;
      display: flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 14px rgba(244, 63, 94, 0.2);
      z-index: 60;
      opacity: 0;
      pointer-events: none;
      visibility: hidden;
      transform: translateY(-8px);
      transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .xss-live-banner.is-visible {
      opacity: 1;
      pointer-events: auto;
      visibility: visible;
      transform: translateY(0);
    }

    .xss-icon {
      font-size: 1.15rem;
    }

    .xss-body {
      display: flex;
      flex-direction: column;
      gap: 1px;
      min-width: 0;
    }

    .xss-tag {
      font-family: var(--font-mono, monospace);
      font-size: 0.52rem;
      font-weight: 800;
      color: #E11D48;
      letter-spacing: 0.05em;
    }

    .xss-code {
      font-family: var(--font-mono, monospace);
      font-size: 0.60rem;
      font-weight: 700;
      color: #0F172A;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* AUTHENTIC 403 FORBIDDEN NGINX SCREEN (IMAGE 2) - CENTERED & CLEAN */
    .view-403-nginx {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      background: #FFFFFF;
      z-index: 50;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 24px;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.2s ease, visibility 0.2s ease;
    }

    .view-403-nginx.is-active {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .nginx-403-content {
      width: 100%;
      max-width: 440px;
      text-align: center;
      margin: 0 auto;
    }

    .nginx-title {
      font-family: "Times New Roman", Times, Georgia, serif;
      font-size: 2.35rem;
      font-weight: 700;
      color: #000000;
      margin: 0 0 12px 0;
      letter-spacing: -0.01em;
      line-height: 1.1;
      text-align: center;
    }

    .nginx-divider {
      border: none;
      border-top: 1px solid #D1D5DB;
      width: 90%;
      margin: 0 auto 12px auto;
    }

    .nginx-server {
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
      font-size: 0.92rem;
      color: #111827;
      font-weight: 500;
      letter-spacing: -0.01em;
      text-align: center;
    }

    /* Ensure Store Header is Completely Hidden During Security Screens */
    .mock-site-header.is-hidden,
    .screen-viewport.is-security-mode .mock-site-header {
      opacity: 0 !important;
      visibility: hidden !important;
      pointer-events: none !important;
      display: none !important;
    }

    /* FULL VIEWPORT TAKEOVER ATTACK CMD CONSOLE (MASKS ENTIRE SCREEN, NO LEAKAGE) */
    .mock-attack-cmd {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      background: #090D16;
      border: none;
      border-radius: 0;
      box-shadow: none;
      z-index: 55;
      display: flex;
      flex-direction: column;
      opacity: 0;
      pointer-events: none;
      transform: translateY(6px) scale(0.99);
      transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
      visibility: hidden;
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    }

    .mock-attack-cmd.is-visible {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0) scale(1);
      visibility: visible;
    }

    .attack-cmd-header {
      background: #111726;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      padding: 6px 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .cmd-dots {
      display: flex;
      gap: 4px;
    }

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

    .cmd-title {
      font-size: 0.60rem;
      color: #94A3B8;
      font-weight: 600;
    }

    .cmd-tag {
      font-size: 0.50rem;
      font-weight: 800;
      color: #EF4444;
      background: rgba(239, 68, 68, 0.15);
      padding: 1px 5px;
      border-radius: 3px;
      letter-spacing: 0.04em;
    }

    .attack-cmd-body {
      padding: 12px 14px;
      font-size: 0.58rem;
      line-height: 1.55;
      color: #E2E8F0;
      flex: 1;
      overflow: hidden;
      white-space: pre-wrap;
      word-break: break-word;
      text-align: left;
    }

    #cmd-typed-text {
      display: inline;
      text-align: left;
      margin: 0;
      padding: 0;
    }

    .cmd-cursor {
      display: inline-block;
      color: #EF4444;
      font-weight: 900;
      animation: cmdCursorBlink 0.7s infinite;
    }

    @keyframes cmdCursorBlink {
      0%, 45% { opacity: 1; }
      50%, 100% { opacity: 0; }
    }

    /* Clip 2: Dark VS Code Style Code Editor Overlay (Typing & Smooth Crossfade) */
    .mock-code-editor {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: #0E131F;
      z-index: 25;
      display: flex;
      flex-direction: column;
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
      opacity: 1;
      transform: scale(1);
      transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.7s;
      pointer-events: auto;
      border-radius: 0;
    }

    .mock-code-editor.fade-out {
      opacity: 0;
      transform: scale(1.02);
      pointer-events: none;
      visibility: hidden;
    }

    .editor-header {
      background: #161C2A;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      padding: 4px 10px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 6px;
    }

    .editor-tabs {
      display: flex;
      align-items: center;
      gap: 4px;
      overflow: hidden;
    }

    .editor-tab {
      color: #64748B;
      font-size: 0.62rem;
      font-weight: 500;
      padding: 3px 8px;
      border-radius: 4px 4px 0 0;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      white-space: nowrap;
    }

    .editor-tab.active {
      background: #0E131F;
      color: #E2E8F0;
      border-top: 2px solid #007ACC;
      font-weight: 600;
    }

    .editor-tab .vscode-icon-svg {
      width: 13px;
      height: 13px;
      flex-shrink: 0;
      display: inline-block;
      vertical-align: middle;
    }

    .editor-tab .tab-icon {
      color: #38BDF8;
      font-size: 0.70rem;
    }

    .editor-tag {
      font-size: 0.52rem;
      font-weight: 700;
      color: #38BDF8;
      background: rgba(56, 189, 248, 0.1);
      padding: 2px 6px;
      border-radius: 4px;
      letter-spacing: 0.04em;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .editor-body {
      flex: 1;
      display: flex;
      padding: 10px 14px;
      gap: 12px;
      overflow: hidden;
      background: #0E131F;
    }

    .code-line-numbers {
      display: flex;
      flex-direction: column;
      color: #475569;
      font-size: 0.63rem;
      letter-spacing: -0.01em;
      line-height: 1.55;
      text-align: right;
      user-select: none;
      border-right: 1px solid rgba(255, 255, 255, 0.07);
      padding-right: 9px;
      gap: 0;
    }

    .code-line-numbers span {
      display: block;
      height: 1.55em;
      line-height: 1.55;
    }

    .code-typing-area {
      flex: 1;
      font-size: 0.63rem;
      letter-spacing: -0.01em;
      line-height: 1.55;
      color: #F1F5F9;
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
      white-space: pre-wrap;
      word-break: break-word;
    }

    .code-cursor {
      display: inline-block;
      color: #38BDF8;
      font-weight: 900;
      margin-left: 2px;
      animation: codeCursorPulse 0.7s infinite;
    }

    @keyframes codeCursorPulse {
      0%, 45% { opacity: 1; }
      50%, 100% { opacity: 0; }
    }

    /* Code Syntax Highlighting */
    .syn-kw { color: #F43F5E; font-weight: 600; }
    .syn-fn { color: #38BDF8; }
    .syn-str { color: #10B981; }
    .syn-prop { color: #FBBF24; }
    .syn-comm { color: #64748B; font-style: italic; }

    /* Security Scanning line removed per user request */
    .security-shimmer-sweep {
      display: none !important;
    }

    /* Step 2: Staggered Build Elements */
    .anim-build-item {
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .anim-build-item.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Mock Site Header inside MacBook */
    .mock-site-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid #F1F5F9;
      padding-bottom: 8px;
      margin-bottom: 10px;
    }

    .mock-logo {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .mock-logo-img {
      height: 22px !important;
      width: auto !important;
      max-height: 24px !important;
      max-width: 32px !important;
      filter: drop-shadow(0 2px 4px rgba(213, 0, 0, 0.25));
      display: inline-block;
    }

    .mock-brand-name {
      font-size: 0.95rem;
      font-weight: 800;
      color: var(--brand-crimson, #D50000);
      letter-spacing: -0.01em;
    }

    .mock-brand-name span {
      color: var(--brand-sunset, #FF5722);
    }

    /* AuraGift Atelier Styling */
    .auragift-brand-name {
      font-family: 'Poppins', system-ui, -apple-system, sans-serif;
      font-size: 0.86rem;
      font-weight: 700;
      color: #0F172A;
      letter-spacing: -0.01em;
      white-space: nowrap;
    }

    .auragift-brand-name span {
      color: #E08B41;
    }

    .auragift-brand-gem {
      font-size: 0.78rem;
      color: #E08B41;
      display: inline-block;
      margin-right: 2px;
    }

    .auragift-hero {
      position: relative;
      border-radius: 7px;
      overflow: hidden;
      width: 100%;
      height: auto;
      aspect-ratio: 5120 / 2144;
      margin-bottom: 7px;
      background: #0B0F19;
      border: 1px solid rgba(0, 0, 0, 0.08);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .auragift-hero-img {
      width: 100%;
      height: 100%;
      aspect-ratio: 5120 / 2144;
      object-fit: contain;
      object-position: center;
      display: block;
    }

    .auragift-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.85) 100%);
      padding: 8px 10px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      z-index: 2;
    }

    .auragift-tag {
      font-family: var(--font-mono, monospace);
      font-size: 0.50rem;
      font-weight: 800;
      color: #E08B41;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .auragift-headline {
      font-size: 0.82rem;
      font-weight: 700;
      color: #FFFFFF;
      margin: 2px 0 5px 0;
      line-height: 1.25;
      text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    }

    .auragift-pills {
      display: flex;
      gap: 4px;
      flex-wrap: nowrap;
      overflow: hidden;
    }

    .auragift-pills span {
      background: rgba(255, 255, 255, 0.16);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      font-size: 0.46rem;
      color: #FFFFFF;
      padding: 1px 6px;
      border-radius: 9999px;
      font-weight: 600;
      white-space: nowrap;
      border: 0.5px solid rgba(255, 255, 255, 0.2);
    }

    /* Mock Site Body inside MacBook */
    .mock-site-body {
      position: relative;
      z-index: 2;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    /* MacBook keyboard deck: gives the device a real laptop silhouette. */
    .macbook-base {
      height: 58px;
      width: 106%;
      margin: -1px 0 0 -3%;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 11%),
        linear-gradient(180deg, #4B5260 0%, #343A46 42%, #20252E 100%);
      clip-path: polygon(1.5% 0, 98.5% 0, 100% 100%, 0 100%);
      border-radius: 0 0 18px 18px;
      box-shadow: 
        0 24px 36px -14px rgba(15, 23, 42, 0.38),
        0 5px 10px -2px rgba(0, 0, 0, 0.22);
      position: relative;
      display: flex;
      align-items: flex-end;
      justify-content: center;
    }

    .macbook-base::before {
      content: none;
    }

    .macbook-keyboard {
      position: absolute;
      top: 8px;
      left: 12%;
      width: 76%;
      display: grid;
      gap: 3px;
    }

    .macbook-keyboard-row {
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      gap: 3px;
    }

    .macbook-keyboard-row:nth-child(2) {
      margin-left: 2.5%;
      width: 95%;
    }

    .macbook-keyboard-row:nth-child(3) {
      margin-left: 5%;
      width: 90%;
    }

    .macbook-key {
      height: 8px;
      border-radius: 2px;
      background: linear-gradient(180deg, #202733, #10151D);
      border: 1px solid rgba(0, 0, 0, 0.68);
      box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 1px rgba(255, 255, 255, 0.04);
    }

    .macbook-trackpad {
      position: absolute;
      bottom: 6px;
      left: 50%;
      width: 29%;
      height: 15px;
      transform: translateX(-50%);
      border: 1px solid rgba(12, 17, 24, 0.64);
      border-radius: 0 0 5px 5px;
      background: rgba(255, 255, 255, 0.04);
      box-shadow: inset 0 1px rgba(255, 255, 255, 0.07);
    }

    /* Compact MacBook base (restored). */
    .macbook-base {
      height: 18px;
      width: 100%;
      margin: -1px 0 0;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      background: linear-gradient(180deg, #3A3F4D 0%, #252830 50%, #1A1C23 100%);
      clip-path: none;
      border-radius: 0 0 16px 16px;
      box-shadow: 0 18px 42px -8px rgba(15, 23, 42, 0.28), 0 4px 10px -2px rgba(0, 0, 0, 0.15);
    }

    .desktop-stand {
      position: relative;
      z-index: 3;
      height: 72px;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: -1px;
    }

    .desktop-stand { display: none; }

    .desktop-neck {
      width: 76px;
      height: 43px;
      background: linear-gradient(90deg, #1B2029, #4B5361 48%, #1B2029);
      clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%);
      box-shadow: inset 1px 0 rgba(255,255,255,0.12);
    }

    .desktop-foot {
      width: 230px;
      height: 13px;
      margin-top: -2px;
      border-radius: 50% 50% 7px 7px;
      background: linear-gradient(180deg, #4D5665, #1B2029);
      box-shadow: 0 16px 20px -8px rgba(15, 23, 42, 0.42), inset 0 1px rgba(255,255,255,0.15);
    }

    .macbook-notch-indent {
      width: 56px;
      height: 3px;
      background: rgba(0, 0, 0, 0.48);
      border-radius: 0 0 4px 4px;
    }

    @media (max-width: 640px) {
      .container { padding: 0 1rem !important; }
      .macbook-device {
        width: 100% !important;
        max-width: 330px !important;
        margin: 0 auto !important;
      }
      .macbook-base { height: 14px !important; }
      .desktop-stand { height: 52px; }
      .desktop-neck { width: 54px; height: 30px; }
      .desktop-foot { width: 165px; height: 10px; }
      .screen-viewport {
        height: auto !important;
        min-height: 250px !important;
        padding: 10px !important;
      }
      .screen-browser-bar {
        padding: 5px 8px !important;
        gap: 6px !important;
      }
      .browser-dots {
        gap: 4px !important;
      }
      .browser-dots .dot {
        width: 7px !important;
        height: 7px !important;
      }
      .browser-address {
        max-width: 220px !important;
        font-size: 0.62rem !important;
        padding: 2px 7px !important;
      }
      .address-url {
        max-width: 170px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
      }
      .mock-site-header {
        padding-bottom: 6px !important;
        margin-bottom: 6px !important;
      }
      .mock-nav-tabs .nav-tab {
        font-size: 0.50rem !important;
        padding: 1px 4px !important;
      }
      .store-views-wrapper {
        height: 250px !important;
      }
      .shop-products-grid {
        grid-template-columns: 1fr !important;
      }
      .hero-ambient-backdrop {
        display: none !important;
      }
    }
  

/* ==========================================================================
   SLIDING UNDERLINE NAVIGATION INDICATOR
   ========================================================================== */
.navbar {
  position: relative;
}

@media (min-width: 1041px) {
  .nav-links {
    position: relative;
  }
}

.nav-indicator-line {
  position: absolute;
  bottom: 0px;
  height: 2.5px;
  background: linear-gradient(90deg, #D50000 0%, #FF5722 100%);
  border-radius: 9999px;
  transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1), width 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
  pointer-events: none;
  opacity: 0;
  z-index: 5;
}

.nav-links.has-indicator .nav-indicator-line {
  opacity: 1;
}

.nav-links.has-indicator a.active {
  border-bottom-color: transparent !important;
}

/* ==========================================================================
   SMOOTH PAGE TRANSITIONS (HOME <-> SERVICES <-> OTHER PAGES)
   ========================================================================== */
body {
  opacity: 1;
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

body.page-is-transitioning {
  opacity: 0;
}

/* ==========================================================================
   MOBILE OVERFLOW & VIEWPORT CONTAINMENT
   ========================================================================== */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html, body {
    overflow-x: clip;
  }
}

.site-header,
.hero-section,
.section-wrapper,
.footer-wrap {
  max-width: 100%;
  overflow-x: clip;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 3.5rem 0 4rem !important;
    overflow: hidden !important;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }

  .macbook-device {
    max-width: 100% !important;
    transform: none !important;
    margin-top: 1rem !important;
  }

  .macbook-lid {
    border-radius: 12px !important;
    padding: 6px !important;
    box-shadow: 0 15px 35px -10px rgba(15, 23, 42, 0.12) !important;
  }

  .laptop-bg-ambient {
    position: absolute !important;
    width: 100% !important;
    max-width: 100vw !important;
    height: 320px !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    overflow: hidden !important;
  }

  .orange-mesh-canvas {
    inset: -10px !important;
    filter: blur(35px) !important;
  }

  .hero-ambient-orb-left {
    display: none !important;
  }

  .hero-headline {
    font-size: clamp(2.4rem, 8vw, 3.2rem) !important;
    line-height: 1.05 !important;
  }

  .hero-desc {
    font-size: 1.05rem !important;
    line-height: 1.65 !important;
    margin-bottom: 2rem !important;
  }

  .cards-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
}

@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr !important;
  }
  .container {
    padding: 0 1.25rem !important;
  }
  .hero-btn-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.85rem;
  }
  .hero-btn-group a {
    text-align: center;
    justify-content: center;
  }
}

/* ==========================================================================
   SERVICE CARD HOVER MICRO-INTERACTIONS
   ========================================================================== */
.agency-card,
.service-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.3s ease, 
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.agency-card:hover,
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 87, 34, 0.35);
  box-shadow: 0 16px 36px -8px rgba(15, 23, 42, 0.08), 
              0 6px 16px -4px rgba(255, 87, 34, 0.12);
}

/* ==========================================================================
   SCROLL REVEAL MOTION SYSTEM
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   ACCESSIBILITY: PREFERS-REDUCED-MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
    scroll-behavior: auto !important;
  }
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
  body {
    transition: none !important;
  }
  .orange-mesh-canvas, .mesh-blob, .hero-ambient-orb-left {
    animation: none !important;
  }
}

/* ==========================================================================
   EDITORIAL INNER PAGE HEROES & REFINED TYPOGRAPHY
   ========================================================================== */
.inner-page-hero {
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 3.5rem;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF8F5 100%);
  border-bottom: 1px solid var(--border-subtle);
}

.editorial-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-crimson);
  margin-bottom: 1.25rem;
}

.editorial-kicker::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, #D50000, #FF5722);
  border-radius: 2px;
}

.page-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: #0F172A;
  margin-bottom: 1.25rem;
}

.page-hero-title em,
.page-hero-title .title-accent {
  font-style: italic;
  font-weight: 800;
  background: linear-gradient(135deg, #D50000 0%, #FF4D00 50%, #FF7A00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-hero-desc {
  font-family: var(--font-main);
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-body);
  max-width: 760px;
}

.section-eyebrow {
  display: inline-flex !important;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-crimson);
  margin-bottom: 0.85rem;
}

.section-eyebrow::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, #D50000, #FF5722);
  border-radius: 2px;
}

/* ==========================================================================
   TACTILE NOISE TEXTURE OVERLAY (HUMAN-CRAFTED FINISH)
   ========================================================================== */
.site-noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 99999;
  opacity: 0.024;
  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.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   HUMAN-CRAFTED EDITORIAL STORYTELLING (iti.ca + dayos.com inspired)
   Code-Driven Visual Devices • 100% Light Palette • Zero AI Templates
   ========================================================================== */
.editorial-story-section {
  position: relative;
  background: #FFFFFF;
  padding-top: 6rem;
  padding-bottom: 3rem;
  overflow: visible;
}

.editorial-story-header {
  margin-bottom: 4.5rem;
  text-align: left;
}

.editorial-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-orange);
  margin-bottom: 0.85rem;
}

.editorial-kicker::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, #D50000, #FF4D00);
  border-radius: 2px;
}

.editorial-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #0F172A;
  margin-bottom: 1rem;
}

.editorial-desc {
  font-family: var(--font-sans);
  font-size: 1.12rem;
  line-height: 1.7;
  color: #475569;
  max-width: 720px;
}

/* Service Story Blocks (Alternating Light Backgrounds) */
.editorial-story-block {
  position: relative;
  width: 100%;
  min-height: 100vh;
  border-bottom: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.editorial-story-block:nth-child(even) {
  background: #FBF9F5;
}

.editorial-story-block:nth-child(odd) {
  background: #FFFFFF;
}

.editorial-story-block:last-child {
  border-bottom: none;
}

.story-sticky-stage {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
  position: relative;
}

/* Layout 1 & 2: Asymmetric Split Grid */
.story-split-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4.5rem;
  align-items: center;
  width: 100%;
}

.story-split-layout.layout-inverted {
  grid-template-columns: 1.15fr 1fr;
}

.story-split-layout > *,
.story-split-layout.layout-inverted > *,
.story-text-track,
.story-visual-stage,
.story-fullwidth-layout,
.story-matrix-layout {
  min-width: 0;
  max-width: 100%;
}

/* Editorial Text Column */
.story-text-track {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.sec-kicker-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--brand-orange);
  text-transform: uppercase;
}

.sec-step-num {
  background: rgba(255, 77, 0, 0.08);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  font-weight: 800;
}

.story-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #0F172A;
  word-break: break-word;
}

.story-lead {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
}

/* Minimalist Spec Table (Label / Value - No chip tags) */
.clean-spec-table {
  display: flex;
  flex-direction: column;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  background: #FFFFFF;
  overflow: hidden;
  margin: 0.4rem 0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.spec-row {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 1.25rem;
  align-items: center;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid #F1F5F9;
  font-size: 0.92rem;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748B;
  white-space: nowrap;
}

.spec-value {
  font-family: var(--font-sans);
  font-weight: 600;
  color: #0F172A;
  text-align: right;
}

/* Asymmetric Single Callout Metric */
.story-metric-callout {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.15rem 1.4rem;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  margin: 0.35rem 0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
}

.metric-big-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  color: #0F172A;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.metric-caption {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.metric-caption strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0F172A;
}

.metric-caption span {
  font-size: 0.84rem;
  color: #64748B;
  line-height: 1.4;
}

.story-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

/* Numbered Editorial List (Service 2 - replaces checkmarks) */
.numbered-editorial-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin: 0.5rem 0;
}

.numbered-row {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
}

.num-idx {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-orange);
  line-height: 1.2;
  flex-shrink: 0;
}

.num-text strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.2rem;
}

.num-text p {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   CODE-DRIVEN VISUAL DEVICE 1: SVG NETWORK TOPOLOGY CANVAS
   ========================================================================== */
.story-visual-stage {
  width: 100%;
  position: relative;
}

.code-visual-canvas {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(226, 232, 240, 0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.code-visual-canvas:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.12);
}

.canvas-browser-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  gap: 0.5rem;
  overflow: hidden;
}

.browser-traffic-lights {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-shrink: 0;
}

.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.t-dot.dot-red { background: #EF4444; }
.t-dot.dot-yellow { background: #F59E0B; }
.t-dot.dot-green { background: #10B981; }

.browser-route {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  padding: 0.3rem 0.85rem;
  border-radius: 6px;
  color: #334155;
  font-weight: 500;
  font-size: 0.75rem;
  max-width: 280px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.browser-ping {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #059669;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.ping-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  animation: pulsePing 2s infinite;
}

@keyframes pulsePing {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.15); }
}

.topology-svg-wrapper {
  padding: 1.5rem;
  background: #FCFDFE;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.topology-svg {
  width: 100%;
  height: auto;
  max-height: 340px;
  overflow: visible;
}

@keyframes packetPulse {
  from { stroke-dashoffset: 40; }
  to { stroke-dashoffset: 0; }
}

.topo-wire {
  stroke: #94A3B8;
  stroke-width: 2;
  stroke-dasharray: 8 6;
  animation: packetPulse 2.5s linear infinite;
  transition: stroke 0.4s ease;
}

.topo-node rect {
  filter: drop-shadow(0 4px 10px rgba(15, 23, 42, 0.04));
  transition: all 0.3s ease;
}

.topo-node:hover rect {
  stroke: var(--brand-orange);
  stroke-width: 2;
}

.canvas-status-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  background: #F8FAFC;
  border-top: 1px solid #E2E8F0;
  font-size: 0.76rem;
  font-family: var(--font-sans);
  color: #475569;
}

.footer-status-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.status-indicator-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  display: inline-block;
}

/* ==========================================================================
   CODE-DRIVEN VISUAL DEVICE 2: LIVE TYPESCRIPT & API SECURITY WORKBENCH
   ========================================================================== */
.code-visual-canvas.dark-workbench {
  background: #0A0F1D;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 48px -12px rgba(10, 15, 29, 0.25);
}

.canvas-browser-bar.dark-bar {
  background: #060A14;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #94A3B8;
}

.workbench-file-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #0E1526;
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #E2E8F0;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.workbench-env-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #38BDF8;
}

.workbench-code-panel {
  padding: 1.5rem 1.75rem;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.84rem;
  line-height: 1.68;
  color: #E2E8F0;
  overflow-x: auto;
  background: transparent;
}

.code-cmt { color: #64748B; font-style: italic; }
.code-kw { color: #F43F5E; font-weight: 600; }
.code-fn { color: #38BDF8; }
.code-str { color: #34D399; }
.code-num { color: #F59E0B; }

.workbench-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  background: #060A14;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.wb-status-left, .wb-status-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ==========================================================================
   CODE-DRIVEN VISUAL DEVICE 3: STOREFRONT DUAL CANVAS (E-COMMERCE)
   ========================================================================== */
.story-fullwidth-layout {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.fullwidth-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2.5rem;
}

.fullwidth-title {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 3.6vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  color: #0F172A;
  margin: 0.6rem 0 1rem;
}

.fullwidth-desc {
  font-family: var(--font-sans);
  font-size: 1.08rem;
  line-height: 1.7;
  color: #475569;
}

.storefront-dual-canvas {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08);
  margin-bottom: 2.5rem;
}

.storefront-panes-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  border-top: 1px solid #E2E8F0;
}

.store-catalog-pane {
  padding: 1.75rem;
  border-right: 1px solid #E2E8F0;
  background: #FCFDFE;
}

.pane-meta-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748B;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.stock-badge {
  color: #059669;
  font-weight: 700;
}

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

.product-item-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.product-item-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  border-color: #CBD5E1;
}

.product-thumb-flat {
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #F1F5F9;
}

.product-details-box {
  padding: 0.75rem;
}

.product-title-txt {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0F172A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.35rem;
}

.product-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price-val {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 800;
  color: #0F172A;
}

.product-eco-tag {
  font-size: 0.65rem;
  color: #059669;
  font-weight: 600;
  background: rgba(16, 185, 129, 0.08);
  padding: 2px 5px;
  border-radius: 4px;
}

/* Right Pane: Slide-over Express Checkout */
.checkout-sheet-pane {
  padding: 1.75rem;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.checkout-sheet-body {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.checkout-item-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.1rem;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  font-size: 0.88rem;
}

.checkout-payment-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.payment-method-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0.95rem;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  transition: all 0.2s ease;
}

.payment-method-row.selected {
  border-color: var(--brand-orange);
  background: rgba(255, 77, 0, 0.04);
  color: #0F172A;
}

.checkout-action-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.btn-checkout-sim {
  width: 100%;
  background: linear-gradient(135deg, #FF4500 0%, #FF6B00 100%);
  color: #FFFFFF;
  border: none;
  padding: 0.85rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(255, 77, 0, 0.3);
}

.btn-checkout-sim:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 77, 0, 0.4);
}

.checkout-trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: #64748B;
}

/* Capabilities Trio Below Storefront Canvas */
.capabilities-trio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.capability-item-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 1.5rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
}

.capability-item-card:hover {
  transform: translateY(-2px);
  border-color: #CBD5E1;
}

.cap-metric-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.75rem;
}

.cap-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1;
}

.cap-badge-mono {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand-orange);
  background: rgba(255, 77, 0, 0.08);
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
}

.cap-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.4rem;
}

.cap-desc {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   CODE-DRIVEN VISUAL DEVICE 4: ARCHITECTURAL COMPARISON MATRIX & GUARANTEE
   ========================================================================== */
.story-matrix-layout {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.matrix-head-wrap {
  margin-bottom: 2.5rem;
}

.comparison-table-card {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 16px;
  overflow-x: auto;
  box-shadow: 0 16px 36px -10px rgba(15, 23, 42, 0.06);
  margin-bottom: 2.5rem;
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.matrix-table th {
  padding: 1.15rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748B;
  background: #F8FAFC;
  border-bottom: 1px solid #CBD5E1;
}

.matrix-table th.th-standard-prismline {
  background: #FFF7ED;
  color: var(--brand-orange);
  border-top: 3px solid var(--brand-orange);
  border-left: 1px solid #FED7AA;
  border-right: 1px solid #FED7AA;
}

.matrix-table td {
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid #F1F5F9;
  font-size: 0.92rem;
  line-height: 1.5;
}

.matrix-table tr:last-child td {
  border-bottom: none;
}

.matrix-table td.td-vector {
  font-weight: 700;
  color: #0F172A;
}

.matrix-table td.td-generic {
  color: #64748B;
}

.matrix-table td.td-prismline {
  background: #FFFDF9;
  border-left: 1px solid #FED7AA;
  border-right: 1px solid #FED7AA;
  color: #0F172A;
  font-weight: 500;
}

.cross-icon {
  color: #94A3B8;
  font-weight: 800;
  margin-right: 0.45rem;
}

.check-icon {
  color: #10B981;
  font-weight: 800;
  margin-right: 0.45rem;
}

/* Light-Theme Guarantee Banner Card (NO DARK BACKGROUND!) */
.light-guarantee-banner {
  background: #FFFFFF;
  border: 2px solid #FED7AA;
  border-radius: 16px;
  padding: 2.2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  box-shadow: 0 8px 24px rgba(255, 77, 0, 0.06);
}

.guarantee-banner-text {
  flex: 1;
}

.guarantee-tag-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 800;
  color: #D97706;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.guarantee-banner-title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.5rem;
}

.guarantee-banner-desc {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  max-width: 680px;
  margin: 0;
}

.guarantee-banner-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVENESS (UNPINNED DEGRADATION)
   ========================================================================== */
@media (max-width: 991px) {
  .editorial-story-section {
    padding-top: 3.5rem;
  }
  .editorial-story-block {
    min-height: auto;
    padding: 3rem 0;
  }
  .story-sticky-stage {
    min-height: auto;
    height: auto;
    padding: 2rem 0;
  }
  .story-split-layout,
  .story-split-layout.layout-inverted {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .storefront-panes-grid {
    grid-template-columns: 1fr;
  }
  .store-catalog-pane {
    border-right: none;
    border-bottom: 1px solid #E2E8F0;
  }
  .capabilities-trio-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .light-guarantee-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.75rem;
  }
  .comparison-table-card {
    overflow-x: auto;
  }
  .matrix-table {
    min-width: 600px;
  }
}

@media (max-width: 640px) {
  .editorial-title {
    font-size: 2rem;
  }
  .story-heading {
    font-size: 1.85rem;
    word-break: break-word;
  }
  .real-products-grid {
    grid-template-columns: 1fr;
  }
  .product-thumb-flat {
    height: 160px;
  }
  .metric-big-num {
    font-size: 2.2rem;
  }
  .clean-spec-table .spec-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 0.75rem 1rem;
  }
  .clean-spec-table .spec-value {
    text-align: left;
  }
  .canvas-browser-bar {
    padding: 0.65rem 0.85rem;
  }
  .browser-route {
    max-width: 150px;
    font-size: 0.68rem;
  }
  .browser-ping,
  .workbench-env-badge {
    font-size: 0.64rem;
  }
  .canvas-status-footer,
  .workbench-status-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    padding: 0.75rem 1rem;
  }
  .topology-svg-wrapper {
    padding: 0.85rem 0.4rem;
  }
}
