/* ============================================
   CRYPTOPIX - PREMIUM DESIGN SYSTEM
   ============================================ */

/* ============================================
   CSS RESET & BASE
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #ffffff;
  color: hsl(0, 0%, 10%);
  overflow-x: hidden;
  line-height: 1.6;
  max-width: 100vw;
}

/* ============================================
   COLOR SYSTEM - CUSTOM PALETTE
   ============================================ */
:root {
  /* Primary Colors - Based on #2544e3 */
  --primary: #2544e3;
  --primary-light: #4d6aff;
  --primary-dark: #1a32b8;
  --primary-rgb: 37, 68, 227;

  /* Secondary & Accent Colors */
  --secondary: hsl(230, 80%, 50%);
  --accent: hsl(200, 70%, 50%);
  --accent-warm: hsl(30, 90%, 60%);

  /* Backgrounds - White Theme */
  --bg-primary: #ffffff;
  --bg-secondary: hsl(0, 0%, 98%);
  --bg-tertiary: hsl(0, 0%, 95%);

  /* Text Colors - Dark for Light Background */
  --text-primary: hsl(0, 0%, 10%);
  --text-secondary: hsl(0, 0%, 40%);
  --text-tertiary: hsl(0, 0%, 60%);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.2);
  --shadow-primary: 0 8px 32px rgba(37, 68, 227, 0.2);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Premium Variables */
  --glass-background: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --neon-blue: #2544e3;
  --neon-purple: #6b7fff;
}

/* ============================================
   PREMIUM IMAGE FRAMES
   ============================================ */
.premium-frame {
  position: relative;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 2rem;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.1),
    inset 0 0 20px rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-frame::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    135deg,
    rgba(37, 68, 227, 0.3),
    transparent 40%,
    rgba(107, 127, 255, 0.3)
  );
  border-radius: inherit;
  z-index: 1;
  opacity: 0.5;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.premium-frame:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.15),
    0 0 30px rgba(37, 68, 227, 0.15),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.premium-frame:hover::before {
  opacity: 1;
}

.premium-frame .frame-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at center,
    rgba(37, 68, 227, 0.1),
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.premium-frame img {
  border-radius: 1.25rem;
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.premium-frame:hover img {
  transform: scale(1.05);
}

/* Corner Highlights */
.premium-frame::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1),
    transparent 70%
  );
  pointer-events: none;
  z-index: 3;
}

#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.6;
}

/* ============================================
   ANIMATION DEFINITIONS
   ============================================ */
@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -30px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

@keyframes float-steady {
  0%,
  100% {
    transform: translateY(0) scale(0.9);
  }

  50% {
    transform: translateY(-15px) scale(0.9);
  }
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 4rem;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.centered-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1rem;
}

.centered-content .section-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.centered-content .section-description {
  max-width: 100%;
}

.section-padding {
  padding: 100px 0;
}

.viewport-section,
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.viewport-section {
  justify-content: center;
  padding: 60px 0;
  width: 100%;
}

.viewport-section .container {
  width: 100%;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.5rem 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  font-family: "Outfit", sans-serif;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-image {
  height: 40px;
  width: auto;
  display: block;
}

.logo-text {
  background: linear-gradient(135deg, #2544e3, #6b7fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition-base);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2544e3, #6b7fff);
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--text-primary);
}

@media (min-width: 769px) {
  .desktop-hide {
    display: none !important;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #2544e3, #4d6aff);
  color: #ffffff !important;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 4px 16px rgba(37, 68, 227, 0.3);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4d6aff, #6b7fff);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 68, 227, 0.5);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 4px 16px rgba(37, 68, 227, 0.3);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--text-primary) !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.2);
}

.btn-secondary:active {
  transform: scale(0.98);
  background: rgba(0, 0, 0, 0.08);
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  color: var(--text-primary) !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-glass:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.btn-glass:active {
  transform: translateY(0) scale(0.98);
  background: rgba(0, 0, 0, 0.08);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ============================================
   APPLICATION MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-container {
  background: #ffffff;
  width: 100%;
  max-width: 650px;
  border-radius: 32px;
  padding: 3rem;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 90vh;
  overflow-y: auto;
  margin: auto;
}

.modal-overlay.active .modal-container {
  transform: translateY(0) scale(1);
}

/* Hide scrollbar for Chrome, Safari and Opera */
.modal-container::-webkit-scrollbar {
  width: 6px;
}

.modal-container::-webkit-scrollbar-track {
  background: transparent;
}

.modal-container::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(37, 68, 227, 0.05);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--primary);
  z-index: 10;
}

.modal-close:hover {
  background: var(--primary);
  color: white;
  transform: rotate(90deg);
}

.modal-header {
  margin-bottom: 2.5rem;
  padding-right: 3rem;
}

.modal-title {
  font-size: 2rem;
  font-family: "Outfit", sans-serif;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-weight: 800;
}

.modal-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 500;
}

.application-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.form-input,
.form-textarea {
  padding: 1rem 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
  background: rgba(37, 68, 227, 0.02);
  width: 100%;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(37, 68, 227, 0.1);
  transform: translateY(-1px);
}

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

.file-upload-wrapper {
  position: relative;
  border: 2px dashed rgba(37, 68, 227, 0.2);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  background: rgba(37, 68, 227, 0.01);
}

.file-upload-wrapper:hover {
  border-color: var(--primary);
  background: rgba(37, 68, 227, 0.04);
}

.file-upload-wrapper.dragover {
  border-color: var(--primary);
  background: rgba(37, 68, 227, 0.08);
  transform: scale(1.02);
}

.file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-upload-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.file-upload-icon {
  color: var(--primary);
  margin-bottom: 0.25rem;
  opacity: 0.8;
}

.file-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  display: none;
  word-break: break-all;
}

@media (max-width: 768px) {
  .modal-container {
    padding: 2rem;
    border-radius: 24px;
    max-height: 85vh;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .modal-close {
    top: 1rem;
    right: 1rem;
  }
}

@media (max-width: 480px) {
  .modal-container {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .modal-header {
    margin-bottom: 1.5rem;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding: 200px 0 120px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2.5rem;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-badge,
.badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(37, 68, 227, 0.08);
  border: 1px solid rgba(37, 68, 227, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-badge {
  animation: pulse 2s ease-in-out infinite;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(37, 68, 227, 0.4);
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  font-family: "Outfit", sans-serif;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.gradient-text {
  display: inline;
  color: var(--primary);
}

.hero-description {
  font-size: 1.35rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 800px;
}

.hero-cta,
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  padding-top: 1.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: "Outfit", sans-serif;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-tertiary);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(0, 0, 0, 0.1);
}

/* ============================================
   SECTION DEFAULTS
   ============================================ */
.features,
.products-section,
.security-section,
.about-section,
.cta-section {
  padding: 60px 0;
  position: relative;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  font-family: "Outfit", sans-serif;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  width: 100%;
  margin: 2.5rem auto 0;
}

/* Specific override for Quantum Advantage to be 2x2 */
.quantum-advantage-section .features-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  /* Reduced gap */
  max-width: 1200px;
  /* Wider container to allow cards to be shorter */
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
}

.quantum-advantage-section .feature-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  /* Center vertically for compact look */
  text-align: left;
  padding: 1.5rem;
  /* Reduced padding */
  gap: 1.25rem;
  height: 100%;
  /* Ensure uniform height */
}

.quantum-advantage-section .feature-icon {
  margin-bottom: 0;
  flex-shrink: 0;
  width: 56px;
  /* Slightly smaller icon */
  height: 56px;
}

.quantum-advantage-section .feature-title {
  margin-bottom: 0.25rem;
  /* Tighter title spacing */
  font-size: 1.25rem;
}

.quantum-advantage-section .feature-description {
  font-size: 0.95rem;
  /* Slightly smaller text */
  line-height: 1.5;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .quantum-advantage-section .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .quantum-advantage-section .feature-card {
    flex-direction: row;
    /* Keep horizontal on tablet if possible */
    align-items: center;
    text-align: left;
    padding: 1.25rem;
  }
}

@media (max-width: 600px) {
  .quantum-advantage-section .feature-card {
    flex-direction: column;
    text-align: center;
  }

  .quantum-advantage-section .feature-icon {
    margin-bottom: 1rem;
  }
}

.feature-card {
  width: 100%;
}

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

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

.features-grid.centered-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.features-grid.centered-grid .feature-card {
  max-width: 450px;
  flex: 0 1 450px;
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(37, 68, 227, 0.1),
    rgba(107, 127, 255, 0.05)
  );
  border: 1px solid rgba(37, 68, 227, 0.15);
  border-radius: var(--radius-xl);
  margin: 0 auto 2.5rem auto;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(
    135deg,
    rgba(37, 68, 227, 0.2),
    rgba(107, 127, 255, 0.1)
  );
  border-color: rgba(37, 68, 227, 0.3);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-family: "Outfit", sans-serif;
}

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

/* ============================================
   CTA SECTION
   ============================================ */
/* CTA Section - Absolute Centering */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-card {
  background: linear-gradient(
    135deg,
    rgba(37, 68, 227, 0.04),
    rgba(107, 127, 255, 0.04)
  );
  padding: 80px 60px;
  border-radius: 56px;
  border: 1px solid rgba(37, 68, 227, 0.1);
  text-align: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
}

.cta-content {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.04em;
}

.cta-description {
  font-size: 1.35rem;
  margin-bottom: 4rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

/* Refined Compact Feature Cards */
/* Refined Compact Feature Cards */
.feature-card {
  padding: 1.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(37, 68, 227, 0.15);
  border-radius: 32px;
  transition: all 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.02),
    0 1px 2px rgba(37, 68, 227, 0.03);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(37, 68, 227, 0.08),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(37, 68, 227, 0.4);
  background: #ffffff;
  box-shadow:
    0 40px 100px rgba(37, 68, 227, 0.1),
    0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  background: #ffffff;
  border: 1px solid rgba(37, 68, 227, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover .feature-icon {
  transform: translateY(-10px) scale(1.1) rotate(8deg);
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(37, 68, 227, 0.3);
}

.feature-card:hover .feature-icon svg * {
  stroke: #ffffff;
  transition: stroke 0.4s ease;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.feature-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 300px;
  opacity: 0.9;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
  padding: 60px 0;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  z-index: 1;
}

.products-content {
  width: 100%;
}

.products-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.products-actions {
  display: flex;
  margin-top: 2rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.product-card {
  width: 100%;
  margin: 0 auto;
}

/* Premium Product Cards */
.product-card {
  padding: 2.5rem 2rem;
  max-width: 340px;
  background: #ffffff;
  border: 1px solid rgba(37, 68, 227, 0.15);
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.02),
    0 2px 4px rgba(37, 68, 227, 0.02);
}

.product-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.product-card:hover::after {
  transform: scaleX(1);
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(37, 68, 227, 0.05),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(37, 68, 227, 0.45);
  box-shadow:
    0 40px 80px rgba(37, 68, 227, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.05);
}

.product-card .section-title,
.product-card .feature-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
}

.product-card .section-description {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.product-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.product-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  text-align: left;
}

.product-feature-item svg {
  flex-shrink: 0;
  color: var(--primary);
}

.products-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.products-image {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(37, 68, 227, 0.15));
}

/* ============================================
   SECURITY SECTION
   ============================================ */
.security-section {
  padding: 3rem 0;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1;
}

.security-content {
  width: 100%;
}

.security-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.security-image {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(37, 68, 227, 0.2));
}

.security-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ============================================
   ABOUT US SECTION
   ============================================ */
.about-section {
  padding: 2rem 0;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1;
}

.about-content {
  width: 100%;
}

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
}

.about-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
  filter: drop-shadow(0 20px 60px rgba(37, 68, 227, 0.3));
}

.about-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.about-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.about-mission {
  padding: 1.5rem;
  background: rgba(37, 68, 227, 0.05);
  border-left: 4px solid #2544e3;
  border-radius: var(--radius-md);
}

.about-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2544e3;
  margin-bottom: 0.75rem;
  font-family: "Outfit", sans-serif;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.02);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.value-item:hover {
  background: rgba(37, 68, 227, 0.05);
  transform: translateX(8px);
}

.value-item svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.value-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  font-family: "Outfit", sans-serif;
}

.value-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(37, 68, 227, 0.08),
    rgba(107, 127, 255, 0.05)
  );
  border-radius: var(--radius-lg);
  margin-top: 1rem;
}

.about-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.about-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #2544e3;
  font-family: "Outfit", sans-serif;
}

.about-stat-label {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  font-weight: 500;
}

.about-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(37, 68, 227, 0.2);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -25%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 68, 227, 0.15), transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: float 20s ease-in-out infinite;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 2rem 0 1rem;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(37, 68, 227, 0.1);
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(37, 68, 227, 0.05);
  color: var(--text-secondary);
  transition: all var(--transition-base);
  border: 1px solid rgba(37, 68, 227, 0.1);
}

.social-link:hover {
  background: #2544e3;
  color: #ffffff;
  border-color: #2544e3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 68, 227, 0.2);
}

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

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  font-family: "Outfit", sans-serif;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all var(--transition-base);
  position: relative;
  width: fit-content;
}

.footer-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #2544e3;
  transition: width var(--transition-base);
}

.footer-link:hover {
  color: #2544e3;
}

.footer-link:hover::after {
  width: 100%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

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

.footer-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(37, 68, 227, 0.05);
  border: 1px solid rgba(37, 68, 227, 0.1);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
}

.footer-badge svg {
  color: #2544e3;
}

/* ============================================
   SECURITY SECTION SPLIT LAYOUT
   ============================================ */
/* ============================================
   SECURITY SECTION SPLIT LAYOUT
   ============================================ */
.security-content.security-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  /* Increased gap for better breathing room */
  align-items: center;
  text-align: left;
}

.security-text-side {
  display: flex;
  flex-direction: column;
}

.section-description-detail {
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  opacity: 0.9;
  color: var(--text-secondary);
  line-height: 1.6;
  border-left: 3px solid var(--primary);
  padding-left: 1.5rem;
  /* Added accent border */
}

.security-features-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  /* Increased gap */
}

.feature-item-row {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 16px;
  transition: background 0.3s ease;
}

.feature-item-row:hover {
  background: rgba(37, 68, 227, 0.03);
  /* Subtle hover background */
}

.feature-icon-small {
  width: 56px;
  /* Slightly larger */
  height: 56px;
  background: linear-gradient(
    135deg,
    rgba(37, 68, 227, 0.1),
    rgba(37, 68, 227, 0.05)
  );
  /* Gradient bg */
  border: 1px solid rgba(37, 68, 227, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #2544e3;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(37, 68, 227, 0.05);
}

.feature-item-row:hover .feature-icon-small {
  background: linear-gradient(135deg, #2544e3, #4d6aff);
  color: #ffffff;
  transform: translateY(-3px) rotate(5deg);
  /* Added rotation */
  box-shadow: 0 8px 20px rgba(37, 68, 227, 0.25);
}

.feature-title-small {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-family: "Outfit", sans-serif;
}

.feature-desc-small {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .security-content.security-split-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .security-text-side {
    align-items: center;
  }

  .section-description-detail {
    border-left: none;
    border-top: 3px solid var(--primary);
    padding-left: 0;
    padding-top: 1.5rem;
  }

  .security-actions {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .feature-item-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 4rem;
  align-items: center;
  /* Changed from start to center for perfect alignment */
}

.about-text-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-family: "Outfit", sans-serif;
  position: relative;
  display: inline-block;
}

.about-text {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

/* Mission Section Redesign - Manifesto Style */
.mission-manifesto {
  padding-right: 2rem;
}

.manifesto-lead {
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 3rem;
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.02em;
}

.manifesto-lead strong {
  color: var(--primary);
  font-weight: 800;
}

.manifesto-capabilities {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.capability-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.capability-line {
  width: 3px;
  height: 60px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  flex-shrink: 0;
  border-radius: 2px;
}

.capability-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.capability-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.capability-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.capability-desc strong {
  color: var(--text-primary);
  font-weight: 700;
}

@media (max-width: 768px) {
  .manifesto-lead {
    font-size: 1.4rem;
  }

  .mission-manifesto {
    padding-right: 0;
  }
}

.about-stats-column {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.founder-card {
  background: rgba(255, 255, 255, 0.7);
  /* Improved glass effect */
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 2.5rem;
  border-radius: 24px;
  backdrop-filter: blur(20px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.05),
    0 1px 3px rgba(0, 0, 0, 0.05),
    inset 0 0 20px rgba(255, 255, 255, 0.5);
  /* Inner glow */
  transition: transform 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-5px);
}

.founder-header {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.founder-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  /* Gradient */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.4rem;
  box-shadow: 0 8px 16px rgba(37, 68, 227, 0.25);
}

.founder-name {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0;
  color: var(--text-primary);
  font-family: "Outfit", sans-serif;
}

.founder-role {
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.founder-bio {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.support-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.badge {
  padding: 0.6rem 1.2rem;
  background: rgba(37, 68, 227, 0.03);
  color: #2544e3;
  border: 1px solid rgba(37, 68, 227, 0.1);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: default;
}

.badge:hover {
  background: rgba(37, 68, 227, 0.1);
  transform: translateY(-2px);
  border-color: rgba(37, 68, 227, 0.3);
}

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

/* High-Impact Innovation Block */
.innovation-stack-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin: 2rem 0;
  position: relative;
  z-index: 1;
}

.innovation-card {
  background: rgba(20, 20, 30, 0.6);
  /* Darker for contrast */
  border: 1px solid rgba(37, 68, 227, 0.3);
  padding: 1.5rem 2rem;
  border-radius: 16px;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.innovation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(37, 68, 227, 0.3);
  border-color: rgba(37, 68, 227, 0.6);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  animation: scanline 3s infinite linear;
}

@keyframes scanline {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.innovation-text {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  /* White text for pop */
  font-family: "Outfit", sans-serif;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.innovation-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.innovation-plus {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  text-shadow: 0 0 10px rgba(37, 68, 227, 0.5);
  line-height: 1;
}

/* Market Stats Grid */
.market-stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.5rem;
  margin-top: 1rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: "Outfit", sans-serif;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 480px) {
  .market-stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-divider {
    width: 100%;
    height: 1px;
  }
}

.about-block {
  margin-bottom: 3rem;
  position: relative;
}

.about-block:last-child {
  margin-bottom: 0;
}

.highlight-box {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: linear-gradient(90deg, rgba(37, 68, 227, 0.05), transparent);
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
}

.highlight-text {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  font-family: "Outfit", sans-serif;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.text-accent {
  color: var(--primary);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.text-accent::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: rgba(37, 68, 227, 0.1);
  z-index: -1;
  transform: skewX(-10deg);
}

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

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
  .container {
    padding: 0 2rem;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .section-title,
  .cta-title {
    font-size: 3rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }

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

  .hero-description {
    max-width: 100%;
  }

  .hero-stats {
    justify-content: center;
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem 0;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .section-padding {
    padding: 60px 0;
  }

  .section-title,
  .cta-title {
    font-size: 2.25rem;
  }

  .section-description,
  .cta-description {
    font-size: 1.1rem;
  }

  .features,
  .products-section,
  .security-section,
  .about-section,
  .cta-section {
    padding: 80px 0;
  }

  .cta-card {
    padding: 40px 20px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn-large {
    width: 100%;
    justify-content: center;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .container {
    padding: 0 1.5rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .section-title,
  .cta-title {
    font-size: 1.85rem;
  }

  .hero-badge {
    font-size: 0.75rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .stat-value {
    font-size: 1.25rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column {
    align-items: center;
  }
}

/* Big Screens (1440px and above) */
@media (min-width: 1440px) {
  .logo {
    font-size: 1.75rem;
  }

  .logo-image {
    height: 54px;
  }
}

/* Ultra-Wide Screens (1920px and above) */
@media (min-width: 1920px) {
  .logo {
    font-size: 2.25rem;
  }

  .logo-image {
    height: 64px;
  }
}

/* ============================================
   NOISE TEXTURE OVERLAY
   ============================================ */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.15;
  z-index: 9999;
  mix-blend-mode: overlay;
}

/* ============================================
   SECURITY PAGE SPECIFIC STYLES
   ============================================ */
.hero-section {
  padding-top: 120px;
  padding-bottom: 40px;
}

.security-hero {
  padding-bottom: 2rem;
}

.tech-spec-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--primary-light);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.spec-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.spec-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: "Outfit", sans-serif;
}

.spec-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.spec-list li {
  font-size: 1rem;
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}

.spec-list li strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Tech Deep Dive Grid */
.tech-deep-dive {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
  width: 100%;
}

/* Capabilities Grid */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.cap-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 2rem;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cap-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
  transform: translateY(-10px);
}

.cap-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), #4169e1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 2rem;
}

.cap-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.cap-text {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 1.05rem;
}

/* Use Cases Grid */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.use-case-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 3rem;
  border-radius: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.use-case-card:hover {
  box-shadow: 0 20px 50px rgba(37, 68, 227, 0.08);
  transform: scale(1.02);
}

.use-case-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.use-case-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-family: "Outfit", sans-serif;
}

.use-case-text {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1.1rem;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scroll-padding-top: 80px;
  /* Offset for fixed navbar */
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Compliance Badges */
.compliance-badges {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-top: 4rem;
}

.comp-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.comp-icon {
  width: 100px;
  height: 100px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: white;
  font-size: 1.2rem;
  background: rgba(37, 68, 227, 0.1);
}

.comp-badge span {
  color: var(--text-gray);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ============================================
   BENTO GRID SYSTEM
   ============================================ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(150px, auto);
  gap: 1.5rem;
  margin-top: 2rem;
}

.bento-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 28px;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(15px);
  text-align: center;
}

.bento-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at top right,
    rgba(37, 68, 227, 0.03),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.bento-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(37, 68, 227, 0.15);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.04),
    0 0 0 1px rgba(37, 68, 227, 0.05);
}

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

/* Specific Spans */
.span-6 {
  grid-column: span 6;
}

.span-4 {
  grid-column: span 4;
}

.span-8 {
  grid-column: span 8;
}

.span-12 {
  grid-column: span 12;
}

.row-2 {
  grid-row: span 2;
}

.bento-title {
  font-size: 1.75rem;
  font-weight: 800;
  font-family: "Outfit", sans-serif;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.bento-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.bento-meta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.bento-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
}

.bento-spec-tag {
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem;
  background: rgba(37, 68, 227, 0.05);
  border-radius: 100px;
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .span-6,
  .span-4,
  .span-8 {
    grid-column: span 12;
  }
}

/* ============================================
   PRODUCTS PAGE THEME HARMONIZATION
   ============================================ */
.products-page .viewport-section {
  background: transparent !important;
}

.product-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  font-family: "Outfit", sans-serif;
  color: var(--text-primary);
}

.product-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.product-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 1rem 0;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.detail-heading {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.product-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.product-feature-item svg {
  margin-top: 3px;
  color: var(--primary);
}

.product-cta-link {
  text-decoration: none;
  margin-top: auto;
}

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

.lab-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.primary-feature {
  border: 1px solid rgba(37, 68, 227, 0.1) !important;
  box-shadow: 0 10px 40px rgba(37, 68, 227, 0.03);
}

.primary-feature .bento-title {
  font-size: 2.5rem;
}

.lab-badges {
  display: flex;
  gap: 1rem;
}

.lab-dashboard {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin: 1.5rem 0;
}

.dashboard-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.metric-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.metric-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-tertiary);
}

.metric-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stability-bar-container {
  width: 100%;
  height: 4px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.stability-progress {
  height: 100%;
  background: var(--primary-gradient);
  width: 94%;
  animation: progressPulse 4s infinite ease-in-out;
}

@keyframes progressPulse {
  0%,
  100% {
    opacity: 0.8;
    width: 94%;
  }

  50% {
    opacity: 1;
    width: 96%;
  }
}

.status-dot {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  box-shadow: 0 0 10px #10b981;
  animation: glowHeartbeat 2s infinite alternate;
}

@keyframes glowHeartbeat {
  from {
    opacity: 0.5;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1.2);
  }
}

@media (max-width: 1200px) {
  .lab-details-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.security-visual-side {
  display: flex;
  justify-content: center;
  align-items: center;
}

.security-page .tech-spec-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  transition: all 0.4s ease;
}

.security-page .security-page-card {
  border: 1px solid rgba(37, 68, 227, 0.1);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.security-page .security-page-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 68, 227, 0.3);
  box-shadow: 0 20px 40px rgba(37, 68, 227, 0.08);
}

.security-page .spec-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
}

.security-page .feature-title-small {
  color: var(--text-primary);
  font-weight: 700;
}

.security-page .feature-desc-small {
  color: var(--text-secondary);
  opacity: 0.9;
  line-height: 1.6;
}

.security-page .premium-frame {
  padding: 1.5rem;
  background: rgba(37, 68, 227, 0.03);
  border-radius: 40px;
  border: 1px dashed rgba(37, 68, 227, 0.15);
}

.security-page .section-title {
  color: var(--text-primary);
}

.security-page .section-description {
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .capabilities-grid,
  .use-cases-grid {
    grid-template-columns: 1fr;
  }

  .compliance-badges {
    gap: 2rem;
  }
}

/* ============================================
   LEGAL PAGES HARMONIZATION
   ============================================ */
.legal-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 28px;
  padding: 3rem;
  margin: 2rem 0;
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.legal-content h2 {
  font-family: "Outfit", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.legal-content h2::before {
  content: "";
  width: 6px;
  height: 1.5rem;
  background: var(--primary-gradient);
  border-radius: 4px;
  display: inline-block;
}

.legal-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.legal-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.legal-content li {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.legal-content li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
}

@media (max-width: 768px) {
  .legal-card {
    padding: 1.5rem;
    border-radius: 20px;
  }
}

/* ============================================
   SCROLL SNAP & VIEWPORT HARMONIZATION
   ============================================ */
.hero,
.quantum-advantage-section,
.features,
.industry-applications-section,
.products-section,
.security-section,
.about-section,
.cta-section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 80px 0;
}

.footer {
  scroll-snap-align: end;
}

/* Specific adjustments for end-of-page flow */
.about-section,
.cta-section {
  min-height: 80vh;
}

/* ============================================
   HERO RESPONSIVENESS
   ============================================ */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .hero-stats {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  /* Reset scroll snap on mobile for better scrolling experience */
  .hero,
  .quantum-advantage-section,
  .features,
  .industry-applications-section,
  .products-section,
  .security-section,
  .about-section,
  .cta-section {
    min-height: auto;
    height: auto;
    scroll-snap-align: none;
    padding: 60px 0;
  }

  html {
    scroll-snap-type: none;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-content {
    gap: 1.5rem;
  }

  .hero-title {
    font-size: 2.25rem;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 1rem;
    padding: 0 0.5rem;
  }

  .hero-stats {
    flex-direction: row;
    justify-content: space-evenly;
    gap: 0.25rem;
    /* Minimal gap to fit row */
    padding-top: 1.5rem;
    width: 100%;
    flex-wrap: nowrap;
    /* Force single line */
  }

  .stat-divider {
    width: 1px;
    height: 24px;
    /* Slightly shorter divider */
    background: rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 4px;
    align-self: center;
    flex-shrink: 0;
  }

  .stat-item {
    flex: 1;
    /* Distribute space equally */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 0;
    /* Allow shrinking */
  }

  .stat-value {
    font-size: 1.1rem;
    /* Slightly smaller to fit */
    white-space: nowrap;
  }

  .stat-label {
    font-size: 0.7rem;
    /* Smaller label text */
    line-height: 1.2;
    padding: 0 2px;
    word-wrap: break-word;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .hero-cta a {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-cta button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.85rem;
  }

  .stat-value {
    font-size: 1.25rem;
  }
}

/* ============================================
   GLOBAL & PRODUCTS RESPONSIVENESS
   ============================================ */
@media (max-width: 768px) {
  /* Global Container Adjustment */
  .container {
    padding: 0 1.5rem;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Products Section Specifics */
  .products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 0.5rem;
    margin-top: 1.5rem;
  }

  .product-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem 1.5rem;
  }

  .products-image {
    max-width: 80%;
    margin: 0 auto;
  }

  .products-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.btn-primary svg {
  pointer-events: none;
}
.btn-glass {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* ============================================
   SUPPORTING DOCUMENTS SECTION
   ============================================ */
.supporting-docs-section {
  min-height: auto;
  padding: 80px 0;
}

.supporting-docs-section .section-header {
  margin-bottom: 3rem;
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.doc-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.doc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 68, 227, 0.03), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.doc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 68, 227, 0.2);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(37, 68, 227, 0.1);
}

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

.doc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(37, 68, 227, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.doc-card:hover .doc-icon {
  transform: scale(1.1) rotate(-3deg);
}

.doc-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  background: rgba(37, 68, 227, 0.08);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: fit-content;
}

.doc-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: "Outfit", sans-serif;
  line-height: 1.35;
  margin: 0;
}

.doc-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  margin: 0;
}

.doc-action {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.5rem;
  transition: gap 0.2s ease;
}

.doc-card:hover .doc-action {
  gap: 0.75rem;
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
  .docs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .supporting-docs-section {
    padding: 60px 0;
  }
  .docs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .doc-card {
    padding: 1.5rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .docs-grid {
    grid-template-columns: 1fr;
  }
  .doc-card {
    padding: 1.5rem;
  }
}
