/* ==========================================================================
   KODENCORE STUDIO — STRICT EDITORIAL TYPOGRAPHY & LAYOUT SYSTEM
   Visual Direction: High-Contrast Dark, Bold Condensed Type, Restrained Aesthetic
   ========================================================================== */

:root {
  /* Flat Black & Off-White Monochrome Palette */
  --bg-primary: #080808;
  --bg-surface: #0e0e0e;
  --bg-card: #121212;
  --bg-card-hover: #181818;
  
  --text-primary: #F5F2EB;
  --text-secondary: #C5C2BA;
  --text-muted: #A8A8A2;
  --text-dark: #080808;

  /* Single Restrained Accent Color */
  --accent-lime: #CCFF00;

  --grid-line: rgba(255, 255, 255, 0.08);
  --grid-line-bright: rgba(255, 255, 255, 0.16);
  --border-light: rgba(245, 242, 235, 0.12);

  /* Typography Fonts */
  --font-display: 'Syne', sans-serif;
  --font-mono: 'Space Grotesk', monospace;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* STRICT SITE-WIDE TYPOGRAPHY SCALE */
  --type-display: clamp(3.4rem, 8.5vw, 8rem);
  --type-h2: clamp(2.2rem, 5vw, 4.2rem);
  --type-h3: clamp(1.25rem, 2.2vw, 1.85rem);
  --type-body: 1.05rem;
  --type-body-sm: 0.9rem;
  --type-label: 0.75rem;

  /* Easing Functions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  /* ==========================================================================
     SITE-WIDE STANDARDIZED SPACING SYSTEM
     Desktop (≥1200px): 96px standard side margins
     Tablet (768-1199px): 48px standard side margins
     Mobile (<768px): 24px standard side margins (never < 16px)
     ========================================================================== */
  --container-padding: 96px;
  --site-max-width: 1440px;
  --header-height: 80px;
  --top-bar-height: 36px;
}

@media (max-width: 1199px) {
  :root {
    --container-padding: 48px;
  }
}

@media (max-width: 767px) {
  :root {
    --container-padding: 24px;
  }
}

/* ==========================================================================
   Base Reset & Global Flat Background Styles
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* Hide scrollbar globally across Chrome, Safari, Opera, Edge, and Firefox */
::-webkit-scrollbar {
  display: none;
  width: 0 !important;
  height: 0 !important;
}

html {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body.preloader-active {
  overflow: hidden;
}

/* ==========================================================================
   Custom Kinetic Cursor
   ========================================================================== */
.custom-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: var(--accent-lime);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
  will-change: transform;
}

.custom-cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(204, 255, 0, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.25s ease,
              border-color 0.25s ease,
              opacity 0.2s ease;
  will-change: transform;
}

body.cursor-hover .custom-cursor-follower {
  width: 52px;
  height: 52px;
  border-color: rgba(255, 255, 255, 0.8);
  background-color: rgba(255, 255, 255, 0.08);
}

body.cursor-hover-lime .custom-cursor-follower {
  width: 52px;
  height: 52px;
  border-color: var(--accent-lime);
  background-color: rgba(204, 255, 0, 0.12);
}

/* Hide default cursor when custom cursor active */
@media (pointer: fine) and (hover: hover) {
  body.custom-cursor-enabled,
  body.custom-cursor-enabled a,
  body.custom-cursor-enabled button,
  body.custom-cursor-enabled input,
  body.custom-cursor-enabled select,
  body.custom-cursor-enabled textarea {
    cursor: none !important;
  }
}

@media (pointer: coarse), (hover: none) {
  .custom-cursor-dot,
  .custom-cursor-follower {
    display: none !important;
  }
}

/* Accessible & High-Contrast Focus Visible States */
:focus-visible {
  outline: 2px solid var(--accent-lime) !important;
  outline-offset: 3px !important;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent-lime) !important;
  outline-offset: 3px !important;
}

/* Ensure sticky navigation never obscures anchored section headings */
section[id],
div[id] {
  scroll-margin-top: calc(var(--header-height) + 2rem);
}

/* Typographic Balance & Numbers Optimization */
.section-title,
.hero-text-giant,
.blog-card-title,
.blog-featured-title,
.sound-familiar-title {
  text-wrap: balance;
}

.pricing-amount,
.preloader-counter,
.service-card-num,
.process-graphic-num,
.blog-category-tag {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

/* Comprehensive Reduced Motion Compliance Site-Wide */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .top-marquee-track,
  .pricing-marquee-track,
  .marquee-track,
  .tech-stack-track,
  .checklist-vertical-track,
  .hero-scroll-arrow {
    animation: none !important;
    transform: none !important;
  }

  .top-announcement-marquee-bar,
  .pricing-offer-marquee-wrap,
  .marquee-wrapper,
  .tech-stack-marquee-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .pricing-cross-marquee-container {
    margin-top: 2rem !important;
    margin-bottom: 0 !important;
    gap: 1rem !important;
  }

  .pricing-offer-marquee-wrap {
    transform: none !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .checklist-marquee-container {
    overflow-y: auto;
    max-height: 480px;
  }

  .reveal-up,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .custom-cursor-dot,
  .custom-cursor-follower {
    display: none !important;
  }
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease, color 0.3s ease;
}

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

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

/* Container Standardized System */
.container {
  width: 100%;
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  box-sizing: border-box;
}

.section-padding {
  padding: clamp(5.5rem, 10vw, 8.5rem) 0;
  position: relative;
}

/* ==========================================================================
   Micro Labels & Editorial Metadata Tags (Hidden per directive)
   ========================================================================== */
.meta-tag {
  display: none !important;
}

.rotated-label {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  transform: rotate(-90deg);
  transform-origin: left bottom;
}

/* ==========================================================================
   Preloader Section
   ========================================================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #050505;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.preloader-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.preloader-year {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.preloader-center-content {
  text-align: center;
}

.preloader-counter {
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 12rem);
  font-weight: 900;
  line-height: 1;
  color: var(--text-primary);
  font-feature-settings: "tnum";
}

.preloader-progress-bar-wrap {
  width: 100%;
  max-width: 400px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin: 2rem auto 0;
  position: relative;
  overflow: hidden;
}

.preloader-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--text-primary);
  transition: width 0.1s linear;
}

.preloader-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ==========================================================================
   Top Announcement Marquee Bar (Active on Hero Section)
   ========================================================================== */
.top-announcement-marquee-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--top-bar-height);
  background-color: var(--accent-lime);
  color: #080808;
  z-index: 105;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  transform: translateY(0);
  opacity: 1;
}

body.scrolled-past-hero .top-announcement-marquee-bar {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

/* Pricing Cross-Marquee Container (Dual Intersecting Slanted Tapes Centered Over Dividing Line) */
.pricing-cross-marquee-container {
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
  margin-top: -24px;
  margin-bottom: -24px;
  z-index: 10;
  overflow: visible;
}

.pricing-offer-marquee-wrap {
  grid-area: 1 / 1;
  width: 106vw;
  background-color: var(--accent-lime);
  color: #080808;
  padding: 0.95rem 0;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 30px rgba(204, 255, 0, 0.1);
  will-change: transform;
}

.pricing-offer-marquee-wrap.marquee-slant-left {
  transform: rotate(-2.5deg);
  z-index: 11;
}

.pricing-offer-marquee-wrap.marquee-slant-right {
  transform: rotate(2.5deg);
  z-index: 12;
}

@media (max-width: 992px) {
  .pricing-cross-marquee-container {
    margin-top: -20px;
    margin-bottom: -20px;
  }
  .pricing-offer-marquee-wrap {
    width: 108vw;
    padding: 0.85rem 0;
  }
  .pricing-offer-marquee-wrap.marquee-slant-left {
    transform: rotate(-2deg);
  }
  .pricing-offer-marquee-wrap.marquee-slant-right {
    transform: rotate(2deg);
  }
}

@media (max-width: 576px) {
  .pricing-cross-marquee-container {
    margin-top: -18px;
    margin-bottom: -18px;
  }
  .pricing-offer-marquee-wrap {
    width: 112vw;
    padding: 0.75rem 0;
    font-size: 0.72rem;
  }
  .pricing-offer-marquee-wrap.marquee-slant-left {
    transform: rotate(-1.5deg);
  }
  .pricing-offer-marquee-wrap.marquee-slant-right {
    transform: rotate(1.5deg);
  }
}

.top-marquee-track {
  display: inline-flex;
  width: max-content;
  animation: topMarqueeScroll 30s linear infinite;
  will-change: transform;
}

.pricing-marquee-track {
  display: inline-flex;
  width: max-content;
  animation: topMarqueeScroll 38s linear infinite;
  will-change: transform;
}

.pricing-marquee-track.track-scroll-right {
  animation: topMarqueeScrollRight 38s linear infinite;
}

@media (hover: hover) {
  .top-marquee-track:hover,
  .pricing-marquee-track:hover {
    animation-play-state: paused;
  }
}

.top-marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 1.5rem;
}

.top-marquee-sep {
  opacity: 0.6;
  font-size: 0.75rem;
}

@keyframes topMarqueeScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes topMarqueeScrollRight {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: var(--top-bar-height);
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--grid-line);
  background: rgba(8, 8, 8, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, border-color 0.3s ease, background 0.3s ease;
}

body.scrolled-past-hero .site-header {
  top: 0;
}

body.footer-in-view .site-header,
.site-header.header-hidden {
  transform: translateY(calc(-100% - var(--top-bar-height) - 30px));
  opacity: 0;
  pointer-events: none;
}

body.footer-in-view .top-announcement-marquee-bar,
.top-announcement-marquee-bar.marquee-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.header-container {
  width: 100%;
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo-img {
  height: 26px;
  width: auto;
  display: block;
  object-fit: contain;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: opacity 0.25s ease;
}

.brand-logo:hover .brand-logo-img {
  opacity: 0.85;
}

.brand-logo-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 0.15rem 0.4rem;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  border-radius: 2px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.825rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--text-primary);
  transition: width 0.3s var(--ease-out-expo);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

/* ==========================================================================
   Mega Dropdown Menu (Services)
   ========================================================================== */
.nav-has-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.dropdown-chevron {
  transition: transform 0.3s var(--ease-out-expo), color 0.3s ease;
  opacity: 0.7;
}

.nav-has-dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--accent-lime);
}

.services-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 760px;
  background: rgba(14, 14, 14, 0.96);
  border: 1px solid var(--grid-line-bright);
  border-radius: 20px;
  padding: 1.25rem;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 30px rgba(204, 255, 0, 0.04);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out-expo), transform 0.3s var(--ease-out-expo), visibility 0.3s ease;
  z-index: 200;
}

.services-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}

.dropdown-arrow-caret {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(14, 14, 14, 0.96);
  border-top: 1px solid var(--grid-line-bright);
  border-left: 1px solid var(--grid-line-bright);
}

.nav-has-dropdown:hover .services-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

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

.dropdown-service-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;
  transition: all 0.25s var(--ease-out-expo);
}

.dropdown-service-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(204, 255, 0, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.service-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  flex-shrink: 0;
  transition: all 0.25s var(--ease-out-expo);
}

.dropdown-service-card:hover .service-icon-box {
  background: rgba(204, 255, 0, 0.1);
  border-color: var(--accent-lime);
  color: var(--accent-lime);
}

.service-name {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.3;
  transition: color 0.25s ease;
}

.dropdown-service-card:hover .service-name {
  color: #ffffff;
}

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

.btn-editorial-nav {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.65rem 1.4rem;
  border: 1px solid var(--text-primary);
  background: transparent;
  color: var(--text-primary);
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s var(--ease-out-expo);
}

.btn-editorial-nav:hover {
  background: var(--text-primary);
  color: var(--text-dark);
}

.mobile-nav-cta {
  display: none !important;
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  z-index: 102;
  cursor: pointer;
  background: transparent;
  border: none;
  flex-shrink: 0;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ==========================================================================
   HERO SECTION — POSTER LAYOUT
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: calc(var(--header-height) + var(--top-bar-height));
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-bottom: 1px solid var(--grid-line);
}

.hero-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  width: 100%;
}

.hero-sub-header {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Huge Hero Kinetic Typography */
.hero-typography-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  position: relative;
  margin: 0 auto;
  user-select: none;
  overflow: visible;
}

.hero-title-row {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  overflow: visible;
  padding: 0.15em 0;
}

.hero-text-giant {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 11.5vw, 12.5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
  display: inline-block;
  text-align: center;
  will-change: transform;
  padding: 0.08em 0;
}

.hero-text-giant.hero-text-experiences {
  font-size: clamp(3.2rem, 9.8vw, 10.8rem);
  letter-spacing: -0.04em;
  max-width: 100%;
}

/* Floating Center Interactive 3D Object / Collage Wrapper */
.hero-interactive-object-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(240px, 28vw, 420px);
  height: clamp(280px, 32vw, 480px);
  z-index: 4;
  pointer-events: auto;
  perspective: 1000px;
}

.hero-floating-card {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.15);
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

.hero-floating-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.95);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.hero-floating-card:hover img {
  transform: scale(1.08);
  filter: contrast(1.15) brightness(1.05);
}

.hero-floating-card-tag {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
}

/* Hero Bottom Navigation & Callouts */
.hero-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--grid-line);
}

.hero-index-indicator {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.hero-scroll-prompt {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.hero-scroll-arrow {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  animation: bounceDown 2s infinite ease-in-out;
}

/* Supporting Hero Copy Pills */
.hero-trust-badges {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.trust-badge-item {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-badge-item span {
  color: var(--accent-lime);
}

/* ==========================================================================
   "SOUND FAMILIAR?" — CHECKLIST EDITORIAL SECTION (ASYMMETRIC SPLIT)
   ========================================================================== */
.sound-familiar-section {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--grid-line);
  position: relative;
  z-index: 2;
}

.sound-familiar-grid {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.sound-familiar-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sound-familiar-title {
  font-family: var(--font-display);
  font-size: var(--type-h2);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.sound-familiar-desc {
  font-family: var(--font-sans);
  font-size: var(--type-body);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 520px;
}

/* Checklist Infinite Vertical Flow — Clean, Minimal, No Card, No Ticks */
.checklist-marquee-container {
  background: transparent;
  border: none;
  height: 480px;
  overflow: hidden;
  position: relative;
}

.checklist-marquee-container::before,
.checklist-marquee-container::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 3;
  pointer-events: none;
}

.checklist-marquee-container::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bg-primary) 15%, rgba(8, 8, 8, 0) 100%);
}

.checklist-marquee-container::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bg-primary) 15%, rgba(8, 8, 8, 0) 100%);
}

.checklist-vertical-track {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  animation: checklistScroll 32s linear infinite;
  will-change: transform;
}

@media (hover: hover) {
  .checklist-vertical-track:hover {
    animation-play-state: paused;
  }
}

.checklist-flow-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.4rem;
  background: var(--bg-card);
  border: 1px solid var(--grid-line);
  border-radius: 8px;
  transition: border-color 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}

.checklist-flow-item:hover {
  border-color: var(--accent-lime);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}

.flow-item-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-lime);
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.flow-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.flow-item-title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.flow-item-sub {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   ASYMMETRIC EDITORIAL SECTION HEADERS (APPLIED SITE-WIDE)
   ========================================================================== */
.section-header-editorial {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-end;
  margin-bottom: 4rem;
}

.section-header-left-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.section-header-right-col {
  padding-bottom: 0.35rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--type-h2);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin: 0;
}

.section-desc {
  font-family: var(--font-sans);
  font-size: var(--type-body);
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* ==========================================================================
   INDUSTRIES & PORTFOLIO MARQUEE SECTION
   ========================================================================== */
.industries-section {
  padding: clamp(5.5rem, 9vw, 8rem) 0;
  border-bottom: 1px solid var(--grid-line);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

/* Infinite Marquee Track */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 1rem 0;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.marquee-wrapper.is-dragging {
  cursor: grabbing;
}

.marquee-track {
  display: inline-flex;
  width: max-content;
  gap: 2rem;
  animation: marqueeLoop 55s linear infinite;
  will-change: transform;
}

.industry-card {
  width: 480px;
  background: var(--bg-card);
  border: 1px solid var(--grid-line);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 0.35s var(--ease-out-expo), border-color 0.3s ease;
}

.industry-card img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

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

.industry-card img {
  width: 100%;
  aspect-ratio: 1024 / 512;
  object-fit: contain;
  display: block;
  background: #000000;
  filter: grayscale(20%) brightness(0.9);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.industry-card:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.02);
}

/* ==========================================================================
   WHAT WE BUILD — SWISS GRID SERVICES
   ========================================================================== */
.services-section {
  padding: 8rem 0;
  border-bottom: 1px solid var(--grid-line);
  background: var(--bg-primary);
  position: relative;
  z-index: 2;
}

.swiss-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  background: transparent;
  border: none;
}

.swiss-cell {
  background: var(--bg-card);
  border: 1px solid var(--grid-line-bright);
  border-radius: 14px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease;
}

.swiss-cell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-lime);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.swiss-cell:hover {
  background: #111111;
  border-color: rgba(204, 255, 0, 0.35);
  transform: translateY(-2px);
}

.swiss-cell:hover::before {
  width: 100%;
}

.swiss-cell-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.swiss-cell-num {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.swiss-cell:hover .swiss-cell-num {
  color: var(--accent-lime);
}

.swiss-cell-arrow {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  color: var(--text-muted);
  transition: transform 0.25s ease, color 0.25s ease;
}

.swiss-cell:hover .swiss-cell-arrow {
  transform: translate(3px, -3px);
  color: var(--accent-lime);
}

.swiss-cell-main {
  margin-bottom: 0.85rem;
}

.swiss-cell-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0;
  transition: color 0.2s ease;
}

.swiss-cell:hover .swiss-cell-title {
  color: #ffffff;
}

.swiss-cell-collapse-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.swiss-cell-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0 0 1.25rem 0;
}

.swiss-cell-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.swiss-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.swiss-cell:hover .swiss-tag {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   BUILT WITH — TECH STACK SECTION & HORIZONTAL MARQUEE
   ========================================================================== */
.tech-stack-section {
  padding: clamp(5.5rem, 9vw, 8rem) 0;
  border-bottom: 1px solid var(--grid-line);
  background-color: var(--bg-primary);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.tech-stack-marquee-wrap {
  margin-top: 3.5rem;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 0.5rem 0;
}

.tech-stack-marquee-wrap::before,
.tech-stack-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(40px, 8vw, 120px);
  z-index: 3;
  pointer-events: none;
}

.tech-stack-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary) 10%, rgba(8, 8, 8, 0) 100%);
}

.tech-stack-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary) 10%, rgba(8, 8, 8, 0) 100%);
}

.tech-stack-track {
  display: flex;
  width: max-content;
  gap: 1.25rem;
  animation: techStackScrollRight 36s linear infinite;
  will-change: transform;
  transform: translateZ(0);
}

@media (hover: hover) {
  .tech-stack-track:hover {
    animation-play-state: paused;
  }
}

.tech-tool-card {
  width: 145px;
  height: 130px;
  background: var(--bg-card);
  border: 1px solid var(--grid-line);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.25rem 1rem;
  flex-shrink: 0;
  transition: border-color 0.25s ease, transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  user-select: none;
}

.tech-tool-card:hover {
  border-color: var(--accent-lime);
  background-color: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
}

.tech-tool-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tech-tool-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.tech-tool-name {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  text-align: center;
  white-space: nowrap;
}

@keyframes techStackScrollRight {
  0% {
    transform: translateX(calc(-50% - 0.625rem));
  }
  100% {
    transform: translateX(0);
  }
}

/* ==========================================================================
   HOW WE WORK — INTERACTIVE FILE EXPLORER / CODE IDE WIDGET
   ========================================================================== */
.process-section {
  padding: 8rem 0;
  border-bottom: 1px solid var(--grid-line);
  background: var(--bg-dark);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.process-metaphor-intro {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--accent-lime);
  margin-top: 0.75rem;
  letter-spacing: 0.02em;
}

/* Scannable Static Bar with 1-2-3-4-5 Staggered Sequential Delay */
.process-scannable-stagger-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 3rem auto 3.5rem auto;
  padding: 1.1rem 2rem;
  background: #0d0d0d;
  border: 1px solid var(--grid-line-bright);
  border-radius: 6px;
  width: fit-content;
  max-width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.scannable-step-node {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(8px);
  animation: stepRevealIn 0.6s var(--ease-out-expo) forwards, stepPulseCycle 5s ease-in-out infinite;
}

.scannable-arrow {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.95rem;
  opacity: 0;
  transform: translateX(-4px);
  animation: arrowRevealIn 0.5s ease forwards;
}

/* Staggered Entrance Delays (1 -> 2 -> 3 -> 4 -> 5) */
.stagger-step-1 { animation-delay: 0.1s, 0.6s; }
.stagger-arrow-1 { animation-delay: 0.3s; }

.stagger-step-2 { animation-delay: 0.45s, 1.6s; }
.stagger-arrow-2 { animation-delay: 0.65s; }

.stagger-step-3 { animation-delay: 0.8s, 2.6s; }
.stagger-arrow-3 { animation-delay: 1.0s; }

.stagger-step-4 { animation-delay: 1.15s, 3.6s; }
.stagger-arrow-4 { animation-delay: 1.35s; }

.stagger-step-5 { animation-delay: 1.5s, 4.6s; }

.scannable-step-node .scannable-num {
  color: var(--accent-lime);
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(204, 255, 0, 0.1);
  border: 1px solid rgba(204, 255, 0, 0.2);
  padding: 0.2rem 0.45rem;
  border-radius: 2px;
  transition: all 0.3s ease;
}

@keyframes stepRevealIn {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes arrowRevealIn {
  0% {
    opacity: 0;
    transform: translateX(-4px);
  }
  100% {
    opacity: 0.6;
    transform: translateX(0);
  }
}

@keyframes stepPulseCycle {
  0%, 100% {
    color: var(--text-primary);
  }
  15% {
    color: var(--accent-lime);
    text-shadow: 0 0 12px rgba(204, 255, 0, 0.4);
  }
  30% {
    color: var(--text-primary);
    text-shadow: none;
  }
}

/* IDE Widget Box */
.ide-widget-wrapper {
  background: #0d0d0d;
  border: 1px solid var(--grid-line-bright);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.ide-window-bar {
  background: #151515;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ide-window-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}

.ide-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.ide-window-title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.ide-window-title span {
  color: var(--text-primary);
}

.ide-window-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ide-branch-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.ide-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-lime);
  box-shadow: 0 0 8px var(--accent-lime);
}

/* IDE Layout */
.ide-main-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 440px;
}

/* Left File Tree */
.ide-sidebar {
  background: #111111;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem 0.75rem;
  display: flex;
  flex-direction: column;
}

.ide-sidebar-header {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  padding: 0 0.5rem 0.75rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 0.75rem;
}

.ide-folder-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-secondary);
  padding: 0.35rem 0.5rem;
  user-select: none;
}

.folder-caret {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.ide-file-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 0.25rem;
  padding-left: 0.5rem;
}

.ide-file-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  text-align: left;
  padding: 0.55rem 0.65rem;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}

.ide-file-item:hover,
.ide-file-item:focus-visible {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.ide-file-item.active {
  background: rgba(204, 255, 0, 0.08);
  border-color: rgba(204, 255, 0, 0.3);
}

.file-icon {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.15rem 0.35rem;
  border-radius: 2px;
  line-height: 1;
}

.ts-icon {
  background: #3178c6;
  color: #ffffff;
}

.md-icon {
  background: #007acc;
  color: #ffffff;
}

.file-name {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.ide-file-item.active .file-name {
  color: var(--accent-lime);
  font-weight: 700;
}

/* Right Editor Pane */
.ide-editor-container {
  display: flex;
  flex-direction: column;
  background: #090909;
}

.ide-tabs-bar {
  display: flex;
  background: #111111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 0.5rem;
}

.ide-editor-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.25rem;
  background: #090909;
  border-top: 2px solid var(--accent-lime);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-primary);
}

.tab-close-icon {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-left: 0.25rem;
}

.ide-editor-content {
  display: grid;
  grid-template-columns: 48px 1fr;
  flex: 1;
  padding: 1.5rem 0;
  min-height: 340px;
}

.ide-line-numbers {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 1rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.2);
  user-select: none;
  line-height: 1.6;
}

.ide-code-viewport {
  padding: 0 1.5rem 0 0.5rem;
  overflow-x: auto;
}

.ide-panel {
  display: none;
}

.ide-panel.active {
  display: block;
}

/* Rendered Markdown Styling in IDE */
.md-view {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.md-h1 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin: 0 0 0.75rem 0;
}

.md-hash {
  color: var(--accent-lime);
  font-family: var(--font-mono);
  font-weight: 700;
  margin-right: 0.35rem;
}

.md-badge-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.15rem;
}

.md-pill {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.35rem 0.65rem;
  border-radius: 3px;
  color: var(--text-primary);
}

.md-pill-label {
  color: var(--accent-lime);
  font-weight: 700;
  margin-right: 0.25rem;
}

.md-block {
  margin-bottom: 1rem;
}

.md-h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.35rem 0;
}

.md-text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.md-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.md-bullet-list li {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-secondary);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.md-dash {
  color: var(--accent-lime);
  font-family: var(--font-mono);
  font-weight: 700;
}

/* Status Bar */
.ide-status-bar {
  background: #141414;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.4rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
}

.status-badge {
  margin-right: 1rem;
}

/* Mobile Accordion Default (Hidden on Desktop) */
.process-mobile-accordion {
  display: none;
  margin-top: 2.5rem;
}

.mobile-acc-item {
  border: 1px solid var(--grid-line-bright);
  background: #0d0d0d;
  margin-bottom: 0.75rem;
  border-radius: 4px;
  overflow: hidden;
}

.mobile-acc-header {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 1.15rem 1.25rem;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  gap: 0.75rem;
}

.m-acc-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-lime);
}

.m-acc-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  flex: 1;
}

.m-acc-icon {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--text-muted);
}

.mobile-acc-body {
  padding: 0 1.25rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.m-acc-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-top: 0.75rem;
}

.m-acc-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-lime);
  margin-top: 0.75rem;
}

/* ==========================================================================
   FIXED FLAT PRICING SECTION
   ========================================================================== */
.pricing-section {
  padding: clamp(5.5rem, 9vw, 8rem) 0;
  border-bottom: 1px solid var(--grid-line);
  position: relative;
  z-index: 2;
  background: var(--bg-primary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--grid-line);
  border-radius: 8px;
  padding: 2.5rem 1.75rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: visible;
  transition: transform 0.3s var(--ease-out-expo), border-color 0.3s ease;
}

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

.pricing-card.featured {
  border-color: var(--accent-lime);
}

.pricing-featured-badge {
  position: absolute;
  top: -12px;
  left: 1.75rem;
  background: var(--accent-lime);
  color: #080808;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-card-top {
  display: flex;
  flex-direction: column;
}

.pricing-plan-name {
  font-family: var(--font-display);
  font-size: var(--type-h3);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.pricing-plan-sub {
  font-size: var(--type-body-sm);
  color: var(--text-secondary);
  margin-top: 0.45rem;
  line-height: 1.5;
  min-height: 2.6em;
}

.pricing-val-box {
  margin: 1.75rem 0 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--grid-line);
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 2.4vw, 2.35rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.pricing-scope-note {
  font-family: var(--font-mono);
  font-size: var(--type-label);
  color: var(--text-muted);
  margin-top: 0.35rem;
  line-height: 1.4;
}

.pricing-timeline {
  font-family: var(--font-mono);
  font-size: var(--type-label);
  font-weight: 600;
  color: var(--accent-lime);
  margin-top: 0.6rem;
}

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0 0 2rem;
  font-size: var(--type-body-sm);
  color: var(--text-secondary);
  padding: 0;
}

.pricing-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.45;
}

.pricing-features-list li::before {
  content: '✓';
  color: var(--accent-lime);
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.pricing-features-list li span {
  display: block;
  flex: 1;
  line-height: 1.5;
}

.pricing-features-list li span strong {
  color: var(--text-primary);
  font-weight: 600;
}

.pricing-card-bottom {
  margin-top: auto;
}

.pricing-ideal-tag {
  font-family: var(--font-mono);
  font-size: var(--type-label);
  color: var(--text-muted);
  border-top: 1px solid var(--grid-line);
  padding-top: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.45;
}

.btn-pricing-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  transition: all 0.25s ease;
}

.pricing-card.featured .btn-pricing-cta,
.btn-pricing-cta:hover {
  background: var(--accent-lime);
  border-color: var(--accent-lime);
  color: #080808;
}

/* Transparent Add-ons Disclosure Section */
.pricing-addons-disclosure {
  margin-top: 4.5rem;
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--grid-line);
  border-radius: 8px;
}

.pricing-addons-disclosure-header {
  text-align: left;
  max-width: 650px;
  margin-bottom: 2rem;
}

.pricing-addons-headline {
  font-family: var(--font-display);
  font-size: var(--type-h3);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.pricing-addons-sub {
  font-size: var(--type-body-sm);
  color: var(--text-secondary);
  margin-top: 0.35rem;
}

.pricing-addons-pill-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 992px) {
  .pricing-addons-pill-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .pricing-addons-pill-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-addon-item {
  background: var(--bg-surface);
  border: 1px solid var(--grid-line);
  border-radius: 6px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.75rem;
  transition: border-color 0.25s ease;
}

.pricing-addon-item:hover {
  border-color: var(--accent-lime);
}

.addon-item-name {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
}

.addon-item-price {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--accent-lime);
}

.addon-per {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ==========================================================================
   REVIEWS — HONEST STATUS SECTION (PRE-LAUNCH COHORT)
   ========================================================================== */
.reviews-section {
  padding: clamp(5rem, 8vw, 7rem) 0;
  background: var(--bg-primary);
  color: var(--text-primary);
  border-bottom: 1px solid var(--grid-line);
  position: relative;
  z-index: 2;
}

.reviews-status-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--grid-line);
  border-radius: 8px;
}

/* ==========================================================================
   FAQ ACCORDION SECTION
   ========================================================================== */
.faq-section {
  padding: clamp(5.5rem, 9vw, 8rem) 0;
  border-bottom: 1px solid var(--grid-line);
  background: var(--bg-primary);
  position: relative;
  z-index: 2;
}

.faq-container-narrow {
  max-width: 840px;
  margin: 3.5rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--grid-line);
}

.faq-button {
  width: 100%;
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--type-h3);
  font-weight: 700;
  color: var(--text-primary);
  transition: color 0.25s ease;
}

.faq-button:hover {
  color: var(--accent-lime);
}

.faq-icon-toggle {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  transition: transform 0.25s ease;
}

.faq-item.active .faq-icon-toggle {
  transform: rotate(45deg);
  color: var(--accent-lime);
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out-expo), padding 0.35s ease;
}

.faq-item.active .faq-answer-panel {
  max-height: 300px;
  padding-bottom: 1.75rem;
}

.faq-answer-text {
  font-family: var(--font-sans);
  font-size: var(--type-body);
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   CONTACT FORM & GET STARTED SECTION
   ========================================================================== */
.contact-section {
  padding: clamp(5.5rem, 9vw, 8rem) 0;
  position: relative;
  z-index: 2;
  background: var(--bg-primary);
}

.contact-card-box {
  background: var(--bg-card);
  border: 1px solid var(--grid-line);
  border-radius: 8px;
  padding: 3.5rem clamp(1.5rem, 4vw, 3rem);
  max-width: 900px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 2.5rem;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-family: var(--font-mono);
  font-size: var(--type-label);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.95rem 1.15rem;
  background: var(--bg-surface);
  border: 1px solid var(--grid-line);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: var(--type-body-sm);
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.25s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-lime);
}

.form-select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

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

/* Customizations Checkbox Box */
.form-addons-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--grid-line-bright);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 0.5rem;
}

.form-addons-title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-lime);
  margin-bottom: 1rem;
}

.addons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.addon-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.addon-checkbox-label input[type="checkbox"] {
  accent-color: var(--accent-lime);
  width: 16px;
  height: 16px;
}

.btn-submit-form {
  width: 100%;
  padding: 1.25rem;
  background: var(--text-primary);
  color: var(--text-dark);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 1rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn-submit-form:hover {
  transform: translateY(-2px);
  background: var(--accent-lime);
}

/* Inline Form Confirmation & Validation Styles */
.form-field-error {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #ff5555;
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
  display: none;
}

.form-field.has-error .form-field-error {
  display: block;
}

.form-field.has-error .form-input,
.form-field.has-error .form-select,
.form-field.has-error .form-textarea {
  border-color: #ff5555 !important;
  background: rgba(255, 85, 85, 0.05);
}

.form-confirmation-box {
  padding: 3.5rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.confirmation-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1.05;
  margin: 0.25rem 0 0.5rem;
}

.confirmation-commitment {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-lime);
  letter-spacing: 0.04em;
  margin: 0;
}

.confirmation-sub {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 620px;
  margin: 0;
}

/* ==========================================================================
   MINIMALIST MONOCHROME EDITORIAL MASTER FOOTER (PURE BLACK & WHITE)
   ========================================================================== */
/* ==========================================================================
   AFTERNOW-INSPIRED EDITORIAL MASTER FOOTER (MINIMAL, OVERSIZED WORDMARK)
   ========================================================================== */
.site-footer {
  position: relative;
  background-color: #060606;
  color: #FFFFFF;
  width: 100%;
  border-top: 1px solid var(--grid-line);
  padding: 6rem 0 3rem;
  overflow: hidden;
  z-index: 50;
  box-sizing: border-box;
}

.footer-afternow-container {
  width: 100%;
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* Top Row: Large Closing Statement + CTA Button */
.footer-afternow-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.footer-closing-statement {
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin: 0;
  max-width: 720px;
}

.footer-top-cta-wrap {
  flex-shrink: 0;
  padding-top: 0.5rem;
}

.footer-hero-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.85rem;
  background: #FFFFFF;
  color: #000000;
  border-radius: 40px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.12);
}

.footer-hero-cta-pill:hover {
  background: var(--accent-lime);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 224, 46, 0.3);
}

.footer-cta-arrow {
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.footer-hero-cta-pill:hover .footer-cta-arrow {
  transform: translateX(3px);
}

/* Middle Area: Studio Metadata + Dominant Wordmark */
.footer-afternow-mid-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem;
  padding: 2.25rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2.5rem;
}

.footer-mid-left-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  flex: 1;
}

.footer-info-columns {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.footer-info-col {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-info-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.footer-info-val {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  color: #FFFFFF;
}

.footer-info-val.email-val {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-info-val.email-val:hover {
  color: var(--accent-lime);
}

.footer-phone-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-phone-item {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  color: var(--text-secondary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s ease;
}

.footer-phone-item:hover {
  color: var(--accent-lime);
}

.footer-phone-item .phone-num {
  font-family: var(--font-mono);
  color: #FFFFFF;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-phone-item:hover .phone-num {
  color: var(--accent-lime);
}

.footer-info-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-info-nav a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-info-nav a:hover {
  color: #FFFFFF;
}

.footer-mid-right-wordmark {
  flex-shrink: 0;
  width: 100%;
  max-width: clamp(300px, 48vw, 680px);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.footer-giant-wordmark-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  user-select: none;
  image-rendering: -webkit-optimize-contrast;
}

/* Bottom Row: Policy/Copyright (Left) + Social Pill Buttons (Right) */
.footer-afternow-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 1rem;
}

.footer-legal-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.footer-policy-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-policy-link {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-policy-link:hover {
  color: #FFFFFF;
}

.footer-policy-divider {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.2);
}

.footer-copyright-text {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-socials-pill-group {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.footer-social-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.15rem;
  background: #181818;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d1d1d1;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-social-pill:hover {
  background: #242424;
  border-color: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .site-footer {
    padding: 4rem 1.5rem 2.5rem;
  }

  .footer-afternow-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .footer-afternow-mid-area {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding: 1.5rem 0 2rem;
  }

  .footer-info-columns {
    gap: 1.5rem;
  }

  .footer-mid-right-wordmark {
    max-width: 100%;
    justify-content: flex-start;
  }

  .footer-afternow-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
  }
}


/* ==========================================================================
   BLOG & SERVICE INSIGHTS SECTION STYLES
   ========================================================================== */
.blog-filter-container {
  margin: 3rem 0 4rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  scrollbar-width: none;
}

.blog-filter-container::-webkit-scrollbar {
  display: none;
}

.blog-filter-bar {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: nowrap;
  min-width: max-content;
}

.blog-filter-btn {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.6rem 1.25rem;
  border-radius: 40px;
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s var(--ease-out-expo);
}

.blog-filter-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.blog-filter-btn.active {
  background: var(--accent-lime);
  color: var(--text-dark);
  border-color: var(--accent-lime);
  font-weight: 700;
}

/* Blog Cards Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

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

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--grid-line-bright);
  border-radius: 16px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: background-color 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.25);
  background: var(--bg-card-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.blog-card:hover::before {
  background: var(--accent-lime);
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.blog-category-tag {
  font-family: var(--font-mono);
  font-size: 0.725rem;
  font-weight: 700;
  color: var(--accent-lime);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-read-time {
  font-family: var(--font-mono);
  font-size: 0.725rem;
  color: var(--text-muted);
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.blog-card-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

/* Key Deliverables / Topics list inside blog card */
.blog-key-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--grid-line);
}

.blog-key-points li {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.blog-key-points li span {
  color: var(--accent-lime);
  font-weight: bold;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--grid-line);
}

.blog-action-link {
  font-family: var(--font-mono);
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-lime);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.25s ease, color 0.25s ease;
}

.blog-card:hover .blog-action-link {
  gap: 0.75rem;
  color: #ffffff;
}

/* Featured Header Card on Blog */
.blog-featured-card {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
  border: 1px solid var(--grid-line-bright);
  border-radius: 20px;
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

@media (max-width: 992px) {
  .blog-featured-card {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.75rem;
    gap: 2rem;
  }
}

.blog-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-lime);
  background: rgba(204, 255, 0, 0.1);
  border: 1px solid rgba(204, 255, 0, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: 40px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.blog-featured-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.blog-featured-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* ==========================================================================
   TEAM MEMBER CARDS (ABOUT PAGE)
   ========================================================================== */
.team-member-card {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.25s ease,
              background-color 0.25s ease;
}

.team-member-card:hover {
  border-color: rgba(204, 255, 0, 0.4);
  transform: translateY(-2px);
}

/* ==========================================================================
   GLOBAL RESPONSIVE ADJUSTMENTS & BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
  .site-header {
    height: 70px;
  }

  .header-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .brand-logo-tag {
    display: none !important;
  }

  .brand-logo-img {
    height: 22px;
    max-width: 150px;
  }

  .btn-editorial-nav {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: #0d0d0d;
    border-left: 1px solid var(--grid-line-bright);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 2.5rem;
    gap: 1.75rem;
    transition: right 0.5s var(--ease-out-expo);
    z-index: 101;
  }

  .nav-menu.mobile-open {
    right: 0;
  }

  .services-dropdown-menu {
    display: none !important;
  }

  .mobile-nav-cta {
    display: inline-flex !important;
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
    text-align: center;
    background: var(--text-primary);
    color: var(--text-dark);
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .section-header-editorial {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .sound-familiar-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .swiss-services-grid {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
    margin-top: 2.5rem !important;
  }

  .swiss-cell {
    padding: 1.25rem 1.4rem !important;
    border-radius: 10px !important;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }

  .swiss-cell:hover {
    transform: none !important;
  }

  .swiss-cell-top {
    margin-bottom: 0.35rem !important;
  }

  .swiss-cell-main {
    margin-bottom: 0 !important;
  }

  .swiss-cell-title {
    font-size: 1.15rem !important;
  }

  .swiss-cell-arrow {
    font-size: 1.1rem !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease;
  }

  .swiss-cell.is-expanded .swiss-cell-arrow {
    transform: rotate(90deg) !important;
    color: var(--accent-lime) !important;
  }

  .swiss-cell-collapse-body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, margin-top 0.25s ease;
    margin-top: 0;
  }

  .swiss-cell.is-expanded .swiss-cell-collapse-body {
    max-height: 500px;
    opacity: 1;
    margin-top: 1rem;
  }

  .swiss-cell-desc {
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
    margin-bottom: 0.85rem !important;
  }

  .swiss-cell-tags {
    padding-top: 0.85rem !important;
  }

  .contact-card-box {
    padding: 2.5rem 1.5rem;
  }

  .maintenance-card-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .maintenance-right-action {
    align-items: flex-start !important;
    width: 100% !important;
  }

  .maintenance-right-action .pricing-val-box {
    text-align: left !important;
  }
}

@media (max-width: 600px) {
  .header-container {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .brand-logo-img {
    height: 18px !important;
    max-width: 125px !important;
  }

  .header-actions .btn-editorial-nav {
    display: none !important;
  }
}

/* ==========================================================================
   404 NOT FOUND PAGE STYLES
   ========================================================================== */
.error-hero-section {
  min-height: calc(100vh - var(--header-height) - var(--top-bar-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--header-height) + var(--top-bar-height) + 3rem);
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--grid-line);
}

.error-giant-num {
  font-family: var(--font-display);
  font-size: clamp(6.5rem, 18vw, 15rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-top: 1rem;
}

.error-copy-line {
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.5;
  margin-top: 1.5rem;
}

.error-links-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* ==========================================================================
   LEGAL & REFERENCE DOCUMENT PAGES (TERMS, PRIVACY, REFUND)
   ========================================================================== */
.legal-page-section {
  padding-top: calc(var(--header-height) + var(--top-bar-height) + 3.5rem);
  padding-bottom: 6rem;
  border-bottom: 1px solid var(--grid-line);
}

.legal-content-container {
  max-width: 820px;
}

.legal-page-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1.05;
  margin-top: 1rem;
  margin-bottom: 3rem;
}

.legal-body-content {
  font-family: var(--font-sans);
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
}

.legal-section-block {
  margin-bottom: 2.5rem;
}

.legal-section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.legal-section-text {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.legal-list {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-secondary);
}

.legal-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent-lime);
  font-weight: bold;
}

.legal-inline-link {
  color: var(--accent-lime);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}

.legal-inline-link:hover {
  opacity: 0.85;
}


