/* ============================================
   ROOT VARIABLES - IMC Theme
   ============================================ */
:root {
  /* IMC Brand Colors */
  --color-primary: #ff6b00;
  --color-primary-light: #ff8533;
  --color-secondary: #9333ea;
  --color-secondary-dark: #7c3aed;
  --color-gradient: linear-gradient(135deg, #ff6b00 0%, #9333ea 100%);

  /* Dark Theme (Default) */
  --color-bg: #0a0e1a;
  --color-surface: #111827;
  --color-surface-elevated: #1a2236;
  --color-text: #f9fafb;
  --color-text-secondary: #9ca3af;
  --color-text-tertiary: #6b7280;
  --color-border: rgba(148, 163, 184, 0.12);
  --color-shadow: rgba(0, 0, 0, 0.5);

  /* Spacing */
  --nav-height: 64px;
  --container-padding: 20px;
  --container-max: 1280px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Typography - Fluid */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
  --text-3xl: clamp(1.75rem, 1.4rem + 1.75vw, 2.5rem);
  --text-4xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
}

/* ============================================
   LIGHT THEME OVERRIDES
   ============================================ */
[data-theme="light"] {
  --color-bg: #ffffff;
  --color-surface: #f8fafc;
  --color-surface-elevated: #f1f5f9;
  --color-text: #0f172a;
  --color-text-secondary: #475569;
  --color-text-tertiary: #64748b;
  --color-border: rgba(0, 0, 0, 0.12);
  --color-shadow: rgba(0, 0, 0, 0.1);
}

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

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

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--text-base);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* ============================================
   BACKGROUND PATTERN
   ============================================ */
.bg-pattern {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: 
    radial-gradient(rgba(255, 107, 0, 0.04) 1px, transparent 1px),
    radial-gradient(rgba(147, 51, 234, 0.03) 1px, transparent 1px);
  background-size: 60px 60px, 40px 40px;
  background-position: 0 0, 20px 20px;
  opacity: 0.5;
}

/* ============================================
   CONTAINER SYSTEM
   ============================================ */
.container {
  width: 100%;
  padding: 0 var(--container-padding);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: var(--container-max);
  }
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ============================================
   NAVIGATION - WITH THEME SWITCH
   ============================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
}

[data-theme="light"] .site-nav {
  background: rgba(255, 255, 255, 0.92);
}

.nav-container {
  height: 100%;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-imc {
  height: 36px;
  width: auto;
}

.nav-logo-ltsct {
  height: 36px;
  width: auto;
  margin-left: 2px;
}

/* Theme Toggle - Desktop & Mobile */
.theme-toggle {
  width: 44px;
  height: 44px;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.25);
  border-radius: var(--radius);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-left: 16px;
  flex-shrink: 0;
  transition: var(--transition-fast);
  cursor: pointer;
}

.theme-toggle svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.sun-icon {
  display: block;
}

.moon-icon {
  display: none;
}

[data-theme="light"] .sun-icon {
  display: none;
}

[data-theme="light"] .moon-icon {
  display: block;
}

.theme-toggle:hover {
  background: rgba(255, 107, 0, 0.15);
  border-color: rgba(255, 107, 0, 0.4);
  transform: scale(1.05);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: grid;
  gap: 4px;
  padding: 8px;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.nav-menu {
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 16px var(--container-padding);
  display: none;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 8px 32px var(--color-shadow);
}

.nav-menu.active {
  display: flex;
}

.nav-menu a {
  padding: 12px 16px;
  color: var(--color-text-secondary);
  font-weight: 600;
  font-size: var(--text-sm);
  border-radius: var(--radius);
  transition: var(--transition-fast);
}

.nav-menu a:hover {
  background: rgba(255, 107, 0, 0.06);
  color: var(--color-text);
}

.nav-menu .nav-cta {
  background: var(--color-gradient);
  color: #ffffff !important;
  text-align: center;
  margin-top: 8px;
}

/* Theme Toggle in Mobile Menu */
.nav-menu .theme-toggle {
  width: 100%;
  height: 48px;
  margin-top: 12px;
  margin-left: 0;
}

/* Desktop Navigation */
@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
  }

  .nav-menu a {
    padding: 8px 14px;
  }

  .nav-menu .nav-cta {
    margin-top: 0;
    padding: 10px 20px;
  }

  .nav-menu .theme-toggle {
    width: 44px;
    height: 44px;
    margin-top: 0;
    margin-left: 12px;
  }
}


/* ============================================
   HERO SECTION - FIXED PROFILE SIZE
   ============================================ */
.hero {
  padding: 50px 0 40px;
}

.hero-container {
  display: grid;
  gap: 40px;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Profile Frame */
.hero-visual {
  display: flex;
  justify-content: center;
}

.profile-frame {
  position: relative;
  width: 260px;
  height: 260px;
  display: grid;
  place-items: center;
}

.profile-glow {
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--color-primary),
    var(--color-secondary),
    var(--color-primary)
  );
  filter: blur(30px);
  opacity: 0.4;
  animation: rotate 12s linear infinite;
}

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

.profile-image-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 60px rgba(255, 107, 0, 0.3);
  background: var(--color-surface);
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating Animation for Profile Image */
.profile-frame {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Mobile: Image FIRST, Content SECOND */
@media (max-width: 767px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-visual {
    order: 1;
  }

  .hero-content {
    order: 2;
  }

  .hero {
    padding: 40px 0 30px;
  }

  .profile-frame {
    width: 300px;
    height: 300px;
  }
}

/* Tablet: Image LEFT, Content RIGHT */
@media (min-width: 768px) {
  .hero {
    padding: 70px 0 60px;
  }

  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .profile-frame {
    width: 400px;
    height: 400px;
  }
}

/* Desktop: Image LEFT, Content RIGHT - FIXED SIZE */
@media (min-width: 1024px) {
  .hero {
    padding: 80px 0 70px;
  }

  .hero-container {
    gap: 80px;
  }

  .profile-frame {
    width: 500px;
    height: 500px;
  }
}

/* Large Desktop - EVEN BIGGER */
@media (min-width: 1440px) {
  .profile-frame {
    width: 550px;
    height: 550px;
  }
}

/* Hero Content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.25);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-primary-light);
  margin-bottom: 20px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.hero-name {
  font-size: var(--text-4xl);
  font-weight: 800;
  background: var(--color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-role {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
}

.hero-company {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text-secondary);
}

.hero-description {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-description strong {
  color: var(--color-text);
  font-weight: 600;
}

.hero-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: var(--text-2xl);
  font-weight: 800;
  background: var(--color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  font-weight: 600;
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--color-border),
    transparent
  );
  margin: 0 8px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: var(--text-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  min-height: 48px;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--color-gradient);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(255, 107, 0, 0.4);
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-lg {
  padding: 16px 28px;
  font-size: var(--text-base);
  min-height: 54px;
}

.btn-block {
  width: 100%;
}

.hero-social-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.proof-badge {
  font-size: var(--text-xs);
  color: var(--color-text-tertiary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.proof-badge::before {
  content: "✓";
  color: #22c55e;
  font-weight: 700;
}

/* ============================================
   SECTIONS - General
   ============================================ */
.section {
  padding: 60px 0;
}

@media (min-width: 768px) {
  .section {
    padding: 70px 0;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 80px 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-sm);
  color: var(--color-primary-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.label-line {
  width: 40px;
  height: 2px;
  background: var(--color-gradient);
  box-shadow: 0 0 10px rgba(255, 107, 0, 0.3);
}

.section-title {
  font-size: var(--text-3xl);
  font-weight: 800;
  margin-bottom: 10px;
  background: var(--color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.section-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

  .section-title {
    font-size: var(--text-4xl);
  }
}

@media (min-width: 1024px) {
  .section-header {
    margin-bottom: 70px;
  }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-content {
  max-width: 700px;
  margin: 0 auto;
}

.about-text {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  text-align: center;
}

.about-text strong {
  color: var(--color-text);
}

.about-highlights {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 107, 0, 0.04);
  border: 1px solid rgba(255, 107, 0, 0.15);
  padding: 14px 16px;
  border-radius: var(--radius);
}

.highlight-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.highlight-item div {
  display: grid;
  gap: 2px;
}

.highlight-item strong {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
}

.highlight-item span {
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
}

@media (min-width: 768px) {
  .about-highlights {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   MODULES SECTION
   ============================================ */
.modules-group {
  margin-bottom: 40px;
}

.modules-group-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 20px;
  padding-left: 12px;
  border-left: 3px solid var(--color-primary);
}

.modules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.module-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-base);
}

.module-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow: 0 8px 32px rgba(255, 107, 0, 0.1);
}

.module-card-featured {
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.15);
}

.module-card-featured:hover {
  box-shadow: 0 12px 40px rgba(255, 107, 0, 0.2);
}

.module-image-wrapper {
  position: relative;
  background: var(--color-surface-elevated);
  border-bottom: 1px solid var(--color-border);
}

.module-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.module-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.3);
  color: var(--color-primary);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.module-content {
  padding: 20px;
}

.module-name {
  font-size: var(--text-xl);
  font-weight: 800;
  margin-bottom: 8px;
}

.module-use-case {
  font-size: var(--text-sm);
  color: var(--color-text);
  margin-bottom: 10px;
  padding: 6px 10px;
  background: rgba(255, 107, 0, 0.06);
  border-radius: var(--radius);
  border-left: 2px solid var(--color-primary);
}

.use-case-label {
  font-size: 10px;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.module-description {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.module-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.module-specs li {
  font-size: var(--text-xs);
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.spec-icon {
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1440px) {
  .modules-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   CLOUD SOLUTIONS
   ============================================ */
.cloud-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.cloud-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition-base);
}

.cloud-card:hover {
  border-color: rgba(147, 51, 234, 0.3);
  box-shadow: 0 8px 32px rgba(147, 51, 234, 0.1);
}

.cloud-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
}

.cloud-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-primary);
}

.cloud-card h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: 10px;
}

.cloud-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}

.cloud-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.metric {
  font-size: var(--text-xs);
  color: var(--color-text);
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.2);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tech-stack span {
  font-size: 11px;
  color: var(--color-secondary);
  background: rgba(147, 51, 234, 0.1);
  border: 1px solid rgba(147, 51, 234, 0.3);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .cloud-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cloud-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   IMC SECTION
   ============================================ */
/* .section-imc {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 107, 0, 0.03) 100%
  );
}

.imc-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
}

.imc-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 26px;
}

.imc-logo {
  height: 42px;
  width: auto;
}

.imc-label {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.imc-title {
  font-size: var(--text-2xl);
  font-weight: 800;
  margin-bottom: 16px;
  background: var(--color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.imc-intro {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.imc-items {
  display: grid;
  gap: 18px;
  margin-bottom: 30px;
}

.imc-item {
  background: rgba(255, 107, 0, 0.04);
  border: 1px solid rgba(255, 107, 0, 0.15);
  border-radius: var(--radius);
  padding: 20px;
  text-align: left;
  display: flex;
  gap: 14px;
}

.imc-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.imc-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-primary);
}

.imc-item h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: 6px;
}

.imc-item p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.imc-availability {
  font-size: var(--text-sm);
  color: var(--color-text-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.availability-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s ease-in-out infinite;
}

@media (min-width: 768px) {
  .imc-card {
    padding: 40px 32px;
  }

  .imc-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .imc-items {
    grid-template-columns: repeat(3, 1fr);
  }
} */



/* IMC Section */
.section-imc {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 107, 0, 0.03) 100%
  );
}

.imc-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
}

.imc-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 26px;
}

.imc-logo {
  height: 42px;
  width: auto;
}

.imc-label {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.imc-title {
  font-size: var(--text-2xl);
  font-weight: 800;
  margin-bottom: 16px;
  background: var(--color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.imc-intro {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* FIXED: Consistent Grid Spacing */
.imc-items {
  display: grid;
  gap: 18px;
  margin-bottom: 30px;
}

/* Individual Card - Identical Styles */
.imc-item {
  background: rgba(255, 107, 0, 0.04);
  border: 1px solid rgba(255, 107, 0, 0.15);
  border-radius: var(--radius);
  padding: 20px;
  text-align: left;
  display: flex;
  gap: 14px;
  /* NO margin here - let grid handle spacing */
}

.imc-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.imc-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-primary);
}

.imc-item h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: 6px;
}

.imc-item p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.imc-availability {
  font-size: var(--text-sm);
  color: var(--color-text-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.availability-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s ease-in-out infinite;
}

@media (min-width: 768px) {
  .imc-card {
    padding: 40px 32px;
  }
}

/* Mobile: Single column, even spacing */
@media (max-width: 767px) {
  .imc-items {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* Tablet: Two columns, even spacing */
@media (min-width: 768px) {
  .imc-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

/* Desktop: Three columns, even spacing */
@media (min-width: 1024px) {
  .imc-items {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

/* ============================================
   CONNECT SECTION
   ============================================ */
.connect-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
}

.connect-title {
  font-size: var(--text-2xl);
  font-weight: 800;
  margin-bottom: 14px;
  text-align: center;
  background: var(--color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.connect-description {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.connect-actions {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.connect-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius);
  transition: var(--transition-base);
  min-height: 64px;
}

.connect-cta:hover {
  transform: translateY(-2px);
}

.connect-cta-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.connect-cta-icon svg {
  width: 24px;
  height: 24px;
}

.connect-cta-text {
  flex-grow: 1;
  display: grid;
  gap: 2px;
}

.connect-cta-text strong {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
}

.connect-cta-text small {
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
}

.connect-cta-arrow {
  font-size: 20px;
  opacity: 0.6;
  transition: var(--transition-fast);
}

.connect-cta:hover .connect-cta-arrow {
  opacity: 1;
  transform: translateX(4px);
}

.connect-cta-primary {
  background: var(--color-gradient);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
}

.connect-cta-secondary {
  background: rgba(147, 51, 234, 0.08);
  border: 1px solid rgba(147, 51, 234, 0.3);
  color: #ffffff;
}

.connect-cta-glass {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  backdrop-filter: blur(10px);
}

.connect-meta {
  display: grid;
  gap: 16px;
}

.connect-target h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.target-companies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.target-tag {
  font-size: var(--text-xs);
  color: var(--color-text);
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.2);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.imc-context {
  background: rgba(255, 107, 71, 0.08);
  border: 1px solid rgba(255, 107, 71, 0.3);
  padding: 16px 18px;
  border-radius: var(--radius);
  text-align: center;
}

.imc-context strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: #ff6b47;
  margin-bottom: 4px;
}

.imc-context small {
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  display: block;
}

@media (min-width: 768px) {
  .connect-card {
    padding: 40px 32px;
  }

  .connect-actions {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 32px 0;
  background: rgba(11, 17, 29, 0.95);
  backdrop-filter: blur(12px);
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-logo {
  height: 38px;
  width: auto;
}

.footer-logo-ltsct {
  height: 38px;
  width: auto;
  margin-left: 2px;
}

.footer-identity {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-text);
}

.footer-meta {
  display: grid;
  gap: 4px;
}

.footer-copyright {
  font-size: var(--color-text);
  color: var(--color-text-secondary);
}

.footer-event {
  font-size: 11px;
  color: var(--color-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .site-footer {
    padding: 40px 0;
    margin-top: 80px;
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-brand {
    justify-content: flex-start;
  }

  .footer-meta {
    text-align: right;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-up {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   THEME LOGOS
   ============================================ */
.theme-logo-light {
  display: none;
}

[data-theme="light"] .theme-logo-dark {
  display: none;
}

[data-theme="light"] .theme-logo-light {
  display: block;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

a:focus,
button:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}