/* Auto-generated by scripts/per-page-css.mjs at 2026-05-14T07:11:29.783Z.
 * Source: styles.min.css → subset for index.html.
 * Do not edit by hand. Re-run the script to regenerate.
 */
:root {
   --bg-obsidian: #050505;
   --bg-obsidian-soft: #0a0a0a;
   --garnet-deep: hsl(348, 83%, 25%);
   --garnet-main: hsl(348, 83%, 47%);
   --garnet-text: hsl(348, 83%, 65%);
   --garnet-glow: hsla(348, 83%, 47%, 0.4);
   --garnet-rim: hsla(348, 83%, 60%, 0.15);
   --text-primary: #ffffff;
   --text-secondary: rgba(255, 255, 255, 0.85);
   --text-muted: rgba(255, 255, 255, 0.55);
   --glass-bg: rgba(15, 15, 15, 0.6);
   --glass-border: rgba(255, 255, 255, 0.08);
   --glass-glow: hsla(348, 83%, 47%, 0.1);
   --font-heading: 'Space Grotesk', sans-serif;
   --font-body: 'Inter', sans-serif;
   --container-max: 1200px;
   --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
   --transition-med: 0.4s cubic-bezier(0.16, 1, 0.3, 1)
}
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   -webkit-font-smoothing: antialiased
}
html {
   scroll-behavior: smooth;
   background-color: var(--bg-obsidian);
   overflow-x: hidden;
   max-width: 100%
}
body {
   font-family: var(--font-body);
   color: var(--text-primary);
   line-height: 1.6;
   overflow-x: hidden;
   width: 100%;
   max-width: 100%;
   position: relative;
   margin: 0;
   padding: 0
}
h1,
h2,
h3,
h4 {
   font-family: var(--font-heading);
   font-weight: 700;
   letter-spacing: -0.02em
}
.aurora-bg {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: -2;
   background: radial-gradient(circle at 20% 30%, var(--garnet-deep) 0%, transparent 40%), radial-gradient(circle at 80% 70%, #1a0510 0%, transparent 40%);
   filter: blur(80px);
   opacity: 0.5;
   animation: auroraShift 20s ease-in-out infinite alternate;
   will-change: transform;
   transform: translateZ(0);
   contain: strict
}
@keyframes auroraShift {
   0% {
      transform: scale(1) translate(0, 0)
   }

   100% {
      transform: scale(1.1) translate(5%, 5%)
   }
}
.gridfield {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: -1;
   background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
   background-size: 50px 50px;
   -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
   mask-image: radial-gradient(circle at center, black, transparent 80%);
   perspective: 1000px;
   transform: rotateX(60deg) scale(2);
   transform-origin: top;
   opacity: 0.4;
   will-change: transform;
   contain: strict
}
.grid-shimmer {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(to bottom, transparent, var(--garnet-glow), transparent);
   background-size: 100% 200%;
   animation: shimmer 8s linear infinite;
   will-change: transform;
   transform: translateZ(0)
}
@keyframes shimmer {
   0% {
      background-position: 0% 100%
   }

   100% {
      background-position: 0% -100%
   }
}
header.main-nav {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 1000;
   padding: 1.5rem 0;
   transition: var(--transition-med)
}
header.main-nav.scrolled {
   padding: 0.8rem 0;
   background: var(--glass-bg);
   -webkit-backdrop-filter: blur(12px);
   backdrop-filter: blur(12px);
   border-bottom: 1px solid var(--glass-border)
}
.nav-container {
   max-width: var(--container-max);
   margin: 0 auto;
   padding: 0 2rem;
   display: flex;
   justify-content: space-between;
   align-items: center
}
.logo {
   font-family: var(--font-heading);
   font-size: 1.5rem;
   font-weight: 800;
   text-decoration: none;
   color: var(--text-primary);
   display: flex;
   align-items: center;
   gap: 0.8rem;
   transition: var(--transition-med)
}
.logo span {
   background: linear-gradient(135deg, var(--text-primary), var(--garnet-main));
   -webkit-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent
}
.nav-links {
   display: flex;
   gap: 2.5rem;
   align-items: center
}
.nav-links a {
   text-decoration: none;
   color: var(--text-secondary);
   font-size: 0.85rem;
   font-weight: 500;
   text-transform: uppercase;
   letter-spacing: 0.1em;
   transition: var(--transition-med);
   position: relative;
   padding: 0.5rem 0
}
.nav-links a:hover,
.nav-links a.active {
   color: var(--text-primary)
}
.nav-links a::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 50%;
   width: 0;
   height: 1.5px;
   background: var(--garnet-main);
   box-shadow: 0 0 10px var(--garnet-main);
   transition: var(--transition-med);
   transform: translateX(-50%)
}
.nav-links a:hover::after,
.nav-links a.active::after {
   width: 100%
}
.nav-dropdown {
   position: relative
}
.nav-dropdown>a {
   cursor: pointer
}
.nav-dropdown>a::after {
   display: none !important
}
.mobile-nav-tools-label {
   font-size: 0.65rem;
   text-transform: uppercase;
   letter-spacing: 0.15em;
   color: var(--garnet-text);
   padding: 1rem 0 0.3rem;
   display: block;
   border-top: 1px solid var(--glass-border);
   margin-top: 0.5rem
}
.btn-primary {
   padding: 0.7rem 1.6rem;
   background: var(--garnet-main);
   color: white;
   text-decoration: none;
   font-weight: 600;
   font-size: 0.85rem;
   border-radius: 4px;
   border: 1px solid rgba(255, 255, 255, 0.2);
   transition: var(--transition-med);
   position: relative;
   overflow: hidden;
   display: inline-block
}
.btn-primary::before {
   content: '';
   position: absolute;
   top: 50%;
   left: 50%;
   width: 0%;
   height: 100%;
   background: rgba(255, 255, 255, 0.2);
   transform: translate(-50%, -50%) skewX(45deg);
   transition: 0.5s;
   pointer-events: none
}
.btn-primary:hover {
   transform: translateY(-2px);
   box-shadow: 0 10px 20px rgba(183, 18, 52, 0.3)
}
.btn-primary:hover::before {
   width: 150%
}
.btn-secondary {
   padding: 0.7rem 1.6rem;
   background: transparent;
   color: var(--text-primary);
   text-decoration: none;
   font-weight: 600;
   font-size: 0.85rem;
   border-radius: 4px;
   border: 1px solid var(--glass-border);
   transition: var(--transition-med);
   -webkit-backdrop-filter: blur(8px)
   backdrop-filter: blur(8px)
}
.btn-secondary:hover {
   background: rgba(255, 255, 255, 0.05);
   border-color: var(--text-secondary)
}
.mobile-toggle {
   display: none;
   background: none;
   border: none;
   cursor: pointer;
   padding: 0.5rem
}
.mobile-toggle span {
   display: block;
   width: 25px;
   height: 2px;
   background: var(--text-primary);
   margin: 5px 0;
   transition: var(--transition-med)
}
.glass-card {
   background: var(--glass-bg);
   -webkit-backdrop-filter: blur(20px);
   backdrop-filter: blur(20px);
   border: 1px solid rgba(255, 255, 255, 0.05);
   border-radius: 8px;
   padding: 1.8rem;
   transition: var(--transition-med);
   position: relative;
   overflow: hidden
}
.glass-card:hover {
   border-color: #a9a9a9;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 20px var(--glass-glow);
   transform: translateY(-5px)
}
.testimonials {
   position: relative;
   background: linear-gradient(rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.85)), url('assets/images/garnet-data-stream.webp') no-repeat center center;
   background-size: cover;
   background-attachment: fixed;
   padding: 8rem 0
}
.testimonials-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 2rem;
   margin-top: 3rem
}
.testimonial-card {
   height: 100%;
   display: flex;
   flex-direction: column;
   padding: 2rem;
   border-radius: 8px
}
.testimonial-stars {
   display: flex;
   gap: 4px;
   color: #ff5f33;
   margin-bottom: 1.5rem;
   font-size: 0.8rem
}
.testimonial-quote {
   font-style: italic;
   color: var(--text-secondary);
   margin-bottom: 2rem;
   font-size: 1rem;
   line-height: 1.7;
   flex-grow: 1
}
.testimonial-author p {
   color: var(--text-muted);
   font-size: 0.8rem;
   letter-spacing: 0.02em
}
.metrics-strip {
   display: flex;
   justify-content: center;
   align-items: center;
   flex-wrap: wrap;
   gap: 2.5rem;
   margin-top: 5rem;
   padding-top: 4rem;
   border-top: 1px solid var(--glass-border)
}
.metric-item {
   text-align: center
}
.metric-value {
   display: block;
   font-size: 3.5rem;
   font-weight: 800;
   color: var(--garnet-text);
   font-family: var(--font-heading);
   line-height: 1;
   margin-bottom: 0.8rem
}
.metric-label {
   color: var(--text-secondary);
   font-size: 0.85rem;
   font-weight: 500;
   text-transform: uppercase;
   letter-spacing: 0.1em
}
.tile-bg {
   position: relative;
   overflow: hidden;
   background: var(--bg-obsidian-soft) !important
}
.tile-bg::before {
   content: '';
   position: absolute;
   inset: 0;
   background-image: var(--tile-img);
   background-size: cover;
   background-position: center;
   opacity: 0.15;
   filter: saturate(0.5) brightness(0.8);
   transition: var(--transition-med);
   z-index: 0
}
.tile-bg::after {
   content: '';
   position: absolute;
   inset: 0;
   background: linear-gradient(180deg, rgba(5, 5, 5, 0.2) 0%, rgba(5, 5, 5, 0.7) 40%, #050505 100%);
   z-index: 1
}
.tile-bg>* {
   position: relative;
   z-index: 2
}
.tile-bg:hover::before {
   opacity: 0.3;
   transform: scale(1.1);
   filter: saturate(1) brightness(1)
}
@keyframes revealIn { from { opacity: 0; transform: translateY(30px) } to { opacity: 1; transform: translateY(0) } }
.reveal { opacity: 1; transform: translateY(0); animation: revealIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both }
.reveal.active { opacity: 1; transform: translateY(0) }
@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none }
}
section {
   padding: 6rem 0;
   position: relative;
   z-index: 1
}
.container {
   max-width: var(--container-max);
   margin: 0 auto;
   padding: 0 2rem
}
.hero {
   height: 100vh;
   display: flex;
   align-items: center;
   padding-top: 80px;
   overflow: hidden;
   position: relative
}
.hero-content {
   max-width: 700px;
   z-index: 2
}
.hero h1 {
   font-size: 4.5rem;
   line-height: 1;
   margin-bottom: 1.5rem;
   background: linear-gradient(135deg, #ffffff 60%, var(--garnet-main));
   -webkit-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent
}
.hero p {
   font-size: 1.25rem;
   color: var(--text-secondary);
   margin-bottom: 2.5rem;
   max-width: 600px;
   text-align: center;
   margin-left: auto;
   margin-right: auto
}
.hero-btns {
   display: flex;
   gap: 1.5rem;
   justify-content: center
}
.hero-visual {
   position: absolute;
   right: -2%;
   top: 55%;
   transform: translateY(-50%);
   width: 350px;
   height: 350px;
   z-index: 0;
   pointer-events: none;
   opacity: 0.6
}
.garnet-orb {
   width: 100%;
   height: 100%;
   background: radial-gradient(circle at 30% 30%, var(--garnet-main), var(--garnet-deep));
   border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
   filter: blur(2px);
   box-shadow: 0 0 50px var(--garnet-glow), inset -20px -20px 50px rgba(0, 0, 0, 0.5);
   animation: orbMorph 15s ease-in-out infinite alternate
}
@keyframes orbMorph {
   0% {
      border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%
   }

   50% {
      border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%
   }

   100% {
      border-radius: 40% 60% 40% 60% / 40% 40% 60% 60%
   }
}
.section-header {
   text-align: center;
   margin-bottom: 4rem
}
.section-header h2 {
   font-size: 2.5rem;
   margin-bottom: 1rem
}
.section-header p {
   color: var(--text-secondary);
   max-width: 600px;
   margin: 0 auto
}
.card-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem
}
.what-we-build {
   position: relative
}
.what-we-build .card-grid {
   grid-template-columns: repeat(4, 1fr)
}
.expertise-preview,
.engagement-tiers,
.why-garnet,
.testimonials,
.cta-banner {
   position: relative;
   background: linear-gradient(rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.85)), url('assets/images/garnet-data-stream.webp') no-repeat center center !important;
   background-size: cover !important;
   background-attachment: fixed !important;
   padding: 6rem 0;
   border-top: 1px solid rgba(162, 23, 62, 0.1)
}
.why-garnet {
   padding-top: 2rem !important;
   border-top: none !important
}
@keyframes storyCycle {
   0% {
      opacity: 0;
      transform: translate(-50%, -50%) scale(0.95);
      z-index: 2
   }

   5% {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
      z-index: 2
   }

   12.5% {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1.02);
      z-index: 1
   }

   15% {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1.03);
      z-index: 1
   }

   15.1% {
      opacity: 0;
      transform: translate(-50%, -50%) scale(1.03);
      z-index: 0
   }

   100% {
      opacity: 0;
      transform: translate(-50%, -50%) scale(0.95);
      z-index: 0
   }
}
@media (max-width:600px) {
  .what-we-build .card-grid {
      grid-template-columns: 1fr
   }
}
footer {
   background: var(--bg-obsidian-soft);
   padding: 5rem 0 2rem;
   border-top: 1px solid var(--garnet-rim);
   position: relative
}
.mobile-nav {
   position: fixed;
   top: 0;
   right: 0;
   width: 80%;
   max-width: 400px;
   height: 100vh;
   background: rgba(10, 10, 10, 0.98);
   -webkit-backdrop-filter: blur(20px);
   backdrop-filter: blur(20px);
   z-index: 1100;
   display: flex;
   flex-direction: column;
   padding: 5rem 2rem 2rem;
   transform: translateX(100%);
   transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
   border-left: 1px solid var(--garnet-rim);
   overflow-y: auto;
   -webkit-overflow-scrolling: touch
}
.mobile-nav.active {
   transform: translateX(0)
}
.mobile-nav a {
   font-size: 1.15rem;
   margin-bottom: 1.1rem;
   text-decoration: none;
   color: var(--text-primary);
   font-family: var(--font-heading)
}
.mobile-nav a.active {
   color: var(--garnet-text)
}
@media (max-width:1024px) {
  .hero h1 {
      font-size: 3.5rem
   }
}
@media (max-width:768px) {
  header.main-nav {
      padding: 1rem 0
   }
  .mobile-toggle {
      display: block
   }
  .nav-links {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(10, 10, 10, 0.98);
      -webkit-backdrop-filter: blur(20px);
      backdrop-filter: blur(20px);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      gap: 2rem
   }
  .nav-links a {
      font-size: 1.5rem;
      color: #ffffff
   }
  .mobile-toggle {
      display: block;
      position: relative;
      z-index: 2000
   }
  .mobile-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px)
   }
  .mobile-toggle.active span:nth-child(2) {
      transform: rotate(-45deg) translate(5px, -5px)
   }
  .hero {
      text-align: center;
      justify-content: center
   }
  .hero-content {
      max-width: 100%
   }
  .hero-btns {
      justify-content: center
   }
  .hero-visual {
      display: none
   }
  section {
      padding: 5rem 0
   }
}
@media (max-width:480px) {
  section {
      padding: 3rem 0
   }
  .hero {
      padding: 5rem 1rem 3rem
   }
  .hero h1,
   .hero-heading {
      font-size: 1.8rem;
      line-height: 1.2
   }
  .hero p,
   .hero-subtitle {
      font-size: 0.95rem
   }
  .container {
      padding: 0 1rem
   }
  h2,
   .section-heading {
      font-size: 1.6rem
   }
  h3 {
      font-size: 1.2rem
   }
}
@keyframes gradientShift {

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

   50% {
      background-position: 100% 50%
   }
}
@keyframes techFadeIn {
   to {
      opacity: 1;
      transform: translateY(0)
   }
}
@keyframes dividerScan {

   0%,
   100% {
      left: -100%
   }

   50% {
      left: 100%
   }
}
.section-header h2::before {
   content: attr(data-number);
   display: inline-block;
   width: 50px;
   height: 50px;
   line-height: 50px;
   text-align: center;
   background: linear-gradient(135deg, var(--garnet-main), #c71585);
   border-radius: 50%;
   margin-right: 1rem;
   font-size: 1.2rem;
   font-weight: 900;
   box-shadow: 0 0 20px rgba(220, 20, 60, 0.4)
}
@keyframes float {

   0%,
   100% {
      transform: translateY(0) translateX(0);
      opacity: 0
   }

   10% {
      opacity: 1
   }

   90% {
      opacity: 1
   }

   100% {
      transform: translateY(-100vh) translateX(50px);
      opacity: 0
   }
}
@media (max-width:768px) {
  .section-header h2::before {
      width: 40px;
      height: 40px;
      line-height: 40px;
      font-size: 1rem
   }
}
.section-header h2::before {
   content: none !important;
   display: none !important
}
@keyframes pulseGlow {

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

   50% {
      transform: scale(1.2);
      opacity: 0.6
   }
}
.hero-label {
   display: inline-block;
   color: var(--garnet-text);
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.2em;
   font-size: 0.9rem;
   margin-bottom: 1rem
}
@keyframes shimmerTop {
   0% {
      background-position: -200% 0
   }

   100% {
      background-position: 200% 0
   }
}
@keyframes rotateBg {
   0% {
      transform: rotate(0deg)
   }

   100% {
      transform: rotate(360deg)
   }
}
.hero-label {
   display: inline-block;
   color: var(--garnet-text);
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.2em;
   font-size: 0.9rem;
   margin-bottom: 1rem
}
@keyframes sparkle {

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

   50% {
      transform: scale(1.1);
      filter: brightness(1.3)
   }
}
@keyframes arrowPulse {

   0%,
   100% {
      transform: translateX(0);
      opacity: 0.7
   }

   50% {
      transform: translateX(10px);
      opacity: 1
   }
}
.metric-value {
   font-size: 4rem;
   font-weight: 900;
   font-family: 'Space Grotesk', sans-serif;
   color: var(--garnet-text);
   line-height: 1;
   display: inline-block
}
.metric-label {
   font-size: 1.1rem;
   font-weight: 700;
   color: var(--text-primary);
   margin: 1rem 0 0.5rem
}
@media (max-width:768px) {
  .metric-value {
      font-size: 3rem
   }
}
@keyframes heroFlare {

   0%,
   100% {
      transform: translateX(-50%) scale(1);
      opacity: 0.6
   }

   50% {
      transform: translateX(-50%) scale(1.2);
      opacity: 0.9
   }
}
@keyframes diagonalSweep {
   0% {
      transform: translateX(-100%) translateY(-100%)
   }

   100% {
      transform: translateX(100%) translateY(100%)
   }
}
@keyframes particleFloat {

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

   33% {
      background-position: 30% 20%, 70% 80%, 60% 40%
   }

   66% {
      background-position: 60% 40%, 40% 60%, 30% 70%
   }
}
@keyframes gridPulse {

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

   50% {
      opacity: 0.6;
      transform: scale(1.05)
   }
}
@keyframes spotlightPulse {

   0%,
   100% {
      opacity: 0.4;
      transform: translate(-50%, -50%) scale(1)
   }

   50% {
      opacity: 0.7;
      transform: translate(-50%, -50%) scale(1.1)
   }
}
@keyframes ambientGlow {

   0%,
   100% {
      opacity: 0.5
   }

   50% {
      opacity: 0.8
   }
}
@keyframes scanLine {
   0% {
      transform: translateY(0);
      opacity: 0
   }

   10% {
      opacity: 1
   }

   90% {
      opacity: 1
   }

   100% {
      transform: translateY(600px);
      opacity: 0
   }
}
.architect-ribbon {
   background: #020202;
   padding: 2.2rem 0;
   position: relative;
   overflow: hidden;
   border-top: 1px solid rgba(220, 20, 60, 0.15)
}
.ribbon-background {
   position: absolute;
   inset: 0;
   overflow: hidden;
   pointer-events: none
}
.ribbon-glow {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 1px;
   background: linear-gradient(90deg, transparent 0%, rgba(220, 20, 60, 0.2) 20%, var(--garnet-main) 50%, rgba(220, 20, 60, 0.2) 80%, transparent 100%);
   box-shadow: 0 0 15px rgba(220, 20, 60, 0.3)
}
.ribbon-glow::after {
   content: '';
   position: absolute;
   top: 0;
   left: -100px;
   width: 200px;
   height: 1px;
   background: #fff;
   box-shadow: 0 0 20px #fff, 0 0 40px var(--garnet-main);
   animation: ribbonScan 4s cubic-bezier(0.4, 0, 0.2, 1) infinite
}
@keyframes ribbonScan {
   0% {
      left: -10%;
      opacity: 0
   }

   10% {
      opacity: 1
   }

   90% {
      opacity: 1
   }

   100% {
      left: 110%;
      opacity: 0
   }
}
.ribbon-content {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 3rem;
   position: relative;
   z-index: 2
}
.ribbon-branding {
   display: flex;
   align-items: center;
   gap: 1.2rem;
   flex-shrink: 0
}
.ribbon-title {
   font-size: 0.95rem;
   font-weight: 400;
   letter-spacing: 0.15rem;
   color: #fff;
   opacity: 0.9
}
.ribbon-title strong {
   font-weight: 900;
   color: var(--garnet-text)
}
.ribbon-meta {
   font-family: monospace;
   font-size: 0.6rem;
   color: #a9a9a9;
   letter-spacing: 0.05rem;
   text-transform: uppercase;
   border: 1px solid rgba(255, 255, 255, 0.05);
   padding: 2px 6px;
   border-radius: 2px
}
.ribbon-nav {
   display: flex;
   gap: 2.5rem;
   flex-grow: 1;
   justify-content: center;
   flex-wrap: wrap
}
.nav-segment {
   display: flex;
   align-items: center;
   gap: 1.2rem
}
.segment-label {
   font-family: monospace;
   font-size: 0.65rem;
   color: var(--garnet-text);
   letter-spacing: 0.1rem;
   opacity: 0.7;
   font-weight: 700
}
.nav-segment a {
   color: #a9a9a9;
   text-decoration: none;
   font-size: 0.8rem;
   text-transform: uppercase;
   letter-spacing: 0.08rem;
   transition: all 0.3s ease;
   position: relative
}
.nav-segment a::after {
   content: '';
   position: absolute;
   bottom: -4px;
   left: 0;
   width: 0;
   height: 1px;
   background: var(--garnet-main);
   transition: width 0.3s ease
}
.nav-segment a:hover {
   color: #fff;
   text-shadow: 0 0 10px rgba(220, 20, 60, 0.5)
}
.nav-segment a:hover::after {
   width: 100%
}
.ribbon-status {
   display: flex;
   align-items: center;
   gap: 1rem;
   flex-shrink: 0
}
.status-code {
   font-family: monospace;
   font-size: 0.7rem;
   color: #00ff88;
   letter-spacing: 0.1rem;
   opacity: 0.9
}
@media (max-width:900px) {
  .ribbon-content {
      flex-direction: column;
      gap: 2rem;
      text-align: center
   }
  .ribbon-branding {
      justify-content: center;
      width: 100%
   }
  .ribbon-nav {
      flex-direction: column;
      gap: 1.5rem;
      width: 100%
   }
  .nav-segment {
      justify-content: center;
      flex-wrap: wrap;
      gap: 1rem
   }
  .ribbon-status {
      width: 100%;
      justify-content: center
   }
}
.status-pulse {
   width: 6px;
   height: 6px;
   background: #00ff88;
   border-radius: 50%;
   box-shadow: 0 0 10px #00ff88;
   animation: pulse-mini 2s infinite
}
@keyframes pulse-mini {
   0% {
      opacity: 0.4;
      transform: scale(0.8)
   }

   50% {
      opacity: 1;
      transform: scale(1.2)
   }

   100% {
      opacity: 0.4;
      transform: scale(0.8)
   }
}
.ribbon-bottom {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-top: 1.5rem;
   padding-top: 1rem;
   border-top: 1px solid rgba(255, 255, 255, 0.03)
}
.ribbon-bottom .legal,
.ribbon-bottom .tagline {
   font-size: 0.7rem;
   font-family: monospace;
   color: #a9a9a9;
   letter-spacing: 0.12rem
}
.arch-logo-v2 {
   width: 36px;
   height: 36px;
   position: relative;
   perspective: 500px;
   display: flex;
   align-items: center;
   justify-content: center;
   user-select: none;
   pointer-events: none;
   margin-right: 1rem
}
.logo-inner {
   width: 100%;
   height: 100%;
   position: relative;
   transform-style: preserve-3d;
   animation: logo-master-spin 15s linear infinite
}
.core-nucleus {
   position: absolute;
   top: 50%;
   left: 50%;
   width: 12px;
   height: 12px;
   background: var(--garnet-main);
   transform: translate(-50%, -50%) rotateX(45deg) rotateZ(45deg);
   box-shadow: 0 0 15px var(--garnet-main), inset 0 0 5px rgba(255, 255, 255, 0.8);
   animation: nucleus-pulse 3s ease-in-out infinite
}
.grid-shell {
   position: absolute;
   inset: 0;
   transform-style: preserve-3d
}
.shell-plane {
   position: absolute;
   inset: 0;
   border: 1px solid rgba(220, 20, 60, 0.3);
   border-radius: 2px
}
.shell-plane:nth-child(1) {
   transform: rotateY(0deg)
}
.shell-plane:nth-child(2) {
   transform: rotateY(60deg)
}
.shell-plane:nth-child(3) {
   transform: rotateY(120deg)
}
.orbit-ring {
   position: absolute;
   top: 50%;
   left: 50%;
   width: 44px;
   height: 44px;
   border: 1px solid rgba(255, 255, 255, 0.05);
   border-radius: 50%;
   transform: translate(-50%, -50%) rotateX(70deg)
}
.orbit-ring::after {
   content: '';
   position: absolute;
   top: 0;
   left: 50%;
   width: 3px;
   height: 3px;
   background: #fff;
   border-radius: 50%;
   box-shadow: 0 0 8px #fff;
   animation: orbit-dot 4s linear infinite
}
@keyframes logo-master-spin {
   from {
      transform: rotateY(0deg) rotateX(0deg)
   }

   to {
      transform: rotateY(360deg) rotateX(360deg)
   }
}
@keyframes nucleus-pulse {

   0%,
   100% {
      transform: translate(-50%, -50%) rotateX(45deg) rotateZ(45deg) scale(1);
      opacity: 0.8
   }

   50% {
      transform: translate(-50%, -50%) rotateX(45deg) rotateZ(45deg) scale(1.3);
      opacity: 1;
      filter: brightness(1.5)
   }
}
@keyframes orbit-dot {
   from {
      transform: translateX(-50%) rotate(0deg) translateY(-22px)
   }

   to {
      transform: translateX(-50%) rotate(360deg) translateY(-22px)
   }
}
.ribbon-branding .arch-logo-v2 {
   width: 28px;
   height: 28px;
   transform: scale(0.8);
   margin-right: 0.8rem
}
.dazzle-container {
   max-width: 900px;
   margin: 0 auto;
   display: flex;
   flex-direction: column;
   align-items: center;
   width: 100%
}
.hero-label {
   font-size: 1rem;
   font-weight: 700;
   letter-spacing: 0.5rem;
   color: var(--garnet-text);
   text-transform: uppercase;
   margin-bottom: 2rem;
   position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 2rem;
   width: 100%;
   opacity: 0;
   animation: labelDazzleIn 1s cubic-bezier(0.2, 0, 0.2, 1) forwards
}
.hero-label::before,
.hero-label::after {
   content: '';
   width: 60px;
   height: 1px;
   background: linear-gradient(90deg, transparent, var(--garnet-main), transparent)
}
@keyframes labelDazzleIn {
   0% {
      opacity: 0;
      transform: translateY(20px) scale(0.9);
      letter-spacing: 1.5rem
   }

   100% {
      opacity: 1;
      transform: translateY(0) scale(1);
      letter-spacing: 0.5rem
   }
}
.dazzle-heading {
   font-size: 6.5rem;
   font-weight: 900;
   line-height: 1.1;
   margin-bottom: 3rem;
   display: flex;
   flex-direction: column;
   align-items: center
}
.d-row {
   display: block;
   background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 40%, var(--garnet-main) 50%, rgba(255, 255, 255, 0.7) 60%, #ffffff 100%);
   background-size: 300% auto;
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   opacity: 0;
   transform: translateY(40px);
   filter: blur(8px);
   animation: rowReveal 1.2s cubic-bezier(0.2, 0, 0.2, 1) forwards, shimmerSweep 6s linear infinite, textDazzlePulse 3s ease-in-out infinite
}
.d-row:nth-child(1) {
   animation-delay: 0.2s, 0s, 0s
}
.d-row:nth-child(2) {
   animation-delay: 0.4s, 1s, 0.5s
}
.d-row:nth-child(3) {
   animation-delay: 0.6s, 2s, 1s
}
@keyframes rowReveal {
   0% {
      opacity: 0;
      transform: translateY(60px);
      filter: blur(15px)
   }

   100% {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0)
   }
}
@keyframes shimmerSweep {
   0% {
      background-position: -300% center
   }

   100% {
      background-position: 300% center
   }
}
@keyframes textDazzlePulse {

   0%,
   100% {
      text-shadow: 0 0 30px rgba(220, 20, 60, 0.2)
   }

   50% {
      text-shadow: 0 0 60px rgba(220, 20, 60, 0.6), 0 0 20px rgba(220, 20, 60, 0.4)
   }
}
@media (max-width:1024px) {
  .dazzle-heading {
      font-size: 4.5rem
   }
}
@media (max-width:768px) {
  .dazzle-heading {
      font-size: 3rem
   }
}
@keyframes scrollDown {
   0% {
      transform: translateY(0)
   }

   100% {
      transform: translateY(50%)
   }
}
@keyframes scrollUp {
   0% {
      transform: translateY(0) rotate(-5deg)
   }

   100% {
      transform: translateY(-50%) rotate(-5deg)
   }
}
@keyframes pulseGlow {
   0% {
      opacity: 0.3;
      transform: scale(1)
   }

   100% {
      opacity: 0.6;
      transform: scale(1.2)
   }
}
@keyframes codeScroll {
   0% {
      top: 100%
   }

   100% {
      top: -200%
   }
}
@keyframes scrollVertical {
   from {
      transform: translateY(0)
   }

   to {
      transform: translateY(50%)
   }
}
@keyframes growBar {
   from {
      transform: scaleY(0.8);
      opacity: 0.5
   }

   to {
      transform: scaleY(1.1);
      opacity: 0.9
   }
}
@keyframes packetPath {
   0% {
      top: 20%;
      left: 20%;
      opacity: 0
   }

   10% {
      opacity: 1
   }

   90% {
      opacity: 1
   }

   100% {
      top: 80%;
      left: 80%;
      opacity: 0
   }
}
@keyframes cosmicFloat {
   from {
      background-position: 0 0
   }

   to {
      background-position: 500px 500px
   }
}
@keyframes gridScroll {
   from {
      transform: perspective(500px) rotateX(60deg) translateY(0)
   }

   to {
      transform: perspective(500px) rotateX(60deg) translateY(50px)
   }
}
@keyframes glowPulse {
   0% {
      opacity: 0.3;
      transform: scale(1)
   }

   100% {
      opacity: 0.6;
      transform: scale(1.2)
   }
}
.dazzle-heading .d-row {
   padding-bottom: 0.15em;
   margin-bottom: -0.1em;
   display: block
}
@keyframes sqlPulse {
   0% {
      transform: scale(0.8);
      opacity: 0
   }

   50% {
      opacity: 0.5
   }

   100% {
      transform: scale(1.1);
      opacity: 0
   }
}
@keyframes ledBlink {
   from {
      opacity: 0.3
   }

   to {
      opacity: 1
   }
}
@keyframes cableFlow {
   0% {
      transform: translateY(100%)
   }

   100% {
      transform: translateY(-100%)
   }
}
@keyframes gridScan {
   0% {
      background-position: center 0
   }

   100% {
      background-position: center 40px
   }
}
.metatron-bg-layer {
   position: fixed;
   top: 50%;
   left: 50%;
   width: 100vw;
   height: 100vh;
   transform: translate(-50%, -50%);
   pointer-events: none;
   z-index: -1;
   overflow: hidden;
   opacity: 0.03
}
.metatron-cube {
   position: absolute;
   top: 50%;
   left: 50%;
   width: 800px;
   height: 800px;
   transform: translate(-50%, -50%);
   animation: metatronRotate 60s linear infinite;
   will-change: transform;
   contain: layout style
}
.meta-circle {
   position: absolute;
   border: 1px solid var(--garnet-main);
   border-radius: 50%;
   width: 200px;
   height: 200px;
   box-shadow: 0 0 20px rgba(220, 20, 60, 0.2)
}
.meta-c-center {
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%)
}
.meta-c-1 {
   top: 15%;
   left: 50%;
   transform: translate(-50%, -50%)
}
.meta-c-2 {
   top: 32.5%;
   left: 80.3%;
   transform: translate(-50%, -50%)
}
.meta-c-3 {
   top: 67.5%;
   left: 80.3%;
   transform: translate(-50%, -50%)
}
.meta-c-4 {
   top: 85%;
   left: 50%;
   transform: translate(-50%, -50%)
}
.meta-c-5 {
   top: 67.5%;
   left: 19.7%;
   transform: translate(-50%, -50%)
}
.meta-c-6 {
   top: 32.5%;
   left: 19.7%;
   transform: translate(-50%, -50%)
}
@keyframes metatronRotate {
   0% {
      transform: translate(-50%, -50%) rotate(0deg)
   }

   100% {
      transform: translate(-50%, -50%) rotate(360deg)
   }
}
@media (max-width:768px) {
  .metatron-cube {
      width: 400px;
      height: 400px;
      opacity: 0.05
   }
  .meta-circle {
      width: 100px;
      height: 100px
   }
  .main-nav .nav-container {
      padding: 0 1.5rem
   }
  html,
   body {
      overflow-x: hidden;
      width: 100%;
      max-width: 100%
   }
  .hero h1 {
      font-size: 2.5rem;
      word-wrap: break-word
   }
  .hero-content {
      max-width: 100%;
      padding: 0 1rem
   }
  .ribbon-nav {
      flex-direction: column;
      gap: 1.5rem;
      width: 100%
   }
  .nav-segment {
      flex-direction: column;
      gap: 0.5rem
   }
  .glass-card {
      width: 100%;
      min-width: 0
   }
}
@keyframes pulseNode {
   0% {
      transform: scale(1);
      opacity: 0.8
   }

   50% {
      transform: scale(1.2);
      opacity: 1
   }

   100% {
      transform: scale(1);
      opacity: 0.8
   }
}
.cta-slim-section {
   padding: 6rem 0;
   position: relative;
   z-index: 10
}
.cta-slim-container {
   background: rgba(15, 15, 15, 0.8);
   -webkit-backdrop-filter: blur(16px);
   backdrop-filter: blur(16px);
   -webkit-backdrop-filter: blur(16px);
   border: 1px solid rgba(220, 20, 60, 0.3);
   border-radius: 20px;
   padding: 3rem 4rem;
   display: flex;
   align-items: center;
   justify-content: space-between;
   box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
   position: relative;
   overflow: hidden;
   transition: transform 0.3s ease, border-color 0.3s ease
}
.cta-slim-container:hover {
   border-color: var(--garnet-text);
   transform: translateY(-2px);
   box-shadow: 0 25px 60px rgba(220, 20, 60, 0.15)
}
.cta-slim-container::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 4px;
   height: 100%;
   background: var(--garnet-main);
   box-shadow: 0 0 15px var(--garnet-main)
}
.cta-grid-bg {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
   background-size: 30px 30px;
   opacity: 0.5;
   pointer-events: none;
   z-index: 0
}
.cta-content-slim {
   position: relative;
   z-index: 2;
   max-width: 600px
}
.cta-content-slim h2 {
   font-size: 2.2rem;
   margin-bottom: 0.5rem;
   background: linear-gradient(90deg, #fff, #ff6b9d);
   -webkit-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent;
   font-family: var(--font-heading)
}
.cta-content-slim p {
   font-size: 1.1rem;
   color: var(--text-secondary);
   margin: 0
}
.btn-wow {
   position: relative;
   padding: 1rem 2.5rem;
   background: linear-gradient(135deg, var(--garnet-main), #a01030);
   border: none;
   border-radius: 50px;
   color: #fff;
   font-family: var(--font-heading);
   font-weight: 700;
   font-size: 1rem;
   text-transform: uppercase;
   letter-spacing: 0.1em;
   cursor: pointer;
   overflow: hidden;
   transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
   z-index: 2;
   box-shadow: 0 10px 20px rgba(220, 20, 60, 0.3);
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   gap: 0.5rem
}
.btn-wow:hover {
   transform: scale(1.05) translateY(-2px);
   box-shadow: 0 15px 30px rgba(220, 20, 60, 0.5), 0 0 20px rgba(255, 105, 180, 0.4);
   background: linear-gradient(135deg, #ff1a4a, #c0123a)
}
.btn-wow::after {
   content: '';
   position: absolute;
   top: -50%;
   left: -50%;
   width: 200%;
   height: 200%;
   background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
   transform: scale(0);
   transition: transform 0.6s ease-out;
   opacity: 0
}
.btn-wow:hover::after {
   transform: scale(1);
   opacity: 1;
   transition: transform 0s
}
.btn-wow span {
   position: relative;
   z-index: 2
}
.btn-arrow {
   transition: transform 0.3s ease
}
.btn-wow:hover .btn-arrow {
   transform: translateX(4px)
}
@keyframes pulseBtn {
   0% {
      box-shadow: 0 0 0 0 rgba(220, 20, 60, 0.7)
   }

   70% {
      box-shadow: 0 0 0 15px rgba(220, 20, 60, 0)
   }

   100% {
      box-shadow: 0 0 0 0 rgba(220, 20, 60, 0)
   }
}
.btn-wow.pulse {
   animation: pulseBtn 2s infinite
}
@media (max-width:992px) {
  .cta-slim-container {
      flex-direction: column;
      text-align: center;
      padding: 3rem 2rem;
      gap: 2rem
   }
  .cta-slim-container::before {
      width: 100%;
      height: 4px;
      top: 0;
      left: 0
   }
}
@keyframes storyCycle {
   0% {
      opacity: 0;
      transform: scale(1)
   }

   5% {
      opacity: 1
   }

   25% {
      opacity: 1;
      transform: scale(1.05)
   }

   30% {
      opacity: 0
   }

   100% {
      opacity: 0
   }
}
@media (max-width:768px) {
  .ribbon-nav {
      width: 100% !important;
      min-width: 0 !important;
      left: 0 !important;
      transform: none !important;
      margin-left: 0 !important;
      border-radius: 0
   }
  .glass-card {
      min-width: 0 !important;
      width: 100% !important
   }
  .container {
      padding: 0 1rem;
      min-width: 0
   }
}
.legal .separator {
   opacity: 0.5;
   margin: 0 0.5rem
}
.legal a {
   color: var(--text-secondary);
   text-decoration: none;
   transition: color 0.3s ease
}
.legal a:hover {
   color: var(--garnet-text)
}
#system-preloader {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: #030303;
   z-index: 9999;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   font-family: 'Space Grotesk', sans-serif;
   color: var(--garnet-text);
   overflow: hidden;
   will-change: opacity, transform;
}
.preloader-scanlines {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: repeating-linear-gradient(0deg,
         transparent,
         transparent 2px,
         rgba(220, 20, 60, 0.015) 2px,
         rgba(220, 20, 60, 0.015) 4px);
   pointer-events: none;
   z-index: 1;
   animation: scanSweep 4s linear infinite;
}
@keyframes scanSweep {
   0% {
      transform: translateY(0);
   }

   100% {
      transform: translateY(4px);
   }
}
@keyframes rainFall {
   0% {
      transform: translateY(-60px);
      opacity: 0;
   }

   10% {
      opacity: 1;
   }

   90% {
      opacity: 1;
   }

   100% {
      transform: translateY(calc(100vh + 60px));
      opacity: 0;
   }
}
.loader-content {
   text-align: center;
   position: relative;
   width: 320px;
   z-index: 2;
}
@keyframes hexSpin {
   0% {
      transform: rotate(0deg);
   }

   100% {
      transform: rotate(360deg);
   }
}
@keyframes hexDash {
   0% {
      stroke-dashoffset: 0;
   }

   100% {
      stroke-dashoffset: 110;
   }
}
.crystal-container {
   position: absolute;
   top: 50%;
   left: 50%;
   width: 240px;
   height: 240px;
   transform: translate(-50%, -65%);
   z-index: 0;
}
.garnet-crystal {
   width: 100%;
   height: 100%;
   color: rgba(220, 20, 60, 0.45);
   will-change: transform;
}
.garnet-crystal.metatron-cube {
   animation: metatronSpin 30s linear infinite;
}
.metatron-lines {
   transition: opacity 0.6s ease;
}
.metatron-circle {
   stroke-dasharray: 4 2;
   animation: metatronCirclePulse 4s ease-in-out infinite;
   will-change: opacity;
}
.metatron-circle.metatron-outer {
   opacity: 0.5;
   animation-delay: 0.5s;
}
.metatron-core {
   fill: var(--garnet-main);
   filter: drop-shadow(0 0 6px rgba(220, 20, 60, 0.8));
   animation: corePulse 2s ease-in-out infinite;
}
@keyframes metatronSpin {
   0% {
      transform: rotate(0deg);
   }

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

   0%,
   100% {
      opacity: 0.3;
   }

   50% {
      opacity: 0.7;
   }
}
.crystal-dust {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   overflow: hidden;
   z-index: 0;
   pointer-events: none;
}
.dust-mote {
   position: absolute;
   width: 2px;
   height: 2px;
   background: radial-gradient(circle, rgba(220, 20, 60, 0.8), transparent);
   border-radius: 50%;
   animation: dustFloat 6s ease-in-out infinite;
   will-change: transform, opacity;
}
@keyframes dustFloat {

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

   25% {
      transform: translateY(-30px) scale(1.5);
      opacity: 0.6;
   }

   50% {
      transform: translateY(-15px) scale(0.8);
      opacity: 0.4;
   }

   75% {
      transform: translateY(-40px) scale(1.2);
      opacity: 0.5;
   }
}
.loader-logo {
   width: 70px;
   height: 70px;
   margin: 0 auto 2rem;
   position: relative;
   z-index: 1;
}
.loader-ring {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   border: 2px solid rgba(220, 20, 60, 0.2);
   border-top-color: var(--garnet-text);
   border-right-color: rgba(220, 20, 60, 0.6);
   border-radius: 50%;
   animation: loaderSpin 1.2s linear infinite;
   will-change: transform;
}
.loader-ring-2 {
   border: 1.5px solid rgba(220, 20, 60, 0.1);
   border-bottom-color: rgba(199, 21, 133, 0.8);
   animation: loaderSpin 2s linear infinite reverse;
   transform: scale(1.15);
}
.loader-core {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 32%;
   height: 32%;
   background: radial-gradient(circle, var(--garnet-main) 0%, rgba(199, 21, 133, 0.8) 100%);
   border-radius: 50%;
   box-shadow:
      0 0 15px var(--garnet-main),
      0 0 40px rgba(220, 20, 60, 0.4),
      0 0 80px rgba(220, 20, 60, 0.15);
   animation: corePulse 2s ease-in-out infinite;
   will-change: transform, opacity;
}
.core-flare {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 120%;
   height: 120%;
   border-radius: 50%;
   background: radial-gradient(circle, rgba(220, 20, 60, 0.1) 0%, transparent 70%);
   animation: flarePulse 3s ease-in-out infinite;
   will-change: transform, opacity;
}
@keyframes loaderSpin {
   0% {
      transform: rotate(0deg);
   }

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

   0%,
   100% {
      opacity: 0.6;
      transform: translate(-50%, -50%) scale(0.85);
   }

   50% {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1.15);
   }
}
@keyframes flarePulse {

   0%,
   100% {
      transform: translate(-50%, -50%) scale(0.8);
      opacity: 0.3;
   }

   50% {
      transform: translate(-50%, -50%) scale(1.3);
      opacity: 0.7;
   }
}
.boot-log {
   text-align: left;
   margin-bottom: 1rem;
}
.boot-text {
   font-size: 1.1rem;
   font-weight: 700;
   letter-spacing: 0.15rem;
   margin-bottom: 0.75rem;
   text-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
   text-align: center;
}
.boot-entries {
   font-family: 'Inter', monospace;
   font-size: 0.7rem;
   line-height: 1.6;
   color: #a9a9a9;
   min-height: 80px;
   max-height: 100px;
   overflow: hidden;
}
@keyframes bootFadeIn {
   0% {
      opacity: 0;
      transform: translateY(4px);
   }

   100% {
      opacity: 1;
      transform: translateY(0);
   }
}
.progress-bar {
   width: 100%;
   height: 3px;
   background: rgba(255, 255, 255, 0.06);
   margin-top: 1rem;
   position: relative;
   overflow: hidden;
   border-radius: 2px;
}
.progress-fill {
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 0%;
   background: linear-gradient(90deg, var(--garnet-main), rgba(199, 21, 133, 0.9));
   box-shadow: 0 0 12px var(--garnet-main), 0 0 30px rgba(220, 20, 60, 0.3);
   transition: width 0.3s ease;
   border-radius: 2px;
}
.progress-shimmer {
   position: absolute;
   top: 0;
   left: -100%;
   width: 100%;
   height: 100%;
   background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
   animation: shimmerSlide 2s linear infinite;
   will-change: transform;
}
@keyframes shimmerSlide {
   0% {
      transform: translateX(0);
   }

   100% {
      transform: translateX(200%);
   }
}
.progress-label {
   font-family: 'Inter', monospace;
   font-size: 0.65rem;
   color: #a9a9a9;
   text-align: right;
   margin-top: 0.4rem;
   letter-spacing: 0.1rem;
}
@keyframes greenFlash {
   0% {
      box-shadow: inset 0 0 0 0 transparent;
   }

   50% {
      box-shadow: inset 0 0 200px rgba(57, 255, 20, 0.08);
   }

   100% {
      box-shadow: inset 0 0 0 0 transparent;
   }
}
@media (prefers-reduced-motion: reduce) {
  .preloader-scanlines,
   .matrix-rain,
   .hex-ring,
   .sacred-lines,
   .core-flare,
   .progress-shimmer {
      display: none;
   }
  .loader-ring,
   .loader-ring-2,
   .loader-core {
      animation: none;
   }
  .loader-core {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
   }
}
@media (max-width:480px) {
  .loader-content {
      width: 90%;
      max-width: 300px
   }
  .boot-text {
      font-size: 1rem;
      letter-spacing: 0.15rem
   }
}
.secret-hint {
   font-family: 'Courier New', monospace;
   font-size: 0.7rem;
   color: #a9a9a9;
   text-align: center;
   margin-bottom: 2px;
   transition: color 0.3s ease;
   cursor: default
}
@keyframes pulseStatus {
   0% {
      opacity: 0.5;
      transform: scale(0.8)
   }

   50% {
      opacity: 1;
      transform: scale(1.2)
   }

   100% {
      opacity: 0.5;
      transform: scale(0.8)
   }
}
@keyframes slideDown {
   from {
      opacity: 0;
      transform: translateY(-10px)
   }

   to {
      opacity: 1;
      transform: translateY(0)
   }
}
body,
body .main-nav,
body .glass-card,
body #theme-toggle {
   transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease
}
body,
body .top-nav,
body .landing,
body .step,
body .metric-card,
body .approach-card,
body .outcome-card,
body .showcase-card,
body .pillar-card,
body .pricing-card,
body .btn.ghost,
body .code-console,
body #theme-toggle {
   transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
main#main-content {
   overflow-x: hidden;
   max-width: 100vw
}
.gg-skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 9999;
    padding: 1rem;
    background: #aa0000;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
.gg-accent-link {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: var(--garnet-text);
}
.gg-insight-icon {
    width: 14px;
    height: 14px;
    min-width: 14px;
}
.gg-insight-label {
    text-align: center;
    padding: 1rem 0 0.5rem;
}
.gg-insight-title {
    font-weight: 600;
    color: var(--garnet-text);
    transition: color 0.3s;
}
.gg-insight-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(240, 240, 240, 0.35);
    font-family: 'Space Grotesk', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s;
    padding: 0.3rem 0.6rem;
    border-radius: 3px;
    border: 1px solid transparent;
}
.gg-tool-card {
    text-decoration: none;
    display: block;
    background: rgba(170, 0, 0, 0.04);
    border: 1px solid rgba(170, 0, 0, 0.10);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}
.gg-tool-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}
.gg-tool-title {
    color: var(--garnet-text);
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
}
.gg-tool-desc {
    color: rgba(240, 240, 240, 0.55);
    font-size: 0.85rem;
    margin: 0;
}
.gg-white-glass-card {
    text-decoration: none;
    display: block;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 2rem;
    transition: all 0.3s ease;
}
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
input, textarea, [contenteditable="true"], .chat-history, .msg-content {
    -webkit-user-select: text;
    -moz-user-select: text;
    user-select: text;
}
@media (max-width: 480px) {
  .metatron-cube { width: min(400px, 100vw); height: min(400px, 100vw); }
}