/* ==========================================================================
   CHIME CURRENT - OFFICIAL GAMING STYLESHEET
   Theme: Geometric Balance (Cybernetic Aquatic HUD & Precision Grid)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;600;700&display=swap');

:root {
  /* Geometric Balance Color Palette */
  --bg-deep: #0A0B10;
  --bg-panel: #0F1219;
  --bg-card: #161B22;
  --bg-card-alt: #0D1117;
  --bg-hud: rgba(15, 18, 25, 0.88);
  --bg-card-hover: #1c232d;

  /* Accent Tones */
  --cyan-accent: #22D3EE;
  --cyan-glow: #22D3EE;
  --cyan-bright: #38BDF8;
  --cyan-dim: rgba(34, 211, 238, 0.15);
  
  --orange-accent: #F27D26;
  --orange-dim: rgba(242, 125, 38, 0.18);
  
  --teal-accent: #2DD4BF;
  --gold-accent: #FBBF24;
  --coral-accent: #FB7185;
  
  /* Text Tiers */
  --text-main: #E0E0E0;
  --text-bright: #FFFFFF;
  --text-muted: #8B949E;
  --text-dim: #5c6773;

  /* Geometric Borders & Grid */
  --border-cyan: rgba(34, 211, 238, 0.2);
  --border-cyan-strong: rgba(34, 211, 238, 0.5);
  --border-slate: rgba(139, 148, 158, 0.2);
  --border-orange: rgba(242, 125, 38, 0.4);
  --border-subtle: rgba(255, 255, 255, 0.08);

  /* Shadows & Illuminations */
  --shadow-neon: 0 0 20px rgba(34, 211, 238, 0.22);
  --shadow-orange: 0 0 20px rgba(242, 125, 38, 0.2);
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.55);

  /* Fonts */
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Geometric Radii (Sharp, angular, balanced) */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-pill: 4px;

  --transition-fast: 0.15s cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition-smooth: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
}

body {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  background-color: var(--bg-deep);
  background-image: 
    radial-gradient(var(--cyan-accent) 1px, transparent 1px),
    linear-gradient(0deg, var(--bg-deep) 0%, transparent 50%, var(--bg-deep) 100%),
    linear-gradient(90deg, var(--bg-deep) 0%, transparent 50%, var(--bg-deep) 100%);
  background-size: 32px 32px, 100% 100%, 100% 100%;
  background-attachment: fixed;
}

/* Precision Scrollbar */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: rgba(34, 211, 238, 0.25);
  border-radius: var(--radius-xs);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--cyan-accent);
}

/* Interactive Background Canvas */
#water-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

/* Ambient Subtle Glows */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.glow-top {
  top: -150px;
  left: 15%;
  width: 550px;
  height: 450px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.12), transparent 70%);
}

.glow-bottom {
  bottom: 0;
  right: 10%;
  width: 600px;
  height: 500px;
  background: radial-gradient(circle, rgba(242, 125, 38, 0.08), transparent 70%);
}

/* Container */
.site-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography Hierarchy */
h1, h2, h3, h4, .game-heading {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-bright);
}

p {
  color: var(--text-muted);
  font-weight: 400;
}

a {
  color: var(--cyan-accent);
  text-decoration: none;
  transition: all var(--transition-fast);
}

a:hover {
  color: var(--text-bright);
  text-shadow: 0 0 10px var(--cyan-accent);
}

/* ==========================================================================
   GAMING HUD NAVIGATION BAR (Geometric Balance Header)
   ========================================================================== */
.game-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 72px;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(15, 18, 25, 0.92);
  border-bottom: 1px solid var(--border-cyan);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-smooth);
}

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

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--cyan-accent);
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.35);
  transition: transform var(--transition-fast);
}

.brand-wrapper:hover .brand-icon {
  transform: scale(1.06) rotate(3deg);
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--cyan-accent);
  text-transform: uppercase;
}

.brand-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-link {
  padding: 0.35rem 0.2rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  border-radius: 0;
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link:hover, .nav-link.active {
  color: var(--cyan-accent);
  border-bottom: 2px solid var(--cyan-accent);
  background: transparent;
  text-shadow: 0 0 8px rgba(34, 211, 238, 0.4);
}

/* Audio & Action HUD */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.audio-toggle-btn {
  background: rgba(22, 27, 34, 0.8);
  border: 1px solid var(--border-cyan);
  color: var(--text-main);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.audio-toggle-btn:hover {
  background: rgba(34, 211, 238, 0.15);
  border-color: var(--cyan-accent);
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.3);
}

.sound-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}

.sound-bar {
  width: 2px;
  background: var(--cyan-accent);
  border-radius: 1px;
  height: 4px;
  transition: height var(--transition-fast);
}

.audio-active .sound-bar:nth-child(1) { animation: soundWave 0.8s ease infinite 0.1s; }
.audio-active .sound-bar:nth-child(2) { animation: soundWave 0.8s ease infinite 0.3s; }
.audio-active .sound-bar:nth-child(3) { animation: soundWave 0.8s ease infinite 0.2s; }

@keyframes soundWave {
  0%, 100% { height: 3px; }
  50% { height: 12px; }
}

.btn-hud {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn-hud-primary {
  background: var(--cyan-accent);
  color: var(--bg-deep);
  border: 1px solid var(--cyan-accent);
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.35);
}

.btn-hud-primary:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--bg-deep);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn-hud-gold {
  background: var(--orange-accent);
  color: #ffffff;
  border: 1px solid var(--orange-accent);
  box-shadow: 0 0 16px rgba(242, 125, 38, 0.35);
}

.btn-hud-gold:hover {
  background: #ffffff;
  color: var(--bg-deep);
  border-color: #ffffff;
  box-shadow: 0 0 24px rgba(242, 125, 38, 0.6);
  transform: translateY(-2px);
}

.btn-hud-glass {
  background: transparent;
  border: 1px solid var(--border-cyan-strong);
  color: var(--text-bright);
}

.btn-hud-glass:hover {
  background: rgba(34, 211, 238, 0.12);
  border-color: var(--cyan-accent);
  color: var(--cyan-accent);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  padding: 0.4rem 0.6rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO GAMING ARENA & CHIME BELL (Geometric Balance Style)
   ========================================================================== */
.hero-section {
  padding-top: 7.5rem;
  padding-bottom: 3.5rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-alt) 100%);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-sm);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.hero-content::after {
  content: '01';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  font-style: italic;
  color: rgba(34, 211, 238, 0.15);
  pointer-events: none;
  line-height: 1;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid var(--border-cyan);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-xs);
  width: fit-content;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan-accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background-color: var(--cyan-accent);
  box-shadow: 0 0 8px var(--cyan-accent);
  animation: pulseLight 1.8s infinite;
}

@keyframes pulseLight {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height: 1.05;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.hero-title span.glow-text {
  color: var(--cyan-accent);
  display: block;
}

.hero-lead {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 520px;
}

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

/* Quick HUD Stat Bar (Geometric Balance Grid with colored top borders) */
.hero-stats-hud {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-top: 2px solid var(--border-slate);
  border-radius: var(--radius-xs);
  padding: 1rem 1.1rem;
  position: relative;
  overflow: hidden;
}

.stat-item:nth-child(1) {
  border-top: 2px solid var(--cyan-accent);
}

.stat-item:nth-child(2) {
  border-top: 2px solid var(--text-muted);
}

.stat-item:nth-child(3) {
  border-top: 2px solid var(--orange-accent);
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.stat-val {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-bright);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.stat-val.highlight {
  color: var(--cyan-accent);
}

/* Hero Stage / Floating Interactive Chime */
.hero-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-panel);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-sm);
  padding: 2rem;
  min-height: 440px;
}

.chime-orb-container {
  position: relative;
  width: 280px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
}

.chime-halo {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-cyan);
  transform: rotate(45deg);
  animation: rotateHalo 28s linear infinite;
}

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

.chime-halo-inner {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-orange);
  transform: rotate(45deg);
  box-shadow: 0 0 25px rgba(34, 211, 238, 0.15);
}

.hero-chime-visual {
  width: 200px;
  height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(34, 211, 238, 0.45));
  animation: floatChime 4s ease-in-out infinite;
  transition: transform var(--transition-fast);
}

@keyframes floatChime {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.chime-orb-container:hover .hero-chime-visual {
  filter: drop-shadow(0 0 30px rgba(34, 211, 238, 0.75));
  transform: scale(1.05);
}

.chime-orb-container:active .hero-chime-visual {
  transform: scale(0.96);
}

.chime-strike-hint {
  position: absolute;
  bottom: 0px;
  background: var(--bg-card);
  border: 1px solid var(--cyan-accent);
  color: var(--cyan-accent);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-xs);
  box-shadow: 0 0 15px rgba(34, 211, 238, 0.25);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  animation: pulseHint 2s infinite;
}

@keyframes pulseHint {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ==========================================================================
   INTERACTIVE TIDE CHAMBER (Geometric Balance Sound & Telemetry Engine)
   ========================================================================== */
.section-block {
  padding: 4rem 0;
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cyan-accent);
  background: var(--cyan-dim);
  border: 1px solid var(--border-cyan);
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-xs);
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text-bright);
  margin-bottom: 0.75rem;
}

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

/* Tide Chamber Container */
.tide-chamber-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.chamber-top-hud {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-bottom: 1px solid var(--border-cyan);
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
}

.hud-meters {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hud-meter-box {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--cyan-accent);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-xs);
  gap: 0.15rem;
}

.hud-meter-box:nth-child(2) {
  border-left-color: var(--orange-accent);
}

.hud-meter-box:nth-child(3) {
  border-left-color: var(--text-muted);
}

.hud-meter-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 700;
}

.hud-meter-val {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-bright);
}

.hud-meter-val.resonance {
  color: var(--cyan-accent);
  text-shadow: 0 0 10px rgba(34, 211, 238, 0.4);
}

.hud-meter-val.tide {
  color: var(--orange-accent);
}

/* Tide Interactive Play Stage */
.chamber-play-stage {
  position: relative;
  width: 100%;
  height: 380px;
  background: #06090e;
  background-image: radial-gradient(var(--cyan-accent) 1px, transparent 1px);
  background-size: 24px 24px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border-cyan);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: crosshair;
}

.chamber-play-stage canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.chamber-stage-overlay {
  position: relative;
  z-index: 10;
  text-align: center;
  pointer-events: none;
}

.stage-instructions {
  background: rgba(15, 18, 25, 0.9);
  border: 1px solid var(--border-cyan);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-xs);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--cyan-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.6);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Interactive Chime Keys / Resonance Triggers */
.chamber-key-triggers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.chime-key-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-bottom: 2px solid var(--border-cyan);
  border-radius: var(--radius-xs);
  padding: 1rem 0.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-main);
  user-select: none;
}

.chime-key-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--cyan-accent);
  border-bottom: 2px solid var(--cyan-accent);
  transform: translateY(-2px);
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.25);
}

.chime-key-btn:active, .chime-key-btn.key-pressed {
  transform: translateY(1px) scale(0.98);
  background: var(--cyan-dim);
  border-color: var(--cyan-accent);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.45);
}

.chime-note-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-xs);
  background: var(--cyan-dim);
  border: 1px solid var(--border-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-accent);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 800;
}

.chime-key-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.chime-key-pitch {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ==========================================================================
   GAME FEATURES & OFFLINE SYSTEMS (Geometric Balance Card System)
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-top: 2px solid var(--border-slate);
  border-radius: var(--radius-xs);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.game-card:nth-child(1) { border-top-color: var(--cyan-accent); }
.game-card:nth-child(2) { border-top-color: var(--teal-accent); }
.game-card:nth-child(3) { border-top-color: var(--orange-accent); }
.game-card:nth-child(4) { border-top-color: var(--gold-accent); }
.game-card:nth-child(5) { border-top-color: var(--cyan-accent); }
.game-card:nth-child(6) { border-top-color: var(--coral-accent); }

.game-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-cyan);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card), 0 0 16px rgba(34, 211, 238, 0.15);
}

.card-icon-frame {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-xs);
  background: var(--cyan-dim);
  border: 1px solid var(--border-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-accent);
  font-size: 1.25rem;
  font-weight: 800;
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.2);
}

.card-title {
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text-bright);
}

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

.card-badge-row {
  margin-top: auto;
  padding-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.mini-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
}

.mini-badge.active {
  background: var(--cyan-dim);
  border-color: var(--border-cyan);
  color: var(--cyan-accent);
}

/* ==========================================================================
   COSMETICS & UNLOCKS ARMORY (Geometric Balance Matrix)
   ========================================================================== */
.cosmetics-shelf {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.cosmetic-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-top: 2px solid var(--orange-accent);
  border-radius: var(--radius-xs);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  transition: all var(--transition-fast);
  position: relative;
}

.cosmetic-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--orange-accent);
  box-shadow: 0 0 16px rgba(242, 125, 38, 0.25);
  transform: translateY(-3px);
}

.cosmetic-preview-box {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-xs);
  background: var(--bg-card-alt);
  border: 1px solid var(--border-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cosmetic-img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.cosmetic-card:hover .cosmetic-img {
  transform: scale(1.12);
}

.cosmetic-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text-bright);
}

.cosmetic-tier {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange-accent);
}

.cosmetic-status {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-xs);
}

.cosmetic-status.unlocked {
  background: var(--cyan-dim);
  border: 1px solid var(--border-cyan);
  color: var(--cyan-accent);
}

/* ==========================================================================
   OFFLINE PRIVACY & ARCHITECTURE SHOWCASE
   ========================================================================== */
.security-matrix-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-sm);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.security-point {
  display: flex;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--cyan-accent);
  border-radius: var(--radius-xs);
  padding: 1.25rem;
}

.security-point:nth-child(2) { border-left-color: var(--teal-accent); }
.security-point:nth-child(3) { border-left-color: var(--orange-accent); }
.security-point:nth-child(4) { border-left-color: var(--cyan-accent); }

.security-point-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-xs);
  background: var(--cyan-dim);
  border: 1px solid var(--border-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-accent);
  flex-shrink: 0;
  font-weight: 800;
}

.security-point-content h4 {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-bright);
  margin-bottom: 0.25rem;
}

.security-point-content p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ==========================================================================
   SUPPORT & CONTACT TERMINAL
   ========================================================================== */
.support-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-sm);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.support-email-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card);
  border: 1.5px solid var(--cyan-accent);
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius-xs);
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cyan-accent);
  margin: 1.5rem 0;
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.2);
  transition: all var(--transition-fast);
}

.support-email-pill:hover {
  background: var(--cyan-accent);
  color: var(--bg-deep);
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.5);
}

/* ==========================================================================
   CLOUDFLARE PAGES EXPORT PANEL
   ========================================================================== */
.export-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-xs);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

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

.export-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-xs);
  background: var(--orange-dim);
  border: 1px solid var(--border-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-accent);
  font-size: 1.2rem;
}

.export-details h4 {
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-bright);
}

.export-details p {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FOOTER (Geometric Balance Telemetry Bar)
   ========================================================================== */
.game-footer {
  margin-top: 4.5rem;
  border-top: 1px solid var(--border-cyan);
  padding: 2.5rem 0 1.5rem 0;
  background: var(--bg-panel);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  margin-top: 0.85rem;
  font-size: 0.88rem;
  max-width: 320px;
  color: var(--text-muted);
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-bright);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: var(--cyan-accent);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

/* ==========================================================================
   PRIVACY POLICY DEDICATED PAGE STYLES (Geometric Protocol Layout)
   ========================================================================== */
.policy-page-header {
  padding-top: 7rem;
  padding-bottom: 2rem;
  text-align: center;
}

.policy-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cyan-dim);
  border: 1px solid var(--border-cyan);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-xs);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cyan-accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.policy-container {
  background: var(--bg-card);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-sm);
  padding: 2.5rem;
  margin-bottom: 4rem;
  box-shadow: var(--shadow-card);
}

.policy-toc {
  background: var(--bg-panel);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-xs);
  padding: 1.25rem;
  margin-bottom: 2.5rem;
}

.policy-toc-title {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cyan-accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.85rem;
}

.policy-toc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem 1rem;
}

.policy-toc-grid a {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.policy-toc-grid a:hover {
  color: var(--cyan-accent);
}

.policy-content-body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.policy-section {
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--border-subtle);
}

.policy-section:last-child {
  border-bottom: none;
}

.policy-section h2 {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-bright);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.policy-section h2::before {
  content: '■';
  display: inline-block;
  color: var(--cyan-accent);
  font-size: 0.85rem;
}

.policy-section p {
  margin-bottom: 0.85rem;
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--text-main);
}

.policy-section ul {
  list-style: none;
  padding-left: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.85rem 0;
}

.policy-section ul li {
  font-size: 0.92rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 1.4rem;
}

.policy-section ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--cyan-accent);
  font-size: 0.8rem;
}

/* ==========================================================================
   RESPONSIVE QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats-hud {
    width: 100%;
    max-width: 500px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cosmetics-shelf {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .game-navbar {
    padding: 0 1rem;
  }

  .nav-links, .nav-actions .btn-hud {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .game-navbar.mobile-expanded {
    height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1.2rem;
  }
  
  .game-navbar.mobile-expanded .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .game-navbar.mobile-expanded .nav-actions .btn-hud {
    display: inline-flex;
    width: 100%;
  }
  
  .hero-section {
    padding-top: 6rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .security-grid {
    grid-template-columns: 1fr;
  }
  
  .chamber-key-triggers {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .policy-toc-grid {
    grid-template-columns: 1fr;
  }
  
  .policy-container {
    padding: 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   HOMEPAGE REFINEMENT — SUBTLE GAMING TOUCH
   Scoped to the homepage so the Privacy Policy page remains unchanged.
   ========================================================================== */
.home-page {
  background-image:
    radial-gradient(circle at 18% 12%, rgba(34, 211, 238, 0.055), transparent 32%),
    radial-gradient(circle at 84% 74%, rgba(45, 212, 191, 0.035), transparent 30%),
    linear-gradient(180deg, #0b1016 0%, #0a0d12 52%, #0b1016 100%);
  background-size: auto;
  background-attachment: fixed;
}

.home-page #water-canvas {
  opacity: 0.12;
}

.home-page .ambient-glow {
  opacity: 0.42;
  filter: blur(155px);
}

.home-page .glow-top {
  background: radial-gradient(circle, rgba(34, 211, 238, 0.075), transparent 70%);
}

.home-page .glow-bottom {
  background: radial-gradient(circle, rgba(45, 212, 191, 0.045), transparent 70%);
}

.home-page .game-navbar {
  background: rgba(10, 14, 20, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.home-page .brand-icon {
  border-color: rgba(34, 211, 238, 0.45);
  box-shadow: none;
  border-radius: 10px;
}

.home-page .brand-wrapper:hover .brand-icon {
  transform: scale(1.03);
}

.home-page .brand-title {
  color: var(--text-bright);
  text-transform: none;
  letter-spacing: 0.025em;
}

.home-page .brand-tag {
  color: rgba(34, 211, 238, 0.82);
  text-transform: none;
  letter-spacing: 0.07em;
}

.home-page .nav-link {
  font-size: 0.84rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.015em;
  border-bottom-width: 1px;
}

.home-page .nav-link:hover,
.home-page .nav-link.active {
  border-bottom-width: 1px;
  text-shadow: none;
}

.home-page .audio-toggle-btn {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  font-family: var(--font-body);
}

.home-page .audio-toggle-btn:hover {
  background: rgba(34, 211, 238, 0.07);
  border-color: rgba(34, 211, 238, 0.34);
  box-shadow: none;
}

.home-page .sound-bar {
  opacity: 0.72;
}

.home-page .btn-hud {
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.01em;
}

.home-page .btn-hud-primary {
  background: #2bc8dc;
  border-color: #2bc8dc;
  box-shadow: 0 7px 20px rgba(34, 211, 238, 0.13);
}

.home-page .btn-hud-primary:hover {
  background: #45d2e3;
  border-color: #45d2e3;
  box-shadow: 0 9px 24px rgba(34, 211, 238, 0.18);
  transform: translateY(-1px);
}

.home-page .btn-hud-glass {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.025);
}

.home-page .btn-hud-glass:hover {
  background: rgba(34, 211, 238, 0.06);
  border-color: rgba(34, 211, 238, 0.3);
  color: var(--text-bright);
  transform: translateY(-1px);
}

.home-page .hero-section {
  gap: 2.1rem;
}

.home-page .hero-content,
.home-page .hero-stage,
.home-page .tide-chamber-card,
.home-page .security-matrix-card,
.home-page .support-card {
  background: rgba(16, 22, 30, 0.78);
  border-color: rgba(255, 255, 255, 0.085);
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.home-page .hero-content::after {
  display: none;
}

.home-page .hero-pill,
.home-page .section-badge {
  background: rgba(34, 211, 238, 0.06);
  border-color: rgba(34, 211, 238, 0.18);
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.025em;
}

.home-page .pulse-dot {
  border-radius: 50%;
  box-shadow: none;
  animation-duration: 3.6s;
}

.home-page .hero-title,
.home-page .section-title,
.home-page .card-title,
.home-page .cosmetic-name,
.home-page .security-point-content h4,
.home-page .export-details h4,
.home-page .footer-col h4 {
  text-transform: none;
  letter-spacing: -0.015em;
}

.home-page .hero-title {
  font-weight: 800;
  line-height: 1.08;
}

.home-page .hero-title span.glow-text {
  color: #62d9e8;
}

.home-page .hero-stats-hud {
  gap: 0.75rem;
}

.home-page .stat-item {
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-top-color: rgba(255, 255, 255, 0.075) !important;
  border-radius: 12px;
}

.home-page .stat-label,
.home-page .hud-meter-label,
.home-page .mini-badge,
.home-page .cosmetic-tier,
.home-page .cosmetic-status,
.home-page .footer-bottom {
  text-transform: none;
  letter-spacing: 0.035em;
}

.home-page .stat-label,
.home-page .hud-meter-label,
.home-page .chime-key-pitch,
.home-page .footer-bottom {
  font-family: var(--font-body);
}

.home-page .hero-stage {
  min-height: 420px;
}

.home-page .chime-halo {
  width: 248px;
  height: 248px;
  border-color: rgba(34, 211, 238, 0.13);
  border-radius: 50%;
  opacity: 0.75;
  animation-duration: 56s;
}

.home-page .chime-halo-inner {
  width: 196px;
  height: 196px;
  border-color: rgba(45, 212, 191, 0.12);
  border-radius: 50%;
  box-shadow: none;
  opacity: 0.72;
}

.home-page .hero-chime-visual {
  width: 186px;
  height: 186px;
  filter: drop-shadow(0 10px 20px rgba(34, 211, 238, 0.16));
  animation-duration: 7s;
}

.home-page .chime-orb-container:hover .hero-chime-visual {
  filter: drop-shadow(0 12px 24px rgba(34, 211, 238, 0.24));
  transform: scale(1.025);
}

.home-page .chime-strike-hint {
  background: rgba(15, 21, 28, 0.84);
  border-color: rgba(34, 211, 238, 0.24);
  color: #8bdde8;
  border-radius: 999px;
  box-shadow: none;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.025em;
  animation-duration: 4s;
}

.home-page .section-block {
  padding: 3.6rem 0;
}

.home-page .tide-chamber-card {
  padding: 1.6rem;
}

.home-page .chamber-top-hud {
  border-bottom-color: rgba(255, 255, 255, 0.075);
}

.home-page .hud-meter-box,
.home-page .game-card,
.home-page .cosmetic-card,
.home-page .security-point,
.home-page .export-panel {
  background: rgba(255, 255, 255, 0.028);
  border-color: rgba(255, 255, 255, 0.075);
  border-radius: 13px;
  box-shadow: none;
}

.home-page .hud-meter-box {
  border-left-width: 2px;
}

.home-page .chamber-play-stage {
  background-color: #091018;
  background-image:
    radial-gradient(circle at 50% 45%, rgba(34, 211, 238, 0.055), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent);
  border-color: rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  cursor: pointer;
}

.home-page .stage-instructions {
  background: rgba(10, 16, 23, 0.72);
  border-color: rgba(34, 211, 238, 0.16);
  border-radius: 999px;
  box-shadow: none;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  color: #8bdde8;
}

.home-page .chime-key-btn {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-bottom-width: 1px;
  border-radius: 12px;
}

.home-page .chime-key-btn:hover {
  background: rgba(34, 211, 238, 0.05);
  border-color: rgba(34, 211, 238, 0.28);
  border-bottom-width: 1px;
  box-shadow: none;
  transform: translateY(-1px);
}

.home-page .chime-key-btn:active,
.home-page .chime-key-btn.key-pressed {
  box-shadow: 0 8px 20px rgba(34, 211, 238, 0.09);
}

.home-page .chime-note-icon,
.home-page .card-icon-frame,
.home-page .security-point-icon,
.home-page .export-icon {
  border-radius: 10px;
  box-shadow: none;
}

.home-page .chime-key-name {
  text-transform: none;
  letter-spacing: 0;
}

.home-page .game-card {
  border-top: 1px solid rgba(255, 255, 255, 0.075) !important;
  padding: 1.7rem;
}

.home-page .game-card:hover,
.home-page .cosmetic-card:hover {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(34, 211, 238, 0.18);
  box-shadow: none;
  transform: translateY(-2px);
}

.home-page .mini-badge,
.home-page .cosmetic-status {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.home-page .mini-badge.active,
.home-page .cosmetic-status.unlocked {
  background: rgba(34, 211, 238, 0.055);
  border-color: rgba(34, 211, 238, 0.16);
}

.home-page .cosmetic-card {
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.home-page .cosmetic-preview-box {
  border-radius: 14px;
  border-color: rgba(34, 211, 238, 0.12);
  background: rgba(4, 10, 16, 0.5);
}

.home-page .security-point {
  border-left-width: 2px;
}

.home-page .support-email-pill {
  background: rgba(255, 255, 255, 0.028);
  border-color: rgba(34, 211, 238, 0.24);
  border-radius: 12px;
  box-shadow: none;
  font-family: var(--font-body);
}

.home-page .support-email-pill:hover {
  background: rgba(34, 211, 238, 0.08);
  color: #9ee7f0;
  box-shadow: none;
  transform: translateY(-1px);
}

.home-page .game-footer {
  border-top-color: rgba(255, 255, 255, 0.075);
  background: rgba(11, 15, 21, 0.86);
}

.home-page a:hover {
  text-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  .home-page .pulse-dot,
  .home-page .chime-halo,
  .home-page .hero-chime-visual,
  .home-page .chime-strike-hint,
  .home-page .sound-bar {
    animation: none !important;
  }
}

/* ==========================================================================
   UPDATED GAME-IMAGE THEME OVERRIDES
   ========================================================================== */
.home-page {
  background-image:
    radial-gradient(circle at top left, rgba(70, 102, 255, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.12), transparent 28%),
    linear-gradient(180deg, #07111f 0%, #091423 48%, #08101d 100%);
}

.home-page .game-navbar {
  background: rgba(8, 14, 27, 0.9);
  border-bottom-color: rgba(78, 125, 182, 0.25);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.home-page .hero-section {
  padding-top: 8.4rem;
  gap: 3rem;
  align-items: center;
}

.home-page .hero-title {
  max-width: 11ch;
}

.home-page .hero-lead {
  max-width: 61ch;
}

.home-page .hero-stage {
  width: 100%;
}

.hero-visual-stack {
  position: relative;
  min-height: 680px;
}

.hero-shot-card {
  position: relative;
  width: 100%;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(15, 22, 40, 0.96), rgba(8, 13, 25, 0.96));
  border: 1px solid rgba(66, 130, 198, 0.34);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.hero-shot-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(57, 217, 248, 0.45), rgba(155, 92, 255, 0.25));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.hero-shot-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.floating-info-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-width: 240px;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(8, 16, 32, 0.82);
  border: 1px solid rgba(84, 152, 224, 0.28);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.float-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #88dcff;
  font-family: var(--font-display);
  font-weight: 700;
}

.float-value {
  font-size: 1.15rem;
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 800;
}

.float-small {
  font-size: 0.9rem;
  color: #95a6bb;
}

.stat-float-left {
  left: -1.1rem;
  bottom: 5.4rem;
}

.stat-float-right {
  right: -1.1rem;
  top: 4rem;
}

.home-page .compact-orb {
  position: absolute;
  right: 2rem;
  bottom: -1.4rem;
  width: 160px;
  height: 160px;
  border-radius: 26px;
  background: radial-gradient(circle at center, rgba(37, 205, 255, 0.2), rgba(8, 18, 35, 0.96));
  border: 1px solid rgba(84, 152, 224, 0.32);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.32);
}

.home-page .compact-orb .hero-chime-visual {
  width: 78px;
  height: 78px;
}

.home-page .compact-orb .chime-strike-hint {
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
}

.visual-showcase-block {
  padding-top: 1rem;
}

.visual-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.visual-card {
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(13, 22, 40, 0.94), rgba(8, 13, 25, 0.96));
  border: 1px solid rgba(77, 127, 180, 0.25);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.visual-card:hover {
  transform: translateY(-6px);
  border-color: rgba(77, 216, 255, 0.4);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
}

.visual-image-wrap {
  padding: 16px;
  background: linear-gradient(180deg, rgba(13, 22, 38, 0.96), rgba(10, 16, 28, 0.96));
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.visual-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.visual-copy {
  padding: 1.2rem 1.2rem 1.3rem;
}

.visual-copy h3 {
  margin-top: 0.5rem;
  font-size: 1.2rem;
}

.visual-copy p {
  margin-top: 0.5rem;
}

.visual-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(77, 216, 255, 0.26);
  background: rgba(77, 216, 255, 0.08);
  color: #9be8ff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

.home-page .section-block,
.home-page .tide-chamber-card,
.home-page .security-matrix-card,
.home-page .support-card,
.home-page .export-panel {
  background: linear-gradient(180deg, rgba(11, 18, 34, 0.88), rgba(8, 14, 24, 0.92));
}

.home-page .game-card,
.home-page .cosmetic-card,
.home-page .security-point {
  background: linear-gradient(180deg, rgba(11, 18, 34, 0.95), rgba(8, 14, 24, 0.95));
  border-color: rgba(77, 127, 180, 0.22);
}

@media (max-width: 1180px) {
  .visual-showcase-grid {
    grid-template-columns: 1fr;
  }

  .stat-float-left {
    left: 1rem;
    bottom: 5rem;
  }

  .stat-float-right {
    right: 1rem;
    top: 1rem;
  }
}

@media (max-width: 1024px) {
  .hero-visual-stack {
    min-height: auto;
    padding-bottom: 10rem;
  }

  .home-page .compact-orb {
    right: 50%;
    transform: translateX(50%);
    bottom: -2.2rem;
  }

  .floating-info-card {
    max-width: 220px;
  }
}

@media (max-width: 768px) {
  .hero-shot-card {
    padding: 12px;
    border-radius: 22px;
  }

  .hero-shot-image {
    border-radius: 14px;
  }

  .floating-info-card {
    position: static;
    max-width: none;
    margin-top: 1rem;
  }

  .hero-visual-stack {
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
    gap: 1rem;
  }

  .home-page .compact-orb {
    position: relative;
    right: auto;
    bottom: auto;
    transform: none;
    margin: 0 auto;
  }

  .visual-copy {
    padding: 1rem;
  }
}


/* ==========================================================================
   CHIME CURRENT 2026 UI/UX REFINEMENT
   Simplified ribbon + immersive, responsive hero + cleaner policy layout
   ========================================================================== */
.home-page .game-navbar {
  height: 76px;
  padding-inline: clamp(1rem, 3vw, 2.5rem);
  background: rgba(6, 13, 24, 0.82);
  border-bottom: 1px solid rgba(124, 220, 255, 0.16);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

.home-page .game-navbar .nav-actions {
  margin-left: auto;
}

.home-page .game-navbar .nav-actions .btn-hud-primary {
  padding: 0.64rem 1.15rem;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.11);
  color: #c7f5ff;
  border-color: rgba(79, 222, 247, 0.42);
  box-shadow: none;
}

.home-page .game-navbar .nav-actions .btn-hud-primary:hover {
  background: #22d3ee;
  color: #07111e;
  border-color: #22d3ee;
  box-shadow: 0 10px 28px rgba(34, 211, 238, 0.24);
}

.home-page .hero-redesign {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: min(720px, calc(100vh - 42px));
  margin-top: 5.9rem;
  margin-bottom: 3.5rem;
  padding: clamp(4.5rem, 10vw, 7.5rem) clamp(1.25rem, 5vw, 4rem) 5rem;
  overflow: hidden;
  border: 1px solid rgba(99, 207, 245, 0.2);
  border-radius: 32px;
  text-align: center;
  background: #07111d;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.home-page .hero-redesign::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 42%, rgba(62, 221, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(4, 12, 24, 0.08), rgba(4, 10, 21, 0.86) 82%);
  pointer-events: none;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url('../assets/hero-scene.svg') center 48% / cover no-repeat;
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 10, 22, 0.82), rgba(4, 10, 22, 0.42) 35%, rgba(4, 10, 22, 0.42) 65%, rgba(4, 10, 22, 0.82)),
    linear-gradient(180deg, rgba(4, 9, 19, 0.3), rgba(4, 9, 19, 0.82));
}

.hero-redesign-content {
  width: min(850px, 100%);
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.48rem 0.88rem;
  border: 1px solid rgba(133, 226, 255, 0.28);
  border-radius: 999px;
  background: rgba(5, 18, 32, 0.55);
  color: #b9f3ff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.home-page .hero-redesign .hero-title {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.65rem, 7vw, 5.5rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  text-transform: none;
  text-wrap: balance;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

.home-page .hero-redesign .hero-title .glow-text {
  display: inline;
  color: #8cecff;
  background: linear-gradient(90deg, #c8f8ff 0%, #4dd9ff 48%, #bba7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(65, 208, 255, 0.28));
}

.home-page .hero-redesign .hero-lead {
  max-width: 680px;
  margin: 0;
  color: #d0d9e4;
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  line-height: 1.75;
  text-wrap: balance;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
}

.hero-redesign-actions {
  justify-content: center;
  gap: 0.8rem;
  margin-top: 0.4rem;
}

.hero-redesign-actions .btn-hud {
  min-height: 48px;
  padding-inline: 1.45rem;
  border-radius: 999px;
}

.hero-redesign-actions .btn-hud-glass {
  background: rgba(8, 18, 33, 0.52);
  backdrop-filter: blur(12px);
}

.hero-trust-row {
  width: min(760px, 100%);
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-trust-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.65rem;
  text-align: left;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(122, 207, 239, 0.18);
  border-radius: 16px;
  background: rgba(6, 16, 30, 0.5);
  backdrop-filter: blur(12px);
}

.hero-trust-item .trust-dot {
  grid-row: 1 / 3;
  align-self: center;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4ee6c4;
  box-shadow: 0 0 14px rgba(78, 230, 196, 0.62);
}

.hero-trust-item strong {
  color: #f4fbff;
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.hero-trust-item small {
  color: #91a4b8;
  font-size: 0.76rem;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(204, 229, 242, 0.68);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-scroll-cue span {
  width: 18px;
  height: 1px;
  background: #73dbf7;
  box-shadow: 0 0 10px rgba(115, 219, 247, 0.65);
}

/* Policy page: remove dense TOC and present supplied text as a clean reading flow. */
.policy-main-title {
  margin-bottom: 0.5rem;
  font-size: clamp(2.25rem, 5vw, 3.8rem);
  line-height: 1;
  text-transform: none;
}

.policy-effective-date {
  color: var(--cyan-accent);
  font-family: var(--font-mono);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-intro-card {
  margin-bottom: 1.25rem;
  padding: clamp(1.2rem, 3vw, 1.7rem);
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.06), rgba(13, 17, 23, 0.72));
}

.policy-intro-card p + p {
  margin-top: 0.75rem;
}

.policy-intro-card strong {
  color: #ffffff;
}

.policy-content-body a {
  overflow-wrap: anywhere;
}

@media (max-width: 768px) {
  .home-page .game-navbar {
    height: 68px;
    padding: 0 0.8rem;
    gap: 0.7rem;
  }

  .home-page .brand-wrapper {
    gap: 0.6rem;
    min-width: 0;
  }

  .home-page .brand-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
  }

  .home-page .brand-title {
    font-size: 0.88rem;
    letter-spacing: 0.08em;
  }

  .home-page .brand-tag {
    display: none;
  }

  .home-page .nav-actions {
    gap: 0.45rem;
  }

  .home-page .audio-toggle-btn {
    width: 38px;
    min-width: 38px;
    height: 38px;
    padding: 0;
    justify-content: center;
  }

  .home-page .audio-state-text {
    display: none;
  }

  .home-page .game-navbar .nav-actions .btn-hud,
  .home-page .game-navbar .nav-actions .btn-hud-primary {
    display: inline-flex;
    min-height: 38px;
    padding: 0.45rem 0.78rem;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
  }

  .home-page .hero-redesign {
    min-height: 650px;
    margin-top: 5.2rem;
    margin-inline: 0;
    padding: 4.2rem 1rem 4.3rem;
    border-radius: 22px;
  }

  .hero-backdrop {
    background-position: 50% 45%;
    transform: scale(1.04);
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(3, 9, 19, 0.48), rgba(3, 9, 19, 0.7) 42%, rgba(3, 9, 19, 0.92));
  }

  .home-page .hero-redesign .hero-title {
    max-width: 11ch;
    font-size: clamp(2.55rem, 13vw, 4.25rem);
  }

  .home-page .hero-redesign .hero-lead {
    max-width: 34rem;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-redesign-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-redesign-actions .btn-hud {
    width: min(100%, 330px);
  }

  .hero-trust-row {
    grid-template-columns: 1fr;
    width: min(100%, 360px);
  }

  .hero-trust-item {
    padding: 0.78rem 0.9rem;
  }

  .hero-scroll-cue {
    font-size: 0.61rem;
    bottom: 1rem;
  }

  body:not(.home-page) .game-navbar .nav-actions .btn-hud {
    display: inline-flex;
  }

  .policy-page-header {
    padding-top: 7.2rem;
  }

  .policy-container {
    padding: 1rem;
  }
}

@media (max-width: 420px) {
  .home-page .brand-title {
    max-width: 112px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .home-page .game-navbar .nav-actions .btn-hud-primary {
    padding-inline: 0.64rem;
    font-size: 0.62rem;
  }

  .home-page .hero-redesign {
    min-height: 620px;
    padding-inline: 0.85rem;
  }

  .hero-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.07em;
  }
}

/* ==========================================================================\n   HERO CENTERING POLISH — Sept 2026\n   Keeps the visual scene visible while strengthening hierarchy/readability.\n   ========================================================================== */
.home-page .hero-redesign {
  min-height: min(740px, calc(100vh - 28px));
  padding-top: clamp(5rem, 10vw, 7.4rem);
  padding-bottom: clamp(5rem, 9vw, 6.6rem);
}

.home-page .hero-redesign::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(900px, 92%);
  height: min(560px, 76%);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4, 13, 26, 0.72) 0%, rgba(4, 13, 26, 0.44) 48%, transparent 74%);
  filter: blur(2px);
  pointer-events: none;
}

.home-page .hero-redesign-content {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
}

.home-page .hero-eyebrow {
  margin-inline: auto;
  justify-content: center;
  background: rgba(4, 14, 28, 0.64);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
}

.home-page .hero-redesign .hero-title {
  max-width: 13.5ch;
  margin-inline: auto;
  text-align: center;
  font-size: clamp(2.8rem, 6.6vw, 5.7rem);
  line-height: 0.98;
}

.home-page .hero-redesign .hero-lead {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  color: #e0e8ef;
  font-size: clamp(1rem, 1.55vw, 1.13rem);
  line-height: 1.68;
}

.home-page .hero-redesign-actions {
  width: 100%;
  margin-top: 0.6rem;
  justify-content: center;
  align-items: center;
}

.home-page .hero-redesign-actions .btn-hud {
  min-width: 190px;
  justify-content: center;
}

.home-page .hero-trust-row {
  width: min(690px, 100%);
  margin: 1.25rem auto 0;
  gap: 0.65rem;
}

.home-page .hero-trust-item {
  display: flex;
  min-height: 92px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.8rem 0.75rem;
  text-align: center;
  background: rgba(4, 14, 28, 0.55);
  border-color: rgba(126, 224, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025), 0 12px 32px rgba(0, 0, 0, 0.12);
}

.home-page .hero-trust-item .trust-dot {
  width: 7px;
  height: 7px;
  margin-bottom: 0.15rem;
}

.home-page .hero-trust-item strong,
.home-page .hero-trust-item small {
  text-align: center;
}

@media (max-width: 768px) {
  .home-page .hero-redesign {
    min-height: 650px;
    padding: 4.5rem 1rem 4.5rem;
  }

  .home-page .hero-redesign::after {
    width: 112%;
    height: 70%;
  }

  .home-page .hero-redesign-content {
    gap: 1rem;
  }

  .home-page .hero-redesign .hero-title {
    max-width: 12ch;
    font-size: clamp(2.45rem, 12vw, 4.3rem);
  }

  .home-page .hero-redesign .hero-lead {
    max-width: 32rem;
    font-size: 0.97rem;
    line-height: 1.6;
  }

  .home-page .hero-redesign-actions {
    margin-top: 0.4rem;
  }

  .home-page .hero-trust-row {
    width: min(100%, 380px);
    margin-top: 0.85rem;
  }

  .home-page .hero-trust-item {
    min-height: 76px;
  }
}

@media (max-width: 420px) {
  .home-page .hero-redesign {
    min-height: 610px;
    padding-top: 3.9rem;
  }

  .home-page .hero-redesign .hero-title {
    font-size: clamp(2.35rem, 12.5vw, 3.55rem);
  }

  .home-page .hero-redesign-actions .btn-hud {
    width: min(100%, 310px);
  }
}


/* ==========================================================================\n   HERO FINAL CENTERING + CLEAN ARTWORK — Sept 2026\n   Overrides the legacy two-column .hero-section grid so the redesigned hero\n   is truly centered at every viewport size.\n   ========================================================================== */
.home-page .hero-section.hero-redesign {
  grid-template-columns: minmax(0, 1fr) !important;
  grid-template-rows: minmax(0, 1fr) !important;
  place-items: center !important;
  justify-content: center !important;
  align-content: center !important;
  min-height: min(720px, calc(100vh - 36px));
  padding: clamp(5rem, 9vw, 7rem) clamp(1rem, 4vw, 3.5rem) clamp(5.25rem, 8vw, 6.5rem);
}

.home-page .hero-redesign-content {
  grid-column: 1 / -1 !important;
  grid-row: 1 !important;
  justify-self: center !important;
  align-self: center !important;
  width: min(820px, 100%) !important;
  max-width: 820px;
  margin: 0 auto !important;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.home-page .hero-redesign .hero-title,
.home-page .hero-redesign .hero-lead,
.home-page .hero-redesign .hero-eyebrow {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.home-page .hero-redesign .hero-title {
  max-width: 11.5ch;
  font-size: clamp(3rem, 6.4vw, 5.6rem);
  line-height: .98;
  letter-spacing: -.048em;
}

.home-page .hero-redesign .hero-lead {
  max-width: 640px;
  color: rgba(237, 247, 252, .92);
  font-size: clamp(1rem, 1.55vw, 1.12rem);
  line-height: 1.7;
}

.home-page .hero-redesign-actions {
  width: 100%;
  justify-content: center !important;
  align-items: center !important;
  margin-inline: auto !important;
}

.home-page .hero-trust-row {
  width: min(660px, 100%);
  margin-inline: auto !important;
}

.home-page .hero-backdrop {
  background-position: 50% 50%;
  transform: scale(1.015);
  opacity: .9;
}

.home-page .hero-overlay {
  background:
    radial-gradient(circle at 50% 48%, rgba(3, 11, 23, .42) 0%, rgba(3, 11, 23, .58) 38%, rgba(3, 9, 19, .79) 74%),
    linear-gradient(180deg, rgba(2, 8, 17, .22), rgba(2, 8, 17, .72));
}

@media (max-width: 768px) {
  .home-page .hero-section.hero-redesign {
    min-height: 650px;
    padding: 4.35rem 1rem 4.75rem;
  }
  .home-page .hero-redesign-content {
    width: min(100%, 560px) !important;
  }
  .home-page .hero-redesign .hero-title {
    max-width: 10.8ch;
    font-size: clamp(2.5rem, 12vw, 4.25rem);
  }
  .home-page .hero-redesign .hero-lead {
    max-width: 32rem;
    font-size: .98rem;
    line-height: 1.62;
  }
  .home-page .hero-redesign-actions {
    flex-direction: column;
  }
  .home-page .hero-redesign-actions .btn-hud {
    width: min(100%, 320px);
  }
  .home-page .hero-trust-row {
    width: min(100%, 360px);
  }
}

@media (max-width: 420px) {
  .home-page .hero-section.hero-redesign {
    min-height: 620px;
    padding: 3.9rem .85rem 4.35rem;
  }
  .home-page .hero-redesign .hero-title {
    font-size: clamp(2.25rem, 12.6vw, 3.45rem);
  }
  .home-page .hero-eyebrow {
    max-width: 92%;
    white-space: normal;
    text-align: center;
  }
}
