/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent; /* Mobile Pro Polish */
}

html {
  scroll-behavior: smooth;
}
/* GLOBAL POLISH [SIG:V3.0-FORCE-SYNC] */
body { 
    margin: 0 !important; 
    font-family: 'Space Grotesk', sans-serif; 
    background: var(--bg, #030305); 
    color: var(--text, #fff);
    transition: background-color 0.8s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease;
    will-change: background-color, color; /* GPU Hint */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body.nav-open {
    overflow: hidden !important;
    height: 100vh;
}

::selection {
  background: var(--accent);
  color: #fff;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #030305;
}
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}
.nav-gif {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: contrast(1.2) brightness(1.1) drop-shadow(0 0 12px rgba(214,178,94,0.35));
  opacity: 0.95;
  mix-blend-mode: screen;
}

.hero-gif {
  width: 420px; /* Made bigger as requested */
  max-width: 90vw; /* Ensure it fits on mobile */
  height: auto;
  margin: 0 auto 1rem;
  display: block;
  opacity: 0.9;
  filter: drop-shadow(0 0 24px rgba(214,178,94,0.45));
}
/* VARIABLES */
:root {
  --bg: #030305;
  --bg2: #050508;
  --text: #ffffff;
  --muted: rgba(255,255,255,0.70);
  --muted2: rgba(255,255,255,0.50);

  --accent: #7000ff;
  --accent2: #00c3ff;
  --accent-glow: rgba(112, 0, 255, 0.4);

  --card: rgba(20, 20, 40, 0.4);
  --stroke: rgba(112, 0, 255, 0.25);

  --shadow: 0 20px 80px rgba(0,0,0,0.7);
  --shadowSoft: 0 10px 30px rgba(0,0,0,0.4);

  --ring: 0 0 0 2px rgba(112, 0, 255, 0.4);
}

/* LIGHT THEME OVERRIDES (Enhanced for WCAG AA & Polish) */
[data-theme="light"] {
  /* CORE PALETTE */
  --bg: #f2f2f5;          /* Slight cool grey for depth */
  --bg2: #ffffff;         /* Pure white for cards/surfaces */
  --text: #111111;        /* Sharp black for primary text */
  --muted: #555555;       /* Readable grey for secondary text (WCAG AA) */
  --muted2: #777777;      /* Tertiary text */

  /* ACCENTS - Adjusted for Light Mode Visibility */
  --accent: #6200e0;      /* Deep Violet */
  --accent2: #0077cc;     /* Strong Cyan/Blue for better contrast against white */
  --accent-glow: rgba(98, 0, 224, 0.15);

  /* COMPONENT SURFACES */
  --card: #ffffff;
  --stroke: #e0e0e5;      /* Subtle border */
  
  /* SHADOWS - Softer, more diffuse for light mode */
  --shadow: 0 10px 40px rgba(0,0,0,0.08);
  --shadowSoft: 0 4px 12px rgba(0,0,0,0.04);

  --ring: 0 0 0 2px rgba(98, 0, 224, 0.2);
}

/* Light Mode Specific Adjustments */
[data-theme="light"] .bg-fixed {
  background: #f2f2f5; /* Simple, flat, clean background */
}

[data-theme="light"] .nav {
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--stroke);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

[data-theme="light"] .nav-logo img {
  filter: brightness(0); /* Black logo for light mode */
  mix-blend-mode: normal !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  width: 32px; /* Ensure strictly sized for spin */
  height: 32px;
  animation: spin-slow 8s linear infinite !important; /* Slightly faster spin for logo */
  transform: translateZ(0); /* Force GPU */
  backface-visibility: hidden;
}

/* Apply the box container to the parent link instead */
[data-theme="light"] .nav-logo {
  background: #ffffff !important;
  border: 1px solid #e0e0e5 !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
  border-radius: 10px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

@keyframes spin-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Footer Logo Light Mode */
[data-theme="light"] .nav-gif {
  filter: brightness(0);
  mix-blend-mode: normal !important;
  opacity: 0.8;
}

[data-theme="light"] .hero h1 {
  text-shadow: none;
  color: #000;
  letter-spacing: -1px;
}

[data-theme="light"] .eyebrow {
  background: #ffffff;
  border-color: #d1d1d6;
  color: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* CARDS & SURFACES */
[data-theme="light"] .card, 
[data-theme="light"] .service, 
[data-theme="light"] .contact-card, 
[data-theme="light"] .form, 
[data-theme="light"] .package,
[data-theme="light"] .review-card,
[data-theme="light"] .result-card {
  background: #ffffff;
  border: 1px solid #e0e0e5;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03), 0 1px 3px rgba(0,0,0,0.02);
  color: #111111;
}

[data-theme="light"] .footer {
  background: #fdfdff;
  border-top: 1px solid #e0e0e5;
  color: #111;
}

[data-theme="light"] .footer-link {
  color: #555;
}

[data-theme="light"] .footer-link:hover {
  color: var(--accent);
}

[data-theme="light"] .nav-link {
  color: #1d1d1f;
}

[data-theme="light"] .nav-link:hover {
  color: var(--accent);
}

[data-theme="light"] .nav-link.active {
  color: var(--accent);
}

/* How We Work Cards Contrast Fix */
[data-theme="light"] .process-card {
  background: #f5f5f7 !important;
  border-color: #d1d1d6;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* Softer shadow */
}
[data-theme="light"] .process-card h4 {
  color: #000;
  font-weight: 800; /* Extra bold for readability */
}
[data-theme="light"] .process-card p {
  color: #333;
  font-weight: 500;
  opacity: 1; /* Force opacity */
}

[data-theme="light"] .card:hover, 
[data-theme="light"] .service:hover, 
[data-theme="light"] .contact-card:hover, 
[data-theme="light"] .process-card:hover {
  background: #ffffff;
  border-color: var(--accent2);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

/* TYPOGRAPHY OVERRIDES */
[data-theme="light"] .service ul,
[data-theme="light"] .process-card p,
[data-theme="light"] .card-body p,
[data-theme="light"] .price-sub,
[data-theme="light"] .price-list,
[data-theme="light"] .result-label {
  color: var(--muted);
}

[data-theme="light"] .section-head h2, 
[data-theme="light"] .minihead {
  background: none;
  -webkit-text-fill-color: initial;
  color: #000;
  text-shadow: none;
}

/* FORMS */
[data-theme="light"] input, 
[data-theme="light"] select, 
[data-theme="light"] textarea {
  background: #f9f9fb;
  border: 1px solid #d1d1d6;
  color: #111;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.03);
}
[data-theme="light"] input:focus, 
[data-theme="light"] select:focus, 
[data-theme="light"] textarea:focus {
  background: #fff;
  border-color: var(--accent2);
  box-shadow: 0 0 0 3px rgba(0, 119, 204, 0.15);
}

/* FOOTER */
[data-theme="light"] .footer {
  background: #e8e8eb;
  border-top: 1px solid #d1d1d6;
}
[data-theme="light"] .footer a { color: #333; }
[data-theme="light"] .footer a:hover { color: var(--accent); }

/* BADGES & SPECIAL ELEMENTS */
[data-theme="light"] .play-badge {
  background: #fff;
  color: #000;
  border: 1px solid #ddd;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

[data-theme="light"] .scarcity-badge {
  background: rgba(255, 59, 48, 0.08);
  border-color: rgba(255, 59, 48, 0.2);
  color: #333; /* Dark Grey */
  font-weight: 600;
  box-shadow: none;
}

[data-theme="light"] .process-card .step-num {
  color: rgba(0,0,0,0.15);
  text-shadow: none;
  -webkit-text-stroke: 0;
}
[data-theme="light"] .process-card:hover .step-num {
  color: var(--accent2);
  opacity: 0.8;
}

[data-theme="light"] .nav-links a {
  color: #444;
}
[data-theme="light"] .nav-links a.active,
[data-theme="light"] .nav-links a:hover {
  color: var(--accent);
}

/* FAQ & REVIEWS (Light Mode Fixes) */
[data-theme="light"] .faq-item h4,
[data-theme="light"] .review-text {
  color: #111;
}
[data-theme="light"] .faq-item p,
[data-theme="light"] .review-author {
  color: #555;
}
[data-theme="light"] .faq-item {
  background: #ffffff;
  border-color: #e0e0e5;
  box-shadow: var(--shadowSoft);
}
[data-theme="light"] .faq-item:hover {
  border-color: var(--accent2);
  box-shadow: var(--shadow);
}

/* PROCESS STEPS (Light Mode Visibility) */
[data-theme="light"] .process-card .step-num {
  color: rgba(0, 0, 0, 0.15); /* Darker for visibility */
  text-shadow: none;
}
[data-theme="light"] .process-card:hover .step-num {
  color: var(--accent2);
  opacity: 1;
}

/* PACKAGE BUTTONS (Light Mode) */
[data-theme="light"] .pkg-select-btn {
  border: 1px solid #ccc;
  color: #000;
  font-weight: 700;
  background: rgba(0,0,0,0.03);
}
[data-theme="light"] .pkg-select-btn:hover {
  background: #000;
  color: #fff;
  border-color: #000;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* RESPONSIVE TYPOGRAPHY (Global & Light Mode) */
h1, h2, h3 {
  line-height: 1.4; /* Increased from 1.3 to prevent Syne font clipping while maintaining a premium look */
  overflow: visible;
}

[data-theme="light"] h1, 
[data-theme="light"] h2, 
[data-theme="light"] h3 {
  letter-spacing: -0.02em; /* Tighter tracking for dark-on-light */
}

.section-head h2 {
  font-size: clamp(2rem, 5vw, 3.5rem); /* Ensure fluid scaling */
}

/* RESULT CARDS (STATS) */
[data-theme="light"] .result-value {
  color: var(--accent); /* Pop the numbers */
}

/* MOBILE NAV DRAWER */
[data-theme="light"] .nav-drawer {
  background: rgba(255,255,255,0.95);
  border: 1px solid #ddd;
}
[data-theme="light"] .nav-drawer a {
  background: #f0f0f5;
  color: #111;
  border-color: #ddd;
}
[data-theme="light"] .nav-toggle {
  border-color: #ccc;
  background: rgba(0,0,0,0.03);
  color: #333;
}
[data-theme="light"] .nav-toggle span {
  background: #333;
}
[data-theme="light"] .nav-toggle {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* PRICING */
[data-theme="light"] .price-card {
  background: #ffffff;
}
[data-theme="light"] .price-tag {
  color: #b8860b; /* Dark Gold for readability */
  text-shadow: none;
}
[data-theme="light"] .price-card.is-featured {
  border-color: #b8860b;
  box-shadow: 0 20px 50px rgba(184, 134, 11, 0.15);
}

/* DAY MODE: BUTTON REFINEMENTS */
[data-theme="light"] .book-btn {
  background: var(--text);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
[data-theme="light"] .book-btn:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  transform: translateY(-2px) scale(1.02);
}
[data-theme="light"] .k-hover-primary {
  background: linear-gradient(135deg, #6200e0 0%, #4a00e0 100%);
  color: #fff;
  border: none;
}
[data-theme="light"] .k-hover-ghost {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.1);
  color: var(--text);
}
[data-theme="light"] .k-hover-ghost:hover {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.2);
}

/* DAY MODE: INSIGHTS & CARDS */
[data-theme="light"] .insight-card {
  background: #ffffff;
  border-color: #e0e0e5;
  box-shadow: var(--shadowSoft);
}
[data-theme="light"] .insight-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #d4af37; /* Gold border on hover */
  background: #ffffff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1), 0 0 20px rgba(212, 175, 55, 0.1);
}

[data-theme="light"] .insight-card::before {
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(214, 178, 94, 0.15),
    transparent 40%
  );
}
[data-theme="light"] .insight-card h2 {
  color: #000;
}
[data-theme="light"] .insight-card p {
  color: #444;
}
[data-theme="light"] .insight-date {
  color: var(--accent);
  font-weight: 800;
}
[data-theme="light"] .read-more {
  background: #f0f0f5;
  border-color: #d1d1d6;
  color: #333;
}
[data-theme="light"] .read-more:hover {
  background: var(--accent);
  color: #fff;
}

[data-theme="light"] .subscribe-section {
  background: #ffffff;
  border: 1px solid #e0e0e5;
  box-shadow: var(--shadowSoft);
}
[data-theme="light"] .subscribe-form input {
  background: #f2f2f5;
  border-color: #d1d1d6;
  color: #111;
}
[data-theme="light"] .subscribe-form button {
  background: #111;
  color: #fff;
}

/* DAY MODE: STATS & TABLES */
[data-theme="light"] .result-card {
  background: #ffffff;
  border-color: #e0e0e5;
}
[data-theme="light"] .result-label {
  color: #666;
  font-weight: 700;
}

[data-theme="light"] .result-label {
  color: #555;
  font-weight: 700;
}

/* DAY MODE: SERVICES SECTION */
[data-theme="light"] .service-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
[data-theme="light"] .service-item:hover {
  background: rgba(0,0,0,0.015);
}
[data-theme="light"] .service-head h3 {
  color: #000;
}
[data-theme="light"] .service-tag {
  color: var(--accent);
}
[data-theme="light"] .service-body p {
  color: #222;
}
[data-theme="light"] .service-details li {
  color: #444;
}
[data-theme="light"] .service-details li::before {
  color: var(--accent);
}

[data-theme="light"] .otp-eye-svg {
  color: #333;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* DAY MODE: SERVICES SECTION FIXES */
[data-theme="light"] .service-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
[data-theme="light"] .service-item:hover {
  background: rgba(0,0,0,0.02);
}
[data-theme="light"] .service-head h3 {
  color: #111;
}
[data-theme="light"] .service-tag {
  color: var(--accent);
}
[data-theme="light"] .service-body p {
  color: #333;
}
[data-theme="light"] .service-details li {
  color: #555;
}
[data-theme="light"] .service-details li::before {
  color: var(--accent);
}

/* DAY MODE: NAVIGATION & MOBILE REFINEMENTS */
[data-theme="light"] .nav-drawer {
    background: #ffffff;
}

[data-theme="light"] .mobile-portal-link {
    background: #ffffff;
    border-color: #d1d1d6;
    color: #1d1d1f;
}

[data-theme="light"] .mobile-portal-link.highlight {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

[data-theme="light"] .nav-drawer a {
    color: #1d1d1f;
    border-bottom: 1px solid #f5f5f7;
}

[data-theme="light"] .nav-drawer a:hover {
    background: #f5f5f7;
    color: var(--accent);
}

[data-theme="light"] .hero .subtitle-lead {
  color: #222;
}
[data-theme="light"] .hero .hero-value {
  color: var(--accent);
  font-weight: 700;
}
[data-theme="light"] .pkg-meta {
  border-top: none; /* Removed line as requested */
  padding-top: 10px;
}
[data-theme="light"] .pkg-meta span {
  background: #f0f0f4;
  color: #444;
  border-radius: 6px;
  padding: 4px 8px;
}
[data-theme="light"] .hero-micro {
  color: #111;
  font-weight: 500;
}
[data-theme="light"] .hero-micro span {
  color: #111;
}
[data-theme="light"] .dot-circle {
  background: var(--accent2);
  box-shadow: none;
  opacity: 0.8;
}

[data-theme="light"] .dot {
  background: transparent;
  border-color: transparent;
  color: #333;
  opacity: 0.4;
}

[data-theme="light"] .dot.active {
  background: var(--accent2);
  box-shadow: 0 0 10px rgba(0, 195, 255, 0.2);
}
[data-theme="light"] .scarcity-badge {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.1);
  color: #111 !important;
}

/* DAY MODE: IDENTITY CARD (Giga Rare Pokemon Card Shimmer) */
[data-theme="light"] .glass-manifesto {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f4f7ff 25%,
    #edf2ff 50%,
    #f4f7ff 75%,
    #ffffff 100%
  );
  border: 1px solid rgba(0,0,0,0.1);
  border-top: 1px solid #ffffff;
  border-bottom: 2px solid #b0b8d1;
  box-shadow:
    0 10px 40px rgba(0,0,0,0.04),
    inset 0 0 20px rgba(255,255,255,0.9);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s cubic-bezier(0.1, 0, 0.1, 1);
}

[data-theme="light"] .glass-manifesto::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    115deg, 
    transparent 0%, 
    rgba(255, 0, 150, 0.1) 15%, 
    rgba(255, 255, 0, 0.1) 40%, 
    transparent 50%
  );
  background-size: 200% 200%;
  mix-blend-mode: color-burn;
  opacity: 0.5; /* Always visible */
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.6s ease;
  animation: holoFlow 15s linear infinite; /* Slower, smoother flow */
}

[data-theme="light"] .glass-manifesto:hover::after {
  opacity: 0.9; /* Intensify on focus, no speed change to prevent jump */
}

/* Add a holographic holographic 'grain' for that rare card feel */
[data-theme="light"] .glass-manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}

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

/* Base card refinements */
[data-theme="light"] .studio-title {
  color: #111;
  text-shadow: 0 1px 0 #fff;
}
[data-theme="light"] .studio-body p {
  color: #333;
}
[data-theme="light"] .cap-tag {
  background: #ffffff;
  border: 1px solid #d1d1d6;
  color: #111;
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 0.75rem;
}
[data-theme="light"] .cap-tag:hover {
  background: #000;
  color: #fff;
  border-color: #000;
  transform: translateY(-2px);
}

/* DAY MODE: PACKAGE MENU & CARDS */
[data-theme="light"] .pkg-tab-btn {
  background: #ffffff;
  color: #666;
  border: 1px solid #d1d1d6;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}
[data-theme="light"] .pkg-tab-btn.active {
  background: #111;
  color: #fff;
  border-color: #111;
}
[data-theme="light"] .pkg-tab-btn:hover:not(.active) {
  background: #f0f0f4;
  color: #000;
  border-color: #b0b0b8;
}

[data-theme="light"] .package-static {
  background: #ffffff;
  border: 1px solid #e0e0e5;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
[data-theme="light"] .package-static.featured {
  border-color: var(--accent);
  box-shadow: 0 10px 40px rgba(98, 0, 224, 0.08);
}
[data-theme="light"] .package-static h4 {
  color: #000;
}
[data-theme="light"] .pkg-desc {
  color: #444;
}
[data-theme="light"] .check-list li {
  color: #222;
  font-weight: 500;
}
[data-theme="light"] .pkg-meta span {
  background: #f5f5f7;
  color: #555;
  border: 1px solid #e0e0e5;
}
[data-theme="light"] .pkg-meta span strong {
  color: #000;
}
[data-theme="light"] .pkg-select-btn {
  border: 1px solid #d1d1d6;
  color: #111;
  font-weight: 700;
  background: #ffffff;
}
[data-theme="light"] .pkg-select-btn:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}
[data-theme="light"] .pkg-icon-bubble {
  background: #ffffff;
  border: 1px solid #e0e0e5;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03), inset 0 1px 2px rgba(255,255,255,1);
}
[data-theme="light"] .pkg-icon-bubble:hover {
  background: #ffffff;
  border-color: var(--accent);
  transform: translateY(-5px) scale(1.05);
}
[data-theme="light"] .pkg-neon-icon {
  stroke-width: 2;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
[data-theme="light"] .pkg-group-header {
  color: #000;
  opacity: 1;
}

/* FAQ & REVIEWS */
[data-theme="light"] .faq-item h4 {
  color: #111;
}
[data-theme="light"] .faq-item p {
  color: #555;
}
[data-theme="light"] .review-card {
  background: #ffffff;
  border: 1px solid #e0e0e5;
}
[data-theme="light"] .review-text {
  color: #111;
}
[data-theme="light"] .review-author {
  color: var(--accent);
}

/* ENTER ARCHIVE BUTTON */
[data-theme="light"] .cool-work-link {
  background: #ffffff;
  border: 1px solid #d1d1d6;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
[data-theme="light"] .cool-work-link .link-text {
  color: #111;
  text-shadow: none;
}
[data-theme="light"] .cool-work-link .link-sub {
  color: #666;
}
[data-theme="light"] .cool-work-link.is-black-hole,
[data-theme="light"] .cool-work-link:hover {
  background: #000;
  border-color: #ff3c00;
  box-shadow: 0 0 40px rgba(255, 60, 0, 0.4);
}
[data-theme="light"] .cool-work-link.is-black-hole .link-text,
[data-theme="light"] .cool-work-link:hover .link-text {
  color: #fff;
}
[data-theme="light"] .cool-work-link.is-black-hole .link-sub,
[data-theme="light"] .cool-work-link:hover .link-sub {
  color: #bbb;
}

/* FOOTER / BOTTOM TEXT */
[data-theme="light"] .contact-details-side p {
  color: #111;
}
[data-theme="light"] .contact-details-side .muted {
  color: #555;
}
[data-theme="light"] .footer {
  border-top: 1px solid #e0e0e5;
  background: #f8f8fa;
}
[data-theme="light"] .fineprint {
  color: #888;
}
[data-theme="light"] .footer-legal a {
  color: #666;
}
[data-theme="light"] .footer-right a {
  color: #111;
}
[data-theme="light"] .archive-nav-gif {
  filter: invert(1);
}

/* Consolidated with line 553 overrides */

[data-theme="light"] .hero .book-btn {
  background: #111;
  color: #fff;
  border: 1px solid #000;
}
[data-theme="light"] .hero .book-btn:hover {
  background: #000;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* CONTACT SECTION DAY MODE */
[data-theme="light"] .icon-link {
  background: #ffffff;
  border-color: #d1d1d6;
  color: #555;
  box-shadow: 
    0 4px 12px rgba(0,0,0,0.05),
    0 1px 2px rgba(0,0,0,0.1);
}
[data-theme="light"] .icon-link::after {
  background: radial-gradient(circle at center, rgba(0,0,0,0.03), transparent 70%);
}
[data-theme="light"] .icon-link:hover {
  background: #fcfcfc;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
[data-theme="light"] .contact-container {
  background: transparent; /* Box removed as requested */
  border: none;
  box-shadow: none;
}

[data-theme="light"] .contact-form {
  background: #ffffff;
  border: 1px solid #e0e0e5;
  box-shadow: 0 20px 50px rgba(0,0,0,0.04);
}

/* FAQ & CONTACT POLISH */
[data-theme="light"] .faq-item {
  background: #ffffff;
  border: 1px solid #e0e0e5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
[data-theme="light"] .contact-form input,
[data-theme="light"] .contact-form select,
[data-theme="light"] .contact-form textarea {
  background: #fdfdfd;
  border-color: #d1d1d6;
  color: #111;
}
[data-theme="light"] .contact-form label {
  color: #000;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
[data-theme="light"] .contact-form input:focus,
[data-theme="light"] .contact-form select:focus,
[data-theme="light"] .contact-form textarea:focus {
  background: #ffffff;
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
  outline: none;
}
[data-theme="light"] .book-btn.k-hover-primary {
  background: #111;
  color: #fff;
}
/* BLOG / PRIVACY / TERMS DAY MODE */
[data-theme="light"] .post-content {
  color: #444;
}
[data-theme="light"] .post-header {
  border-bottom-color: #e0e0e5;
}
[data-theme="light"] .post-content h2 {
  color: #000;
}
[data-theme="light"] .post-content blockquote {
  background: #f8f5ff;
  color: #222;
}

[data-theme="light"] .next-link {
  background: #ffffff;
  border-color: #d1d1d6;
  color: #111;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
[data-theme="light"] .next-link:hover {
  background: #000;
  border-color: #000;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Force specific black text for requested hero items */
[data-theme="light"] .hero-micro span,
[data-theme="light"] .hero-micro {
  color: #111 !important;
}

/* GLOBAL SECTION POLISH */
[data-theme="light"] .section-head h2 {
  color: #000;
}
[data-theme="light"] .section-head p {
  color: #444;
}
[data-theme="light"] .eyebrow-mini,
[data-theme="light"] .minihead {
  color: var(--accent);
}

/* Force text to remain white on overlays even in light mode */
[data-theme="light"] .project-overlay h3,
[data-theme="light"] .project-overlay span {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Archive Header */
[data-theme="light"] .archive-header h1 {
  color: #000;
}

/* Loader */
[data-theme="light"] .loader {
  color: var(--accent2); /* Darker Cyan */
}

/* Navigation Back Link */
[data-theme="light"] .back-link {
  color: var(--accent2);
}
[data-theme="light"] .back-link:hover {
  color: var(--accent);
}




/* THEME TOGGLE BUTTON */
.theme-toggle-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 20px;
  position: relative;
  z-index: 100;
  overflow: hidden;
}

[data-theme="light"] .theme-toggle-btn {
  border-color: rgba(0,0,0,0.1);
  color: #333;
}

.theme-toggle-btn:hover {
  background: rgba(255,255,255,0.05);
  transform: rotate(15deg);
}

[data-theme="light"] .theme-toggle-btn:hover {
  background: rgba(0,0,0,0.05);
}

.theme-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s ease;
}

/* BASE */
/* BACKGROUND FIXED CONTAINER */


/* SCROLL PROGRESS BAR */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: var(--scroll, 0%);
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--accent);
}

/* BACKGROUND FIXED CONTAINER */
.bg-fixed {
  position: fixed;
  inset: 0;
  z-index: -2; /* Deepest layer */
  background:
    radial-gradient(circle at 50% 0%, rgba(112,0,255,0.06), transparent 80%),
    radial-gradient(circle at 80% 100%, rgba(0,195,255,0.04), transparent 80%),
    #030305;
  background-size: cover;
  pointer-events: none;
  transform: translate3d(0,0,0); /* Force hardware accel */
  backface-visibility: hidden;
  height: 100vh; /* Force height to viewport, ignore address bar shifts */
}

html, body {
  scroll-padding-top: 0; /* Handled via scroll-margin-top */
  cursor: auto; /* Ensure default cursor */
  margin: 0 !important;
  padding: 0 !important;

  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

a, button, input, select, textarea, .k-hover {
  cursor: pointer;
}

h1, h2, h3, h4, .nav-logo, .btn {
  font-family: 'Space Grotesk', sans-serif;
}

a { color: inherit; }
/* Skip link (accessibility) */
.skip {
  position: absolute;
  left: 16px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(10,10,18,0.92);
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.4px;
  transform: translateY(-200%);
  opacity: 0;
  transition: transform 0.18s ease, opacity 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  z-index: 999;
}
.skip:focus,
.skip:focus-visible {
  transform: translateY(0%);
  opacity: 1;
  box-shadow: var(--ring);
  border-color: rgba(214,178,94,0.55);
}
html { 
  scroll-behavior: smooth; 
  background: transparent !important; /* Force transparent so bg-fixed shows */
  height: 100%;
}

/* CUSTOM THEMED SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #050508;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  border-radius: 10px;
  border: 2px solid #050508;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--accent2), var(--accent));
}

::selection {
  background: rgba(112, 0, 255, 0.3);
  color: #fff;
}

/* SCARCITY BADGE */
/* SCARCITY BADGE - Premium Red Glass */
.scarcity-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /* Deep, rich red glass instead of washed out error red */
  background: rgba(255, 30, 30, 0.08);
  border: 1px solid rgba(255, 60, 60, 0.2);
  color: #ff5555;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 15px rgba(255, 30, 30, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.scarcity-badge:hover {
  background: rgba(255, 30, 30, 0.12);
  border-color: rgba(255, 80, 80, 0.4);
  box-shadow: 0 0 20px rgba(255, 30, 30, 0.2);
  transform: translateY(-1px);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: #ff4444;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 8px rgba(255, 68, 68, 0.6);
  animation: badgePulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes badgePulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.4); opacity: 1; }
  70% { box-shadow: 0 0 0 10px rgba(255, 68, 68, 0); opacity: 0.8; }
  100% { box-shadow: 0 0 0 0 rgba(255, 68, 68, 0); opacity: 1; }
}

[data-theme="light"] .pulse-dot {
  box-shadow: 0 0 6px rgba(255, 68, 68, 0.3);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.result-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 16px; /* Reduced from 40px 20px */
  border-radius: 18px; /* Slightly tighter radius */
  text-align: center;
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.result-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent2);
  transform: translateY(-6px);
  box-shadow: 0 10px 40px rgba(0, 195, 255, 0.1);
}

.result-value {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--accent2); /* Neon Cyan */
  text-shadow: 0 0 15px rgba(0, 195, 255, 0.5); /* Glow */
  line-height: 1.4; /* Increased from 1.0 */
  padding-bottom: 4px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.result-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  opacity: 0.7;
}

.hidden {
  display: none !important;
}

.pkg-group-header {
  grid-column: 1 / -1;
  padding: 60px 0 20px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent2);
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0.8;
}

.pkg-group-header::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--accent2), transparent);
  opacity: 0.2;
}

@media (max-width: 768px) {
  .pkg-group-header {
    padding: 40px 0 10px;
    font-size: 0.7rem;
    letter-spacing: 3px;
  }
}

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

}


.eyebrow-mini {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* PERSPECTIVE AUDIT STYLES */
.section-audit {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.audit-card {
  max-width: 800px;
  margin: 0 auto;
  min-height: 500px;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(10, 10, 18, 0.4);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 40px 100px -20px rgba(0,0,0,0.5),
    inset 0 0 0 1px rgba(255,255,255,0.05);
}

@media (max-width: 640px) {
  .audit-card {
    padding: 40px 20px;
    min-height: 450px;
    border-radius: 16px;
  }
  .audit-options {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .audit-opt {
    padding: 15px;
    font-size: 0.9rem;
  }
}

.audit-step {
  display: none;
  width: 100%;
  animation: auditFadeIn 0.8s forwards;
}

.audit-step.active {
  display: block;
}

@keyframes auditFadeIn {
  from { opacity: 0; transform: translateY(20px) scale(0.98); filter: blur(10px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

.audit-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--accent2);
  border: 1px solid var(--accent2);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.step-indicator {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 3px;
  margin-bottom: 20px;
  display: block;
}

.audit-back-btn {
  position: absolute;
  top: 30px;
  left: 30px;
  background: transparent;
  border: none;
  color: var(--muted) !important;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  padding: 10px;
  transition: all 0.3s ease;
  z-index: 200; /* Ensure above all layers */
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  /* Ensure it has space on mobile */
  margin-bottom: 15px;
}

.audit-back-btn:hover {
  color: var(--accent2); /* Cyan hover */
  transform: translateX(-3px);
}

/* Logic is handled in JS (display: block/none), 
   but we ensure it's hidden by default on step 1 via JS logic primarily. 
   Removing the rigid CSS override to allow JS to control it better. */
.audit-back-btn[style*="display: none"] {
    display: none !important;
}

.audit-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 30px;
  width: 100%;
}

.audit-opt {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  padding: 20px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-family: 'Space Grotesk', sans-serif;
}

.audit-opt:hover {
  background: rgba(0, 195, 255, 0.05);
  border-color: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 195, 255, 0.1);
}

.audit-visual-decor {
  margin: 40px 0;
  position: relative;
  height: 2px;
  width: 100px;
  background: rgba(255,255,255,0.05);
}

.decor-circle {
  width: 12px;
  height: 12px;
  border: 1px solid var(--accent2);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #030305;
}

.audit-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
  max-width: 400px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.audit-input {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  padding: 18px 24px;
  border-radius: 14px;
  font-family: 'Space Grotesk', sans-serif; /* Changed to Space Grotesk for more tactical feel */
  font-size: 1.1rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  letter-spacing: 1px;
  width: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.audit-input::placeholder {
  color: rgba(255,255,255,0.2);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0;
}

.audit-input:focus {
  outline: none;
  border-color: var(--accent2);
  background: rgba(255,255,255,0.05);
  box-shadow: 
    0 0 40px rgba(0, 195, 255, 0.1),
    inset 0 0 15px rgba(0, 195, 255, 0.05);
  transform: translateY(-2px) scale(1.01);
}

.processing-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, 
    transparent, 
    var(--accent2), 
    var(--accent), 
    transparent
  );
  background-size: 200% 100%;
  animation: scanning 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  opacity: 0.8;
  filter: blur(1px);
}

.decryption-status {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 18, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  backdrop-filter: blur(10px);
}

.decryption-status.active {
  opacity: 1;
  pointer-events: all;
}

.status-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 4px;
  color: var(--accent2);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
}

.decryption-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.decryption-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--accent2);
  box-shadow: 0 0 15px var(--accent2);
}

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

.advice-text {
  background: rgba(0, 0, 0, 0.4);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  min-height: 150px;
  position: relative;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
  font-family: 'Inter', sans-serif;
}

.advice-text p {
  position: relative;
  padding-left: 24px;
  margin-bottom: 28px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  animation: adviceLineIn 0.8s ease backwards;
}

@keyframes adviceLineIn {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

.advice-text p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background: var(--accent2);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent2);
}

.advice-header {
  margin-top: 28px;
  margin-bottom: 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.15em;
  color: #fff;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 8px;
  display: block;
  width: 100%;
}

.advice-list-item {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 16px;
  border-left: 2px solid rgba(0, 195, 255, 0.4);
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.advice-row {
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

[data-theme="light"] .advice-header {
  color: #000;
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .advice-list-item {
  color: #333;
  border-left-color: var(--accent2);
}

[data-theme="light"] .advice-row {
  color: #444;
}

.decor-circle {
  width: 12px;
  height: 12px;
  border: 1px solid var(--accent2);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #030305;
  z-index: 2;
}

.decor-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateY(-50%);
  z-index: 1;
}

.advice-text strong {
  color: var(--accent2);
  font-weight: 800;
  letter-spacing: 0.5px;
  text-shadow: 0 0 15px rgba(0, 195, 255, 0.3);
}

.audit-reset-btn {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  padding: 14px 32px;
  border-radius: 99px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}

.audit-reset-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.audit-reset-btn:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 195, 255, 0.2);
}

.audit-reset-btn:hover::before {
  transform: translateX(100%);
}

.audit-reset-btn:active {
  transform: translateY(0);
}

/* DAY MODE: AUDIT */
[data-theme="light"] .audit-card {
  background: rgba(255,255,255,0.85);
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 40px 100px rgba(0,0,0,0.08);
}

[data-theme="light"] .audit-opt {
  background: rgba(0,0,0,0.02);
  border-color: rgba(0,0,0,0.08);
  color: #000;
}

[data-theme="light"] .audit-input {
  background: rgba(0,0,0,0.02);
  border-color: rgba(0,0,0,0.1);
  color: #000;
}

[data-theme="light"] .audit-input::placeholder {
  color: rgba(0,0,0,0.3);
}

[data-theme="light"] .decryption-status {
  background: rgba(255,255,255,0.98);
}

[data-theme="light"] .decryption-bar {
  background: rgba(0,0,0,0.1);
}

[data-theme="light"] .status-text {
  color: #000;
  text-shadow: none;
}

.audit-textarea {
  width: 100%;
  height: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 15px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  resize: none;
  transition: all 0.3s ease;
}

.audit-textarea:focus {
  outline: none;
  border-color: var(--accent2);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(0, 195, 255, 0.1);
}

[data-theme="light"] .audit-textarea {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.1);
  color: #000;
}

[data-theme="light"] .audit-textarea:focus {
  background: rgba(0,0,0,0.05);
  border-color: #7000ff;
}

[data-theme="light"] .audit-reset-btn {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.1);
  color: #666;
}

[data-theme="light"] .advice-text {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 0 20px rgba(0,0,0,0.02);
}

[data-theme="light"] .advice-text p {
  color: #222;
}

[data-theme="light"] .advice-text div[style*="color:#fff"] {
  color: #000 !important;
  border-bottom-color: rgba(0,0,0,0.1) !important;
}

[data-theme="light"] .audit-privacy-text {
  color: #666;
}

[data-theme="light"] .status-text {
  color: var(--accent2);
}

[data-theme="light"] .audit-reset-btn:hover {
  background: rgba(0,0,0,0.06);
  color: #000;
  border-color: #7000ff;
  box-shadow: 0 0 20px rgba(112, 0, 255, 0.2);
}

.audit-privacy-text {
  margin-top: 16px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 600px) {
  .audit-privacy-text {
    font-size: 0.72rem;
    padding: 0 10px;
    line-height: 1.6;
    max-width: 100%;
  }
}

.audit-privacy-text u {
  text-decoration-color: var(--accent2);
  text-decoration-thickness: 1px;
}

[data-theme="light"] .audit-privacy-text {
  color: rgba(0,0,0,0.5);
}

[data-theme="light"] .advice-text {
  background: #fdfdfe;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: none;
  color: #333;
}

[data-theme="light"] .advice-text p {
  color: #222 !important;
}

[data-theme="light"] .advice-text strong {
  color: #7000ff !important;
  background: none;
  -webkit-text-fill-color: initial;
  text-shadow: none;
}

[data-theme="light"] .status-text {
  color: #7000ff;
}

[data-theme="light"] .decryption-bar {
  background: rgba(0,0,0,0.1);
}

[data-theme="light"] .audit-visual-decor {
  background: rgba(0,0,0,0.05);
}

[data-theme="light"] .decor-circle {
  background: #ffffff;
}

@media (max-width: 600px) {
  .audit-options {
    grid-template-columns: 1fr;
  }
  .audit-card {
    padding: 40px 20px;
  }
}


.wrap { width: min(1100px, 92vw); margin: 0 auto; max-width: 100%; }
.section { padding: 96px 0; scroll-margin-top: 95px; }
.section-tight { padding: 72px 0; scroll-margin-top: 95px; }

.kicker {
  margin-top: 14px;
  color: var(--muted);
  max-width: 70ch;
}

.section-alt { position: relative; }
.section-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(112,0,255,0.08), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(0,195,255,0.06), transparent 45%);
  pointer-events: none;
  z-index: 0;
}
.section-alt .wrap { position: relative; z-index: 1; }

.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: 1px;
}
.section-head p { 
  margin-top: 10px; 
  color: var(--muted); 
  max-width: 60ch; 
  margin-left: auto; 
  margin-right: auto; 
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10000; /* Increased to stay above all content */

  background: rgba(10,10,18,0.30);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: padding 0.3s ease, background 0.3s ease; /* Smooth out any dynamic changes */
}

.nav.nav-split {
  justify-content: space-between;
}

.nav-logo .otp-mark {
  /* ...existing styles... */
  border-color: var(--stroke);
  box-shadow: 0 0 20px rgba(112,0,255,0.15);
  mix-blend-mode: screen;
  filter: contrast(1.3) brightness(1.2);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  isolation: isolate; /* Create new stacking context for blending */
}

.hero-logo-wrap {
  mix-blend-mode: screen; 
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px;
  isolation: isolate;
  width: fit-content;
  perspective: 1200px;
  /* Mask removed to allow outer aura */
}


.hero-eye-3d {
  width: 460px; /* Slightly smaller to give text room */
  max-width: 90vw;
  max-height: 45vh; /* Reduced from 48vh */
  height: auto;
  object-fit: contain;
  /* Diamond Star Outline: HARD, TIGHT prismatic shadows */
  filter: 
    drop-shadow(0 0 1px rgba(255, 255, 255, 1))      /* White Highlight */
    drop-shadow(-2px -2px 0px rgba(255, 215, 0, 0.8))  /* Hard Gold */
    drop-shadow(2px 2px 0px rgba(0, 255, 255, 0.8))    /* Hard Cyan */
    drop-shadow(0 4px 0px rgba(255, 0, 255, 0.8));     /* Hard Magenta */

  animation: visionSpin 15s ease-in-out infinite, outlinePulse 3s steps(30) infinite; /* steps for arcade feel? or ease for smooth */
  transform-style: preserve-3d;
  display: block;
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease-out;
  will-change: transform, filter;
  backface-visibility: hidden;
}

/* ... existing code ... */

.nav-drawer {
  position: fixed;
  top: 85px; /* Aligned with new nav height */
  right: 15px;
  left: 15px;
  padding: 12px;
  display: flex;
  gap: 8px;
  flex-direction: column;
  background: rgba(10,10,18,0.95);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 11000; /* Match nav */
  box-shadow: 0 10px 30px rgba(0,0,0,0.5); /* Reduced shadow spread */
  
  /* Smooth Transition State */
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-15px) scale(0.98);
  transform-origin: top center;
  transition: 
    opacity 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
    visibility 0s linear 0.3s;
  will-change: transform, opacity;
}

/* Removed broad aura ::after */
.hero-logo-wrap::after {
  content: none; 
}

/* Sharper Diamond Shine Overlay */
/* Smash Bros "Special Item" Shine: Hard white core + rainbow edges */
.hero-logo-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    transparent 42%,
    rgba(255, 215, 0, 0.8) 45%,   /* Gold Edge */
    rgba(255, 0, 255, 0.8) 47%,   /* Magenta Edge */
    rgba(255, 255, 255, 1) 50%,   /* White Core (Hard) */
    rgba(0, 255, 255, 0.8) 53%,   /* Cyan Edge */
    rgba(0, 255, 0, 0.8) 55%,     /* Green Edge */
    transparent 58%
  );
  background-size: 250% 250%;
  opacity: 1;
  mix-blend-mode: overlay;
  animation: shineWipe 2.2s cubic-bezier(0.19, 1, 0.22, 1) infinite;
  
  /* Mask to the logo shape instead of a generic circle */
  mask-image: url('assets/hero_eye_3d.png');
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url('assets/hero_eye_3d.png');
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

@keyframes outlinePulse {
  0% {
    filter: 
      drop-shadow(0 0 1px rgba(255, 255, 255, 1))
      drop-shadow(-3px -3px 0px rgba(255, 215, 0, 1))
      drop-shadow(3px 3px 0px rgba(0, 255, 255, 1))
      drop-shadow(0 5px 0px rgba(255, 0, 255, 1));
  }
  33% {
    filter: 
      drop-shadow(0 0 1px rgba(255, 255, 255, 1))
      drop-shadow(3px -3px 0px rgba(255, 0, 255, 1))    /* Magenta Top-Right */
      drop-shadow(-3px 3px 0px rgba(255, 215, 0, 1))    /* Gold Bottom-Left */
      drop-shadow(0 -5px 0px rgba(0, 255, 255, 1));     /* Cyan Top */
  }
  66% {
    filter: 
      drop-shadow(0 0 1px rgba(255, 255, 255, 1))
      drop-shadow(0 5px 0px rgba(0, 255, 255, 1))       /* Cyan Bottom */
      drop-shadow(5px -2px 0px rgba(255, 0, 255, 1))    /* Magenta Right */
      drop-shadow(-5px -2px 0px rgba(255, 215, 0, 1));  /* Gold Left */
  }
  100% {
    filter: 
      drop-shadow(0 0 1px rgba(255, 255, 255, 1))
      drop-shadow(-3px -3px 0px rgba(255, 215, 0, 1))
      drop-shadow(3px 3px 0px rgba(0, 255, 255, 1))
      drop-shadow(0 5px 0px rgba(255, 0, 255, 1));
  }
}

@keyframes prismRotate {
  /* No longer used, but keeping keyframes just in case or can delete */
  0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}

@keyframes shineWipe {
  0% { background-position: 150% 150%; opacity: 0; }
  10% { opacity: 1; }
  50% { background-position: -50% -50%; opacity: 0; } /* Finished wipe halfway through time */
  100% { background-position: -50% -50%; opacity: 0; } /* Pause */
}

@keyframes auraBreath {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.8; }
}

@keyframes visionSpin {
  0% { transform: rotateY(-12deg) rotateX(5deg); }
  50% { transform: rotateY(12deg) rotateX(-5deg); }
  100% { transform: rotateY(-12deg) rotateX(5deg); }
}


@media (max-width: 768px) {
  .hero-eye-3d {
    /* OPTIMIZATION: Keep 3D spin (GPU) but disable heavy filter animation (CPU) */
    animation: visionSpin 15s ease-in-out infinite;
    max-height: 40vh;
    /* Static, lighter filter for mobile */
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.8)) drop-shadow(0 5px 0px rgba(112, 0, 255, 0.6));
  }
}


.logo-pulse {

  animation: logoBreath 4s ease-in-out infinite;
}

@keyframes logoBreath {
  0%, 100% { transform: scale(1); opacity: 0.95; filter: drop-shadow(0 0 5px var(--accent-glow)); }
  50% { transform: scale(1.03); opacity: 1; filter: drop-shadow(0 0 15px var(--accent-glow)); }
}

.nav-links a::after {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #4a00e0 100%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 30px rgba(112,0,255,0.3);
  color: #fff;
  font-weight: 600;
}
  .nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  /* Centered Nav Icon (The GIF but bigger) */
  .nav-center-icon {
     position: absolute;
     left: 50%;
     transform: translateX(-50%);
     top: 120px; /* Below nav? Or is nav icon the hero gif? User said 'Top center in the beginning'. */
     /* Actually, user said 'icon on top center', '50% bigger'. 
        I believe they mean the hero image or the nav logo. 
        Given they said 'remove icon rotating top left', I will assume they want the main logo in the Hero to be the focus.
        But let's look at the Hero image styles. 
      */
  }

/* HERO TITLE ADJUSTMENT - Ensuring large size is maintained */
.hero-title-adjust {
  line-height: 1.2;
}
.hero-title-adjust .title {
  font-size: inherit;
  letter-spacing: inherit;
}

  .nav-logo .otp-mark {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.22);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    object-fit: cover;
    transform: translateZ(0);
  }

  .nav-logo .otp-word {
    line-height: 1;
  }

  .nav-logo:hover .otp-mark {
    box-shadow: 0 0 0 4px rgba(214,178,94,0.12), 0 12px 36px rgba(0,0,0,0.40);
    border-color: rgba(255,255,255,0.16);
  }

.nav-links a {
  margin-left: 32px;
  text-decoration: none;
  color: var(--text);
  opacity: 0.78;
  transition: opacity 0.2s ease, transform 0.2s ease;
  font-weight: 650;
  letter-spacing: 0.5px;
  position: relative;
}

.nav-links {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex-wrap: nowrap !important;
}

.nav-links a {
  margin-left: 28px !important;
  white-space: nowrap !important;
}

@media (max-width: 1024px) {
  .nav-links a {
    margin-left: 18px !important;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 12px 20px;
    justify-content: space-between;
    height: 70px;
  }
  .nav-links {
    display: none !important;
  }
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 44px;
    height: 44px;
    right: auto;
    top: auto;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
  }
}

@keyframes menu-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1); }
  70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(214,178,94,0.95), rgba(244,223,154,0.85));
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
/* Active section link state */
.nav-links a.active {
  opacity: 1;
  color: var(--accent2);
}
.nav-links a.active::after {
  opacity: 0.95;
  transform: translateY(0px);
  background: var(--accent2);
}

.nav-links a:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.nav-links a:hover::after {
  opacity: 0.95;
  transform: translateY(0px);
}

.portal-btn {
  background: rgba(112, 0, 255, 0.12);
  border: 1px solid rgba(112, 0, 255, 0.25) !important;
  padding: 10px 22px !important;
  border-radius: 100px;
  color: var(--accent2) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px;
  white-space: nowrap !important;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(112, 0, 255, 0.1);
  margin-left: 10px;
}

.portal-btn:hover {
  background: var(--accent) !important;
  color: #fff !important;
  border-color: var(--accent2) !important;
  box-shadow: 0 0 20px rgba(112, 0, 255, 0.4);
}

.portal-btn::after {
  display: none !important;
}

.portal-icon {
  margin-right: 4px;
}

/* PORTAL DROPDOWN */
.portal-dropdown {
  position: relative;
  margin-left: 20px;
  display: inline-flex !important;
  align-items: center;
}

.portal-menu {
  position: absolute;
  top: calc(100% + 15px);
  right: -10px;
  background: rgba(15, 15, 25, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 10px;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10000;
  box-shadow: 0 30px 60px rgba(0,0,0,0.7), 0 0 40px rgba(112, 0, 255, 0.15);
}

.portal-dropdown.active .portal-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.portal-menu a {
  margin-left: 0 !important;
  padding: 14px 16px !important;
  border-radius: 12px !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.9) !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
}

.portal-menu a:hover {
  background: rgba(112, 0, 255, 0.15) !important;
  color: var(--accent2) !important;
  transform: translateX(4px);
}

.portal-menu a::after {
  display: none !important;
}

.portal-menu-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 6px 0;
}

/* PREMIUM HAMBURGER MENU */
.nav-toggle {
  display: none; /* Visible on mobile via media query */
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  z-index: 11005; /* Above drawer (11000) */
  pointer-events: auto; /* Ensure clickable */
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-origin: center;
}

.nav-toggle:hover {
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 25px rgba(112, 0, 255, 0.25); /* Violet glow */
  border-color: rgba(112, 0, 255, 0.3);
  transform: translateY(-2px);
}

/* ANIMATION STATE (Open) */
.nav-toggle[aria-expanded="true"] {
  background: rgba(255,255,255,0.15);
  box-shadow: 0 0 20px rgba(0, 195, 255, 0.3); /* Cyan glow active */
  border-color: rgba(0, 195, 255, 0.5);
  transform: rotate(90deg); /* Full button rotation for flair */
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 24px; /* Slightly wider X */
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 24px;
}

.nav-drawer {
  position: fixed;
  top: 85px; /* Aligned with new nav height */
  right: 15px;
  left: 15px;
  padding: 12px;
  display: flex;
  gap: 8px;
  flex-direction: column;
  background: rgba(10,10,18,0.95);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 11000; /* Match nav */
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  
  /* Smooth Transition State */
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-15px) scale(0.98);
  transform-origin: top center;
  transition: 
    opacity 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
    visibility 0s linear 0.3s;
}

.nav-drawer.open { 
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition: 
    opacity 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
    visibility 0s linear 0s;
}

.nav-drawer a {
  padding: 16px 20px; /* Larger touch target */
  border-radius: 12px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-drawer a:active {
  transform: scale(0.98);
  background: rgba(255, 255, 255, 0.08);
}

/* Highlight Mobile Contact Button */
.nav-drawer a[href="#contact"] {
  background: linear-gradient(135deg, var(--accent) 0%, #4a00e0 100%);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  box-shadow: 0 4px 15px rgba(112, 0, 255, 0.3);
}


/* HERO */
.hero {
  min-height: 100dvh;
  height: 100%; 
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  /* Relaxed padding */
  padding: 85px 20px 30px; 
  overflow: hidden; 
}

/* Tighten the rhythm */
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem); 
  letter-spacing: clamp(1px, 1.2vw, 5px);
  line-height: 1.4; /* Increased from 1.2 for Syne descenders */
  text-transform: uppercase;
  text-shadow: 0 10px 40px rgba(0,0,0,0.55);
  margin-bottom: 15px;
  margin-top: 10px;
  padding-bottom: 0.2em; /* Ensure descenders aren't clipped */
  overflow: visible;
}

.hero .title {
  display: block;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

.hero .subtitle {
  margin-top: 8px; 
  color: var(--muted);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.5; /* Better readability */
}

.hero p {
  margin-top: 6px;
  color: var(--muted);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  margin-bottom: 0;
  line-height: 1.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-logo-wrap {
  margin-bottom: 0px; 
}

.eyebrow {
  margin-bottom: 6px; /* Less cramped */
  padding: 8px 16px;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  
  /* Seamless Glass Style */
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  
  /* Subtle Glow Integration */
  box-shadow: 0 0 20px rgba(0,0,0,0.2), inset 0 0 0 1px rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}

.eyebrow:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent2);
  box-shadow: 0 0 15px rgba(0, 195, 255, 0.15);
  transform: translateY(-1px);
}

.hero-cta {
  margin-top: 24px; /* Significant breathing room before button */
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-micro {
  margin-top: 24px; /* More space for the footer elements */
  color: #fff; 
  font-size: 0.85rem; 
  letter-spacing: 0.6px;
  font-weight: 600; 
  display: inline-flex;
  gap: 16px; /* Widen the gap between badge and text */
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5); 
}

/* Custom separator dot for hero micro (Circle Style) */
.dot-circle {
  width: 4px;
  height: 4px;
  background: var(--accent2);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent2);
  opacity: 1;
  display: inline-block;
  vertical-align: middle;
  margin: 0 4px;
  font-size: 0;
  line-height: 0;
  color: transparent;
}

/* BACKGROUND GRADIENT MOTION */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(112,0,255,0.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0,195,255,0.10), transparent 40%);
  animation: float 12s ease-in-out infinite alternate;
  will-change: transform;
  z-index: 1;
}

@keyframes float {
  from { transform: translateY(0px); }
  to { transform: translateY(-40px); }
}

.subtitle-lead {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: #fff;
  margin: 20px 0 10px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-value {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--muted);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Reviews / Social Proof */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  text-align: center;
}
.review-card {
  width: 100%;
  /* Removed max-width to allow grid to control sizing */
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px;
  border-radius: 20px;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.4s ease, border-color 0.4s ease;
}
.review-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}
.review-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  font-weight: 700;
  color: var(--accent2);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Archive Clickability */
.view-project-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--accent2);
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.project-card:hover .view-project-btn {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .reviews-grid { 
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 600px) {
  .reviews-grid { 
      display: flex;
      flex-direction: column;
      gap: 20px;
  }
  .review-card {
      padding: 24px;
  }
  .review-text {
      font-size: 0.95rem;
  }
}

/* Form Prequalifying - Improved Select Styles */
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-group select:focus {
  border-color: var(--accent2);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

  background: #0b0b10;
  color: #fff;
}

/* Prevent zooming on inputs on iPhone */
@media screen and (max-width: 768px) {
  input, textarea, select {
    font-size: 16px !important;
  }
}

/* Mobile Overscroll Polish */
@media (max-width: 768px) {
    body {
        overscroll-behavior-y: none;
    }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-bg { animation: none; }
  .card, .service, .contact-card, .form, .btn, .nav-links a { transition: none; }
}

.grid {
  margin-top: 28px;
  margin-bottom: 64px; /* Added spacing to prevent collision with next section */
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card, .service, .contact-card, .form, .process-card {
  position: relative;
  border: 1px solid rgba(255,255,255,0.08); /* Slightly softer border */
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
  border-radius: 22px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.30);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), 
              border-color 0.4s ease, 
              background 0.4s ease, 
              box-shadow 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card:hover, .service:hover, .contact-card:hover, .form:hover, .process-card:hover {
  transform: translateY(-8px); /* slightly more pronounced lift */
  border-color: rgba(255,255,255,0.22);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.05));
  box-shadow: 0 20px 60px rgba(0,0,0,0.50), 0 0 25px rgba(112, 0, 255, 0.1);
}


/* LUXURY SHIMMER (subtle premium highlight) */
.card::before,
.service::before,
.form::before,
.contact-card::before,
.process-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  background: linear-gradient(
    120deg,
    rgba(214,178,94,0.00),
    rgba(214,178,94,0.16),
    rgba(244,223,154,0.00)
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.card:hover::before,
.service:hover::before,
.form:hover::before,
.contact-card:hover::before,
.process-card:hover::before {
  opacity: 1;
}

/* SPOTLIGHT GLOW */
.process-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(
    400px circle at var(--x, 50%) var(--y, 50%),
    rgba(112,0,255,0.25),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}
.process-card:hover::after { opacity: 1; }

.card {
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
}
.card-media {
  height: 180px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 25% 35%, rgba(214,178,94,0.16), transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(244,223,154,0.12), transparent 55%),
    rgba(0,0,0,0.18);
  display: grid;
  place-items: center;
  filter: saturate(1.05) contrast(1.03);
}
.placeholder {
  color: rgba(255,255,255,0.62);
  font-weight: 700;
  letter-spacing: 1px;
  border: 1px dashed rgba(255,255,255,0.18);
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(0,0,0,0.18);
}
.card-body { padding: 18px; }
.card-body h3 { font-size: 1.1rem; letter-spacing: 0.5px; }
.card-body p { margin-top: 8px; color: var(--muted2); }
.card-cta {
  margin-top: 14px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: rgba(255,255,255,0.86);
  font-weight: 750;
  letter-spacing: 0.3px;
  text-decoration: none;
  opacity: 0.9;
}
.card-cta::after {
  content: "→";
  opacity: 0.85;
  transform: translateX(0px);
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.card:hover .card-cta::after {
  transform: translateX(4px);
  opacity: 1;
}

.tags { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px; }
.tags span {
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.78);
}

.service { padding: 18px; }
.service h3 { font-size: 1.15rem; }
.service h3 { font-size: 1.15rem; }
.service ul { 
  margin-top: 10px; 
  padding-left: 0; 
  list-style: none; /* Remove default bullets */
  color: rgba(255,255,255,0.95); /* Brighter white text */
}

.service li { 
  margin: 10px 0; 
  display: flex; 
  align-items: flex-start; 
  gap: 10px; 
}

/* Glowing Plus Sign Marker */
.service li::before {
  content: "+";
  color: var(--accent2); /* Cyan */
  font-weight: bold;
  font-family: 'Space Grotesk', sans-serif;
  text-shadow: 0 0 8px var(--accent2);
  line-height: 1.5;
}
.link {
  display: inline-block;
  margin-top: 12px;
  color: rgba(255,255,255,0.86);
  opacity: 0.85;
  text-decoration: none;
}
.link:hover { opacity: 1; }

/* PREMIUM SECTION TITLES */
.section-head h2,
.minihead {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 2rem;
  
  /* Gradient Text */
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  
  /* Glow/Shadow */
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
  
  position: relative;
  display: inline-block;
}

/* Specific Sizes */
.section-head h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.minihead {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  display: block;
  letter-spacing: 0.1em;
  line-height: 1.4;
  padding-block: 0.2em; /* Prevents clipping of ascenders/descenders with background-clip */
}

/* Decorative Underline (Optional, subtle) */
.section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 0 15px var(--accent);
}

.section-split {
  display: grid;
  grid-template-columns: 1fr; /* Stack vertically (full width) */
  gap: 80px; /* Big gap between Process and Packages */
  align-items: start;
  margin-top: 160px; /* Increased to prevent cramp */
}
/* Deprecated media query since it's always 1fr now, but keeping for safety/future */
@media (max-width: 900px) {
  .section-split { gap: 60px; }
}

/* Services List (Spec Sheet Layout) */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.service-item {
  display: grid;
  grid-template-columns: 35% 1fr;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s ease;
  position: relative;
  will-change: background;
}

.service-item:hover {
  background: rgba(255,255,255,0.02);
}

.service-head h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 12px;
}

.service-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--accent2);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.service-body p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  max-width: 600px;
}

.service-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}

.service-details li {
  list-style: none;
  font-size: 0.95rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-details li::before {
  content: "→";
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 900px) {
  .service-item {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 0;
  }
  .service-head h3 { font-size: 1.6rem; }
  .service-details { grid-template-columns: 1fr; }
}

/* Process Grid (Restored) */
.process-stack {
  display: flex; /* Horizontal alignment */
  flex-direction: row;
  gap: 24px;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .process-stack {
    display: flex; /* Back to stack on mobile */
    flex-direction: column;
    gap: 20px;
  }
}

.process-card {
  padding: 24px 28px;
  display: flex;
  flex-direction: column; /* Stack content vertically for grid card */
  align-items: flex-start;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border-radius: 20px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  height: 100%; /* Equal height */
  will-change: transform;
}
.process-card:hover { /* Explicit hover state */
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border-color: rgba(255,255,255,0.14);
  transform: translateX(4px);
}

.process-card .step-num {
  font-size: 2.0rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.3);
  line-height: 1;
  margin-top: 4px; /* Align with text */
}

.process-card:hover .step-num {
  color: var(--accent2);
  -webkit-text-stroke: 0px;
  text-shadow: 0 0 20px rgba(0, 195, 255, 0.4);
}

.process-card h4 {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.95);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.process-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  opacity: 0.85;
}

.contact-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.form { padding: 18px; }
label { display: block; margin: 12px 0; color: rgba(255,255,255,0.86); font-weight: 600; }
input, select, textarea {
  width: 100%;
  margin-top: 8px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.22);
  color: rgba(255,255,255,0.92);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: rgba(214,178,94,0.45);
  box-shadow: 0 0 0 4px rgba(214,178,94,0.14);
}

.fineprint { margin-top: 10px; color: var(--muted2); font-size: 0.9rem; }

.contact-card { padding: 18px; }
.contact-links { display: grid; gap: 10px; margin-top: 10px; }
.divider { height: 1px; background: rgba(255,255,255,0.10); margin: 16px 0; }

.footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(10,10,18,0.55);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer a { text-decoration: none; opacity: 0.8; transition: opacity 0.2s ease, color 0.2s ease; }
.footer a:hover { opacity: 1; color: var(--accent2); }

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  opacity: 0.6;
  margin-top: 4px;
}

.footer-legal a {
  opacity: 1;
}

.footer-legal .dot {
  margin: 0 10px;
  opacity: 0.3;
}

.footer-status {
  margin: 15px 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 500;
}

.status-indicator {
  width: 6px;
  height: 6px;
  background: var(--accent2);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 8px var(--accent2);
}

.status-indicator::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  animation: status-pulse 2s infinite;
}

@keyframes status-pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

.footer-right a {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* MOBILE */
@media (max-width: 900px) {
  .grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section, .section-tight { scroll-margin-top: 75px; }
  .nav { padding: 16px 18px; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .hero h1 { letter-spacing: 2px; }
  .hero .title { letter-spacing: 2px; }
  .hero { padding-top: 96px; }
}

/* =============================
   PREMIUM UPGRADES: WORK + PRICING
   (drop-in styles; add minimal HTML classes)
============================= */

/* Work cards can support video thumbs */
.card-media.is-video {
  position: relative;
  overflow: hidden;
}

.card-media.is-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.06);
  opacity: 0.92;
}

.card-media.is-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 25%, rgba(112,0,255,0.15), transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(0,195,255,0.10), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

.play-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(10,10,18,0.72);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.45);
  color: rgba(255,255,255,0.92);
  font-weight: 800;
  letter-spacing: 0.6px;
  z-index: 2;
}

.play-badge::before {
  content: "▶";
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(214,178,94,0.95), rgba(244,223,154,0.78));
  color: rgba(10,10,18,0.92);
  box-shadow: 0 10px 30px rgba(214,178,94,0.18);
}

/* Pricing (Packages) — works best if you wrap packages in .pricing-grid > .price-card */
.pricing-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.price-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(circle at 20% 20%, rgba(214,178,94,0.10), transparent 45%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.035));
  box-shadow: 0 10px 40px rgba(0,0,0,0.30);
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.2s ease, background 0.2s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.16);
  background:
    radial-gradient(circle at 20% 20%, rgba(214,178,94,0.14), transparent 50%),
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.04));
}

.price-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  background: linear-gradient(
    120deg,
    rgba(214,178,94,0.00),
    rgba(214,178,94,0.16),
    rgba(244,223,154,0.00)
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

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

.price-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.price-title {
  font-size: 1.15rem;
  font-weight: 850;
  letter-spacing: 0.6px;
}

.price-tag {
  font-weight: 900;
  letter-spacing: 0.6px;
  color: rgba(244,223,154,0.92);
  text-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.price-sub {
  margin-top: 8px;
  color: var(--muted);
  max-width: 40ch;
}

.price-list {
  margin-top: 14px;
  padding-left: 18px;
  color: rgba(255,255,255,0.80);
}

.price-list li { margin: 8px 0; }

.price-cta {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Highlight plan (add .is-featured to a price-card) */
.price-card.is-featured {
  border-color: rgba(214,178,94,0.28);
  box-shadow: 0 18px 60px rgba(0,0,0,0.40), 0 22px 70px rgba(214,178,94,0.10);
}

.price-card.is-featured .price-tag {
  color: rgba(214,178,94,0.98);
}

/* Optional: tiny badge (add <span class="mini-badge">Most picked</span>) */
.mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(214,178,94,0.10);
  border: 1px solid rgba(214,178,94,0.22);
  color: rgba(244,223,154,0.92);
  font-weight: 800;
  letter-spacing: 0.6px;
  font-size: 0.82rem;
}/* SCROLL REVEAL (Updated for more impact) */
.reveal {
  opacity: 0;
  transform: translateY(60px); /* Increased from default */
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Updated Process Step Visibility */
.process-card .step-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(214,178,94,0.40); /* Increased opacity */
  text-shadow: 0 4px 12px rgba(214,178,94,0.15); /* Added glow */
  line-height: 1;
}
.process-card:hover .step-num {
  color: rgba(214,178,94,0.60);
}
/* CURSOR CANVAS */
#cursor-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

/* CAROUSEL GRID SYSTEM */
.carousel-container {
  width: 100%;
  margin-top: 32px;
  position: relative;
}

.carousel-viewport {
  width: 100%;
  overflow: hidden;
  padding: 10px 0 40px 0;
  margin: -10px 0 -40px 0;
  max-width: 700px; /* Limit width for single-card focus */
  margin-inline: auto; /* Center the viewport */
}

.carousel-track {
  display: flex;
  width: 100%;
  gap: 0; /* Remove gap, handle spacing via padding if needed */
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* CAROUSEL ITEMS */
.package {
  flex: 0 0 100%; /* Always full width of viewport */
  min-width: 0;
  width: 100%;
  scroll-snap-align: center;
}

@media (max-width: 900px) {
  .carousel-track {
    gap: 0; 
  }
  .package {
    flex: 0 0 100%;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .carousel-viewport {
    overflow: hidden;
  }
}

/* CAROUSEL DOTS */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.dot.active {
  background: var(--accent2);
  box-shadow: 0 0 12px var(--accent2);
  border-color: transparent;
  transform: scale(1.2);
}

[data-theme="light"] .dot {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .dot.active {
  background: var(--accent2);
  box-shadow: 0 0 10px rgba(0, 195, 255, 0.2);
}

/* ACTIVE FOCUS STATE */
.package.active-focus {
  /* Glows on active, but since it's single slide, 
     all prominent cards are basically "active" when viewed.
     We keep the glow for the "Active" feel. */
  border-color: var(--accent);
  box-shadow: 0 14px 60px rgba(112, 0, 255, 0.25), 0 0 40px rgba(112, 0, 255, 0.1);
  transform: translateY(-4px); /* Slight lift */
  background: rgba(20, 20, 35, 0.75);
}

/* Ensure original grid styles are removed or overridden */
.package-grid { display: none; } /* Legacy safety */

/* PACKAGE GRID SYSTEM (Revamped) */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px; /* Tighter gap */
  margin-top: 32px;
  align-items: stretch; /* Match heights */
}

@media (max-width: 900px) {
  .package-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
}

/* PACKAGE CARD (The "Dope" Era) */
.package {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px; /* Optimized padding */
  border-radius: 20px;
  background: rgba(10, 10, 18, 0.4); /* Deep glass base */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
  height: 100%;
}

/* Inner Glow/Gradient Subtle */
.package::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
    rgba(255, 255, 255, 0.04), 
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.package:hover::before { opacity: 1; }

.package:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(20, 20, 35, 0.5);
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05); /* inner rim */
}

/* FEATURED CARD */
.package.featured {
  background: rgba(15, 15, 25, 0.6);
  border: 1px solid rgba(112, 0, 255, 0.3);
  box-shadow: 0 0 30px rgba(112, 0, 255, 0.1);
}
.package.featured:hover {
  border-color: var(--accent);
  box-shadow: 
    0 14px 60px rgba(112, 0, 255, 0.25),
    0 0 40px rgba(112, 0, 255, 0.1);
}

/* CARD HEADER */
.package-top {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.package-top h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
}

.package.featured .package-top h4 {
  color: #fff;
  text-shadow: 0 0 12px rgba(112, 0, 255, 0.6);
}

.package-top .price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}

/* CARD LIST */
.package ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.package ul li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.35;
}

.package ul li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.05);
}

.package.featured ul li { color: rgba(255, 255, 255, 0.85); }
.package.featured ul li::before {
  background: var(--accent2); /* Cyan dot */
  box-shadow: 0 0 6px var(--accent2);
}

/* BUTTONS in Packages */
.package .k-hover {
  width: 100%;
  text-align: center;
  padding: 14px;
  margin-top: auto;
  font-size: 0.95rem;
}

/* KURSOR MAPPING (Adapter for existing styles) */
.k-hover {
  /* cursor: none !important; - Removed to ensure default cursor is visible */
}
/* .k-hover handled above */
.k-hover-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #4a00e0 100%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 30px rgba(112,0,255,0.3);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.5px;
  letter-spacing: 0.5px;
  transition: transform 0.15s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

/* HIGH TIER (PARTNER/NETWORK) SPECIAL BUTTON */
.network-pkg .pkg-select-btn,
.package.featured .pkg-select-btn {
  background: linear-gradient(135deg, #7000ff 0%, #aa00ff 100%);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  box-shadow: 0 4px 15px rgba(112, 0, 255, 0.3);
}

.network-pkg .pkg-select-btn:hover,
.package.featured .pkg-select-btn:hover {
  background: linear-gradient(135deg, #8a2be2 0%, #bf40bf 100%); /* Lighter Royal Purple */
  box-shadow: 0 0 25px rgba(138, 43, 226, 0.6), inset 0 0 10px rgba(255,255,255,0.2);
  transform: translateY(-2px) scale(1.02);
  border-color: #fff;
}
.k-hover-primary:hover {
  box-shadow: 0 10px 40px rgba(112,0,255,0.5);
  border-color: rgba(255,255,255,0.2);
}

.k-hover-ghost {
  /* Copy of .btn-ghost + base .btn */
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.5px;
  transition: transform 0.15s ease, opacity 0.2s ease, background 0.2s ease;
}
.k-hover-ghost:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

/* NEW CONTACT ICONS & CENTERED LAYOUTS */
.contact-center {
  margin-top: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.contact-icons {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* 3D ICONS ULTRA MODERN */
.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px; /* Slightly larger */
  height: 90px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08); /* Faint rim */
  
  /* Deep 3D Button Gradient */
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08), transparent 70%),
              linear-gradient(145deg, rgba(20,20,30,0.8), rgba(0,0,0,0.95));
  
  color: rgba(255, 255, 255, 0.5);
  box-shadow: 
    0 -4px 10px rgba(255,255,255,0.05), /* Highlight top */
    0 10px 20px rgba(0,0,0,0.6),        /* Shadow bottom */
    inset 0 0 20px rgba(0,0,0,0.8);     /* Inner depth */
  
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.icon-link::after {
  /* Glossy highlight */
  content: "";
  position: absolute;
  top: 10%;
  left: 20%;
  width: 25%;
  height: 15%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.15), transparent 70%);
  filter: blur(4px);
  transform: rotate(-15deg);
}

.icon-link svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.5;
  transition: transform 0.4s ease, filter 0.4s ease;
  z-index: 2;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
}

.icon-link:hover {
  transform: translateY(-8px) scale(1.1);
  color: #fff;
}

.icon-link:hover svg {
  transform: scale(1.15);
  stroke-width: 2;
  filter: drop-shadow(0 0 12px currentColor); /* Glow with the brand color */
}

/* Brand Colors on Hover */
.icon-link[aria-label="Instagram"]:hover { 
  border-color: #E1306C; 
  box-shadow: 0 15px 40px rgba(225, 48, 108, 0.4), inset 0 0 30px rgba(225, 48, 108, 0.2);
  color: #E1306C;
}
.icon-link[aria-label="YouTube"]:hover { 
  border-color: #FF0000; 
  box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4), inset 0 0 30px rgba(255, 0, 0, 0.2);
  color: #FF0000;
}
.icon-link[aria-label="Email"]:hover { 
  border-color: var(--accent2); 
  box-shadow: 0 15px 40px rgba(0, 195, 255, 0.4), inset 0 0 30px rgba(0, 195, 255, 0.2);
  color: var(--accent2);
}

.contact-details-center {
  font-family: 'Syne', sans-serif; /* Funky font */
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
  overflow: visible;
}

.contact-details-center p {
  margin: 8px 0;
  font-size: 1.6rem; /* Larger */
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #fff, rgba(255,255,255,0.6));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.contact-details-center .muted {
  font-size: 1.0rem;
  opacity: 0.6;
  font-family: 'Inter', sans-serif; /* Keep details clean */
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: var(--muted);
  text-transform: none;
  font-weight: 400;
}

/* ============================
   NEW STATIC PACKAGES GRID
   (Replacing Carousel styles)
============================ */
.package-grid-static {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
  margin-top: 32px;
  margin-bottom: 60px;
}


@media (max-width: 800px) {
  .package-grid-static {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}


.package-static {
  flex: 1;
  background: rgba(10, 10, 16, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), 
              background 0.4s ease, 
              border-color 0.4s ease, 
              box-shadow 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.package-static:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}


.package-static.featured {
  background: rgba(112, 0, 255, 0.05); /* Slight tint */
  border-color: rgba(112, 0, 255, 0.2);
}
.package-static.featured:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 40px rgba(112, 0, 255, 0.15);
}

.package-static .package-top {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 24px; /* Increased padding */
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
  flex-grow: 1;
}
.check-list li {
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  padding-left: 14px;
  position: relative;
}
.check-list li::before {
  content: "•";
  color: var(--accent2);
  position: absolute;
  left: 0;
}

.pkg-tag {
  display: none; /* Hide old text tag */
}

.pkg-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 36px; Removed fixed width to allow expansion */
  height: 36px;
  /* border-radius: 50%; Removed for multi-icon support */
  /* background: rgba(255, 255, 255, 0.03); Removed */
  /* border: 1px solid rgba(255, 255, 255, 0.08); Removed */
  /* box-shadow: inset 0 0 10px rgba(0,0,0,0.5); Removed */
}

/* Individual Icon Bubble */
.pkg-icon-bubble {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -12px; /* Overlap effect */
  position: relative;
  transition: transform 0.3s ease, z-index 0s;
}

.pkg-icon-bubble:first-child {
  margin-left: 0;
}

.pkg-icon-bubble:hover {
  transform: translateY(-4px);
  z-index: 10;
  border-color: rgba(255,255,255,0.2);
  background: rgba(255, 255, 255, 0.08);
}

.pkg-neon-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: all 0.3s ease;
}

/* Category Specific Colors */
.pkg-neon-icon.icon-music {
  stroke: var(--accent2); /* Cyan */
  filter: drop-shadow(0 0 4px var(--accent2));
}

.pkg-neon-icon.icon-business {
  stroke: #7000ff; /* Purple */
  filter: drop-shadow(0 0 4px #7000ff);
}

.pkg-neon-icon.icon-content {
  stroke: #ffffff; /* White/Bright */
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.8));
}

.pkg-neon-icon.icon-partner {
  stroke: #ffd700; /* Gold */
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.6));
}

.pkg-neon-icon.icon-photo {
  stroke: #ff0099; /* Hot Pink */
  filter: drop-shadow(0 0 5px rgba(255, 0, 153, 0.6));
}

.package-static:hover .pkg-neon-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px currentColor);
}

/* DAY MODE ICON OVERRIDES */
[data-theme="light"] .pkg-icon-bubble {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

[data-theme="light"] .pkg-neon-icon.icon-content {
  stroke: #111111; /* Carbon Black */
  filter: none; /* Remove glow for crisp look */
}

[data-theme="light"] .pkg-neon-icon.icon-music {
  stroke: #0077b6; /* Deep Ocean */
  filter: none;
}

[data-theme="light"] .pkg-neon-icon.icon-business {
  stroke: #6200e0; /* Deep Violet */
  filter: none;
}

[data-theme="light"] .pkg-neon-icon.icon-partner {
  stroke: #b8860b; /* Dark Goldenrod */
  filter: none;
}

[data-theme="light"] .pkg-neon-icon.icon-photo {
  stroke: #c71585; /* Medium Violet Red */
  filter: none;
}

[data-theme="light"] .pkg-icon-bubble:hover {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.2);
}

/* DAY MODE: PACKAGE HOVERS */
[data-theme="light"] .package-static.featured .pkg-select-btn:hover,
[data-theme="light"] .network-pkg .pkg-select-btn:hover {
  background: linear-gradient(135deg, #d4af37 0%, #f9d71c 100%) !important;
  color: #000 !important;
  border-color: #b8860b !important;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4) !important;
  transform: translateY(-2px) scale(1.02);
}

/* Ensure the normal featured button in light mode is still clear */
[data-theme="light"] .package-static.featured .pkg-select-btn,
[data-theme="light"] .network-pkg .pkg-select-btn {
  background: #111;
  color: #fff;
  border: 1px solid #000;
}

.pkg-meta {
  margin-top: auto;
  padding-top: 15px;
  border-top: none; /* Removed line requested */
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pkg-meta strong {
  color: #fff;
}

.pkg-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 20px;
}

.network-pkg {
  background: linear-gradient(135deg, rgba(0, 195, 255, 0.05), rgba(112, 0, 255, 0.05));
  border-color: rgba(0, 195, 255, 0.15);
}

.network-pkg:hover {
  border-color: var(--accent2);
  box-shadow: 0 20px 60px rgba(0, 195, 255, 0.15);
}
.pkg-note {
  font-size: 0.8rem;
  color: var(--muted2);
  font-style: italic;
  margin-top: auto;
}

@media (max-width: 900px) {
  .package-grid-static {
    flex-direction: column;
    gap: 20px;
  }
}

/* NEW SERVICES STYLES */
.service-desc {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 12px;
  font-style: italic;
}

/* COOL WORK LINK */
.work-link-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 60px;
}

/* ABSTRACT WORK LINK VISUAL */
.abstract-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(112,0,255,0.4), rgba(0,0,0,0) 70%),
              radial-gradient(circle at 70% 70%, rgba(0,195,255,0.3), rgba(0,0,0,0) 70%);
  filter: blur(8px);
  opacity: 0.6;
  transition: all 0.5s ease;
  z-index: 0;
  animation: pulse-glow 4s infinite alternate;
}

.cool-work-link:hover .abstract-visual {
  filter: blur(4px);
  opacity: 1;
  transform: scale(1.1);
  background: radial-gradient(circle at 30% 30%, rgba(112,0,255,0.6), rgba(0,0,0,0) 60%),
              radial-gradient(circle at 70% 70%, rgba(0,195,255,0.5), rgba(0,0,0,0) 60%);
}

@keyframes pulse-glow {
  0% { opacity: 0.5; transform: scale(0.95); }
  100% { opacity: 0.8; transform: scale(1.05); }
}

.cool-work-link {
  width: 260px; 
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(5px);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cool-work-link.is-black-hole,
.cool-work-link:hover {
  transform: scale(0.94); /* High Gravity Compression */
  border-color: rgba(255, 80, 0, 0.8); /* Accretion Disk Edge */
  background: #000; /* The Singularity */
  box-shadow: 
    0 0 60px rgba(255, 60, 0, 0.6), /* Red/Orange Glow */
    inset 0 0 60px rgba(0, 0, 0, 1); /* Infinite Depth */
}

.cool-work-link.is-black-hole .link-text,
.cool-work-link:hover .link-text,
.cool-work-link:active .link-text {
  text-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
  color: #fff;
}

.cool-work-link.is-black-hole .link-sub,
.cool-work-link:hover .link-sub {
  color: var(--accent2);
  opacity: 1;
}

.link-text {
  position: relative;
  z-index: 2;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem; 
  color: #fff;
  letter-spacing: 2px;
  line-height: 1.4;
  padding-bottom: 5px;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
  overflow: visible;
}

.link-sub {
  position: relative;
  z-index: 2;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  color: var(--accent2);
  margin-top: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ULTRA MODERN BUTTON */
.book-btn {
  background: #fff;
  color: #000;
  border-radius: 99px;
  padding: 16px 42px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none; /* Removed border */
  box-shadow: 0 0 30px rgba(255,255,255,0.3);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.book-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #00c3ff, #7000ff);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.book-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(255,255,255,0.6);
  color: #fff;
}
.book-btn:hover::before { opacity: 1; }
.link-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--accent2);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* FINAL CTA SECTION */
.final-cta {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* GLOWING HOVER EFFECTS PER SECTION (Colorize) */
/* Services - Cyan/Blue */
#services .service:hover {
  border-color: rgba(0, 195, 255, 0.4);
  box-shadow: 0 10px 40px rgba(0, 195, 255, 0.15);
}
#services .service:hover h3 { color: #00c3ff; }

/* Process - Purple/Violet */
.process-card:hover {
  border-color: rgba(112, 0, 255, 0.4);
  box-shadow: 0 10px 40px rgba(112, 0, 255, 0.15);
}
.process-card:hover h4 { color: #7000ff; }

/* Contact - Mixed/White */
/* .package-static:hover handled above in base styles */



.icon-link:hover svg {
  transform: scale(1.1);
  stroke-width: 2;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.5));
}

.icon-link[aria-label="Instagram"]:hover { border-color: #E1306C; background: rgba(225, 48, 108, 0.15); box-shadow: 0 10px 30px rgba(225, 48, 108, 0.3); }
.icon-link[aria-label="YouTube"]:hover { border-color: #FF0000; background: rgba(255, 0, 0, 0.15); box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3); }
.icon-link[aria-label="Email"]:hover { border-color: var(--accent2); background: rgba(0, 195, 255, 0.15); box-shadow: 0 10px 30px rgba(0, 195, 255, 0.3); }

.contact-details-center p {
  margin: 6px 0;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}
.contact-details-center .muted {
  font-size: 0.95rem;
  opacity: 0.6;
}

/* MODAL CENTERING */
.modal-head { text-align: center; }
.modal-actions { justify-content: center; }



/* AUTO-TILT ANIMATION (Default mobile state) */
@keyframes shimmerBreath {
  0% {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    --bgX: 50%; --bgY: 50%;
  }
  25% {
    transform: perspective(1000px) rotateX(2deg) rotateY(3deg);
    --bgX: 60%; --bgY: 40%;
  }
  50% {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    --bgX: 50%; --bgY: 50%;
  }
  75% {
    transform: perspective(1000px) rotateX(-2deg) rotateY(-3deg);
    --bgX: 40%; --bgY: 60%;
  }
  100% {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    --bgX: 50%; --bgY: 50%;
  }
}

.glass-manifesto.auto-tilt {
  animation: shimmerBreath 6s ease-in-out infinite;
}

/* MODAL FIX - Ensure hidden */
.modal {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
  z-index: -100 !important;
}
.modal.open {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  visibility: visible !important;
  z-index: 1000 !important;
}

/* SUPPRESS EXTERNAL INJECTED GLOW / VIGNETTE */
#preact-border-shadow-host,
[class*="animate-breathing"] {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

/* ARCHIVE PAGE SPECIFIC */
.archive-page .nav {
  justify-content: space-between;
  padding: 20px 40px;
}

.back-link {
  text-decoration: none;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 480px) {
  .back-link {
    font-size: 0.9rem;
    padding: 8px; /* Bigger tap target */
  }
}

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

.archive-nav-gif {
  width: 50px;
  height: auto;
}

.archive-header {
  margin: 120px 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-align: left;
}
@media (max-width: 900px) {
  .archive-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}


.archive-header h1 {
  /* Reduced from 8rem max to 5rem per user request */
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.9;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .archive-header h1 {
    font-size: clamp(2.0rem, 11vw, 3.2rem);
    letter-spacing: -1px;
    word-break: break-word; /* Ensure it wraps if needed */
    hyphens: auto;
  }
}

/* HEADER VISUALS (NEON ICONS) */
.header-visual {
  width: 80px; /* Scaled down for side-by-side */
  height: 80px;
  min-width: 80px;
  margin: 0; 
  position: relative;
  filter: drop-shadow(0 0 15px var(--accent-glow));
  order: 2; /* Move icon to the right of text */
}

.neon-icon {
  width: 100%;
  height: 100%;
  overflow: visible;
}


.folder-outline, .brain-outline {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawStroke 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.file-line, .pulse-line {
  opacity: 0;
  animation: flickerGlow 3s infinite alternate;
}

.line-1 { animation-delay: 0.2s; }
.line-2 { animation-delay: 0.5s; }
.line-3 { animation-delay: 0.8s; }

.status-dot, .core-glow {
  animation: corePulse 2s infinite ease-in-out;
}

@keyframes drawStroke {
  to { stroke-dashoffset: 0; }
}

@keyframes flickerGlow {
  0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
    opacity: 0.8;
    filter: drop-shadow(0 0 10px var(--accent2));
  }
  20%, 21.999%, 63%, 63.999%, 65%, 69.999% {
    opacity: 0.1;
    filter: none;
  }
}

@keyframes corePulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; filter: blur(5px); }
}

/* NEURAL CORE ANIMATIONS (INSIGHTS) */
.hex-frame {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawStroke 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.core-outline {
  animation: corePulse 3s infinite ease-in-out;
}

.neural-node {
  opacity: 0;
  animation: nodeFlicker 4s infinite alternate;
}

.node-up { animation-delay: 0.2s; }
.node-down { animation-delay: 0.6s; }
.node-left { animation-delay: 1s; }
.node-right { animation-delay: 1.4s; }

.glitch-particle {
  opacity: 0;
  animation: glitchJump 2s infinite linear;
}

.p1 { animation-delay: 0.5s; }
.p2 { animation-delay: 1.2s; }

@keyframes nodeFlicker {
  0%, 30%, 35%, 100% { opacity: 0.1; }
  32% { opacity: 0.8; filter: drop-shadow(0 0 5px var(--accent)); }
}

@keyframes glitchJump {
  0% { transform: translate(0,0); opacity: 0; }
  10% { opacity: 1; transform: translate(5px, -5px); }
  20% { transform: translate(-2px, 2px); }
  30% { opacity: 0; transform: translate(0,0); }
  100% { opacity: 0; }
}

.pulse-line-neural {
  stroke-dasharray: 20;
  animation: pulseMove 2s infinite linear;
}

@keyframes pulseMove {
  from { stroke-dashoffset: 40; }
  to { stroke-dashoffset: 0; }
}

.archive-grid {


  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 80px;
  width: 100%;
}

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

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

.project-media {
  /* Deprecated wrapper, styles moved to .project-card or unused */
  display: contents;
}

.project-img-static {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%; /* Ensure it never overflows its container */
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s ease;
  z-index: 1;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.project-card.has-video:hover .project-img-static {
  transform: scale(1.05); /* Subtle zoom on hover */
  opacity: 0; /* Hide image ONLY if video exists */
}

/* Ensure no-video cards usually keep image visible */
.project-card:hover .project-img-static {
  transform: scale(1.05); 
}

/* VIDEO PREVIEW STYLES */
.video-preview-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.project-card.has-video:hover .video-preview-container {
  opacity: 1;
}

.video-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-card:hover .video-preview {
  transform: scale(1);
}


.project-card {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 20px;
  overflow: hidden;
  background: #050510;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  will-change: transform, box-shadow;
}

.project-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 20px 50px rgba(0, 195, 255, 0.15), 0 0 30px rgba(112, 0, 255, 0.1);
}

.placeholder-glow {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #050508, #101018);
  position: relative;
}

.placeholder-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(112,0,255,0.1), transparent);
  opacity: 0.5;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.4) 40%, transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px; /* Reduced padding */
  opacity: 0.9;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.project-card:hover .project-overlay {
  opacity: 1;
  background: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0.5) 50%, transparent);
}

.project-overlay h3 {
  font-size: 1.15rem; /* Smaller title */
  margin-bottom: 4px;
  line-height: 1.2;
}

.project-overlay span {
  font-size: 0.75rem;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* ARCHIVE REFINEMENTS */
.syne-bold {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.4;
  padding-bottom: 10px;
  overflow: visible;
}

.archive-main {
  position: relative;
  z-index: 2;
  padding-top: 120px; /* Space for fixed nav */
  padding-bottom: 100px;
}

/* Insight Cards Spotlight Effect */
.insight-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s ease;
  cursor: pointer;
}

.insight-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
}

.insight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(214, 178, 94, 0.1),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

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

.insight-date {
  font-size: 0.85rem;
  color: var(--accent2);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.insight-card h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  line-height: 1.2;
}

.insight-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: gap 0.2s ease;
}

.read-more:hover {
  gap: 12px;
  color: var(--accent2);
}

.project-card img {
  transition: transform 0.6s cubic-bezier(0.2, 0, 0, 1);
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-card:hover img {
  transform: scale(1.1);
}


/* FAQ & CONTACT FORM STYLES */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent2);
}

.faq-item h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #fff;
}

.faq-item p {
  font-size: 0.95rem;
  color: var(--muted);
}

.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.contact-form {
  background: rgba(20, 20, 40, 0.4);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

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

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 14px 18px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent2);
  background: rgba(0, 195, 255, 0.05);
  box-shadow: 0 0 20px rgba(0, 195, 255, 0.2);
}

.form-actions {
  margin-top: 32px;
}

.form-actions .book-btn {
  width: 100%;
  cursor: pointer;
}

.form-status {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  min-height: 1.2em;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  text-align: center;
  width: 100%;
}

.contact-details-side p {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 8px;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.6));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-details-side .muted {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: var(--muted);
}

/* Mobile overrides removed as main styles are now responsive */

@media (max-width: 600px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 24px 16px;
  }
  .contact-sidebar {
    flex-direction: column;
    text-align: center;
  }
}

/* CURSOR LABEL STYLES */
.cursor-label {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  background: rgba(112, 0, 255, 0.75); /* Reduced opacity for better visibility around it */
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transform: translate(0, 0);
  transition: opacity 0.15s ease, transform 0s; /* Snappier fade and instant follow */
  box-shadow: 0 10px 20px rgba(0,0,0,0.2), 0 0 15px rgba(112, 0, 255, 0.3);
}

.cursor-label.visible {
  opacity: 1;
}

/* Ensure canvas is always invisible to clicks and doesn't affect width */
/* Ensure canvas is behind content but in front of bg-fixed */
#cursor-canvas {
  pointer-events: none !important;
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: -1; /* Above bg-fixed (-2) but below content (1+) */
}

/* GLOBAL MOBILE POLISH */
@media (max-width: 768px) {
  html, body { 
    font-size: 16px; 
    font-family: 'Inter', 'Space Grotesk', sans-serif;
  }
  
  .section { padding: 60px 0; }
  
  .hero-title-adjust .title {
    font-size: clamp(2.4rem, 12vw, 4rem);
    line-height: 1.0;
  }
  
  .hero-micro {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    font-size: 0.9rem;
  }
  .dot-circle { display: none; }
  
  .subtitle-lead {
    font-size: 1.1rem;
    padding: 0 10px;
    margin-bottom: 25px;
  }
  
  .service-desc {
    font-size: 0.95rem; /* Better readability on mobile */
    line-height: 1.5;
  }
  
  .book-btn {
    padding: 14px 28px; /* Slightly smaller on mobile */
    font-size: 1rem;
  }
  
  .grid, .grid-2 {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .cool-work-link {
    width: 260px !important;
    height: 260px !important;
  }

  .nav-drawer a {
    font-size: 1.1rem;
    padding: 18px;
  }

  /* Fix for overlapping text in packages or other cards */
  .package-static, .service, .faq-item {
    padding: 20px !important;
  }

  /* Make footer items center */
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .footer-right { margin-top: 10px; }
}

/* TOUCH OPTIMIZATION */
@media (hover: none) {
  .cursor-label { display: none !important; }
  /* Stars should be fully visible now */
}

/* Final fit check for small screens */
@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem !important; }
  .eyebrow { font-size: 0.8rem; }
  .wrap { width: 92vw; }
  .nav { padding: 15px 20px; }
  .archive-page .nav { padding: 15px 20px; }
  .back-link { font-size: 0.8rem; }
}

/* INSIGHTS GRID */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 60px;
}

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

.insight-card {
  background: rgba(15, 15, 25, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.insight-card-inner {
  padding: 35px;
  display: flex;
  flex-direction: column;
  height: 100%;
  flex-grow: 1;
}

.insight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.06), transparent 40%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.insight-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-10px) scale(1.02);
  background: rgba(20, 20, 35, 0.6);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(112, 0, 255, 0.1);
}

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

.insight-date {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  color: var(--accent2);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  font-weight: 800;
  opacity: 0.9;
}

.insight-card h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  line-height: 1.25;
  margin-bottom: 18px;
  color: #fff;
  font-weight: 700;
  overflow: visible;
}

.insight-card p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insight-footer {
  margin-top: auto;
  padding-top: 10px;
}

.read-more {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  padding: 12px 24px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  width: fit-content;
  position: relative;
  overflow: hidden;
}

.read-more::after {
  content: '→';
  transition: transform 0.3s ease;
}

.insight-card:hover .read-more {
  background: var(--accent2);
  border-color: var(--accent2);
  color: #000;
  box-shadow: 0 10px 25px rgba(0, 195, 255, 0.4);
  transform: translateX(5px);
}

.insight-card:hover .read-more::after {
  transform: translateX(4px);
}

@media (max-width: 480px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }
  .insight-card {
    padding: 30px;
  }
}

/* SUBSCRIBE SECTION */
.subscribe-section {
  margin: 100px 0 60px;
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.subscribe-section h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.subscribe-form {
  margin-top: 30px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.subscribe-form input {
  padding: 16px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 300px;
  max-width: 100%;
}

.subscribe-form button {
  padding: 16px 32px;
  border-radius: 50px;
  background: #fff;
  color: #000;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.insights-footer-nav {
  margin: 40px 0 80px;
  font-size: 0.9rem;
  opacity: 0.6;
}

.insights-footer-nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}

/* BLOG POST STYLES */
.post-content {
  max-width: 800px;
  margin: 0 auto 120px;
  line-height: 1.8;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
}

.post-header {
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 40px;
  padding-top: 140px; /* Clear fixed nav */
  margin-top: 0;
}

.post-meta {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  display: block;
}

.post-content h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.5; /* Aggressive fix for post titles */
  padding-bottom: 0.3em;
  overflow: visible;
}

.post-content h2 {
  margin-top: 60px;
  font-family: 'Syne', sans-serif;
  color: #fff;
  font-size: 2rem;
  line-height: 1.5;
  padding-bottom: 10px;
  margin-bottom: 24px;
  overflow: visible;
}

.post-content p {
  margin-bottom: 24px;
}

.post-content blockquote {
  border-left: 3px solid var(--accent);
  margin: 50px 0;
  font-style: italic;
  color: #fff;
  font-size: 1.4rem;
  font-family: 'Syne', sans-serif;
  background: linear-gradient(90deg, rgba(112,0,255,0.06), transparent);
  padding: 30px 40px;
  border-radius: 0 16px 16px 0;
}

.post-nav {
  margin-top: 80px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
}

.next-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.next-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent2);
  box-shadow: 0 0 30px rgba(0, 195, 255, 0.25);
  transform: translateY(-2px);
  color: #fff;
}

.post-image {
  width: 100%;
  border-radius: 12px;
  margin: 40px 0;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadowSoft);
}

@media (max-width: 768px) {
  .post-content {
    padding: 0 20px;
  }
  .post-content blockquote {
    padding: 24px;
    margin: 40px 0;
    font-size: 1.2rem;
    border-left-width: 4px;
  }
  .post-header {
    margin-top: 40px;
    padding-bottom: 30px;
  }
}

/* STUDIO / PHILOSOPHY SECTION (Refined) */
.section-studio {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.glass-manifesto {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 50px;
  
  /* Holo Card Background & Sheen */
  background: 
    linear-gradient(
      115deg, 
      transparent 0%, 
      rgba(255, 255, 255, 0.05) 30%, 
      rgba(0, 255, 255, 0.1) 45%, 
      rgba(112, 0, 255, 0.1) 50%, 
      rgba(255, 255, 255, 0.05) 70%, 
      transparent 100%
    );
  background-position: var(--bgX, 50%) var(--bgY, 50%);
  background-size: 200% 200%;
  
  /* Glass Filter */
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  
  /* Premium Border & Ray Tracing */
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  
  /* The "Rare" Aura */
  box-shadow: 
    0 40px 100px rgba(0,0,0,0.65), 
    0 0 40px rgba(112, 0, 255, 0.2),
    0 0 80px rgba(0, 195, 255, 0.1);
    
  width: 100%;
  max-width: 1000px;
  margin: 0 auto; 
    
  padding: 50px 60px; 
  position: relative;
  z-index: 2;
  
  /* 3D Physics */
  transform-style: preserve-3d;
  transform: perspective(1200px) rotateX(var(--rotateX, 0deg)) rotateY(var(--rotateY, 0deg)) translateY(var(--floatY, 0px));
  /* Transition on transform removed to fix glitching with dynamic variables */
  transition: all 0.1s linear;
  
  touch-action: pan-y; 
  overflow: hidden;
}


@keyframes identityFloat {
  from { --floatY: 0px; box-shadow: 0 40px 100px rgba(0,0,0,0.65), 0 0 40px rgba(112, 0, 255, 0.2), 0 0 80px rgba(0, 195, 255, 0.1); }
  to { --floatY: -15px; box-shadow: 0 60px 120px rgba(0,0,0,0.7), 0 0 60px rgba(112, 0, 255, 0.3), 0 0 100px rgba(0, 195, 255, 0.2); }
}

/* Light Sheen Pseudo Element */
.glass-manifesto::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 40%, rgba(255,255,255,0.05) 45%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.05) 55%, transparent 60%);
  background-size: 250% 250%;
  pointer-events: none;
  z-index: 3;
  opacity: 0.6;
  animation: holoFlow 10s infinite linear; /* Subtle auto-sheen */
}

.glass-manifesto:hover::after {
  opacity: 1;
  animation: holoFlow 4s infinite linear;
}


/* Removed Pokemon holographic overlay */
/* Hide cursor canvas on archive and insights pages */
/* Hide cursor canvas rule removed to show stars on all pages */


/* Shine Hover State */
.glass-manifesto:hover {
 box-shadow: 
    0 40px 100px rgba(0,0,0,0.8), 
    0 0 80px rgba(112, 0, 255, 0.3), 
    0 0 120px rgba(0, 195, 255, 0.2);
}

/* START A PROJECT LINK POLISH */
.book-btn {
  text-decoration: none !important; /* Remove underline per request */
  display: inline-block;
  cursor: pointer;
}

@keyframes holoShine {
  0% { background-position: 150% 0; }
  100% { background-position: -50% 0; }
}

/* Eye Animation Styles */
.manifesto-left {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  padding-right: 30px;
  position: relative;
}

.otp-eye-svg {
  width: 100%;
  max-width: 120px;
  height: auto;
  color: #fff;
  transition: color 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(0, 195, 255, 0.5));
}

.glass-manifesto:hover .otp-eye-svg {
  color: var(--accent2);
  filter: drop-shadow(0 0 20px rgba(112, 0, 255, 0.8));
}

.eye-lashes line {
  transition: transform 0.3s ease;
  transform-origin: 50% 50%;
}

/* Blink Animation */
.eye-shape-group {
  animation: blinkGap 6s infinite;
  transform-origin: center;
}

@keyframes blinkGap {
  0%, 48%, 52%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.1); }
}

/* Pupil tracking is handled via JS CSS vars */
.eye-pupil-group {
  transform: translate(var(--eyeX, 0px), var(--eyeY, 0px));
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Mobile styles moved to bottom */

.studio-title {
  /* Tamed typography size for desktop */
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #fff, rgba(255,255,255,0.6));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.studio-body {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  max-width: 650px;
}

.studio-body p {
  margin-bottom: 24px;
}

/* New Capabilities Tags */
.capabilities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.cap-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.8);
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.cap-tag:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--accent2);
  color: #fff;
  transform: translateY(-2px);
}

.manifesto-stats {
  /* Hidden on this version to reduce clutter, replaced by capabilities */
  display: none; 
}

/* Background Glow */
.section-studio::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(112, 0, 255, 0.05) 0%, rgba(0,0,0,0) 70%);
  filter: blur(120px);
  z-index: 1;
  pointer-events: none;
}

/* BEFORE / AFTER SLIDER Styles */
.section-transformation {
  background: rgba(5, 5, 10, 0.3);
  border-top: 1px solid rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.transformation-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15); /* Brighter border */
  box-shadow: 0 40px 100px rgba(0,0,0,0.8); /* Deeper shadow */
  user-select: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ba-slider:hover {
  transform: translateY(-5px);
  box-shadow: 0 50px 120px rgba(0,0,0,0.9), 0 0 30px rgba(112, 0, 255, 0.1);
}

.ba-before, .ba-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-after-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%; /* Initial state */
  height: 100%;
  overflow: hidden;
  z-index: 2;
  border-right: 2px solid #fff;
  box-shadow: 5px 0 20px rgba(0,0,0,0.5); /* Shadow on the cut line */
}

.ba-after {
  width: auto;
  height: 100%;
  max-width: none;
  /* Crucial: image width must match container width to stay aligned */
  aspect-ratio: 16/9; 
}

/* Since the wrap changes width, we need a trick to keep the image full size */
.ba-slider img {
  pointer-events: none;
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #fff;
  z-index: 5;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 25px rgba(255,255,255,0.9); /* Stronger glow */
}

.ba-arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform 0.2s ease;
}

.ba-slider:hover .ba-arrows {
  transform: translate(-50%, -50%) scale(1.1);
}

.ba-label {
  position: absolute;
  bottom: 20px;
  padding: 8px 16px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(12px);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  z-index: 6;
  border: 1px solid rgba(255,255,255,0.15);
  pointer-events: none;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.ba-label.before { right: 20px; color: rgba(255,255,255,0.7); }
.ba-label.after { left: 20px; color: #fff; }

@media (max-width: 768px) {
  .ba-slider { border-radius: 12px; }
  .ba-label { font-size: 0.6rem; bottom: 10px; }
  .ba-arrows { width: 40px; height: 40px; }
}


/* ========================================= */
/* MOBILE OPTIMIZATIONS (MOVED TO END)       */
/* ========================================= */

@media (max-width: 900px) {
  .manifesto-left {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-right: 0;
    padding-bottom: 24px;
    margin-bottom: 24px;
    justify-content: center;
    width: 100%;
  }
  .otp-eye-svg {
    max-width: 80px;
  }
  
  .glass-manifesto {
    transform: perspective(1200px) rotateX(var(--rotateX, 0deg)) rotateY(var(--rotateY, 0deg)) translateY(var(--floatY, 0px)) !important;
    display: flex;
    flex-direction: column;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: clamp(24px, 5vw, 40px);
    gap: 0; 
  }
}

@media (max-width: 500px) {
  .section-studio {
    padding: 30px 0;
  }
  .glass-manifesto {
    padding: 24px 14px; 
    border-radius: 14px;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden; 
  }
  .studio-title {
    font-size: clamp(1.1rem, 6vw, 1.6rem) !important; /* Force override */
    line-height: 1.2;
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .studio-body {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  .otp-eye-svg {
    max-width: 45px; 
    margin-bottom: 8px;
  }
  .capabilities-list {
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
    padding-top: 20px;
  }
  .cap-tag {
    font-size: 0.65rem;
    padding: 4px 8px;
  }
  
  /* Insights Page: Subscribe Section Fix */
  .subscribe-section {
    padding: 40px 16px;
    margin: 60px 0 40px;
  }
  .subscribe-section h3 {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
    line-height: 1.2;
  }
}

/* Ensure Stars are visible on mobile */
@media (max-width: 768px) {
  #cursor-canvas {
    opacity: 1 !important; 
    display: block !important;
    pointer-events: none !important;
    /* z-index: -1 !important; Removed to ensure visibility */
  }
}

/* ========================================= */
/* PACKAGE MENU SYSTEM (TABS + GRID)         */
/* ========================================= */

.pkg-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 40px;
  flex-wrap: wrap;
}

.pkg-tab-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  border-radius: 99px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.pkg-tab-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: translateY(-2px);
}

.pkg-tab-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 15px rgba(112, 0, 255, 0.3);
}

/* Package Grid Dynamic - Refactored for Center Alignment */
.pkg-grid-dynamic {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  width: 100%;
  max-width: 1150px; /* Slightly wider to accommodate gaps */
  margin: 0 auto;
}

/* Package Group Headers */
.pkg-group-header {
  width: 100%;
  flex-basis: 100%;
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent2);
  margin: 40px 0 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0.9;
}

.pkg-group-header::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--accent2), transparent);
  opacity: 0.2;
}

.pkg-group-header.hidden {
  display: none !important;
}

/* Base Card Sizing for Flex */
.package-static {
  flex: 1 1 300px;
  max-width: 360px;
  width: 100%; /* For mobile fallback */
}

@media (max-width: 600px) {
  .pkg-group-header {
    font-size: 1rem;
    margin-top: 30px;
  }
}

/* Hide items when filtered */
.package-static {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.package-static.hidden {
  display: none !important;
}

/* Animation for entering */
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.package-static:not(.hidden) {
  animation: fadeInScale 0.3s ease-out forwards;
  will-change: transform, opacity;
}

.pkg-select-btn {
  display: block;
  width: 100%;
  margin-top: 24px;
  padding: 14px 0;
  border-radius: 12px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  text-align: center;
}

.pkg-select-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 25px rgba(112,0,255,0.3);
  transform: translateY(-3px);
  color: #fff;
}

.featured .pkg-select-btn {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
}

.featured .pkg-select-btn:hover {
  background: #fff;
  border-color: #fff;
  color: #000;
  box-shadow: 0 0 30px rgba(255,255,255,0.4);
}

/* Scroll robustness */
#contact {
  scroll-margin-top: 100px;
}


/* SPECIAL TIER BUTTON (The Partner - Night Mode) */
.network-pkg .pkg-select-btn {
  background: linear-gradient(135deg, rgba(112,0,255,0.1), rgba(0,195,255,0.1));
  border: 1px solid rgba(0,195,255,0.3);
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 0 15px rgba(0,195,255,0.1);
}

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

.network-pkg .pkg-select-btn:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-color: rgba(255,255,255,0.8);
  box-shadow: 0 0 30px rgba(0,195,255,0.5), 0 0 10px rgba(112,0,255,0.5);
  transform: translateY(-2px);
  text-shadow: 0 0 5px rgba(255,255,255,0.5);
}

.network-pkg .pkg-select-btn:hover::before {
  left: 100%;
}

/* Ensure Light Mode override for Special Tier remains clean */
[data-theme="light"] .network-pkg .pkg-select-btn {
  background: linear-gradient(135deg, #f0f0f0, #fff);
  border: 1px solid #ccc;
  color: #000;
  box-shadow: none;
}
[data-theme="light"] .network-pkg .pkg-select-btn:hover {
  background: #000;
  border-color: #000;
  color: #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* --- UNIVERSAL BROADCAST BOX --- */
.otp-broadcast-toast {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    z-index: 10000;
    width: 90vw;
    max-width: 420px;
    background: var(--bg2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--stroke);
    border-radius: 12px;
    padding: 20px 24px;
    color: var(--text);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
    pointer-events: auto;
}

.otp-broadcast-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.otp-broadcast-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--accent2);
}

.otp-broadcast-dot {
    width: 8px;
    height: 8px;
    background: var(--accent2);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent2);
    animation: otp-pulse 1.5s infinite;
}

.otp-broadcast-body {
    font-family: inherit;
    font-size: 1.05rem;
    line-height: 1.5;
    font-weight: 500;
}

.otp-broadcast-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--muted2);
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    padding: 5px;
}

@keyframes otp-pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
    100% { opacity: 1; transform: scale(1); }
}

[data-theme="light"] .otp-broadcast-toast {
    background: rgba(255,255,255,0.95);
    border-color: #ddd;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Ensure k-hover-primary works in Dark Mode */
.k-hover-primary {
    background: linear-gradient(90deg, #00c3ff, #7000ff);
    color: #fff;
    border: none;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.k-hover-primary:hover {
    box-shadow: 0 0 30px rgba(0, 195, 255, 0.4);
    transform: scale(1.02);
}

/* CALENDLY FIX */
.calendly-overlay {
  z-index: 999999 !important;
}

/* Force Calendly Close Button Visibility */
.calendly-close-overlay {
  z-index: 1000000 !important;
  display: block !important;
  opacity: 1 !important;
  cursor: pointer;
}

.calendly-popup-close {
  z-index: 1000001 !important;
  display: block !important;
  color: #fff !important; 
}
/* Custom Calendly Close Button (Mobile Safety) */
#custom-calendly-close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2147483647; /* MAXIMUM INT */
  background: rgba(0,0,0,0.8);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
#custom-calendly-close:active {
  transform: scale(0.9);
  background: #ff0000;
}



/* AUDIT RESULT TERMINAL STYLES */
.audit-terminal {
  font-family: 'Space Mono', 'Courier New', monospace;
  color: #00ffaa;
  text-shadow: 0 0 5px rgba(0, 255, 170, 0.4);
  line-height: 1.6;
}

.advice-header {
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 5px;
  display: inline-block;
}

.advice-list-item {
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
}

.advice-list-item::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--accent2);
  font-weight: bold;
}

.advice-row {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.typewriter-cursor::after {
  content: '█';
  animation: blink 1s step-end infinite;
  color: var(--accent2);
  margin-left: 4px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.audit-badge-transmission {
    margin-bottom: 20px; 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    background: rgba(0, 195, 255, 0.05); 
    border: 1px solid rgba(0, 195, 255, 0.2); 
    padding: 6px 14px; 
    border-radius: 4px; 
    font-family: 'Space Grotesk', sans-serif; 
    font-size: 0.75rem; 
    color: #00c3ff; 
    letter-spacing: 1px; 
    font-weight: 700; 
    font-weight: 700; 
    text-transform: uppercase;
}
/* LIGHT MODE TERMINAL OVERRIDES */
/* Force Dark Terminal Aesthetics even in Light Mode for high contrast */
[data-theme="light"] .audit-terminal {
  background: #0a0a0a;
  color: #00ffaa;
  text-shadow: 0 0 5px rgba(0, 255, 170, 0.4);
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

[data-theme="light"] .advice-header {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.2);
}

[data-theme="light"] .advice-list-item,
[data-theme="light"] .advice-row {
  color: rgba(255,255,255,0.9);
}

[data-theme="light"] .advice-list-item::before {
  color: var(--accent2); 
}

[data-theme="light"] .audit-terminal strong {
    color: #fff !important;
    background: rgba(0, 195, 255, 0.2);
}

/* Base Terminal Refinement */
.audit-terminal {
    background: #050505; /* Always dark background */
    border-radius: 8px;
    padding: 20px; /* Internal spacing */
    min-height: 200px;
}

/* PAYMENT BUTTON STYLES (Appended) */


/* --- PAYMENT BUTTON STYLES (Mobile Optimized) --- */
.pkg-buy-btn {
  background: var(--accent2); /* Cyan base */
  color: #000;
  border: none;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  padding: 14px 24px;
  border-radius: 6px;
  width: 100%;
  margin-top: 15px;
  font-size: 1rem;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 0 15px rgba(0, 195, 255, 0.4);
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.pkg-buy-btn span {
  position: relative;
  z-index: 2;
}

.pkg-buy-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.pkg-buy-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.pkg-buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 195, 255, 0.6);
  color: #000; /* Ensure text visible on white */
}

.pkg-buy-btn:active {
  transform: scale(0.98);
}

.pkg-buy-btn:disabled {
  opacity: 0.6;
  filter: grayscale(1);
  cursor: not-allowed;
  transform: none;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .pkg-buy-btn {
    padding: 16px; /* Fat finger friendly */
    font-size: 1.05rem;
    margin-top: 20px;
  }
  .service-icons {
    justify-content: center; /* Center icons on mobile */
  }
}

/* --- SERVICE CARD NEON ICONS --- */
.service-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px; /* Closer to title */
    padding-top: 0;
    border-top: none;
    justify-content: flex-start; /* Left align */
}

.svc-icon {
    width: 20px !important; /* Slightly smaller for header context */
    height: 20px !important;
    min-width: 20px; 
    fill: none;
    stroke: var(--accent2); /* Cyan default */
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 5px rgba(0, 195, 255, 0.5)); /* Neon Glow */
    opacity: 0.8;
    transition: all 0.3s ease;
}

.service-item:hover .svc-icon {
    opacity: 1;
    transform: translateY(-2px);
    filter: drop-shadow(0 0 8px rgba(0, 195, 255, 0.8));
    stroke: #fff; /* White hot on hover */
}

/* Varied colors for different services if desired, defaulting to accent2 for now */
[data-theme="light"] .svc-icon {
    stroke: var(--accent); /* Purple in light mode for contrast */
    filter: none; /* No glow in light mode */
}
[data-theme="light"] .service-item:hover .svc-icon {
    stroke: var(--accent2);
}
