/* =========================================
   RUNNWAY — landing.css
   Matching AI Unlock UI/UX 100%
   ========================================= */

html { scroll-behavior: smooth; }
body.landing-page {
  background: #000;
  color: #fff;
  font-family: 'Inter', 'Noto Sans Thai', sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0; padding: 0;
  display: block;
  height: auto;
}

/* Utils */
.glass-panel {
  background: #080808;
  border: 1px solid #1a1a1a;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

/* Nav */
.landing-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-left, .nav-right { display: flex; align-items: center; gap: 24px; }
.nav-link { color: #fff; text-decoration: none; font-size: 16px; font-weight: 600; opacity: 0.8; transition: all 0.2s; padding: 6px 12px; border-radius: 8px; }
.nav-link:hover { opacity: 1; background: rgba(255,255,255,0.08); transform: translateY(-1px); }
.nav-btn { background: transparent; border: 1px solid var(--accent-purple); color: var(--accent-purple); padding: 8px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.nav-btn:hover { background: var(--accent-purple); color: #fff; }
.nav-btn-solid { background: var(--accent-purple); color: #fff; padding: 8px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; text-decoration: none; border: 1px solid var(--accent-purple); transition: filter 0.2s; }
.nav-btn-solid:hover { filter: brightness(1.2); }

/* Hero Banner */
.hero {
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
  padding-top: 80px; /* navbar offset */
}
.hero-content {
  flex: 1;
  padding: 80px 0 80px 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 10;
}
.hero-badge {
  display: inline-flex;
  border: 1px solid rgba(124, 58, 237, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--accent-purple);
  margin-bottom: 24px;
  width: fit-content;
}
.hero-title {
  font-size: 80px;
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 24px;
}
.hero-title span { color: var(--accent-purple); }
.hero-subtitle {
  font-size: 18px;
  color: #aaa;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 20px; }

/* Premium Glowing Capsule Primary Button */
.btn-neon {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  color: #fff;
  padding: 6px 6px 6px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
  border: 1px solid rgba(124, 58, 237, 0.35);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  height: 52px;
  box-sizing: border-box;
  cursor: pointer;
}
.btn-neon .btn-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #0d0d0f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-neon .btn-icon-circle i {
  width: 16px;
  height: 16px;
  stroke-width: 2.5px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-neon:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 8px 30px rgba(124, 58, 237, 0.5),
    0 0 15px rgba(124, 58, 237, 0.25);
  border-color: rgba(124, 58, 237, 0.5);
}
.btn-neon:hover .btn-icon-circle {
  transform: translateX(2px) scale(1.05);
  background: #fff;
  color: #000;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}
.btn-neon:hover .btn-icon-circle i {
  animation: arrowSlide 0.6s infinite alternate ease-in-out;
}

/* Premium Dark Translucent Capsule Outline Button */
.btn-outline {
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  padding: 6px 28px 6px 6px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  height: 52px;
  box-sizing: border-box;
  cursor: pointer;
}
.btn-outline .btn-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-outline .btn-icon-circle i {
  width: 16px;
  height: 16px;
  stroke-width: 2.5px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-outline:hover {
  transform: translateY(-2px) scale(1.02);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(124, 58, 237, 0.45);
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.4),
    0 0 15px rgba(124, 58, 237, 0.15);
}
.btn-outline:hover .btn-icon-circle {
  transform: scale(1.05);
  box-shadow: 
    0 0 15px rgba(124, 58, 237, 0.6),
    inset 0 0 8px rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
}
.btn-outline:hover .btn-icon-circle i {
  transform: scale(1.1) rotate(15deg);
}

/* Unified Premium Statistics Card Panel */
.hero-stats-panel {
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 16px 28px;
  margin-top: 50px;
  gap: 28px;
  width: fit-content;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-stats-panel:hover {
  border-color: rgba(124, 58, 237, 0.2);
  box-shadow: 
    0 15px 50px rgba(124, 58, 237, 0.08),
    0 10px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s ease;
}
.hero-stat-item:hover {
  transform: translateY(-1px) scale(1.02);
}
.hero-stat-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-purple);
  box-shadow: inset 0 0 10px rgba(124, 58, 237, 0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-stat-icon-wrapper i {
  width: 18px;
  height: 18px;
  stroke-width: 2.2px;
  transition: transform 0.3s ease;
}
.hero-stat-item:hover .hero-stat-icon-wrapper {
  background: rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.45);
  color: #fff;
  box-shadow: 
    0 0 15px rgba(124, 58, 237, 0.4),
    inset 0 0 10px rgba(124, 58, 237, 0.1);
}
.hero-stat-item:hover .hero-stat-icon-wrapper i {
  transform: rotate(5deg) scale(1.08);
}
.hero-stat-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat-number {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
  transition: color 0.3s ease;
}
.hero-stat-item:hover .hero-stat-number {
  color: #a78bfa;
}
.hero-stat-text {
  font-size: 12px;
  color: #888;
  font-weight: 500;
}
.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.06);
}

/* Animations */
@keyframes arrowSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(4px); }
}

.hero-image {
  flex: 1;
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 55%;
  z-index: 1;
  animation: floatSubtle 8s ease-in-out infinite;
  overflow: hidden; /* Frame clipping for premium zooming effect */
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #000 0%, transparent 40%);
  z-index: 2;
}
.hero-image::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(124, 58, 237, 0.8),
    #ffffff,
    rgba(124, 58, 237, 0.8),
    transparent
  );
  box-shadow: 
    0 0 8px rgba(124, 58, 237, 0.8),
    0 0 15px rgba(124, 58, 237, 0.5);
  z-index: 3;
  animation: hologramScan 5s linear infinite;
  pointer-events: none;
  opacity: 0;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: contrast(1.1) saturate(1.1);
  animation: heroZoomOutLoop 24s ease-in-out infinite; /* Continuous cinematic breathing zoom */
}

@keyframes floatSubtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes heroZoomOutLoop {
  0%, 100% { transform: scale(1.08); }
  50% { transform: scale(1.01); }
}
@keyframes hologramScan {
  0% { top: 0%; opacity: 0; }
  5% { opacity: 0.8; }
  95% { opacity: 0.8; }
  100% { top: 100%; opacity: 0; }
}

/* Sections Global */
.section { padding: 60px 0; max-width: 1200px; margin: 0 auto; position: relative; }

/* Scoped Vertical Scanlines (Enabled by Admin Setting) */
.hologram-vertical-enabled .section::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    rgba(124, 58, 237, 0) 0%,
    rgba(124, 58, 237, 0.15) 10%,
    rgba(124, 58, 237, 0.15) 90%,
    rgba(124, 58, 237, 0) 100%
  );
  z-index: 5;
  pointer-events: none;
}

.hologram-vertical-enabled .section::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 120px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(124, 58, 237, 0.8),
    #ffffff,
    rgba(124, 58, 237, 0.8),
    transparent
  );
  box-shadow: 
    0 0 10px rgba(124, 58, 237, 0.8),
    0 0 20px rgba(124, 58, 237, 0.5),
    0 0 30px rgba(124, 58, 237, 0.3);
  z-index: 6;
  pointer-events: none;
  animation: hologramSideScan 5s linear infinite;
  opacity: 0;
}

/* Alternating Sides (Odd = Left, Even = Right) */
.hologram-vertical-enabled .section:nth-of-type(odd)::before {
  left: 15px;
}
.hologram-vertical-enabled .section:nth-of-type(odd)::after {
  left: 14px;
}

.hologram-vertical-enabled .section:nth-of-type(even)::before {
  right: 15px;
}
.hologram-vertical-enabled .section:nth-of-type(even)::after {
  right: 14px;
}

@keyframes hologramSideScan {
  0% {
    top: -120px;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* Horizontal Laser Scanline (Enabled by Admin Setting) */
.hologram-horizontal-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(124, 58, 237, 0.8),
    #ffffff,
    rgba(124, 58, 237, 0.8),
    transparent
  );
  box-shadow: 
    0 0 8px rgba(124, 58, 237, 0.8),
    0 0 15px rgba(124, 58, 237, 0.5);
  z-index: 6;
  pointer-events: none;
  animation: hologramHorizontalScan 5s linear infinite;
  opacity: 0;
}

@keyframes hologramHorizontalScan {
  0% {
    top: 0%;
    opacity: 0;
  }
  5% {
    opacity: 0.8;
  }
  95% {
    opacity: 0.8;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* Matrix Digital Rain Background (Enabled by Admin Setting) */
.matrix-bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.13; /* Increased opacity as requested for more clarity */
  mix-blend-mode: screen;
}

.section-header { text-align: center; margin-bottom: 40px; }
.section-subtitle { color: var(--accent-purple); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.section-title { font-size: 42px; font-weight: 800; }
.section-title span { color: var(--accent-purple); }

/* =========================================
   Services Section (AI Tools, Apps, Web)
   ========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 20px;
  margin-top: 40px;
  position: relative;
}

.service-card {
  position: relative;
  height: 480px;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease, box-shadow 0.5s ease;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

/* Background Image Container & Scale Transition */
.service-card-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12); /* Made scale 20% smaller (from 1.4 down to 1.12) to show more boundaries */
  transform-origin: center center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease, opacity 0.5s ease;
  will-change: transform;
  filter: brightness(0.9) contrast(0.9); /* Dimmed brightness & contrast slightly to reduce busy details */
  opacity: 0.65; /* Fades the background illustration to keep the foreground clean and highly readable */
}

/* Zoom out to original scale(1.0) and enhance glow on hover */
.service-card:hover .service-card-img {
  transform: scale(1.0);
  filter: brightness(1.15) contrast(1.05); /* Soft, beautiful purple glow on hover */
  opacity: 0.85; /* Reveals more details and vibrancy on hover */
}

/* Overlay gradient for dark premium backdrop contrast */
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.75) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Golden/Yellow Floating Badge */
.service-badge-floating {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  background: #ffbe1a;
  color: #000;
  font-weight: 800;
  font-size: 12.5px;
  padding: 6px 14px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-badge-floating {
  transform: scale(1.05) translateY(-2px);
}

/* Translucent Bottom Glass Content Card */
.service-card-content {
  position: relative;
  z-index: 3;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 24px;
  margin: 0 20px 20px 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease, border-color 0.4s ease;
}

.service-card:hover .service-card-content {
  background: rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* Content Header with small theme icon + category name */
.service-content-header {
  color: var(--accent-purple); /* Main website purple color */
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-content-header i,
.service-content-header svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.2px;
}

/* Card Header Title */
.service-card-title {
  font-size: 21px;
  font-weight: 800;
  color: var(--accent-purple); /* Main website purple title text */
  margin: 0 0 10px 0;
  line-height: 1.25;
  transition: filter 0.3s ease;
}

/* Description Text */
.service-card-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  margin: 0;
  padding-right: 48px; /* Avoid overlapping the bottom-right circle button */
}

/* Bottom-Right Circular Button */
.service-btn-circle {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-purple); /* Purple background by default */
  color: #ffffff; /* White icon by default */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(124, 58, 237, 0.3); /* Purple ambient glow shadow */
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  z-index: 4;
}

.service-btn-circle i,
.service-btn-circle svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Button & Arrow Hover Animations */
.service-card:hover .service-btn-circle {
  background: #ffffff; /* Turn white on card hover */
  color: var(--accent-purple); /* Purple arrow icon on hover */
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.5); /* Stronger purple glow on hover */
}

.service-card:hover .service-btn-circle i,
.service-card:hover .service-btn-circle svg {
  transform: rotate(-45deg);
}

.service-btn-circle:hover {
  background: #ffffff !important;
  color: var(--accent-purple) !important;
  transform: scale(1.15) !important;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.7) !important;
}

/* Pricing Grid */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding: 0 20px; }
.price-card { 
  padding: 32px 24px; 
  border-radius: 20px; 
  border: 1px solid #1a1a1a; 
  background: #0a0a0a; 
  position: relative; 
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
.price-card.featured {
  border-color: var(--accent-purple);
  background: #0f0f0f;
  box-shadow: 0 0 40px rgba(124,58,237,0.1);
  transform: scale(1.02);
}
.price-card.featured:hover {
  border-color: var(--accent-purple);
  transform: scale(1.02) translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 60px rgba(124,58,237,0.25);
}
.price-tag {
  position: absolute; top: -12px; right: 24px;
  background: var(--accent-purple); color: #fff;
  padding: 4px 12px; border-radius: 12px; font-size: 10px; font-weight: 700;
}
.price-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px; transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.price-card:hover .price-icon { transform: scale(1.15) rotate(5deg); }
.price-card.featured .price-icon { background: rgba(124,58,237,0.1); color: var(--accent-purple); }
.price-name { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.price-val { font-size: 48px; font-weight: 900; margin-bottom: 8px; }
.price-val span { font-size: 16px; font-weight: 500; color: #666; }
.price-features { list-style: none; margin: 32px 0; }
.price-features li { display: flex; gap: 12px; font-size: 15px; color: #aaa; margin-bottom: 16px; }
.price-features li i { color: var(--accent-purple); flex-shrink: 0; margin-top: 2px; }

/* Updates Grid (Banners) */
.section-header-left { text-align: left; margin-bottom: 40px; padding: 0 20px; }
.banner-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 0 20px; }
.banner-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #1a1a1a;
  background: #0a0a0a;
  transition: transform 0.2s;
  cursor: pointer;
}
.banner-card:hover { transform: translateY(-4px); border-color: var(--accent-purple); }
.banner-img { width: 100%; aspect-ratio: 16/9; position: relative; }
.banner-img img { width: 100%; height: 100%; object-fit: cover; }
.banner-tag { position: absolute; top: 10px; left: 10px; background: var(--accent-purple); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 4px; }
.banner-content { padding: 16px; }
.banner-title { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.banner-meta { font-size: 11px; color: #666; }
.banner-meta span { color: var(--accent-purple); }

/* Everything Grid (Features) */
.feature-6-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 0 20px;
}

.feature-card-wide {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 24px;
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.feature-card-wide:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 
    0 15px 40px rgba(124, 58, 237, 0.12),
    0 8px 30px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.fc-icon-wrap {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 16px;
  background: rgba(124, 58, 237, 0.04);
  border: 1px solid rgba(124, 58, 237, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: inset 0 0 15px rgba(124, 58, 237, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card-wide:hover .fc-icon-wrap {
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.45);
  box-shadow: 
    0 0 20px rgba(124, 58, 237, 0.25),
    inset 0 0 15px rgba(124, 58, 237, 0.1);
  transform: scale(1.08);
}

.hologram-grid {
  position: absolute;
  inset: 0;
  background-size: 8px 8px;
  background-image: 
    linear-gradient(to right, rgba(124, 58, 237, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(124, 58, 237, 0.06) 1px, transparent 1px);
  z-index: 1;
  opacity: 0.8;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.feature-card-wide:hover .hologram-grid {
  background-size: 6px 6px;
  opacity: 1;
}

.fc-outline-icon {
  width: 32px;
  height: 32px;
  color: rgba(124, 58, 237, 0.7);
  stroke-width: 1.5px;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.3));
}

.feature-card-wide:hover .fc-outline-icon {
  color: #ffffff;
  transform: scale(1.1);
  filter: drop-shadow(0 0 12px rgba(124, 58, 237, 0.8));
}

.hologram-scanner {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(124, 58, 237, 0.9) 20%,
    #ffffff 50%,
    rgba(124, 58, 237, 0.9) 80%,
    transparent
  );
  box-shadow: 
    0 0 8px rgba(124, 58, 237, 0.8),
    0 0 15px rgba(124, 58, 237, 0.5);
  z-index: 3;
  pointer-events: none;
  will-change: transform;
  animation: iconHologramScan 2.4s linear infinite;
}

.feature-card-wide:hover .hologram-scanner {
  animation-duration: 1.2s;
  background: linear-gradient(
    to right,
    transparent,
    var(--accent-pink) 20%,
    #ffffff 50%,
    var(--accent-pink) 80%,
    transparent
  );
  box-shadow: 
    0 0 10px var(--accent-pink),
    0 0 20px var(--accent-pink);
}

@keyframes iconHologramScan {
  0% {
    top: -5%;
    opacity: 0;
  }
  10%, 90% {
    opacity: 1;
  }
  100% {
    top: 105%;
    opacity: 0;
  }
}

.fc-content {
  flex: 1;
}

.fc-content h3 {
  font-size: 19px;
  font-weight: 800;
  margin: 0 0 8px 0;
  color: #fff;
  transition: color 0.3s ease;
}

.feature-card-wide:hover .fc-content h3 {
  color: #a78bfa;
}

.fc-content p {
  font-size: 14.5px;
  color: #888;
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s ease;
}

.feature-card-wide:hover .fc-content p {
  color: #ccc;
}

/* Workflow */
.workflow-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 0 20px; }
.wf-card { background: #0a0a0a; border: 1px solid #1a1a1a; border-radius: 20px; padding: 24px; position: relative; }
.wf-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.05); color: #fff; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.wf-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.wf-card p { font-size: 15px; color: #888; line-height: 1.6; }
.wf-num { position: absolute; top: 24px; right: 24px; font-size: 48px; font-weight: 900; color: rgba(255,255,255,0.05); line-height: 1; }

/* Company */
.company-card { margin: 0 20px; background: #0a0a0a; border: 1px solid #1a1a1a; border-radius: 24px; display: flex; overflow: hidden; }
.comp-left { flex: 1; padding: 60px; }
.comp-subtitle { font-size: 10px; color: #666; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.comp-title { font-size: 32px; font-weight: 800; margin-bottom: 24px; }
.comp-title span { color: var(--accent-purple); }
.comp-desc { font-size: 16px; color: #888; line-height: 1.6; margin-bottom: 32px; }
.comp-checks { display: flex; flex-direction: column; gap: 16px; }
.comp-check { display: flex; align-items: center; gap: 10px; font-size: 15px; color: #aaa; }
.comp-check i { color: var(--accent-purple); }
.comp-right { width: 350px; background: #111; position: relative; }
.comp-right img { width: 100%; height: 100%; object-fit: cover; }
.comp-name { position: absolute; bottom: 20px; left: 20px; background: rgba(0,0,0,0.8); backdrop-filter: blur(10px); padding: 8px 16px; border-radius: 12px; font-size: 13px; font-weight: 700; border: 1px solid rgba(255,255,255,0.1); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 0 20px; }
.gal-item { border-radius: 16px; overflow: hidden; aspect-ratio: 4/5; border: 1px solid #1a1a1a; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gal-item:hover img { transform: scale(1.05); }

/* Review */
.review-box { max-width: 600px; margin: 0 auto; background: #0a0a0a; border: 1px solid #1a1a1a; border-radius: 24px; padding: 48px; text-align: center; }
.stars { display: flex; justify-content: center; gap: 4px; color: var(--accent-purple); margin-bottom: 20px; }
.review-title { font-size: 28px; font-weight: 800; margin-bottom: 20px; }
.review-title span { color: var(--accent-purple); }
.review-desc { font-size: 16px; color: #888; margin-bottom: 32px; line-height: 1.6; font-style: italic; }

/* Footer */
.landing-footer {
  position: relative;
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 80px 48px 40px 48px;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 24px 24px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: none;
  overflow: hidden;
  box-shadow: 
    0 -10px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

/* Pulsing top glow scanner */
.footer-glow-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(124, 58, 237, 0.8) 25%,
    #ffffff 50%,
    rgba(124, 58, 237, 0.8) 75%,
    transparent
  );
  background-size: 200% 100%;
  animation: footerGlowScroll 6s linear infinite;
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.4);
}

@keyframes footerGlowScroll {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
}

.footer-desc-text {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 320px;
}

/* Active System Status Badge */
.footer-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
  padding: 6px 12px;
  border-radius: 12px;
  width: fit-content;
}

.status-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: statusBreathe 2s infinite ease-in-out;
}

@keyframes statusBreathe {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.1); box-shadow: 0 0 12px #10b981; }
}

.status-label {
  font-family: monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #10b981;
  text-shadow: 0 0 6px rgba(16, 185, 129, 0.3);
}

.footer-nav-col h4 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #fff;
  margin: 0 0 20px 0;
  text-transform: uppercase;
}

.footer-menu-link {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #888;
  text-decoration: none;
  margin-bottom: 12px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.link-bullet {
  width: 0;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-purple);
  margin-right: 0;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-menu-link:hover {
  color: #ffffff;
  transform: translateX(6px);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.footer-menu-link:hover .link-bullet {
  width: 4px;
  margin-right: 8px;
  opacity: 1;
  box-shadow: 0 0 6px var(--accent-purple);
}

/* Newsletter Input & Buttons */
.footer-news-col h4 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #fff;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}

.news-subtitle {
  font-size: 12px;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.5;
}

.news-input-wrap {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.news-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 14px;
  color: #fff;
  font-size: 13px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-input:focus {
  outline: none;
  border-color: rgba(124, 58, 237, 0.4);
  background: rgba(124, 58, 237, 0.02);
  box-shadow: 
    0 0 12px rgba(124, 58, 237, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.news-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-purple);
  border: none;
  border-radius: 12px;
  padding: 0 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25);
}

.news-btn i {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.news-btn:hover {
  background: #6d28d9;
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.4);
  transform: translateY(-1px);
}

.news-btn:hover i {
  transform: translateX(3px);
}

/* Social icons matrix */
.footer-social-matrix {
  display: flex;
  gap: 12px;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #666;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icon-btn i {
  width: 16px;
  height: 16px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icon-btn:hover {
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.4);
  color: #ffffff;
  transform: translateY(-3px) rotate(8deg);
  box-shadow: 
    0 8px 20px rgba(124, 58, 237, 0.25),
    0 0 10px rgba(124, 58, 237, 0.1);
}

.social-icon-btn:hover i {
  transform: scale(1.1);
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.8));
}

/* Footer Base Bar */
.footer-base-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 32px;
  position: relative;
}

.copyright-text {
  font-size: 12px;
  color: #555;
  margin: 0;
}

.system-time-stamp {
  font-family: monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #444;
}

.active-stamp {
  transition: color 0.3s ease;
}

.footer-base-bar:hover .active-stamp {
  color: var(--accent-purple);
  text-shadow: 0 0 8px rgba(124, 58, 237, 0.4);
}

/* Scroll To Top Glass Trigger */
.scroll-top-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.scroll-top-btn i {
  width: 18px;
  height: 18px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-top-btn:hover {
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.4);
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 
    0 10px 20px rgba(124, 58, 237, 0.2),
    0 0 15px rgba(124, 58, 237, 0.15);
}

.scroll-top-btn:hover i {
  transform: translateY(-2px);
}

/* Language Toggle Switch */
.lang-toggle {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border-radius: 30px;
  padding: 4px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  width: 76px;
  height: 34px;
  margin-right: 20px;
}
.lang-toggle-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 34px;
  height: 24px;
  background: var(--accent-purple);
  border-radius: 20px;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 2px 8px rgba(124,58,237,0.4);
}
.lang-toggle.en-active .lang-toggle-slider {
  transform: translateX(34px);
}
.lang-toggle-opt {
  position: relative;
  z-index: 2;
  width: 34px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: #888;
  transition: color 0.3s;
  pointer-events: none;
}
.lang-toggle:not(.en-active) .lang-opt-th,
.lang-toggle.en-active .lang-opt-en {
  color: #fff;
}

/* Hide Mobile Elements on Desktop */
.hamburger, .mobile-menu-overlay, .mobile-bottom-nav { display: none; }

/* =========================================
   Tablet Responsive Rules (max-width: 1024px)
   ========================================= */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .services-grid .service-card:last-child {
    grid-column: span 2;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .pricing-grid .price-card:last-child {
    grid-column: span 2;
  }
}

/* =========================================
   Mobile Responsive Rules (max-width: 768px)
   ========================================= */
@media (max-width: 768px) {
  body.landing-page { padding-bottom: 90px; }
  
  /* Navigation */
  .landing-nav { 
    padding: 12px 20px; 
    height: 70px; 
    flex-wrap: nowrap;
    gap: 0;
  }
  .nav-left, .nav-right { width: auto; justify-content: flex-end; gap: 0; }
  .nav-left { flex: 1; justify-content: flex-start; }
  
  /* Hide Desktop Nav Elements */
  .nav-left .nav-link, .nav-right .lang-toggle, .nav-right .nav-link, .nav-right .nav-btn-solid { display: none; }
  
  /* Hamburger */
  .hamburger { display: flex; flex-direction: column; justify-content: space-between; width: 24px; height: 18px; cursor: pointer; z-index: 1001; }
  .hamburger span { display: block; width: 100%; height: 2px; background: #fff; transition: all 0.3s; border-radius: 2px; }
  .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  
  /* Mobile Overlay */
  .mobile-menu-overlay { display: block; position: fixed; top: 0; left: 0; right: 0; height: 100vh; background: rgba(10,10,10,0.95); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); z-index: 1000; opacity: 0; pointer-events: none; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); transform: translateY(-20px); }
  .mobile-menu-overlay.active { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-menu-content { padding: 120px 40px 40px; display: flex; flex-direction: column; align-items: center; }
  .mobile-menu-content .lang-toggle { display: flex; }
  
  /* Mobile Bottom Nav */
  .mobile-bottom-nav { 
    display: flex; position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); 
    background: rgba(20,20,20,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 40px; padding: 6px; gap: 2px; z-index: 999;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  }
  .mb-nav-item { 
    display: flex; align-items: center; justify-content: center; padding: 10px 8px; border-radius: 30px;
    color: #888; text-decoration: none; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: transparent; overflow: hidden; height: 44px; box-sizing: border-box;
  }
  .mb-nav-icon { display: flex; align-items: center; justify-content: center; }
  .mb-nav-icon i { width: 20px; height: 20px; }
  .mb-nav-text { font-size: 13px; font-weight: 600; max-width: 0; opacity: 0; transition: all 0.4s ease; white-space: nowrap; overflow: hidden; }
  
  .mb-nav-item.active { background: var(--accent-purple); color: #fff; padding: 10px 14px; }
  .mb-nav-item.active .mb-nav-text { max-width: 100px; opacity: 1; margin-left: 6px; }
  
  /* Hero Section */
  .hero { flex-direction: column; padding-top: 100px; text-align: center; }
  .hero-content { padding: 20px; align-items: center; }
  .hero-title { font-size: 42px; margin-bottom: 16px; }
  .hero-stats-panel {
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
    width: 100%;
    max-width: 100%;
    padding: 16px 20px;
    border-radius: 16px;
  }
  .hero-stat-divider { display: none; }
  .hero-stat-item { flex: 1 1 120px; justify-content: center; }
  
  .hero-image { 
    position: relative; 
    width: 100%; 
    height: 350px; 
    order: -1; 
    animation: none;
  }
  .hero-image::before {
    background: linear-gradient(to bottom, transparent 40%, #000 100%);
  }
  .hero-image::after {
    display: none; /* Disable hologram scan on mobile to save performance */
  }

  /* Typography & Globals */
  .section { padding: 40px 0; }
  .section-title { font-size: 28px; }
  
  /* Responsive Hologram Adjustments */
  .hologram-vertical-enabled .section:nth-of-type(odd)::before { left: 8px; }
  .hologram-vertical-enabled .section:nth-of-type(odd)::after { left: 7px; }
  .hologram-vertical-enabled .section:nth-of-type(even)::before { right: 8px; }
  .hologram-vertical-enabled .section:nth-of-type(even)::after { right: 7px; }
  
  /* Grids */
  .services-grid,
  .pricing-grid, 
  .banner-grid, 
  .feature-6-grid, 
  .workflow-row, 
  .gallery-grid { 
    grid-template-columns: 1fr; 
    gap: 24px;
  }
  .services-grid .service-card:last-child,
  .pricing-grid .price-card:last-child {
    grid-column: span 1;
  }
  
  /* Feature Wide Cards */
  .feature-card-wide {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
  }
  
  /* Company Card */
  .company-card { flex-direction: column; margin: 0 16px; }
  .comp-left { padding: 30px 20px; text-align: center; }
  .comp-right { width: 100%; height: 200px; }
  .comp-checks { align-items: center; }
  
  /* Review */
  .review-box { padding: 30px 20px; margin: 0 16px; }
  .review-title { font-size: 20px; }
  
  /* Footer */
  .landing-footer {
    padding: 60px 20px 30px 20px;
    border-radius: 20px 20px 0 0;
  }
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    justify-items: center;
  }
  .footer-brand-col {
    align-items: center;
  }
  .footer-desc-text {
    max-width: 100%;
  }
  .footer-menu-link {
    justify-content: center;
  }
  .footer-menu-link:hover {
    transform: translateY(-2px);
  }
  .footer-menu-link:hover .link-bullet {
    display: none;
  }
  .news-input-wrap {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }
  .footer-social-matrix {
    justify-content: center;
    margin-top: 16px;
  }
  .footer-base-bar {
    flex-direction: column;
    gap: 20px;
    padding-top: 24px;
    text-align: center;
    width: 100%;
  }
}

/* Hero Title Typing and Premium Gradient Styling */
.typing-container {
  display: inline-block;
  vertical-align: bottom;
  min-height: 1.2em;
  position: relative;
}

.typing-gradient {
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  text-shadow: 0 0 40px rgba(192, 38, 211, 0.2);
}

.typing-caret {
  display: inline-block;
  font-weight: 900;
  color: var(--accent-pink);
  animation: blinkCaret 0.8s step-end infinite;
  margin-left: 4px;
  vertical-align: middle;
}

@keyframes blinkCaret {
  from, to { opacity: 0; }
  50% { opacity: 1; }
}

