/* ============================================
   primecodevaultlink.com - Main Stylesheet
   Premium Dark Studio Design System
   ============================================ */

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

:root {
  /* Surfaces */
  --bg-primary: #050507;
  --bg-secondary: #0c0c11;
  --bg-tertiary: #14141b;
  --bg-elevated: #1c1c25;
  --bg-glass: rgba(20, 20, 27, 0.6);

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #b8b8c8;
  --text-tertiary: #6b6b80;

  /* Accent palette */
  --accent-primary: #e82127;
  --accent-secondary: #00d4ff;
  --accent-tertiary: #8b5cf6;
  --accent-quaternary: #22d3a8;
  --accent-glow: rgba(0, 212, 255, 0.5);

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-medium: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.2);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 50%, #e82127 100%);
  --gradient-secondary: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
  --gradient-accent: linear-gradient(135deg, #8b5cf6 0%, #e82127 100%);
  --gradient-radial: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.18) 0%, transparent 65%);
  --gradient-mesh: linear-gradient(135deg, #050507 0%, #0c0c11 50%, #14141b 100%);

  /* Shadows */
  --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.3);
  --shadow-glow-violet: 0 0 40px rgba(139, 92, 246, 0.3);
  --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.5);
  --shadow-card-hover: 0 32px 80px rgba(0, 0, 0, 0.7);
  --shadow-inset: inset 0 1px 0 rgba(255, 255, 255, 0.05);

  /* Motion */
  --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Layout */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image:
    radial-gradient(ellipse 80% 60% at 15% 0%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent-secondary), var(--accent-tertiary));
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--accent-tertiary), var(--accent-secondary));
}

/* Selection */
::selection {
  background: var(--accent-secondary);
  color: var(--bg-primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
}

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

h4 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

p {
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  color: var(--text-secondary);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--transition-smooth);
}

/* Container */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* ============================================
   Global Section Spacing
   ============================================ */
section {
  padding: 120px 0;
  position: relative;
}

section + section {
  border-top: 1px solid var(--border-subtle);
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
}

/* ============================================
   Navigation
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(5, 5, 7, 0.6);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--transition-smooth);
}

.site-header.scrolled {
  padding: 14px 0;
  background: rgba(5, 5, 7, 0.85);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  position: relative;
}

.logo svg {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 8px var(--accent-glow));
  transition: transform 0.6s var(--transition-smooth);
}

.logo:hover svg {
  transform: rotate(180deg) scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  padding: 6px;
}

.nav-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 100px;
  transition: all 0.3s var(--transition-smooth);
  position: relative;
}

.nav-menu li a:hover {
  color: var(--text-primary);
  background: var(--bg-tertiary);
}

.nav-menu li a.active {
  color: var(--bg-primary);
  background: var(--text-primary);
  font-weight: 600;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--text-primary);
  color: var(--bg-primary);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.3s var(--transition-smooth);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}

.nav-cta:hover {
  background: var(--accent-secondary);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.4);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 980px) {
  .nav-menu { display: none; }
  .nav-cta { display: none; }
  .mobile-toggle { display: block; }
}

/* Mobile Menu */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--transition-smooth);
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 100vw);
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-subtle);
  z-index: 1002;
  padding: 80px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.4s var(--transition-smooth);
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu a {
  display: block;
  padding: 14px 18px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 12px;
  transition: all 0.3s var(--transition-smooth);
}

.mobile-menu a:hover, .mobile-menu a.active {
  color: var(--text-primary);
  background: var(--bg-tertiary);
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--transition-smooth);
  text-decoration: none;
  font-family: inherit;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--transition-smooth);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--text-primary);
  color: var(--bg-primary);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}

.btn-primary:hover {
  background: var(--accent-secondary);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 212, 255, 0.4);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-secondary {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
}

.btn-secondary:hover {
  background: var(--bg-elevated);
  border-color: var(--accent-secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.2);
}

.btn-glow {
  background: var(--gradient-secondary);
  color: var(--bg-primary);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(139, 92, 246, 0.5);
}

.magnetic {
  transition: transform 0.2s var(--transition-smooth);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: min(900px, 100vh);
  padding: 140px 0 80px;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 64px);
  max-width: 1100px;
  padding: 0 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  bottom: -10px;
  background: var(--accent-secondary);
  border-radius: 50%;
  opacity: 0.6;
  animation: floatUp linear infinite;
  box-shadow: 0 0 8px var(--accent-secondary);
}

@keyframes floatUp {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100vh) translateX(20px); opacity: 0; }
}

@media (max-width: 768px) {
  .hero-content { padding: 0 20px; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-secondary);
  margin: 0 auto 28px;
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-secondary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 12px var(--accent-secondary);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  margin-bottom: 28px;
  letter-spacing: -0.035em;
  text-align: center;
}

.hero-title-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 760px;
  margin: 0 auto 40px;
  line-height: 1.65;
  text-align: center;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-tertiary);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--accent-secondary), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, transparent, var(--accent-secondary));
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

@media (max-width: 768px) {
  .hero-scroll-indicator { display: none; }
}

/* ============================================
   Page Hero (non-home pages)
   ============================================ */
.page-hero {
  position: relative;
  min-height: min(700px, 80vh);
  padding: 160px 0 100px;
  overflow: hidden;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  z-index: 0;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(5, 5, 7, 0.4) 50%, rgba(5, 5, 7, 0.95) 100%),
    linear-gradient(180deg, rgba(5, 5, 7, 0.5) 0%, rgba(5, 5, 7, 0.2) 30%, rgba(5, 5, 7, 0.7) 100%);
  z-index: 1;
}

.page-hero > * {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-hero h1 {
  margin-top: 20px;
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  letter-spacing: -0.03em;
  text-align: center;
}

.page-hero .section-subtitle,
.page-hero .hero-subtitle {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  text-align: center;
}

/* ============================================
   Section Header
   ============================================ */
.section-header {
  max-width: 820px;
  margin: 0 auto 80px;
  text-align: center;
}

.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  margin-bottom: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #b8b8c8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}

/* ============================================
   Stats
   ============================================ */
.stats {
  padding: 80px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

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

.stat-item {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid var(--border-subtle);
  position: relative;
}

@media (max-width: 900px) {
  .stat-item:nth-child(2n) { border-right: none; }
}

@media (max-width: 500px) {
  .stat-item { border-right: none; }
}

.stat-item:last-child { border-right: none; }

.stat-value {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  font-family: 'Inter', monospace;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ============================================
   Features Grid (Pillar Cards)
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 980px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.feature-card {
  position: relative;
  padding: 36px 32px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--transition-smooth);
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0, 212, 255, 0.15), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-secondary), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  background: var(--bg-tertiary);
}

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

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(139, 92, 246, 0.15));
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s var(--transition-smooth);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  color: var(--accent-secondary);
  stroke-width: 2;
  transition: transform 0.4s var(--transition-smooth);
}

.feature-card:hover .feature-icon {
  background: var(--gradient-secondary);
  border-color: transparent;
  transform: scale(1.05) rotate(-3deg);
}

.feature-card:hover .feature-icon svg {
  color: var(--bg-primary);
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.feature-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ============================================
   App Portfolio Grid
   ============================================ */
.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 980px) {
  .app-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.app-card {
  position: relative;
  padding: 32px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--transition-smooth);
  overflow: hidden;
}

.app-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08), transparent 50%);
  opacity: 0;
  transition: opacity 0.6s;
  pointer-events: none;
}

.app-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-secondary);
  box-shadow: 0 24px 60px rgba(0, 212, 255, 0.15);
}

.app-card:hover::before { opacity: 1; }

.app-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.app-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-secondary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.app-icon svg {
  width: 28px;
  height: 28px;
  color: var(--bg-primary);
  stroke-width: 2.5;
}

.app-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.app-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.app-card p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.app-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-features-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.app-features-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--accent-secondary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-secondary);
}

/* ============================================
   Technology Cloud
   ============================================ */
.tech-cloud {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.tech-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  transition: all 0.3s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.tech-chip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(0, 212, 255, 0.06), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.tech-chip:hover {
  border-color: var(--accent-secondary);
  background: var(--bg-tertiary);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.tech-chip:hover::before { opacity: 1; }

.tech-chip-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 8px;
}

.tech-chip-icon svg {
  width: 18px;
  height: 18px;
  color: var(--accent-secondary);
}

.tech-chip-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  position: relative;
}

/* ============================================
   Timeline
   ============================================ */
.timeline {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg,
    transparent 0%,
    var(--accent-secondary) 10%,
    var(--accent-tertiary) 50%,
    var(--accent-primary) 90%,
    transparent 100%);
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .timeline::before { left: 20px; }
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 40px 60px;
}

.timeline-item:nth-child(odd) {
  margin-left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  margin-left: 50%;
  text-align: left;
}

@media (max-width: 768px) {
  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    width: 100%;
    margin-left: 0;
    padding: 0 20px 40px 56px;
    text-align: left;
  }
}

.timeline-dot {
  position: absolute;
  top: 20px;
  width: 18px;
  height: 18px;
  background: var(--bg-primary);
  border: 3px solid var(--accent-secondary);
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--bg-primary), 0 0 24px var(--accent-secondary);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -9px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -9px;
}

@media (max-width: 768px) {
  .timeline-dot,
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 11px;
    right: auto;
  }
}

.timeline-date {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-secondary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.timeline-content {
  padding: 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all 0.3s var(--transition-smooth);
}

.timeline-content:hover {
  border-color: var(--accent-secondary);
  background: var(--bg-tertiary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.timeline-content h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.timeline-content p {
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  text-align: center;
  padding: 140px 32px;
  background: var(--gradient-radial), var(--bg-primary);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15), transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-section > * {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.cta-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-medium), transparent);
  margin: 60px 0;
}

.glow-text {
  text-shadow: 0 0 30px var(--accent-glow);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 32px;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-secondary), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

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

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

.footer-brand {
  max-width: 360px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-tertiary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  transition: all 0.3s var(--transition-smooth);
}

.footer-social a:hover {
  background: var(--accent-secondary);
  border-color: var(--accent-secondary);
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 212, 255, 0.3);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  color: var(--text-secondary);
  transition: color 0.3s var(--transition-smooth);
}

.footer-social a:hover svg {
  color: var(--bg-primary);
}

.footer-column h5 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column ul a {
  font-size: 0.88rem;
  color: var(--text-tertiary);
  transition: all 0.3s var(--transition-smooth);
}

.footer-column ul a:hover {
  color: var(--accent-secondary);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 0.82rem;
  color: var(--text-tertiary);
}

.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.82rem;
  color: var(--text-tertiary);
  transition: color 0.3s var(--transition-smooth);
}

.footer-legal a:hover {
  color: var(--accent-secondary);
}

/* ============================================
   Contact Page
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all 0.3s var(--transition-smooth);
}

.contact-card:hover {
  border-color: var(--accent-secondary);
  background: var(--bg-tertiary);
  transform: translateX(6px);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(139, 92, 246, 0.3);
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--bg-primary);
  stroke-width: 2.5;
}

.contact-card-content h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-card-content p,
.contact-card-content a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: block;
  word-break: break-word;
}

.contact-card-content a:hover {
  color: var(--accent-secondary);
}

.contact-card-content p[style*="text-tertiary"] {
  color: var(--text-tertiary);
  font-size: 0.8rem;
  margin-top: 6px;
}

.contact-form {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-secondary), transparent);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-form > p {
  font-size: 0.88rem;
  color: var(--text-tertiary);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s var(--transition-smooth);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%23b8b8c8' stroke-width='1.5' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.form-group select option {
  background: var(--bg-elevated);
  color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-secondary);
  background: var(--bg-elevated);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-tertiary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-group input[type="checkbox"] {
  width: auto;
  margin: 0;
  accent-color: var(--accent-secondary);
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
}

.form-group label:has(input[type="checkbox"]) {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  cursor: pointer;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.5;
}

.form-group label:has(input[type="checkbox"]) a {
  color: var(--accent-secondary);
  text-decoration: underline;
}

/* ============================================
   FAQ Accordion (FIXED)
   ============================================ */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.4s var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--border-medium);
}

.faq-item.open {
  border-color: var(--accent-secondary);
  background: var(--bg-tertiary);
  box-shadow: 0 12px 32px rgba(0, 212, 255, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 24px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  text-align: left;
  user-select: none;
  transition: color 0.3s var(--transition-smooth);
}

.faq-question:hover {
  color: var(--accent-secondary);
}

.faq-question > span,
.faq-question > .faq-text {
  flex: 1;
  min-width: 0;
}

.faq-question > svg,
.faq-question > .faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--accent-secondary);
  transition: transform 0.4s var(--transition-smooth);
  stroke-width: 2.5;
}

.faq-item.open .faq-question > svg,
.faq-item.open .faq-question > .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--transition-smooth);
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer-inner {
  padding: 0 28px 28px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-answer-inner p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-answer-inner a {
  color: var(--accent-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   Loading Screen
   ============================================ */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--transition-smooth), visibility 0.6s var(--transition-smooth);
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-logo {
  position: relative;
  width: 80px;
  height: 80px;
}

.loading-logo svg {
  width: 100%;
  height: 100%;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   Reveal Animations
   ============================================ */
.reveal,
.reveal-init {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

.reveal.visible,
.reveal-init.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.stagger > *,
.stagger-init > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--transition-smooth), transform 0.6s var(--transition-smooth);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0.0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.05s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.15s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.25s; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.3s; }
.stagger.visible > *:nth-child(8) { transition-delay: 0.35s; }
.stagger.visible > *:nth-child(9) { transition-delay: 0.4s; }
.stagger.visible > *:nth-child(10) { transition-delay: 0.45s; }
.stagger.visible > *:nth-child(11) { transition-delay: 0.5s; }
.stagger.visible > *:nth-child(12) { transition-delay: 0.55s; }
.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.text-center { text-align: center; }
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================
   Policy Pages
   ============================================ */
.policy-hero {
  padding: 180px 32px 80px;
  text-align: center;
  background: var(--gradient-radial);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.policy-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.policy-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--accent-secondary);
  margin-bottom: 20px;
}

.policy-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 32px 120px;
}

.toc {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.toc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-secondary), transparent);
}

.toc h2 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.toc h2::before {
  content: '';
  width: 4px;
  height: 20px;
  background: var(--gradient-secondary);
  border-radius: 2px;
}

.toc-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  counter-reset: toc;
}

.toc-list li {
  counter-increment: toc;
}

.toc-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  border-radius: 10px;
  transition: all 0.3s var(--transition-smooth);
  border: 1px solid transparent;
}

.toc-list a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-tertiary);
  flex-shrink: 0;
}

.toc-list a:hover {
  background: var(--bg-tertiary);
  color: var(--accent-secondary);
  padding-left: 18px;
  border-color: var(--border-subtle);
}

@media (max-width: 700px) {
  .toc-list { grid-template-columns: 1fr; }
}

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

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

.policy-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 24px;
  color: var(--text-primary);
  position: relative;
  padding-left: 24px;
  letter-spacing: -0.02em;
}

.policy-section h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 28px;
  background: var(--gradient-secondary);
  border-radius: 3px;
}

.policy-section h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin: 32px 0 16px;
  color: var(--text-primary);
  font-weight: 700;
}

.policy-section h4 {
  font-size: 1.1rem;
  margin: 24px 0 12px;
  color: var(--text-primary);
  font-weight: 600;
}

.policy-section p,
.policy-section li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.policy-section ul,
.policy-section ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.policy-section ul li,
.policy-section ol li {
  margin-bottom: 8px;
}

.policy-section strong {
  color: var(--text-primary);
  font-weight: 600;
}

.policy-section a {
  color: var(--accent-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}

.policy-section a:hover {
  color: var(--accent-tertiary);
}

.policy-section code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85em;
  padding: 2px 6px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  color: var(--accent-secondary);
}

.policy-callout {
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.06), rgba(139, 92, 246, 0.04));
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-left: 3px solid var(--accent-secondary);
  border-radius: 12px;
  margin: 24px 0;
  position: relative;
}

.policy-callout p {
  margin-bottom: 0;
  color: var(--text-primary);
}

.policy-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 24px 0;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  font-size: 0.9rem;
}

.policy-table thead {
  background: var(--bg-tertiary);
}

.policy-table th,
.policy-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.88rem;
  vertical-align: top;
}

.policy-table th {
  color: var(--text-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
}

.policy-table tbody tr:last-child td {
  border-bottom: none;
}

.policy-table tbody tr {
  transition: background 0.3s;
}

.policy-table tbody tr:hover {
  background: var(--bg-tertiary);
}

.policy-table strong {
  color: var(--text-primary);
}

/* ============================================
   Utility
   ============================================ */
.text-center { text-align: center; }

@media (max-width: 768px) {
  .section-header { margin-bottom: 60px; }
}
