/* ============================================================
   KERDOS INFRASOFT — Landing Page Stylesheet
   Brand Color: #276efe
   ============================================================ */

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

:root {
  --brand: #276efe;
  --brand-light: #5b93ff;
  --brand-dark: #1457e0;
  --brand-glow: rgba(39, 110, 254, 0.35);
  --brand-ultra: rgba(39, 110, 254, 0.08);

  --bg: #060a12;
  --bg-surface: #0c1221;
  --bg-card: rgba(12, 20, 38, 0.85);
  --bg-card-hover: rgba(16, 28, 52, 0.95);

  --text-primary: #f0f4ff;
  --text-secondary: rgba(220, 232, 255, 0.65);
  --text-muted: rgba(180, 200, 240, 0.4);

  --glass-border: rgba(39, 110, 254, 0.2);
  --glass-border-hover: rgba(39, 110, 254, 0.55);

  --gold: #ffc857;
  --india-accent: #ff9933;
  --india-green: #138808;
  --china-red: #de2910;
  --china-gold: #ffde00;

  --font-main: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  cursor: default;
}

/* ============================================================
   LOADING SCREEN
   ============================================================ */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

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

.loading-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.loading-icon {
  width: 80px;
  height: 80px;
  animation: loadingSpin 2s linear infinite;
  filter: drop-shadow(0 0 20px var(--brand-glow));
}

.loading-core {
  animation: corePulse 1.5s ease-in-out infinite;
}

@keyframes loadingSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes corePulse {
  0%, 100% { opacity: 1; r: 7; }
  50% { opacity: 0.5; r: 10; }
}

.loading-text {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--text-primary);
  opacity: 0.9;
}

.loading-bar-wrap {
  width: 200px;
  height: 2px;
  background: rgba(39, 110, 254, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.loading-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand-dark), var(--brand), var(--brand-light));
  border-radius: 2px;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--brand);
}

/* ============================================================
   THREE.JS CANVAS
   ============================================================ */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ============================================================
   NOISE OVERLAY
   ============================================================ */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ============================================================
   MAIN WRAPPER
   ============================================================ */
.main-wrapper {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  position: relative;
  z-index: 10;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  animation: logoFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(39, 110, 254, 0.6));
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-4px) rotate(3deg); }
}

.logo-text {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--text-primary);
  background: linear-gradient(135deg, #fff 0%, var(--brand-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-pill {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--brand-light);
  background: rgba(39, 110, 254, 0.1);
  border: 1px solid rgba(39, 110, 254, 0.25);
  padding: 6px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 48px 80px;
  gap: 64px;
  position: relative;
}

.hero-content {
  text-align: center;
  max-width: 700px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 24px;
  background: rgba(39, 110, 254, 0.08);
  border: 1px solid rgba(39, 110, 254, 0.2);
  padding: 8px 20px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  animation: pulseDot 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 var(--brand-glow);
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(39, 110, 254, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(39, 110, 254, 0); }
}

.hero-title {
  display: flex;
  flex-direction: column;
  font-size: clamp(52px, 8vw, 108px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: titleReveal 0.9s var(--ease-out-expo) forwards;
}

.title-line.line-1 {
  background: linear-gradient(135deg, #ffffff 0%, #c8d8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation-delay: 0.1s;
}

.title-line.line-2 {
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand) 50%, var(--brand-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation-delay: 0.25s;
  filter: drop-shadow(0 0 40px rgba(39, 110, 254, 0.4));
}

@keyframes titleReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out-expo) 0.4s forwards;
}

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

/* ============================================================
   CARDS SCENE
   ============================================================ */
.cards-scene {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  max-width: 1000px;
  perspective: 2000px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 0.6s forwards;
}

/* ============================================================
   REGION CARD
   ============================================================ */
.region-card {
  flex: 1;
  cursor: pointer;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-spring), box-shadow 0.5s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.region-card:first-child {
  border-radius: 24px 8px 8px 24px;
}

.region-card:last-child {
  border-radius: 8px 24px 24px 8px;
}

.region-card:hover {
  z-index: 10;
  transform: scale(1.03) translateY(-8px) rotateY(var(--tilt-y, 0deg)) rotateX(var(--tilt-x, 0deg));
}

.card-india:hover {
  box-shadow:
    0 30px 80px rgba(39, 110, 254, 0.3),
    0 0 0 1px rgba(255, 153, 51, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.card-china:hover {
  box-shadow:
    0 30px 80px rgba(39, 110, 254, 0.3),
    0 0 0 1px rgba(222, 41, 16, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.card-inner {
  position: relative;
  height: 100%;
  min-height: 480px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: inherit;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(20px);
  transition: background 0.4s ease, border-color 0.4s ease;
  padding: 32px;
  gap: 24px;
}

.region-card:hover .card-inner {
  background: var(--bg-card-hover);
  border-color: var(--glass-border-hover);
}

/* Glow */
.card-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  top: -100px;
  right: -80px;
  pointer-events: none;
  transition: opacity 0.5s ease;
  opacity: 0.4;
}

.glow-india {
  background: radial-gradient(circle, rgba(255, 153, 51, 0.5) 0%, rgba(39, 110, 254, 0.3) 60%, transparent 100%);
}

.glow-china {
  background: radial-gradient(circle, rgba(222, 41, 16, 0.5) 0%, rgba(39, 110, 254, 0.3) 60%, transparent 100%);
}

.region-card:hover .card-glow {
  opacity: 0.8;
}

/* Noise texture inside card */
.card-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   GLOBE
   ============================================================ */
.card-globe-wrap {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: 24px;
  right: 24px;
}

.globe-3d {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(39, 110, 254, 0.2), rgba(6, 10, 18, 0.8));
  border: 1px solid rgba(39, 110, 254, 0.25);
  animation: globeRotate 12s linear infinite;
  overflow: hidden;
}

.globe-india {
  box-shadow:
    inset -8px -8px 20px rgba(255, 153, 51, 0.1),
    inset 8px 8px 20px rgba(39, 110, 254, 0.1),
    0 0 30px rgba(255, 153, 51, 0.2);
}

.globe-china {
  box-shadow:
    inset -8px -8px 20px rgba(222, 41, 16, 0.1),
    inset 8px 8px 20px rgba(39, 110, 254, 0.1),
    0 0 30px rgba(222, 41, 16, 0.2);
}

@keyframes globeRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.globe-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(39, 110, 254, 0.25);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.globe-ring.ring-1 { width: 100%; height: 100%; }
.globe-ring.ring-2 { width: 70%; height: 100%; border-color: rgba(39, 110, 254, 0.2); }
.globe-ring.ring-3 { width: 100%; height: 60%; border-color: rgba(39, 110, 254, 0.15); }

.globe-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  top: 35%;
  left: 40%;
  box-shadow: 0 0 10px var(--brand);
}

.globe-meridian {
  position: absolute;
  background: rgba(39, 110, 254, 0.2);
  top: 0; left: 50%;
  width: 1px;
  height: 100%;
  transform-origin: center;
}

.globe-meridian.m1 { transform: rotate(0deg); }
.globe-meridian.m2 { transform: rotate(60deg); }
.globe-meridian.m3 { transform: rotate(-60deg); }

/* ============================================================
   CARD BODY
   ============================================================ */
.card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 80px;
}

/* Flag India */
.card-flag {
  width: 48px;
  height: 32px;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.flag-stripe {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flag-stripe.s1 { background: #ff9933; }
.flag-stripe.s2 { background: white; }
.flag-stripe.s3 { background: #138808; }

.ashoka-chakra {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid #000080;
}

/* Flag China */
.flag-cn {
  width: 48px;
  height: 32px;
  border-radius: 4px;
  overflow: hidden;
}

.flag-red-bg {
  width: 100%;
  height: 100%;
  background: #de2910;
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 2px;
}

.star-group {
  position: relative;
  width: 100%;
  height: 100%;
}

.star {
  position: absolute;
  color: #ffde00;
  line-height: 1;
}

.main-star { font-size: 11px; top: 1px; left: 2px; }
.small-star { font-size: 5px; }
.small-star.s1 { top: 1px; left: 15px; }
.small-star.s2 { top: 4px; left: 18px; }
.small-star.s3 { top: 8px; left: 18px; }
.small-star.s4 { top: 11px; left: 15px; }

.card-region-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.card-domain {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #fff 0%, var(--brand-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.card-description {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ============================================================
   CARD CTA
   ============================================================ */
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-light);
  margin-top: 8px;
  padding: 10px 20px;
  background: rgba(39, 110, 254, 0.08);
  border: 1px solid rgba(39, 110, 254, 0.2);
  border-radius: 100px;
  transition: all 0.3s ease;
  width: fit-content;
  letter-spacing: 0.02em;
}

.region-card:hover .card-cta {
  background: rgba(39, 110, 254, 0.18);
  border-color: rgba(39, 110, 254, 0.5);
  color: white;
  box-shadow: 0 0 20px rgba(39, 110, 254, 0.2);
}

.cta-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease-spring);
}

.region-card:hover .cta-arrow {
  transform: translateX(4px);
}

/* ============================================================
   CARD FOOTER
   ============================================================ */
.card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(39, 110, 254, 0.1);
}

.card-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(39, 110, 254, 0.15);
}

/* ============================================================
   CORNER ACCENTS
   ============================================================ */
.card-corner-accent {
  position: absolute;
  width: 16px;
  height: 16px;
  pointer-events: none;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.region-card:hover .card-corner-accent { opacity: 1; }

.card-corner-accent.tl { top: 8px; left: 8px; border-top: 2px solid var(--brand); border-left: 2px solid var(--brand); border-radius: 3px 0 0 0; }
.card-corner-accent.tr { top: 8px; right: 8px; border-top: 2px solid var(--brand); border-right: 2px solid var(--brand); border-radius: 0 3px 0 0; }
.card-corner-accent.bl { bottom: 8px; left: 8px; border-bottom: 2px solid var(--brand); border-left: 2px solid var(--brand); border-radius: 0 0 0 3px; }
.card-corner-accent.br { bottom: 8px; right: 8px; border-bottom: 2px solid var(--brand); border-right: 2px solid var(--brand); border-radius: 0 0 3px 0; }

/* ============================================================
   CENTER DIVIDER
   ============================================================ */
.center-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  gap: 12px;
  position: relative;
  z-index: 5;
}

.divider-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(39, 110, 254, 0.4), transparent);
}

.divider-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid rgba(39, 110, 254, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
}

/* ============================================================
   SCROLL HINT
   ============================================================ */
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(39, 110, 254, 0.4);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.scroll-wheel {
  width: 3px;
  height: 6px;
  background: var(--brand);
  border-radius: 2px;
  animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(10px); opacity: 0; }
  100% { opacity: 0; }
}

.scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-strip {
  padding: 32px 48px;
  border-top: 1px solid rgba(39, 110, 254, 0.08);
  background: rgba(39, 110, 254, 0.03);
  backdrop-filter: blur(10px);
}

.strip-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.strip-icon {
  font-size: 20px;
  color: var(--brand);
  filter: drop-shadow(0 0 8px var(--brand-glow));
}

.strip-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.strip-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.strip-sub {
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.strip-sep {
  font-size: 24px;
  color: rgba(39, 110, 254, 0.2);
  line-height: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 32px 48px;
  border-top: 1px solid rgba(39, 110, 254, 0.08);
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--text-primary);
}

.footer-tagline {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-light);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: white;
  text-shadow: 0 0 20px rgba(39, 110, 254, 0.8);
}

.footer-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(39, 110, 254, 0.4);
}

.footer-copy {
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-body);
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor {
  width: 10px;
  height: 10px;
  background: var(--brand);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
  mix-blend-mode: screen;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(39, 110, 254, 0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  transition: width 0.35s ease, height 0.35s ease, border-color 0.2s ease;
}

.cursor.hovering {
  width: 14px;
  height: 14px;
  background: white;
}

.cursor-ring.hovering {
  width: 52px;
  height: 52px;
  border-color: rgba(39, 110, 254, 0.8);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 800px) {
  .site-header { padding: 20px 24px; }
  .logo-text { font-size: 13px; }
  .hero-section { padding: 24px 24px 60px; gap: 40px; }
  .cards-scene {
    flex-direction: column;
    max-width: 440px;
  }
  .region-card:first-child { border-radius: 24px 24px 8px 8px; }
  .region-card:last-child { border-radius: 8px 8px 24px 24px; }
  .center-divider {
    flex-direction: row;
    padding: 16px 0;
  }
  .divider-line { flex: 1; height: 1px; width: auto; background: linear-gradient(to right, transparent, rgba(39, 110, 254, 0.4), transparent); }
  .about-strip, .site-footer { padding: 24px; }
  .footer-content { flex-direction: column; align-items: flex-start; }
  .strip-sep { display: none; }
  .cursor, .cursor-ring { display: none; }
}

@media (max-width: 500px) {
  .hero-title { font-size: 48px; }
  .card-inner { min-height: 380px; padding: 24px; }
  .card-domain { font-size: 26px; }
}
