/* DDS Lattice System derived from Hewre Overhaul */
:root {
  --hewre-midnight: #05050a;
  --hewre-stone: #0f0f18;
  --hewre-obsidian: #1e1e29;
  --hewre-metal: #2f2f40;
  --hewre-amber: #fabe5f;
  --hewre-emerald: #46d6b3;
  --hewre-slate: #8891a0;
  --hewre-white: #f5f7ff;
  --hewre-copper: #ffb77b;
  --hewre-shadow: 0 30px 80px rgba(5,5,10,0.6);
  --hewre-border: 3px solid rgba(255,255,255,0.18);
  --hewre-glow: 0 0 45px rgba(255, 173, 87, 0.25);
  --font-display: 'Playfair Display', 'Times New Roman', serif;
  --font-body: 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif;
  --radius: 8px;
  --section-gap: clamp(3.5rem, 5vw, 6rem);
  --text-xl: clamp(2rem, 3vw, 3rem);
  --text-lg: clamp(1.25rem, 1.8vw, 1.6rem);
  --text-md: 1rem;
  --grid-shift: 6px;
  --grid-overlay-opacity: 0.4;
  --grid-overlay-accent-opacity: 0.35;
  --grid-pulse-duration: 14s;
  --grid-shimmer: none;
  --grid-shimmer-size: 0 0;
  --grid-shimmer-duration: 32s;
  --grid-noise: none;
  --grid-noise-size: 0 0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: radial-gradient(circle at 15% -20%, rgba(72, 164, 137, 0.35), transparent 45%),
    linear-gradient(125deg, var(--hewre-midnight), var(--hewre-obsidian));
  color: var(--hewre-white);
  min-height: 100vh;
  overflow-x: hidden;
}

::selection {
  background: rgba(255, 255, 255, 0.2);
}

a {
  color: inherit;
  text-decoration: none;
}

.main-shell {
  width: min(1200px, 100% - 4rem);
  margin: 0 auto;
  padding: 0 0 4rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  gap: 1rem;
  position: sticky;
  top: 0;
  background: rgba(5, 5, 10, 0.9);
  backdrop-filter: blur(8px);
  z-index: 20;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-brand-mark {
  width: 44px;
  height: 28px;
  flex: 0 0 auto;
  opacity: 0.85;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.nav-brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.nav-brand-text {
  display: grid;
  gap: 0.2rem;
}

.nav-brand-name {
  font-family: var(--font-display);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-brand-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(245, 247, 255, 0.6);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.1rem;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.nav-links a {
  padding: 0.3rem 0.2rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  border-color: var(--hewre-emerald);
  color: var(--hewre-white);
}

.hero {
  padding: 6rem 0 4rem;
  text-align: center;
  position: relative;
}

.grid-overlay {
  position: relative;
}

.grid-overlay::before,
.grid-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: var(--grid-overlay-opacity);
  background-size: 120px 120px;
  mix-blend-mode: screen;
}

.grid-overlay::before {
  background-image:
    var(--grid-noise),
    linear-gradient(0deg, rgba(255,255,255,0.08) 0 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 0 1px, transparent 1px);
  background-size: var(--grid-noise-size), 120px 120px, 120px 120px;
  background-position: 0 0, 0 0, 0 0;
}

.grid-overlay::after {
  background-image:
    var(--grid-shimmer),
    linear-gradient(0deg, transparent 0 58px, rgba(70,214,179,0.12) 58px 60px),
    linear-gradient(90deg, transparent 0 58px, rgba(255,255,255,0.05) 58px 60px),
    linear-gradient(0deg, transparent 0 58px, rgba(250,190,95,0.08) 58px 60px);
  background-size: var(--grid-shimmer-size), 120px 120px, 120px 120px, 120px 120px;
  background-position: 0 0, 0 0, 18px 18px, 0 0;
  opacity: var(--grid-overlay-accent-opacity);
  background-repeat: repeat;
  filter: drop-shadow(0 12px 35px rgba(5, 5, 15, 0.7));
}

.grid-overlay--fine::before {
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.12) 0, rgba(255,255,255,0.12) 1px, transparent 1px 24px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.12) 0, rgba(255,255,255,0.12) 1px, transparent 1px 24px);
  background-size: 28px 28px;
  opacity: 0.3;
  background-position: 0 0, 14px 14px;
}

.grid-overlay--fine::after {
  background-image:
    repeating-linear-gradient(0deg, transparent 0 20px, rgba(255,255,255,0.08) 20px 22px),
    repeating-linear-gradient(90deg, transparent 0 20px, rgba(255,255,255,0.08) 20px 22px);
  background-size: 36px 36px;
  opacity: 0.15;
  background-position: 0 0, 18px 18px;
}

.grid-overlay--pulse::before {
  animation: gridPulse var(--grid-pulse-duration) ease-in-out infinite alternate;
}

.grid-overlay--pulse::after {
  animation: gridPulse var(--grid-pulse-duration) ease-in-out infinite alternate;
  opacity: var(--grid-overlay-accent-opacity);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 1rem auto auto 50%;
  width: 280px;
  height: 280px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  filter: blur(0.5px);
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/mountain color.webp') center/cover no-repeat;
  opacity: 0.12;
  filter: saturate(0.9);
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: heroRise 1.2s ease forwards;
}

.hero-title span:nth-child(1) { animation-delay: 0.1s; }
.hero-title span:nth-child(2) { animation-delay: 0.35s; }
.hero-title span:nth-child(3) { animation-delay: 0.6s; }

@keyframes heroRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-actions a {
  animation: btnGlow 2s ease-in-out infinite alternate;
}

@keyframes btnGlow {
  from { box-shadow: var(--hewre-shadow); }
  to { box-shadow: 0 0 35px rgba(255, 182, 95, 0.4); }
}

.hero-lede {
  font-size: var(--text-lg);
  max-width: 720px;
  margin: 0 auto 2rem;
  color: rgba(245, 247, 255, 0.8);
}

.accent-highlight {
  color: var(--hewre-emerald);
  font-weight: 600;
}

.hero-actions {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-hewre {
  border: var(--hewre-border);
  padding: 1rem 2.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  background: transparent;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--hewre-shadow);
}

.btn-primary {
  color: var(--hewre-midnight);
  background: var(--hewre-amber);
}

.btn-secondary {
  border-color: rgba(70, 214, 179, 0.7);
}

.btn-hewre:hover {
  transform: translate(-6px, -6px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.45);
}

.section {
  padding: var(--section-gap) 0;
}

.section-title {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: var(--text-xl);
  font-family: var(--font-display);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  color: rgba(245, 247, 255, 0.75);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.feature-grid,
.intel-grid,
.testimonial-grid,
.metric-grid,
.component-gallery {
  display: grid;
  gap: 1.5rem;
}

.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 2rem;
}

.feature-grid--wide {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.feature-card {
  border: var(--hewre-border);
  background: rgba(15, 15, 24, 0.6);
  padding: 1.5rem;
  min-height: 200px;
  display: grid;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  opacity: 0;
  border: 2px dashed rgba(255, 255, 255, 0.1);
  transition: opacity 0.4s ease;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card h3,
.feature-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  margin: 0;
  color: var(--hewre-amber);
}

.feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hewre-emerald), transparent);
  opacity: 0.65;
}

.feature-note,
.code-line {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: rgba(70, 214, 179, 0.8);
  letter-spacing: 0.1em;
}

.intel-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 2.5rem;
}

.intel-module {
  border: var(--hewre-border);
  padding: 2rem;
  background: linear-gradient(130deg, rgba(70, 214, 179, 0.15), rgba(5, 5, 10, 0.65));
}

.intel-module h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0 0 0.6rem;
}

.intel-module p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.metric-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 2rem;
}

.metric-card {
  border: var(--hewre-border);
  padding: 1.5rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
}

.metric-value {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 0.4rem;
  color: var(--hewre-emerald);
}

.metric-label {
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  font-size: 0.75rem;
}

.testimonial-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 2rem;
}

.testimonial-card {
  border: var(--hewre-border);
  padding: 1.5rem;
  background: rgba(15, 15, 24, 0.8);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card p {
  line-height: 1.6;
}

.testimonial-author {
  font-family: var(--font-mono);
  letter-spacing: 0.2em;
  margin-top: 1rem;
  color: var(--hewre-emerald);
  text-transform: uppercase;
  font-size: 0.75rem;
}

.component-gallery {
  margin-top: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.glyph-symbol {
  width: 100%;
  height: 80px;
  border-radius: var(--radius);
  border: var(--hewre-border);
  display: grid;
  place-items: center;
  margin-bottom: 0.8rem;
  position: relative;
  overflow: hidden;
}

.glyph-symbol::after {
  content: '';
  position: absolute;
  inset: 25% 20%;
  background: linear-gradient(135deg, rgba(70,214,179,0.6), rgba(255,182,95,0.4));
  border-radius: 50%;
  filter: blur(25px);
  opacity: 0.8;
}

.glyph-path {
  position: relative;
  font-family: var(--font-mono);
  letter-spacing: 0.4em;
  font-size: 0.7rem;
  color: rgba(245, 247, 255, 0.85);
}

.ritual-log {
  background: linear-gradient(135deg, rgba(5,5,10,0.8), rgba(38, 45, 60,0.6));
  border: 2px solid rgba(255,255,255,0.1);
  padding: 3rem 2rem;
  margin-top: 3rem;
  position: relative;
}

.ritual-log::before {
  content: 'COMMAND JOURNAL';
  position: absolute;
  top: -24px;
  left: 2rem;
  letter-spacing: 0.4em;
  font-size: 0.8rem;
  opacity: 0.5;
}

.ritual-log-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.ritual-item {
  border-left: 2px solid rgba(70,214,179,0.8);
  padding-left: 1rem;
  display: grid;
  gap: 0.4rem;
}

.ritual-item h6 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 0;
}

.ritual-item p {
  margin: 0;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.ritual-timestamp {
  font-family: var(--font-mono);
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
}

.component-card {
  border: var(--hewre-border);
  padding: 1.5rem;
  min-height: 210px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.75rem;
}

.component-card h5 {
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin: 0;
}

.component-card p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
}

.final-cta {
  padding: 3rem 2rem;
  border: 3px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(120deg, rgba(70, 214, 179, 0.25), rgba(255, 182, 95, 0.15));
  text-align: center;
  box-shadow: 0 0 60px rgba(70, 214, 179, 0.25);
}

.footer,
.dds-footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h4 {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
  color: rgba(245, 247, 255, 0.7);
}

.footer-brand {
  display: grid;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.footer-bottom {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 247, 255, 0.6);
}

.footer-social {
  margin-top: 0.8rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

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

.split-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.split-panel {
  border: var(--hewre-border);
  padding: 1.5rem;
  background: rgba(15, 15, 24, 0.6);
}

.split-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.pricing-card {
  border: var(--hewre-border);
  padding: 2rem;
  background: rgba(15, 15, 24, 0.7);
  display: grid;
  gap: 1rem;
}

.pricing-card.featured {
  border-color: rgba(250, 190, 95, 0.8);
  box-shadow: var(--hewre-glow);
}

.pricing-badge {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--hewre-emerald);
}

.pricing-heading {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--hewre-amber);
}

.pricing-period {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: rgba(245, 247, 255, 0.6);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
  color: rgba(245, 247, 255, 0.8);
}

.pricing-cta {
  justify-content: center;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.75rem 1rem;
}

.comparison-table th {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
}

.table-check {
  color: var(--hewre-emerald);
  font-weight: 600;
}

.table-dash {
  color: rgba(255, 255, 255, 0.5);
}

.faq-item {
  border: var(--hewre-border);
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: rgba(15, 15, 24, 0.6);
}

.faq-question {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: rgba(245, 247, 255, 0.75);
  line-height: 1.6;
}

.terminal-box {
  border: var(--hewre-border);
  padding: 1.5rem;
  background: rgba(5, 5, 10, 0.8);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  display: grid;
  gap: 0.6rem;
  color: rgba(245, 247, 255, 0.8);
}

.terminal-line {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.terminal-prompt {
  color: var(--hewre-emerald);
}

.terminal-command,
.terminal-text,
.terminal-response {
  color: rgba(245, 247, 255, 0.85);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.badge {
  border: var(--hewre-border);
  padding: 0.6rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  background: rgba(15, 15, 24, 0.6);
}

.form-shell {
  border: var(--hewre-border);
  padding: 2rem;
  background: rgba(15, 15, 24, 0.6);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-grid label {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(5, 5, 10, 0.6);
  color: var(--hewre-white);
  font-family: var(--font-body);
}

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

.form-note {
  color: rgba(245, 247, 255, 0.65);
  text-align: center;
}

.legal-section {
  border: var(--hewre-border);
  padding: 2rem;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.03);
}

.legal-section h2 {
  font-family: var(--font-display);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
  color: var(--hewre-amber);
}

.legal-section p,
.legal-section ul {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
}

.legal-section ul {
  padding-left: 1.25rem;
  margin-top: 0.75rem;
}

@media (max-width: 768px) {
  .main-shell {
    width: calc(100% - 2rem);
  }
  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }
  .site-nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-brand-mark {
    width: 36px;
    height: 24px;
  }
  .hero::before {
    opacity: 0.1;
  }
}

@keyframes gridPulse {
  from {
    opacity: 0.12;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0.35;
    transform: translate3d(var(--grid-shift), calc(var(--grid-shift) * -1), 0);
  }
}

@keyframes gridShimmer {
  from {
    background-position: -120% -120%, 0 0, 18px 18px, 0 0;
  }
  to {
    background-position: 120% 120%, 0 0, 18px 18px, 0 0;
  }
}

@keyframes gridBuzz {
  0% { transform: translate3d(0, 0, 0); }
  25% { transform: translate3d(1px, -1px, 0); }
  50% { transform: translate3d(-1px, 1px, 0); }
  75% { transform: translate3d(1px, 1px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

body.grid-mode-1 {
  --grid-shift: 9px;
  --grid-overlay-opacity: 0.48;
  --grid-overlay-accent-opacity: 0.45;
}

body.grid-mode-2 {
  --grid-shift: 4px;
  --grid-pulse-duration: 24s;
  --grid-overlay-opacity: 0.34;
  --grid-overlay-accent-opacity: 0.28;
}

body.grid-mode-3 {
  --grid-shimmer: linear-gradient(120deg, transparent 20%, rgba(214, 255, 240, 0.08) 45%, transparent 70%);
  --grid-shimmer-size: 220% 220%;
  --grid-pulse-duration: 18s;
}

body.grid-mode-3 .grid-overlay--pulse::after {
  animation: gridPulse var(--grid-pulse-duration) ease-in-out infinite alternate,
    gridShimmer var(--grid-shimmer-duration) linear infinite;
}

body.grid-mode-4 .grid-overlay::before,
body.grid-mode-4 .grid-overlay::after,
body.grid-buzz .grid-overlay::before,
body.grid-buzz .grid-overlay::after {
  animation: gridBuzz 0.4s ease;
}

body.grid-mode-5 {
  --grid-noise: repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 3px);
  --grid-noise-size: 180px 180px;
  --grid-overlay-opacity: 0.38;
}

#grid-mode-indicator {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  padding: 0.5rem 0.75rem;
  background: rgba(5, 6, 11, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(245, 247, 255, 0.85);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2000;
  border-radius: 6px;
  backdrop-filter: blur(6px);
}
