/* ==========================================================================
   SHREE WIN - MODERN MOBILE-FIRST DESIGN SYSTEM & STYLESHEET
   High-Authority SEO, Accessibility (WCAG AA), Core Web Vitals Optimized
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Surface & Canvas Tokens */
  --bg-canvas: #070a12;
  --bg-primary: #0a0e17;
  --bg-secondary: #0f172a;
  --bg-card: #131d31;
  --bg-card-hover: #192640;
  --bg-glass: rgba(19, 29, 49, 0.88);
  --bg-input: #090d16;

  /* Accent & Brand Tokens */
  --gold-50: #fffbeb;
  --gold-100: #fef3c7;
  --gold-300: #fcd34d;
  --gold-400: #fbbf24;
  --gold-500: #f59e0b;
  --gold-600: #d97706;
  --gold-glow: rgba(245, 158, 11, 0.22);
  --gold-glow-strong: rgba(245, 158, 11, 0.45);

  --indigo-500: #6366f1;
  --indigo-glow: rgba(99, 102, 241, 0.25);
  --blue-500: #3b82f6;
  --emerald-500: #10b981;
  --rose-500: #f43f5e;

  /* Typography Tokens */
  --text-white: #ffffff;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --text-faint: #64748b;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Borders & Shadows */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.16);
  --border-gold: rgba(245, 158, 11, 0.35);
  --border-gold-focus: #f59e0b;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-pill: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 6px 24px -2px rgba(245, 158, 11, 0.35);

  /* Layout & Spacing */
  --header-height: 68px;
  --mobile-bottom-bar-height: 70px;
  --container-max: 1200px;
  --transition-fast: 160ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  background-color: var(--bg-canvas);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.68;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p, h1, h2, h3, h4, h5, h6, li, td, th {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Safe padding for fixed mobile bottom action bar */
@media (max-width: 768px) {
  body {
    padding-bottom: calc(var(--mobile-bottom-bar-height) + max(16px, env(safe-area-inset-bottom)));
  }
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--gold-400);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--gold-300);
  text-decoration: underline;
}

ul, ol {
  padding-left: 1.4rem;
}
li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--gold-500);
  color: #000;
  padding: 10px 18px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top var(--transition-fast);
}
.skip-link:focus {
  top: 16px;
}

/* ==========================================================================
   Typography Hierarchy
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-white);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  margin-bottom: 1.2rem;
}
h2 {
  font-size: clamp(1.5rem, 3.8vw, 2.25rem);
  margin-top: 2.2rem;
  margin-bottom: 1rem;
  position: relative;
}
h3 {
  font-size: clamp(1.2rem, 2.6vw, 1.5rem);
  margin-top: 1.6rem;
  margin-bottom: 0.75rem;
  color: var(--gold-300);
}
h4 {
  font-size: 1.15rem;
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1.15rem;
  color: var(--text-secondary);
}

.lead {
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  color: var(--text-secondary);
  line-height: 1.7;
}

.text-gold {
  color: var(--gold-400) !important;
}
.text-gradient-gold {
  background: linear-gradient(135deg, #fef08a 0%, #f59e0b 50%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   Container & Layout
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 4vw, 28px);
  padding-right: clamp(16px, 4vw, 28px);
}

.section {
  padding-top: clamp(40px, 7vw, 75px);
  padding-bottom: clamp(40px, 7vw, 75px);
}
.section-alt {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 840px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 580px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   Sticky Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--bg-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background var(--transition-normal), border-color var(--transition-normal);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.header-brand img {
  height: 42px;
  width: auto;
}

/* Desktop Nav */
.desktop-nav {
  display: none;
}
@media (min-width: 992px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .desktop-nav a {
    color: var(--text-secondary);
    font-size: 0.96rem;
    font-weight: 600;
    text-decoration: none;
    padding: 6px 0;
    position: relative;
    transition: color var(--transition-fast);
  }
  .desktop-nav a:hover,
  .desktop-nav a.active {
    color: var(--gold-400);
  }
  .desktop-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-400);
    border-radius: 2px;
  }
}

/* Header CTAs (Visible on ALL devices) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}
.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-600) 100%);
  color: #0b0f19 !important;
  box-shadow: var(--shadow-gold);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #fde68a 0%, var(--gold-500) 100%);
  box-shadow: 0 8px 28px -2px rgba(245, 158, 11, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-white) !important;
  border: 1px solid var(--border-medium);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold-400);
}

.btn-sm {
  min-height: 38px;
  padding: 7px 14px;
  font-size: 0.88rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Mobile Hamburger Button */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  gap: 5px;
  padding: 0;
  transition: background var(--transition-fast);
}
@media (min-width: 992px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer Overlay */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}
.mobile-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(85vw, 360px);
  height: 100%;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-subtle);
  z-index: 1100;
  padding: 24px 20px 80px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
}
.mobile-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 20px;
}
.drawer-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 4px 8px;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav-list a {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
}
.mobile-nav-list a:hover,
.mobile-nav-list a.active {
  background: var(--gold-glow);
  color: var(--gold-400);
}

/* ==========================================================================
   Fixed Mobile Bottom Action Bar
   ========================================================================== */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--mobile-bottom-bar-height);
  background: rgba(10, 14, 23, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-gold);
  z-index: 990;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8px 12px max(8px, env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.6);
}
@media (min-width: 769px) {
  .mobile-bottom-bar {
    display: none !important;
  }
}

.mobile-bottom-bar .bottom-action-btn {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 48px;
  padding: 8px 12px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  text-decoration: none;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.bottom-action-btn.login-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid var(--border-medium);
  margin-right: 6px;
}
.bottom-action-btn.register-btn {
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-600) 100%);
  color: #090d16;
  font-weight: 800;
  box-shadow: 0 2px 14px rgba(245, 158, 11, 0.4);
}
.bottom-action-btn.app-btn {
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.4);
  margin-left: 6px;
  font-size: 0.85rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  padding-top: clamp(40px, 8vw, 90px);
  padding-bottom: clamp(50px, 9vw, 100px);
  background: radial-gradient(circle at 50% 20%, rgba(99, 102, 241, 0.12) 0%, rgba(245, 158, 11, 0.06) 45%, transparent 70%),
              var(--bg-canvas);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-400);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.8rem;
  margin-bottom: 2rem;
}
@media (max-width: 480px) {
  .hero-actions .btn {
    width: 100%;
  }
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.9rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-trust-item span.icon {
  color: var(--gold-400);
  font-size: 1.1rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 24px;
  width: 100%;
  max-width: 100%;
}

.hero-mockup-picture {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 380px;
  position: relative;
  margin: 0 auto;
}

.hero-mockup-img {
  width: 100%;
  max-width: 340px;
  height: auto;
  aspect-ratio: 808 / 1600;
  object-fit: cover;
  border-radius: 28px;
  border: 3px solid rgba(245, 158, 11, 0.45);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.85), 0 0 35px rgba(245, 158, 11, 0.25);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  background: #0d1322;
}

.hero-mockup-img:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 26px 60px -10px rgba(0, 0, 0, 0.95), 0 0 45px rgba(245, 158, 11, 0.4);
  border-color: var(--gold-400);
}

@media (max-width: 840px) {
  .hero-visual {
    margin-top: 32px;
  }
  .hero-mockup-picture {
    max-width: 300px;
  }
  .hero-mockup-img {
    max-width: 280px;
    border-radius: 24px;
    border-width: 2.5px;
    aspect-ratio: 798 / 1600;
  }
}

@media (max-width: 480px) {
  .hero-mockup-picture {
    max-width: 260px;
  }
  .hero-mockup-img {
    max-width: 250px;
    border-radius: 20px;
    border-width: 2px;
  }
}

@media (max-width: 340px) {
  .hero-mockup-picture {
    max-width: 220px;
  }
  .hero-mockup-img {
    max-width: 210px;
    border-radius: 16px;
  }
}

/* ==========================================================================
   Cards & UI Components
   ========================================================================== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 30px);
  position: relative;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: var(--shadow-sm);
}
.card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.card-gold-glow {
  border-color: var(--border-gold);
  box-shadow: 0 0 30px var(--gold-glow);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

/* Step Numbered Cards */
.step-card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 36px;
}
.step-badge {
  position: absolute;
  top: -16px;
  left: 24px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: #0b0f19;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}

/* Diagnostics / Troubleshooting Cards */
.trouble-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--gold-500);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-bottom: 20px;
}
.trouble-card.trouble-alert {
  border-left-color: var(--rose-500);
}
.trouble-card.trouble-success {
  border-left-color: var(--emerald-500);
}

/* Code Redemption Card */
.code-box {
  background: #080c14;
  border: 1px dashed var(--gold-400);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 1.4rem 0;
}
.code-text {
  font-family: 'Share Tech Mono', monospace, monospace;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-300);
}

/* Informational Callouts / Alerts */
.alert-box {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin: 1.5rem 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.alert-box.alert-warning {
  background: rgba(245, 158, 11, 0.08);
  border-color: var(--border-gold);
}
.alert-box.alert-info {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.35);
}
.alert-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* ==========================================================================
   Accessible Accordions (FAQ)
   ========================================================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 1.8rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.faq-item[open] {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
}

.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-white);
  cursor: pointer;
  user-select: none;
  list-style: none;
  gap: 14px;
}
.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-400);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}
.faq-item[open] .faq-summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 22px 20px 22px;
  color: var(--text-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  margin-top: 4px;
  padding-top: 14px;
}

/* ==========================================================================
   Breadcrumb Navigation
   ========================================================================== */
.breadcrumb-nav {
  padding: 14px 0;
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid var(--border-subtle);
}
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.breadcrumb-list a {
  color: var(--text-muted);
  text-decoration: none;
}
.breadcrumb-list a:hover {
  color: var(--gold-400);
}
.breadcrumb-separator {
  color: var(--text-faint);
}
.breadcrumb-current {
  color: var(--gold-300);
  font-weight: 600;
}

/* ==========================================================================
   Tables & Specifications
   ========================================================================== */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.8rem 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}
table.spec-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: var(--bg-card);
  font-size: 0.96rem;
}
table.spec-table th,
table.spec-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-subtle);
}
table.spec-table th {
  background: #090e18;
  color: var(--gold-300);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
table.spec-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #05070d;
  border-top: 1px solid var(--border-subtle);
  padding-top: clamp(48px, 8vw, 80px);
  padding-bottom: clamp(36px, 6vw, 60px);
  color: var(--text-muted);
  font-size: 0.94rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 48px;
}
@media (min-width: 600px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

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

.footer-col h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-top: 0;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast), padding var(--transition-fast);
}
.footer-links a:hover {
  color: var(--gold-400);
  padding-left: 4px;
}

.footer-disclaimer-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 36px;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-faint);
}
.footer-disclaimer-card strong {
  color: var(--text-secondary);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.88rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}

/* ==========================================================================
   Forms & Contact
   ========================================================================== */
.form-group {
  margin-bottom: 18px;
}
.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-control:focus {
  outline: none;
  border-color: var(--border-gold-focus);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

/* ==========================================================================
   Accessibility & Focus Outlines
   ========================================================================== */
:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
