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

html {
  scroll-behavior: auto;
}

body {
  font-family: "Poppins", sans-serif;
  background: #ffffff;
  color: #0f1117;
  overflow-x: hidden;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

::-webkit-scrollbar {
  width: 0px;
}

::-webkit-scrollbar-track {
  background: #e6e8ee !important;
 
}

::-webkit-scrollbar-thumb {
  background: #c7cbcc;
  border-radius: 99px;
}

/* ── NAV ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition:
    background 0.3s,
    box-shadow 0.3s;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 #e2e8f0;
}

#hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 18px;
  background: #0f172a;
  color: #f8fafc;
  cursor: pointer;
}

#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 1001;
  overflow-y: auto;
  padding: 24px 24px 40px;
}

#mobile-menu.open {
  display: block;
}

.mobile-menu-header {
  margin-bottom: 32px;
}

section {
  position: relative;
  z-index: 1;
}

/* ── MEGA MENU ── */
.mega-trigger {
  position: relative;
}

/* Transparent bridge fills the gap between button and panel */
.mega-trigger::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 18px;
  background: transparent;
  display: none;
}

.mega-trigger:hover::after {
  display: block;
}

.mega-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(15, 17, 23, 0.12);
  min-width: 760px;
  padding: 28px 28px 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s;
}

.mega-trigger:hover .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Keep panel open when hovering panel itself */
.mega-panel:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.mega-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
  color: inherit;
}

.mega-card:hover {
  background: #f8fafc;
}

.mega-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}

/* ── MOBILE NAV ── */
.mob-section {
  margin-bottom: 28px;
}

.mob-section-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 10px;
  padding: 0 4px;
}

.mob-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #1e293b;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
}

.mob-link:hover {
  background: #f1f5f9;
}

/* ── HERO ── */
.hero-grid {
  background: linear-gradient(160deg, #f0f6ff 0%, #fafbff 50%, #f5f0ff 100%);
  z-index: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #2b059b;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, #2b059b 0%, #0ea5e9 50%, #2b059b 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 4s linear infinite;
}

@keyframes gradient-shift {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 200%;
  }
}

/* ── CODE WINDOW ── */
.code-window {
  background: #0f1117;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(15, 17, 23, 0.2);
}

.code-bar {
  background: #1a1f2e;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.code-body {
  padding: 20px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  line-height: 1.7;
  color: #94a3b8;
  overflow-x: auto;
}

.c-key {
  color: #7dd3fc;
}

.c-val {
  color: #6ee7b7;
}

.c-str {
  color: #fde68a;
}

.c-comment {
  color: #475569;
}

.c-fn {
  color: #c4b5fd;
}

.c-num {
  color: #fb7185;
}

/* ── STATS SECTION ── */
.stats-section {
  background: linear-gradient(135deg, #0f1117 0%, #1a1f2e 100%);
  background: #2b059b;
}

.stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 28px;
  text-align: center;
  transition:
    box-shadow 0.2s,
    transform 0.2s,
    background 0.2s;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.stat-card .counter {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.stat-card .label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}

.stat-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

/* ── CATEGORIES SECTION ── */
.categories-section {
  background: #faf9ff;
}

.cat-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.cat-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

/* Glow background effect */
.cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(43, 5, 155, 0.08),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Hover main effect */
.cat-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(43, 5, 155, 0.15);
  border-color: #2b059b;
}

/* Activate glow */
.cat-card:hover::before {
  opacity: 1;
}

/* Icon animation */
.cat-card:hover .cat-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Text highlight */
.cat-card:hover h3 {
  color: #2b059b;
}

.cat-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

/* ── DATA VIZ SECTION ── */
.dataviz-section {
  background: linear-gradient(160deg, #fafafa 0%, #f4f6fb 100%);
  background: linear-gradient(160deg, #e8e0ff 0%, #e6edff 100%);
  border-top: 1px solid #edf0f7;
  border-bottom: 1px solid #edf0f7;
}

/* ── ARTICLES SECTION ── */
.articles-section {
  background: #fff;
}

.article-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
}

.article-card:hover {
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.1);
  transform: translateY(-3px);
  border-color: #bfdbfe;
}

.article-card .thumb {
  height: 180px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

/* ── PATHS SECTION ── */
.paths-section {
  background: linear-gradient(170deg, #0d1b3e 0%, #0f1117 60%, #1a0d2e 100%);
  background: linear-gradient(170deg, #2b059b 0%, #132a6d 60%, #2b059b 100%);
}

.paths-section .section-eyebrow {
  color: #60a5fa;
}

.paths-section h2 {
  color: #fff;
}

.paths-section > div > .text-center > p {
  color: rgba(255, 255, 255, 0.5);
}

.path-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.25s;
}

.path-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.path-card .p-6 {
  padding: 24px;
}

.path-card h3 {
  color: #fff;
}

.path-card .text-xs.text-ink-400 {
  color: rgba(255, 255, 255, 0.4);
}

.road-step .road-title {
  color: rgba(255, 255, 255, 0.85) !important;
}

.road-step .road-sub {
  color: rgba(255, 255, 255, 0.35) !important;
}

/* ── FEATURES SECTION ── */
.features-section {
  background: #fff;
}

.feat-card {
  background: #fff;
  background: #f3f4ff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.2s;
}

.feat-card:hover {
  box-shadow: 0 12px 36px rgba(37, 99, 235, 0.08);
  border-color: #bfdbfe;
  transform: translateY(-2px);
}

/* ── TESTIMONIALS SECTION ── */
.testi-section {
  background: linear-gradient(135deg, #f8f9fe 0%, #f0f4ff 50%, #f8f0ff 100%);
  border-top: 1px solid #e8eaf6;
}

.testi-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  transition: box-shadow 0.2s;
}

.testi-card:hover {
  box-shadow: 0 12px 36px rgba(37, 99, 235, 0.08);
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, #2b059b 0%, #1d4ed8 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

/* ── FOOTER ── */
footer {
  background: #0f1117;
  color: #94a3b8;
}

.foot-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.15s;
  display: block;
  margin-bottom: 8px;
}

.foot-link:hover {
  color: #fff;
}

/* ── LEVEL TABS ── */
.level-btn {
  padding: 8px 22px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
  color: #64748b;
}

.level-btn.active {
  background: #2b059b;
  color: #fff;
  border-color: #2b059b;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

/* ── TOPIC PILLS ── */
.topic-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #e2e8f0;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #334155;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.topic-pill:hover {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #2b059b;
}

/* ── SKILL BARS ── */
.skill-bar {
  height: 6px;
  background: #e2e8f0;
  border-radius: 99px;
  overflow: hidden;
  margin-top: 8px;
}

.skill-fill {
  height: 100%;
  border-radius: 99px;
  transform-origin: left;
  transform: scaleX(0);
}

/* ── ROADMAP ── */
.road-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  position: relative;
}

.road-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 48px;
  bottom: -8px;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.road-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.road-step.done .road-num {
  background: #2b059b;
  border-color: #2b059b;
  color: #fff;
}

/* ── TAGS ── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ── SEARCH BAR ── */
.search-wrap {
  position: relative;
  max-width: 600px;
}

.search-wrap input {
  width: 100%;
  padding: 14px 20px 14px 52px;
  border: 2px solid #e2e8f0;
  border-radius: 99px;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #0f1117;
  background: #fff;
  transition:
    border 0.2s,
    box-shadow 0.2s;
  outline: none;
}

.search-wrap input:focus {
  border-color: #2b059b;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 16px;
}

/* ── FLOATING TAGS ── */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.float-1 {
  animation: float 3s ease-in-out infinite;
}

.float-2 {
  animation: float 3.5s ease-in-out infinite 0.4s;
}

.float-3 {
  animation: float 4s ease-in-out infinite 0.8s;
}

.float-4 {
  animation: float 3.2s ease-in-out infinite 0.2s;
}

/* ── SECTION HEADER ── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2b059b;
  margin-bottom: 10px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .mega-panel {
    min-width: 94vw;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
  }

  .mega-trigger:hover .mega-panel {
    transform: translateX(-50%) translateY(0);
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none !important;
  }

  .mega-panel {
    display: none !important;
  }
}

@media (min-width: 769px) {
  #hamburger {
    display: none !important;
  }
}

/* ── BAR CHART ── */
.bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.bar-track {
  flex: 1;
  height: 8px;
  background: #f1f5f9;
  border-radius: 99px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 99px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

#cat-grid {
  min-height: 400px;
}

/* =========================
   🔥 GLOBAL PREMIUM UPGRADE
========================= */

body {
  background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
}

/* =========================
   💎 UNIVERSAL CARD SYSTEM
========================= */
.card,
.cat-card,
.article-card,
.feat-card,
.testi-card,
.path-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* glow border */
.card::before,
.cat-card::before,
.article-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(71, 28, 201, 0.15),
    transparent
  );
  opacity: 0;
  z-index: 0;
  transition: 0.4s;
}

/* hover lift */
.card:hover,
.cat-card:hover,
.article-card:hover,
.feat-card:hover,
.testi-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(43, 5, 155, 0.18);
  border-color: transparent;
}

.card:hover::before,
.cat-card:hover::before,
.article-card:hover::before {
  opacity: 1;
}

/* =========================
   ✨ CATEGORY CARD ADVANCED
========================= */
.cat-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: rotate(25deg);
  opacity: 0;
}

.cat-card:hover::after {
  animation: shine 1s ease;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(25deg);
    opacity: 0;
  }

  50% {
    opacity: 0.4;
  }

  100% {
    transform: translateX(100%) rotate(25deg);
    opacity: 0;
  }
}

.cat-card:hover .cat-icon {
  transform: scale(1.2) rotate(6deg);
}

.cat-card:hover h3 {
  color: var(--brand);
}

/* =========================
   📰 ARTICLE CARD EFFECT
========================= */
.article-card .thumb {
  transition: transform 0.4s ease;
}

.article-card:hover .thumb {
  transform: scale(1.08);
}

/* =========================
   🌌 SECTION BACKGROUND GLOW
========================= */
.section-bg {
  position: relative;
  overflow: hidden;
}

.section-bg::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(76, 29, 255, 0.25), transparent 70%);
  filter: blur(80px);
}

.section-bg::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.25),
    transparent 70%
  );
  filter: blur(80px);
}

/* =========================
   🚀 CTA SECTION (MAIN HERO CTA)
========================= */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;

  background: linear-gradient(135deg, #2b059b, #4c1dff);
  color: #fff;
}

/* animated light sweep */

/* floating glow blobs */

/* CTA TEXT */
.cta-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
}

/* CTA BUTTON */
.cta-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;

  background: #fff;
  color: var(--brand);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

/* ========================================================
   🎓 CAREER MATCHING ARCHITECT & PATH FINDER STYLE SYSTEM
   ======================================================== */
.architect-container {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(43, 5, 155, 0.04);
  transition: all 0.4s ease;
}

.architect-btn {
  border: 2px solid #e2e8f0;
  background: #ffffff;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.architect-btn:hover {
  border-color: #2b059b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(43, 5, 155, 0.06);
}

.architect-btn.active {
  background: #2b059b;
  color: #ffffff;
  border-color: #2b059b;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(43, 5, 155, 0.25);
}

.architect-btn.active i, .architect-btn.active span {
  color: #ffffff !important;
}

/* Roadmap timeline styles */
.arch-timeline-line {
  position: relative;
}

.arch-timeline-line::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: #e2e8f0;
}

.arch-step-node {
  position: relative;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
}

.arch-node-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #f1f5f9;
  border: 2px solid #e2e8f0;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  z-index: 10;
  transition: all 0.3s ease;
}

.arch-step-node.active .arch-node-badge {
  background: #2b059b;
  border-color: #2b059b;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(43, 5, 155, 0.3);
}

/* ========================================================
   💻 LIVE TERMINAL SANDBOX & AI COPILOT SYSTEM
   ======================================================== */
.terminal-window {
  background: #090c10;
  border: 1px solid #1f2937;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.terminal-header-bar {
  background: #151922;
  border-bottom: 1px solid #1f2937;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.terminal-control-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.terminal-tab-selector {
  display: flex;
  background: #090c10;
  border-radius: 8px;
  padding: 3px;
  border: 1px solid #1f2937;
}

.terminal-tab-item {
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #94a3b8;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.terminal-tab-item.active {
  background: #1f2937;
  color: #ffffff;
}

.terminal-aside {
  background: #11151f;
  border-right: 1px solid #1f2937;
}

.terminal-copilot-question {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  font-size: 0.78rem;
  color: #94a3b8;
  border-radius: 8px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.terminal-copilot-question:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  transform: translateX(3px);
  border-color: rgba(255, 255, 255, 0.05);
}

.terminal-console-body {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: #e2e8f0;
  line-height: 1.6;
}

/* Custom terminal output tags */
.t-brand { color: #818cf8; }
.t-success { color: #34d399; }
.t-warning { color: #fbbf24; }
.t-danger { color: #f87171; }
.t-info { color: #38bdf8; }
.t-dim { color: #475569; }

/* Blinking terminal cursor */
.terminal-cursor {
  display: inline-block;
  width: 7px;
  height: 15px;
  background: #34d399;
  animation: cursor-blink 1s steps(2, start) infinite;
  vertical-align: middle;
  margin-left: 4px;
}

@keyframes cursor-blink {
  to { visibility: hidden; }
}

.terminal-console-body::-webkit-scrollbar {
  width: 6px;
}

.terminal-console-body::-webkit-scrollbar-track {
  background: #090c10 !important;
}

.terminal-console-body::-webkit-scrollbar-thumb {
  background: #1f2937;
  border-radius: 10px;
}

/* ── 3D FLIP CARD STYLING ── */
.perspective-1000 {
  perspective: 1000px;
}
.flip-card-inner {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}
.flip-card-inner.flipped {
  transform: rotateY(180deg);
}
.backface-hidden {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.rotate-y-180 {
  transform: rotateY(180deg);
}

