/* ============================================
   HERITAGE PHOTO DIGITIZATION - FUTURISTIC DESIGN
   Neural Memory Bank Interface
   ============================================ */

:root {
  /* Color Palette - Neural Memory Bank */
  --color-ether-blue: #020617;
  --color-ether-dark: #0f172a;
  --color-bioluminescent-amber: #F59E0B;
  --color-amber-glow: #FCD34D;
  --color-phosphor-white: #F8FAFC;
  --color-phosphor-light: #E2E8F0;
  --color-glass-bg: rgba(15, 23, 42, 0.6);
  --color-glass-border: rgba(248, 250, 252, 0.1);
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 20px rgba(245, 158, 11, 0.3);
  --shadow-amber: 0 0 40px rgba(245, 158, 11, 0.5);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Layout */
  --max-width: 1280px;
  --header-height: 80px;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  background: var(--color-ether-blue);
  color: var(--color-phosphor-white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Particle Stream Background Effect */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(245, 158, 11, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(248, 250, 252, 0.01) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--color-phosphor-white);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-phosphor-light);
}

a {
  color: var(--color-bioluminescent-amber);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-amber-glow);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
  position: relative;
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background: var(--color-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-glass-border);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
}

.brand-name {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-phosphor-white);
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 15px;
  align-items: center;
}

.nav-menu li a {
  color: var(--color-phosphor-light);
  font-size: 0.95rem;
  font-weight: 500;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-bioluminescent-amber);
  transition: width var(--transition-base);
}

.nav-menu li a:hover {
  color: var(--color-bioluminescent-amber);
  background: rgba(245, 158, 11, 0.1);
}

.nav-menu li a:hover::after {
  width: 80%;
}

/* Burger Menu Button */
.burger-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--color-glass-border);
  color: var(--color-phosphor-white);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  transition: all var(--transition-base);
  position: relative;
  z-index: 1002;
  flex-shrink: 0;
}

.burger-toggle:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--color-bioluminescent-amber);
}

.burger-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-phosphor-white);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.burger-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-toggle.active span:nth-child(2) {
  opacity: 0;
}

.burger-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}


/* Mobile Navigation */
@media (max-width: 1023px) {
  .burger-toggle {
    display: flex;
  }
  
  .main-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--color-glass-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-left: 1px solid var(--color-glass-border);
    flex-direction: column;
    padding: var(--space-2xl) var(--space-lg);
    transition: right var(--transition-base);
    z-index: 1001;
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  }
  
  .main-navigation.active {
    right: 0;
    background: black;
  }
  
  .nav-menu {
    flex-direction: column;
    width: 100%;
    gap: var(--space-md);
    align-items: stretch;
    margin-top: var(--space-xl);
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  .nav-menu li a {
    display: block;
    width: 100%;
    padding: var(--space-md);
    text-align: left;
  }
}

/* ============================================
   MAIN CONTENT
   ============================================ */

main {
  position: relative;
  z-index: 1;
}

/* ============================================
   HERO BANNER (Full Width)
   ============================================ */

.hero-banner {
  position: relative;
  width: 100vw;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.hero-banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(2, 6, 23, 0.85) 0%, rgba(15, 23, 42, 0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  width: 100%;
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, var(--color-phosphor-white) 0%, var(--color-amber-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(245, 158, 11, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--color-phosphor-light);
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  line-height: 1.8;
}

/* ============================================
   SECTION STYLES
   ============================================ */

.content-section {
  padding: var(--space-3xl) var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.content-section > * {
  text-align: left;
}

.content-section > .section-title,
.content-section > h1,
.content-section > h2 {
  text-align: center;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-2xl);
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-bioluminescent-amber), transparent);
}

/* Grid Layouts */
.grid-container {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.grid-item {
  background: var(--color-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.grid-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.grid-item:hover {
  transform: translateY(-5px);
  border-color: var(--color-bioluminescent-amber);
  box-shadow: var(--shadow-glow);
}

.grid-item:hover::before {
  opacity: 1;
}

.grid-item-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.grid-item-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--color-phosphor-white);
}

.grid-item-text {
  color: var(--color-phosphor-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   MEMORY PULSE INTERACTIVE FEATURE
   ============================================ */

.memory-pulse-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: var(--space-2xl) auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-ether-dark);
  border: 1px solid var(--color-glass-border);
}

.memory-pulse-image {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%) contrast(0.8);
  transition: filter var(--transition-slow);
}

.scanning-beam {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-bioluminescent-amber), transparent);
  box-shadow: 0 0 20px var(--color-bioluminescent-amber);
  animation: scan 4s linear infinite;
  z-index: 10;
}

@keyframes scan {
  0% {
    top: 0;
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

.scan-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, rgba(245, 158, 11, 0.1), transparent);
  pointer-events: none;
  animation: reveal 4s linear infinite;
}

@keyframes reveal {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}

.hud-tags {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  z-index: 20;
}

.hud-tag {
  background: var(--color-glass-bg);
  backdrop-filter: blur(10px);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-bioluminescent-amber);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-bioluminescent-amber);
  opacity: 0;
  animation: fadeInHUD 1s ease forwards;
}

.hud-tag:nth-child(1) { animation-delay: 0.5s; }
.hud-tag:nth-child(2) { animation-delay: 1s; }
.hud-tag:nth-child(3) { animation-delay: 1.5s; }

@keyframes fadeInHUD {
  to {
    opacity: 1;
  }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background: transparent;
  border: 2px solid var(--color-bioluminescent-amber);
  color: var(--color-bioluminescent-amber);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-bioluminescent-amber);
  transition: left var(--transition-base);
  z-index: -1;
}

.btn:hover {
  color: var(--color-ether-blue);
  box-shadow: var(--shadow-glow);
}

.btn:hover::before {
  left: 0;
}

.btn-primary {
  background: var(--color-bioluminescent-amber);
  color: var(--color-ether-blue);
}

.btn-primary::before {
  background: var(--color-amber-glow);
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-form {
  max-width: 600px;
  margin: var(--space-xl) auto;
  background: var(--color-glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  color: var(--color-phosphor-white);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-md);
  color: var(--color-phosphor-white);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-bioluminescent-amber);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.form-checkbox input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--color-bioluminescent-amber);
}

.form-checkbox label {
  color: var(--color-phosphor-light);
  font-size: 0.9rem;
  line-height: 1.5;
  cursor: pointer;
}

/* ============================================
   GOOGLE MAPS
   ============================================ */

.map-container {
  width: 100%;
  max-width: 800px;
  margin: var(--space-xl) auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-glass-border);
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* ============================================
   PRODUCTS GRID
   ============================================ */

.product-card {
  background: var(--color-glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-bioluminescent-amber);
  box-shadow: var(--shadow-glow);
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.product-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--color-phosphor-white);
}

.product-description {
  color: var(--color-phosphor-light);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.product-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-bioluminescent-amber);
  font-family: var(--font-mono);
  margin-top: var(--space-md);
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--color-ether-dark);
  border-top: 1px solid var(--color-glass-border);
  padding: var(--space-xl) var(--space-lg);
  margin-top: var(--space-3xl);
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
}

.footer-section h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
  color: var(--color-bioluminescent-amber);
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: var(--space-sm);
}

.footer-menu a {
  color: var(--color-phosphor-light);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  text-align: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-glass-border);
  color: var(--color-phosphor-light);
  font-size: 0.875rem;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.mt-lg {
  margin-top: var(--space-lg);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.date {
  color: var(--color-phosphor-light);
  font-size: 0.875rem;
  font-style: italic;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  :root {
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
  }
  
  .content-section {
    padding: var(--space-xl) var(--space-md);
  }
  
  .hero-banner {
    min-height: 50vh;
  }
  
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: var(--space-lg);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: var(--space-sm) var(--space-md);
  }
  
  .hero-content {
    padding: var(--space-lg) var(--space-md);
  }
  
  .content-section {
    padding: var(--space-lg) var(--space-md);
  }
}

/* ============================================
   PRIVACY POPUP
   ============================================ */

.privacy-popup {
  position: fixed;
  bottom: var(--space-lg);
  left: var(--space-lg);
  right: var(--space-lg);
  max-width: 500px;
  background: var(--color-glass-bg);
  backdrop-filter: blur(30px);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  z-index: 2000;
  box-shadow: var(--shadow-lg);
  display: none;
}

.privacy-popup.active {
  display: block;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.privacy-popup p {
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
  color: var(--color-phosphor-light);
}

.privacy-popup-buttons {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.privacy-popup-buttons .btn {
  flex: 1;
  padding: var(--space-sm) var(--space-md);
  font-size: 0.9rem;
}

/* ============================================
   ADDITIONAL UTILITY CLASSES
   ============================================ */

.memory-pulse-description {
  max-width: 700px;
  margin: var(--space-xl) auto;
  color: var(--color-phosphor-light);
}

.format-spec {
  margin-top: var(--space-md);
  font-family: var(--font-mono);
  color: var(--color-bioluminescent-amber);
}

.hero-banner-medium {
  min-height: 50vh;
}

.hero-banner-cta {
  min-height: 40vh;
  background: linear-gradient(135deg, rgba(2, 6, 23, 0.9) 0%, rgba(15, 23, 42, 0.8) 100%);
}

.hero-banner-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-lg);
}

.hero-banner-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
}

.hero-banner-text-narrow {
  max-width: 700px;
  margin-bottom: var(--space-xl);
}

.contact-info-text {
  color: var(--color-phosphor-light);
  font-size: 0.9rem;
  line-height: 1.8;
}

.contact-line-height {
  line-height: 2;
}

.form-submit-full {
  width: 100%;
  margin-top: var(--space-lg);
}

.legal-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.hero-banner-title-sm {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.hero-banner-text-sm {
  font-size: clamp(1rem, 2vw, 1.125rem);
}

.map-address-text {
  margin-top: var(--space-lg);
}

/* ============================================
   SPLIT SCREEN CONTAINER (Restoration Lab)
   ============================================ */

.split-screen-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
    min-height: 500px;
}

.split-panel {
    background: var(--color-glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.split-panel-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.split-panel-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--color-bioluminescent-amber);
}

.split-panel-text {
    color: var(--color-phosphor-light);
    line-height: 1.7;
}

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

/* ============================================
   404 PAGE
   ============================================ */

.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
}

.error-code {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 800;
  color: var(--color-bioluminescent-amber);
  margin-bottom: var(--space-md);
  font-family: var(--font-mono);
}

.error-message {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: var(--space-xl);
  color: var(--color-phosphor-light);
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thank-you-container {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
}

.thank-you-message {
  max-width: 600px;
  background: var(--color-glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.thank-you-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--color-bioluminescent-amber);
  margin-bottom: var(--space-lg);
}

.thank-you-text {
  font-size: 1.125rem;
  color: var(--color-phosphor-light);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

