/*
Theme Name: Synth Hunter Japan Theme
Theme URI: https://synthhunterjapan.com/
Author: Antigravity
Author URI: https://synthhunterjapan.com/
Description: Clean, high-fidelity Industrial-Cyber-Vintage landing page theme for Synth Hunter Japan.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: synthhunter-theme
*/

/* ==========================================================================
   Synth Hunter Japan - Design System & UI Styling
   Theme: Industrial-Cyber-Vintage (Hardware Rack Aesthetic)
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;700;800&display=swap');

:root {
  /* Brand Colors sampled from Vintage Hardware */
  --color-obsidian: #0D0D0F;      /* Base Rack Chassis */
  --color-obsidian-card: #1A1A1B; /* Hardware Module Card Background */
  --color-amber: #FFB000;         /* Safety Amber (Yamaha/Akai VFD screen glow) */
  --color-amber-dim: rgba(255, 176, 0, 0.15);
  --color-green: #00FF41;         /* Logic Green (8-bit Peak LED / CRT terminal text) */
  --color-green-dim: rgba(0, 255, 65, 0.15);
  --color-concrete: #8E8E93;      /* Concrete Grey / Metallic faceplate */
  
  /* Text Colors */
  --color-text-primary: #FFFFFF;
  --color-text-secondary: #A1A1AA;
  --color-text-muted: #6B7280;

  /* Typography */
  --font-mono: 'JetBrains Mono', monospace;
  --font-sans: 'Inter', sans-serif;

  /* Spacing */
  --container-max-width: 1200px;
  --transition-speed: 0.3s;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--color-obsidian);
  color: var(--color-text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* CRT Screen Effect overlay */
body::before {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 9999;
  background-size: 100% 4px, 6px 100%;
  pointer-events: none;
  opacity: 0.15;
}

/* Monospace Utilities */
.text-mono {
  font-family: var(--font-mono);
}

.text-amber {
  color: var(--color-amber);
  text-shadow: 0 0 8px rgba(255, 176, 0, 0.4);
}

.text-green {
  color: var(--color-green);
  text-shadow: 0 0 8px rgba(0, 255, 65, 0.4);
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ==========================================================================
   Grid Layout Framework (Supporting 1 to 5 Columns)
   ========================================================================== */
.grid-layout {
  display: grid;
  gap: 2rem; /* Uniform horizontal and vertical spacing */
  width: 100%;
  align-items: stretch; /* Keep boxes top-and-bottom aligned */
}

.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid-cols-5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 968px) {
  .grid-cols-5, .grid-cols-4, .grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .grid-cols-5, .grid-cols-4, .grid-cols-3, .grid-cols-2 {
    grid-template-columns: 1fr;
  }
}

/* Header HUD (Heads-Up Display) */
header {
  border-top: 4px solid var(--color-amber);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(13, 13, 15, 0.95);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.hud-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hud-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.waveform-logo-box {
  width: 50px;
  height: 30px;
  border: 1px solid var(--color-amber);
  background-color: #000;
  position: relative;
  overflow: hidden;
}

/* Minimalist Waveform line inside Logo */
.waveform-logo-box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -100%;
  width: 200%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-green), transparent);
  animation: pulse-wave 2s linear infinite;
}

@keyframes pulse-wave {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

.logo-text {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.tagline {
  font-size: 0.75rem;
  color: var(--color-concrete);
  letter-spacing: 0.15em;
  margin-top: 2px;
}

.hud-status {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.status-indicator-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-indicator span {
  font-size: 0.75rem;
}

.led-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-green);
  box-shadow: 0 0 8px var(--color-green);
}

.led-dot.blink {
  animation: led-blink 1.5s infinite;
}

@keyframes led-blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--color-green); }
  50% { opacity: 0.3; box-shadow: 0 0 2px var(--color-green); }
}

.battery-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--color-concrete);
  padding: 2px 6px;
  border-radius: 2px;
  color: var(--color-concrete);
}

/* Battery Icon with 1/3 charge */
.battery-icon {
  width: 14px;
  height: 8px;
  border: 1px solid currentColor;
  position: relative;
  display: inline-block;
  border-radius: 1px;
}

.battery-icon::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 1px;
  width: 2px;
  height: 4px;
  background-color: currentColor;
}

.battery-charge {
  position: absolute;
  left: 1px;
  top: 1px;
  bottom: 1px;
  width: 4px; /* 1/3 charge */
  background-color: var(--color-amber);
}

/* Hero Section */
.hero-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Exactly equal widths for both columns */
  gap: 2rem; /* Uniform spacing aligned with grid framework */
  align-items: stretch; /* Stretch columns to equal heights on desktop */
}

@media (min-width: 969px) {
  .hero-content {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .signup-box {
    margin-top: auto; /* Push the signup box to bottom-align with showcase card */
  }
}

@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    align-items: start;
  }
  
  .hud-status {
    display: none;
  }
}

.hero-content h1 {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-content p {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

@media (max-width: 968px) {
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Retro Email Subscription Form */
.signup-box {
  background-color: var(--color-obsidian-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  width: 100%; /* Spans full width of the parent column */
  position: relative;
}

@media (max-width: 968px) {
  .signup-box {
    margin: 0 auto;
  }
}

/* Ambient Amber outline for the signup card */
.signup-box::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--color-amber-dim), transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.signup-title {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--color-concrete);
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.signup-title .subtitle-tag {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: none;
  font-weight: normal;
}

.form-group {
  display: flex;
  flex-direction: column; /* Stack vertically to accommodate Turnstile cleanly */
  gap: 12px;
}

.email-row {
  display: flex;
  gap: 12px;
}

@media (max-width: 480px) {
  .email-row {
    flex-direction: column;
  }
}

.input-field {
  flex-grow: 1;
  background-color: #000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.8rem 1rem;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  border-radius: 2px;
  transition: all var(--transition-speed);
}

.input-field:focus {
  outline: none;
  border-color: var(--color-amber);
  box-shadow: 0 0 10px rgba(255, 176, 0, 0.25);
}

.btn-submit {
  background-color: var(--color-amber);
  color: #000;
  border: none;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition-speed);
  box-shadow: 0 4px 12px rgba(255, 176, 0, 0.3);
}

.btn-submit:hover {
  background-color: #fff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.btn-submit:active {
  transform: translateY(0);
}

/* Turnstile Box Styling */
.turnstile-box {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}

.signup-benefits-row {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.benefit-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--color-text-secondary);
  font-family: var(--font-sans);
}

.check-icon {
  flex-shrink: 0;
  filter: drop-shadow(0 0 3px var(--color-green));
}

.signup-box .form-consent {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 1.25rem;
  margin-bottom: 0;
  max-width: none;
  line-height: 1.4;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.75rem;
}

.privacy-link {
  color: var(--color-concrete);
  text-decoration: underline;
  transition: color var(--transition-speed);
}

.privacy-link:hover {
  color: var(--color-amber);
}

@media (max-width: 576px) {
  .signup-benefits-row {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* Feature Grid Cards */
.features-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background-color: var(--color-obsidian-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 4px;
  transition: all var(--transition-speed);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 176, 0, 0.3);
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.feature-icon-box {
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-card p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Synth Interactive Grid / Slider Showcase */
.showcase-section {
  padding: 5rem 0;
  background-color: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-header {
  margin-bottom: 3rem;
  text-align: center;
}

.section-header h2 {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--color-concrete);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.synth-slider-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.synth-track {
  background-color: var(--color-obsidian-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

@media (min-width: 969px) {
  .showcase-container {
    height: 100%;
  }
  .synth-track {
    height: 100%;
  }
}

.synth-display-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.synth-slide {
  display: flex;
  flex-direction: column; /* Stack image and details vertically */
  align-items: stretch;
  padding: 2.5rem;
  gap: 2rem;
}

@media (min-width: 969px) {
  .synth-slide {
    flex-grow: 1; /* Stretch slide to fill showcase height on desktop */
  }
}

.synth-image-wrapper {
  width: 100%;
  aspect-ratio: 1024 / 534; /* Maintain exactly the horizontal image aspect ratio */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.synth-render-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Fit perfectly to the full bounds of the wrapper */
  filter: drop-shadow(0 0 15px rgba(255,255,255,0.03));
  transition: transform 0.5s ease;
  z-index: 1;
  border-radius: 4px; /* Move rounded corners directly onto the image */
}

/* Ambient glow container behind the image, spilling out of wrapper bounds */
.synth-glow-backplate {
  position: absolute;
  width: 115%; /* Sized to fit within the .synth-slide container padding */
  height: 115%; /* Sized to fit within the .synth-slide container padding */
  background: radial-gradient(ellipse at center, rgba(255, 176, 0, 0.12) 0%, rgba(255, 176, 0, 0.03) 50%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

.synth-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

@media (max-width: 768px) {
  .synth-slide {
    padding: 1.5rem;
    gap: 1.5rem;
  }
}

.synth-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-concrete);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.synth-title {
  font-family: var(--font-mono);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.synth-desc {
  color: var(--color-text-secondary);
  font-size: 16px;
  margin-bottom: 1.5rem;
}

/* Slider Controls */
.slider-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
  padding: 1.25rem 0 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05); /* Separator from details */
  background-color: rgba(0, 0, 0, 0.15); /* Slightly darker backing */
}

.btn-nav {
  background-color: var(--color-obsidian-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-mono);
  font-weight: 700;
  border-radius: 2px;
  transition: all var(--transition-speed);
}

.btn-nav:hover {
  border-color: var(--color-amber);
  color: var(--color-amber);
}

.slider-indicators {
  display: flex;
  gap: 8px;
}

.indicator-dot {
  width: 6px;
  height: 6px;
  background-color: rgba(255,255,255,0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-speed);
}

.indicator-dot.active {
  background-color: var(--color-amber);
  box-shadow: 0 0 6px var(--color-amber);
  transform: scale(1.2);
}

/* Teardown Diagnostic Oscilloscope Waveform widget */
.scope-widget {
  background-color: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 120px;
  border-radius: 4px;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.scope-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: 20px 20px;
  background-image: 
    linear-gradient(to right, rgba(0, 255, 65, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 255, 65, 0.05) 1px, transparent 1px);
}

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

.scope-crosshair {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  border-top: 1px dashed rgba(255, 176, 0, 0.25);
  pointer-events: none;
}

.scope-crosshair-vertical {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  border-left: 1px dashed rgba(255, 176, 0, 0.25);
  pointer-events: none;
}

.scope-text {
  position: absolute;
  bottom: 8px;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--color-green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Footer Section */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background-color: #080809;
  padding: 4rem 0 2rem;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem; /* Uniform spacing aligned with grid framework */
  margin-bottom: 3rem;
}

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

.footer-brand h4 {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.footer-brand p {
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-links h5 {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.1em;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-speed);
}

.footer-links a:hover {
  color: var(--color-amber);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 2rem;
  display: flex;
  flex-direction: column; /* Consolidate into 2 rows */
  align-items: center;    /* Center align items */
  text-align: center;     /* Center align text */
  gap: 0.75rem;           /* Equal spacing between rows */
}

/* Success Overlay State */
.success-msg-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 0;
  animation: fade-in 0.5s ease forwards;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.success-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-green);
  color: var(--color-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
}

.success-headline {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--color-green);
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   FAQ Accordion Styles
   ========================================================================== */
.faq-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-group {
  width: 100%;
  margin: 2rem 0 0; /* Align left and right perfectly with the container grid */
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-accordion {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: var(--color-obsidian-card);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color var(--transition-speed);
}

.faq-accordion[open] {
  border-color: rgba(255, 176, 0, 0.3);
}

.faq-accordion summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 500;
  color: var(--color-text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  outline: none;
}

.faq-accordion summary::-webkit-details-marker {
  display: none;
}

.faq-accordion summary::after {
  content: "+";
  font-family: var(--font-mono);
  color: var(--color-amber);
  font-size: 1.2rem;
  transition: transform var(--transition-speed);
}

.faq-accordion[open] summary::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.faq-content p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  padding-top: 1rem;
}

/* ==========================================================================
   Coming Soon Page (Phase 0) Specific Styles
   ========================================================================== */

.led-dot.amber {
  background-color: var(--color-amber);
  box-shadow: 0 0 8px var(--color-amber);
}

.led-dot.amber.blink {
  animation: led-blink-amber 1.5s infinite;
}

@keyframes led-blink-amber {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--color-amber); }
  50% { opacity: 0.3; box-shadow: 0 0 2px var(--color-amber); }
}

.coming-soon-hero {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 2rem;
}

.coming-soon-hero h1 {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  text-align: center;
  max-width: 1000px;
}

.hero-image-banner {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  margin-bottom: 0;
  display: block;
  border-radius: 6px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.coming-soon-hero p.intro-text {
  color: var(--color-text-secondary);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 800px;
  text-align: center;
}

.coming-soon-hero .signup-box {
  width: 100%;
  max-width: 550px;
  margin: 0 auto 3rem auto;
  text-align: left;
}

.form-group-vertical {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.form-group-vertical .btn-submit {
  align-self: flex-start;
  width: auto;
  min-width: 200px;
}

@media (max-width: 480px) {
  .form-group-vertical .btn-submit {
    width: 100%;
  }
}

.coming-soon-hero .scope-widget {
  margin-top: 2rem;
  width: 100%;
  max-width: 100%;
}

.social-proof-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  color: var(--color-concrete);
  transition: all var(--transition-speed);
  text-decoration: none;
}

.social-link:hover {
  border-color: var(--color-amber);
  color: var(--color-amber);
  box-shadow: 0 0 10px rgba(255, 176, 0, 0.2);
}

/* Header Logo Icon Styling */
.logo-icon-container {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 176, 0, 0.55));
}

/* Page Section Splits (Header / Banner / Main Body / Footer) */
.hero-banner-section {
  background-color: #0D0D0F;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.hero-banner-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem var(--spacing-md);
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-body-section {
  background-color: #121214;
  width: 100%;
  padding: 3rem 0;
}

/* Standard Text Page Styles (Privacy, Terms, etc.) */
.standard-page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
  font-family: var(--font-sans);
}

.standard-page-content h1 {
  font-family: var(--font-mono);
  font-size: 2.25rem;
  color: var(--color-amber);
  text-shadow: 0 0 8px rgba(255, 176, 0, 0.4);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.standard-page-content h2 {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  color: #fff;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255, 176, 0, 0.15);
  padding-bottom: 0.5rem;
}

.standard-page-content h3 {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--color-amber);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.standard-page-content p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.standard-page-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.standard-page-content li {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
  position: relative;
  list-style-type: none;
  padding-left: 1.25rem;
}

.standard-page-content li::before {
  content: "■";
  color: var(--color-amber);
  font-size: 0.65rem;
  position: absolute;
  left: 0;
  top: 0;
}

.standard-page-content a {
  color: var(--color-amber);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 176, 0, 0.4);
  transition: all 0.2s ease;
}

.standard-page-content a:hover {
  color: #fff;
  border-bottom-color: #fff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.standard-page-content hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin: 3rem 0;
}

