/* Said Amor — Portfolio CSS /*
1. Variables CSS
2. Reset & Base
3. Typography
4. Accessibility
5. Layout
6. Header & Navigation
7. Hero
8. Buttons
9. Sections
10. About
11. Skills
12. Projects
13. Timeline
14. Contact
15. Footer
16. Components
17. Animations
18. Utilities
19. Light Theme
20. Dark Theme
21. Responsive
*/
/*-----------------------------------------------  Variables CSS N°1 -------------------------------------------------- */
@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/Inter/InterVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #000;
  --bg-section-1: #000;
  --bg-section-2: #000;

  --bg-card: #000;
  --bg-card-hover: #050505;

  --text-primary: #fafafa;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;

  --tag-bg: #050505;
  --tag-text: #a1a1aa;
  --tag-border: rgba(255, 255, 255, 0.1);
  --tag-hover: #0a0a0a;

  --accent: #fff;
  --accent-light: rgba(94, 106, 210, 0.08);
  --accent-glow: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);

  --project-glow: rgba(94, 106, 210, 0.055);
  --project-glow-hover: rgba(94, 106, 210, 0.08);

  --glass-bg: rgba(5, 5, 5, 0.78);
  --glass-border: rgba(255, 255, 255, 0.045);

  --card-glass-bg: rgba(255, 255, 255, 0.035);
  --card-glass-border: rgba(255, 255, 255, 0.09);
  --card-glass-hover: rgba(255, 255, 255, 0.055);

  /*------------------------------ Dot colours */
  --dot-green: #22c55e;
  --dot-orange: #f59e0b;
  --dot-purple: #5e6ad2;

  /* ------------------------------ Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* ----------------------------------- Typography -------*/

  --font:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue",
    Arial, sans-serif;
  --font-mono:
    "SF Mono", "Fira Code", "Fira Mono", "Roboto Mono", Consolas, monospace;

  /* ----------------------------------- Radius -----------*/
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  /*----------------------------------- Transition ------*/
  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

  /*------------------------------------ Nav */
  --nav-h: 64px;
}
/* ------------------------------------- Reset & Base N°2 ------------------------------------------------ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  transition:
    background var(--transition-slow),
    color var(--transition-slow);
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font: inherit;
}

/* --------------------------------------- Typography N°3 -------------------------------------------- */
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.section-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 480px;
}

/* ------------------------------------------------------ Layout N°3 ---------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section-alt {
  background: var(--bg-section-1);
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}
.section-header {
  margin-bottom: var(--space-2xl);
}
/* ----------------------------------- Accessibility N°4 ---------------------------------------------------- */

/*- ----------------------------------------- Reset & Base ----------------------------------------------------------*/

/* ------------------------------------------- Accessibilité ------------------------------------------------*/

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

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

/* ---------------------------------------------- Typographie N°2 ---------------------------------------------------*/

/* ------------------------------------------ Header & Navigation N°4 ----------------------------------- */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--glass-bg);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  transition:
    background var(--transition-slow),
    border-color var(--transition-slow);
}

.navbar.scrolled {
  background: var(--glass-bg);
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.15);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--text-primary);
  color: var(--bg);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform var(--transition);
}

.nav-logo:hover .logo-mark {
  transform: rotate(-4deg) scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.logo-title {
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 99px;
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-shrink: 0;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-primary);
  transition: all var(--transition);
  font-size: 1rem;
}

.theme-toggle:hover {
  border-color: var(--border-hover);
  background: var(--accent-light);
  transform: scale(1.05);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 99px;
  transition: all var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ----------------------------------- Hero Section N°5 ----------------------------------- */

.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.005) 0%,
    transparent 75%
  );

  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-2xl);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.hero-greeting {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.hero-title {
  margin-bottom: var(--space-lg);
}

.hero-name {
  display: block;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.hero-role {
  display: block;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--text-secondary);
  line-height: 1.2;
  margin-top: 0.15em;
}

.hero-role em {
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 420px;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.hero-socials {
  display: flex;
  gap: var(--space-md);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all var(--transition);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* -------------------------------------------------- Buttons N°6 -------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--text-primary);
  color: var(--bg);
  border-color: var(--text-primary);
}

.btn-primary:hover {
  /*opacity: 0.88;*/
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border);
}

/*-----------------------------------------*/

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

.link-arrow,
.contact-item-arrow,
.btn-icon {
  display: inline-block;
  transition: transform 0.25s ease;
}

.project-link:hover .link-arrow,
.contact-item:hover .contact-item-arrow {
  transform: translateX(3px);
}

.btn:hover .btn-icon {
  transform: translateY(1px);
}

/* ------------------------------------------- Terminal N°7 ------------------------------------------- */
.terminal {
  width: 100%;
  max-width: 500px;
  background: #000;
  border: 0.6px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;

  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);

  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.dot-red {
  background: #ff5f57;
}

.terminal-title {
  margin-left: auto;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.02em;
}

.terminal-body {
  padding: 1.25rem;
  height: 300px;
  max-height: 300px;
  line-height: 1.75;
  color: #e2e8f0;
  overflow-y: auto;
  overflow-x: hidden;
}

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

.terminal-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
}

.terminal-line {
  display: flex;
  gap: 0.5rem;
  white-space: pre-wrap;
  word-break: break-all;
  animation: fadeInLine 0.2s ease-out forwards;
  opacity: 0;
}

.terminal-line.prompt {
  color: var(--accent);
}

.terminal-line.output {
  color: #94a3b8;
  padding-left: 1rem;
}

.terminal-line.success {
  color: var(--dot-green);
}

.terminal-line.info {
  color: #60a5fa;
}

.terminal-line.empty {
  height: 0.5rem;
}

.cursor {
  display: inline-block;
  animation: blink 1s step-end infinite;
  color: var(--text-primary);
}

/* ---------------------------------------------- About Section N°8 ----------------------------------- */

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

.about-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.6rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--text-primary);
  margin-bottom: var(--space-xl);
}

.about-badge strong {
  color: var(--text-primary);
  font-weight: 600;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.badge-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.stat-number.seo {
  font-size: 2rem;
  letter-spacing: 0.02rem;
}
.about-badge + .btn {
  display: flex;
  width: fit-content;
  margin-top: var(--space-md);
}

.stat-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.stat-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ---------------------------------------------- Projects Section N°9 -------------------------------------------------*/

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.project-card-inner {
  padding: var(--space-xl);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: var(--space-md);
}

.project-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.project-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.project-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.2rem 0.55rem;
  border-radius: 99px;
}

.project-status::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.status-active {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
}

.status-active::before {
  background: #22c55e;
  animation: pulse 2s infinite;
}

.status-dev {
  background: rgba(94, 106, 210, 0.12);
  color: var(--accent);
}

.status-dev::before {
  background: var(--accent);
  animation: pulse 2s infinite;
}

.status-soon {
  background: rgba(107, 114, 128, 0.12);
  color: var(--text-muted);
}

.status-soon::before {
  background: var(--text-muted);
}

.project-year {
  font-size: 0.72rem;
  color: var(--text-muted);
  padding-left: 0.55rem;
}

.project-icon {
  color: var(--accent);
  opacity: 0.7;
  flex-shrink: 0;
}

.project-title {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.project-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}
.project-footer {
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border);
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  transition: gap var(--transition);
}

.project-link:hover {
  gap: 0.6rem;
}

.project-link.muted {
  color: var(--text-muted);
  pointer-events: none;
}

.card-muted {
  opacity: 0.65;
}

.card-muted:hover {
  opacity: 0.85;
}
/* ------------------------------------------- Skills Section N°10 ------------------------------------------ */

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.skills-card {
  min-height: 140px;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.skills-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: 1rem;
  margin-top: -0.8rem;
}

.skills-category-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-accent {
  background: var(--accent);
}

.dot-green {
  background: var(--dot-green);
}

.dot-orange {
  background: #ff7b00;
}
.dot-purple {
  background: var(--dot-purple);
}

.dot-blue {
  background: #3b82f6;
}
.dot-white {
  background: #d4d4d8;
}

.dot-yellow {
  background: #facc15;
}

.dot-cyan {
  background: #06b6d4;
}

.dot-amber {
  background: #b45309;
}
.dot-pink {
  background: #f472b6;
}
.skills-category {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.skill-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  column-gap: 0.85rem;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.skill-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  justify-self: center;
}

.skill-dot {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
}

.skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* ----------------------------------- Contact Section N°11 ----------------------------------- */

.contact-inner {
  max-width: 640px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.contact-links {
  border-bottom: 1px solid var(--border);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item:hover {
  background: var(--bg-card-hover);
}

.contact-item:hover .contact-item-arrow {
  transform: translateX(4px);
  color: var(--accent);
}

.contact-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--accent-light);
  color: var(--accent);
  flex-shrink: 0;
}

.contact-item-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-item-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.contact-item-value {
  font-size: 0.925rem;
  color: var(--text-primary);
  font-weight: 500;
}

.contact-item-arrow {
  color: var(--text-muted);
  font-size: 1rem;
  transition: all var(--transition);
  flex-shrink: 0;
}

.contact-cta {
  padding: var(--space-xl);
  display: flex;
  justify-content: center;
}

/* ----------------------------------- Footer N°12 ----------------------------------- */

.footer {
  background: var(--bg-section-1);
  border-top: 1px solid var(--border);
  padding: var(--space-xl) 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.footer-socials {
  display: flex;
  gap: var(--space-sm);
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.8rem;
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 0.6px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  width: 100%;
}
/* -------------------------------- Composants UI N°13 -------------------------------------------*/
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;

  padding: 0.25rem 0.43rem;

  font-size: 0.72rem;
  font-weight: 500;

  background: var(--tag-bg);
  color: var(--tag-text);

  border: 1px solid var(--tag-border);
  border-radius: 6px;

  transition: all 0.2s ease;
}

.tag img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  object-fit: contain;
}
/* ----------------------------------- Dark Theme N°14 ----------------------------------- */
[data-theme="dark"] .project-tags,
[data-theme="dark"] .skills-tags {
  position: relative;
  z-index: 2;
}

[data-theme="dark"] .tag {
  position: relative;
  z-index: 3;
}
[data-theme="dark"] .project-card,
[data-theme="dark"] .skills-card,
[data-theme="dark"] .stat-card,
[data-theme="dark"] .contact-card {
  position: relative;
  overflow: hidden;

  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.075) 0%,
    rgba(255, 255, 255, 0.035) 12%,
    rgba(255, 255, 255, 0.012) 32%,
    rgba(255, 255, 255, 0.035) 52%,
    rgba(255, 255, 255, 0.01) 72%,
    rgba(255, 255, 255, 0.04) 100%
  );

  border: 0.5px solid rgba(255, 255, 255, 0.01);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.65),
    0 24px 48px rgba(0, 0, 0, 0.55),
    0 48px 96px rgba(0, 0, 0, 0.65),
    0 0 32px rgba(255, 255, 255, 0.045),
    0 0 20px rgba(255, 255, 255, 0.025);

  transform: translateY(0); /* -3px */

  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

[data-theme="dark"] .project-card::before,
[data-theme="dark"] .skills-card::before,
[data-theme="dark"] .stat-card::before,
[data-theme="dark"] .contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.025) 18%,
    rgba(255, 255, 255, 0.09) 50%,
    rgba(255, 255, 255, 0.025) 82%,
    transparent 100%
  );

  opacity: 0.75;
}

/* ------------------------------------------------- */

[data-theme="dark"] .project-card,
[data-theme="dark"] .skills-card,
[data-theme="dark"] .stat-card,
[data-theme="dark"] .contact-card {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

[data-theme="dark"] .project-card:hover,
[data-theme="dark"] .skills-card:hover,
[data-theme="dark"] .stat-card:hover,
[data-theme="dark"] .contact-card:hover {
  transform: translateY(-6px);

  border-color: rgba(255, 255, 255, 0.03);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.7),
    0 0 42px rgba(255, 255, 255, 0.05),
    0 0 28px rgba(255, 255, 255, 0.035);
  /*   0 0 28px*/
}

[data-theme="dark"] .project-card:hover::before,
[data-theme="dark"] .skills-card:hover::before,
[data-theme="dark"] .stat-card:hover::before,
[data-theme="dark"] .contact-card:hover::before {
  opacity: 0.95;
}
/* --------------------------------------*/
[data-theme="dark"] .skills-category {
  color: var(--text-primary);
}
[data-theme="dark"] .project-card:hover .tag,
[data-theme="dark"] .skills-card:hover .tag {
  color: #fafafa; /* #fff  */

  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.02) 35%,
    rgba(255, 255, 255, 0.2) 55%,
    /* CRHOME 0.2*/ rgba(255, 255, 255, 0.015) 100%
  );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    0 8px 18px rgba(0, 0, 0, 0.35),
    0 16px 32px rgba(0, 0, 0, 0.35),
    0 0 12px rgba(255, 255, 255, 0.05); /* AURA */
}

/* -----------------------------------------------*/
[data-theme="dark"] .tag {
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.04) 35%,
    rgba(255, 255, 255, 0.2) 55%,
    /* CRHOME 0.2*/ rgba(255, 255, 255, 0.02) 100%
  );

  border: 0px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    0 8px 18px rgba(0, 0, 0, 0.35),
    0 16px 32px rgba(0, 0, 0, 0.35),
    0 0 12px rgba(255, 255, 255, 0.07); /* AURA */

  transform: translateY(0);

  transition: all 0.25s ease;
}
[data-theme="dark"] .tag:hover {
  color: #fafafa;

  transform: translateY(-2px);
}
/* --------- btn-outline  -----------------*/
[data-theme="dark"] .btn-cv {
  color: #a1a1aa;

  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.04) 35%,
    rgba(255, 255, 255, 0.2) 55%,
    /* CRHOME 0.2*/ rgba(255, 255, 255, 0.02) 100%
  );

  border: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.7),
    0 0 42px rgba(255, 255, 255, 0.03),
    0 0 28px rgba(255, 255, 255, 0.035);
  /*   0 0 28px*/

  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);

  transition: all 0.25s ease;
}

[data-theme="dark"] .btn-cv:hover {
  color: #fafafa;

  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.04) 35%,
    rgba(255, 255, 255, 0.2) 55%,
    /* CRHOME 0.2*/ rgba(255, 255, 255, 0.09) 100%
  );

  border-color: transparent;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.7),
    0 0 42px rgba(255, 255, 255, 0.05),
    0 0 28px rgba(255, 255, 255, 0.035);
  /*   0 0 28px*/

  transform: translateY(-2px);
}
/* ------------------------ Btn Primary Dark  ------------------------*/
[data-theme="dark"] .btn-primary {
  background: linear-gradient(120deg, #fafafa 0%, #e5e7eb 100%);
  color: #000212;
  border-color: transparent;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 24px rgba(0, 0, 0, 0.35),
    0 0 32px rgba(255, 255, 255, 0.05),
    0 0 18px rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .btn-primary:hover {
  background: linear-gradient(120deg, #fafafa 0%, #fff 100%);
  color: #000;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 0 32px rgba(255, 255, 255, 0.09),
    0 0 18px rgba(255, 255, 255, 0.05);

  transform: translateY(-2px);
}

/*  ------------------- social-link  Dark Theme ---------------*/
[data-theme="dark"] .social-link {
  color: var(--text-secondary);
}
[data-theme="dark"] .social-link:hover {
  color: #fafafa;

  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.04) 35%,
    rgba(255, 255, 255, 0.2) 55%,
    rgba(255, 255, 255, 0.02) 100%
  );

  border-color: rgba(255, 255, 255, 0.15);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.45),
    0 12px 28px rgba(0, 0, 0, 0.45),
    0 24px 48px rgba(0, 0, 0, 0.55),
    0 0 12px rgba(255, 255, 255, 0.12); /* AURA */

  transform: translateY(-2px);
}
[data-theme="dark"] .theme-toggle:hover {
  color: #fff;

  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.04) 35%,
    rgba(255, 255, 255, 0.2) 55%,
    rgba(255, 255, 255, 0.02) 100%
  );

  border-color: rgba(255, 255, 255, 0.18);

  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16) inset,
    0 -1px 0 rgba(0, 0, 0, 0.5) inset,
    0 8px 16px rgba(0, 0, 0, 0.65),
    0 16px 32px rgba(0, 0, 0, 0.55),
    0 0 12px rgba(255, 255, 255, 0.07); /* aura */

  transform: translateY(-2px);
}
[data-theme="dark"] .terminal {
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.04) 35%,
    rgba(255, 255, 255, 0.2) 55%,
    rgba(255, 255, 255, 0.02) 100%
  );

  border: none;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.7),
    0 0 42px rgba(255, 255, 255, 0.02),
    0 0 28px rgba(255, 255, 255, 0.035);

  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);

  transition: all 0.25s ease;
}

[data-theme="dark"] .terminal:hover {
  border-color: transparent;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.7),
    0 0 42px rgba(255, 255, 255, 0.04),
    0 0 28px rgba(255, 255, 255, 0.035);

  transform: translateY(-6px);
}

/* ----------------------------------- Light Theme N°15 ----------------------------------- */

[data-theme="light"] {
  --bg: #ffffff;
  --bg-section-1: #ffffff;
  --bg-section-2: #f7f8f8;

  --bg-card: #ffffff;
  --bg-card-hover: #f7f8f8;

  --border: #e5e7eb;
  --border-hover: #d1d5db;

  --text-primary: #000212;
  --text-secondary: #3a3f47;
  --text-muted: #8a8f98;

  --accent: #5e6ad2;
  --accent-light: rgba(94, 106, 210, 0.06);
  --accent-glow: rgba(94, 106, 210, 0.08);

  --tag-bg: #f3f4f6;
  --tag-text: #3a3f47;
  --tag-border: #e5e7eb;
  --tag-hover: #e5e7eb;

  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(229, 231, 235, 0.7);

  --card-glass-bg: rgba(255, 255, 255, 0.72);
  --card-glass-border: rgba(229, 231, 235, 0.8);
  --card-glass-hover: rgba(247, 248, 248, 0.9);
}

/* ----------------------------------------------*/
[data-theme="light"] .social-link:hover {
  color: #000212;

  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.95),
    rgba(94, 106, 210, 0.2),
    rgba(255, 255, 255, 0.95)
  );

  border-color: rgba(94, 106, 210, 0.2);
  backdrop-filter: blur(14px);
  box-shadow:
    0 4px 8px rgba(15, 23, 42, 0.2),
    0 14px 26px rgba(15, 23, 42, 0.18),
    0 0.5px 0 rgba(255, 255, 255, 0.9) inset;

  transform: translateY(-2px);
}
[data-theme="light"] .section::before {
  background: rgba(94, 106, 210, 0.18);
}
/* -------------------------------------------*/
[data-theme="light"] .terminal-title {
  color: var(--text-muted);
}

[data-theme="light"] .terminal-bar {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(248, 249, 252, 0.98)
  );

  border-bottom: 0.5px solid rgba(94, 106, 210, 0.12);
}
[data-theme="light"] .terminal {
  position: relative;
  overflow: hidden;
  background: #ffffff;

  border: 1px solid rgba(94, 106, 210, 0.14);

  box-shadow:
    0 2px 6px rgba(15, 23, 42, 0.12),
    0 10px 24px rgba(15, 23, 42, 0.12),
    0 24px 56px rgba(15, 23, 42, 0.1),
    0 0 48px rgba(94, 106, 210, 0.08),
    0 0 120px rgba(94, 106, 210, 0.055),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;

  transition: all 0.25s ease;
}
[data-theme="light"] .terminal:hover {
  transform: translateY(-6px);

  border-color: rgba(94, 106, 210, 0.22);
  box-shadow:
    0 4px 8px rgba(15, 23, 42, 0.14),
    0 14px 30px rgba(15, 23, 42, 0.14),
    0 30px 70px rgba(15, 23, 42, 0.12),
    0 0 60px rgba(94, 106, 210, 0.1),
    0 0 140px rgba(94, 106, 210, 0.07),
    0 1px 0 rgba(255, 255, 255, 1) inset;
}
/*--------------------------------------------------- */
[data-theme="light"] .project-card,
[data-theme="light"] .skills-card,
[data-theme="light"] .stat-card,
[data-theme="light"] .contact-card {
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(94, 106, 210, 0.055) 48%,
    rgba(255, 255, 255, 0.95) 100%
  );

  border-color: transparent;

  box-shadow:
    0 2px 6px rgba(15, 23, 42, 0.08),
    0 10px 24px rgba(15, 23, 42, 0.08),
    0 22px 48px rgba(15, 23, 42, 0.06),
    0 0 40px rgba(94, 106, 210, 0.045),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

[data-theme="light"] .project-card:hover,
[data-theme="light"] .skills-card:hover,
[data-theme="light"] .stat-card:hover,
[data-theme="light"] .contact-card:hover {
  transform: translateY(-6px) scale(1.005);

  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(94, 106, 210, 0.08) 48%,
    rgba(255, 255, 255, 1) 100%
  );

  border-color: transparent;

  box-shadow:
    0 4px 8px rgba(15, 23, 42, 0.1),
    0 14px 30px rgba(15, 23, 42, 0.1),
    0 30px 70px rgba(15, 23, 42, 0.08),
    0 0 56px rgba(94, 106, 210, 0.06),
    0 1px 0 rgba(255, 255, 255, 1) inset;
}
/*--------------------------------------------------- */
[data-theme="light"] .skills-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background: radial-gradient(
    ellipse at center,
    rgba(94, 106, 210, 0.05) 0%,
    transparent 70%
  );

  opacity: 0;
  transition: opacity 0.25s ease;
}

[data-theme="light"] .skills-card:hover::before {
  opacity: 1;
}
/*--------------------------------------------------- */
[data-theme="light"] .project-card,
[data-theme="light"] .stat-card,
[data-theme="light"] .contact-card,
[data-theme="light"] .btn-primary,
[data-theme="light"] .btn-cv,
[data-theme="light"] .social-link,
[data-theme="light"] .theme-toggle {
  position: relative;
  overflow: hidden;
}

[data-theme="light"] .project-card::before,
[data-theme="light"] .stat-card::before,
[data-theme="light"] .contact-card::before,
[data-theme="light"] .btn-primary::before,
[data-theme="light"] .btn-cv::before,
[data-theme="light"] .social-link::before,
[data-theme="light"] .theme-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background: radial-gradient(
    ellipse at center,
    rgba(94, 106, 210, 0.05) 0%,
    transparent 70%
  );

  opacity: 0;
  transition: opacity 0.25s ease;
}

[data-theme="light"] .project-card:hover::before,
[data-theme="light"] .stat-card:hover::before,
[data-theme="light"] .contact-card:hover::before,
[data-theme="light"] .btn-primary:hover::before,
[data-theme="light"] .btn-cv:hover::before,
[data-theme="light"] .social-link:hover::before,
[data-theme="light"] .theme-toggle:hover::before {
  opacity: 1;
}
/*--------------------------------------------------- */
[data-theme="light"] .tag {
  background: #fff;
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.15),
    0 6px 12px rgba(15, 23, 42, 0.15),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;

  border: 0.5px solid rgba(15, 23, 42, 0.08);

  transition: all 0.25s ease;
}

[data-theme="light"] .tag:hover {
  color: #000212;
  border-color: rgba(94, 106, 210, 0.25);

  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 1),
    rgba(94, 106, 210, 0.08)
  );

  box-shadow:
    0 2px 6px rgba(15, 23, 42, 0.2),
    0 8px 20px rgba(15, 23, 42, 0.18),
    0 1px 0 rgba(255, 255, 255, 1) inset;

  transform: translateY(-2px);
}
[data-theme="light"] .skills-category {
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: -0.03em;
}
[data-theme="light"] .project-card:hover .tag,
[data-theme="light"] .skills-card:hover .tag {
  color: #000212;

  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 1),
    rgba(94, 106, 210, 0.08)
  );

  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.2),
    0 8px 16px rgba(15, 23, 42, 0.18),
    0 1px 0 rgba(255, 255, 255, 1) inset;
}
/*------------------------ BTN-CV----------------*/
[data-theme="light"] .btn-cv {
  color: #000212;

  background: #fff;

  border: 1px solid rgba(15, 23, 42, 0.08);

  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.2),
    0 8px 16px rgba(15, 23, 42, 0.18),
    0 1px 0 rgba(255, 255, 255, 1) inset;

  transition: all 0.25s ease;
}
[data-theme="light"] .btn-cv:hover {
  color: #000212;

  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(94, 106, 210, 0.12) 48%,
    rgba(255, 255, 255, 0.95) 100%
  );

  border-color: rgba(94, 106, 210, 0.12);

  box-shadow:
    0 4px 8px rgba(15, 23, 42, 0.15),
    0 14px 26px rgba(15, 23, 42, 0.18),
    0 0 12px rgba(94, 106, 210, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.1) inset;

  transform: translateY(-2px);
}
[data-theme="light"] .btn-primary,
[data-theme="light"] .contact-btn {
  color: #ffffff;

  background: #000;

  border: 1px solid rgba(15, 23, 42, 0.08);

  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.2),
    0 8px 16px rgba(15, 23, 42, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.1) inset;

  transition: all 0.25s ease;
}
[data-theme="light"] .btn-primary:hover,
[data-theme="light"] .contact-btn:hover {
  color: #ffffff;
  background: #000;

  box-shadow:
    0 3px 6px rgba(15, 23, 42, 0.18),
    0 10px 20px rgba(15, 23, 42, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.12) inset;

  transform: translateY(-2px);
}

/* ----------------------------------- Animations & Effects N°16 ----------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

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

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

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

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

/* ---------------------------------------------- Responsive N°17 --------------------------------------------- */

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

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

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-xl);
    gap: var(--space-md);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
  }
  /*------------------------------------------*/
  @media (max-width: 1024px) {
    .skills-card-full {
      grid-column: 1 / -1;
    }

    .skills-card-full .skills-tags {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .skills-card-full {
      grid-column: auto;
    }

    .skills-card-full .skills-tags {
      grid-template-columns: 1fr;
    }
  }
  /* --------------------------------------*/
  .nav-links.open {
    display: flex;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-actions .btn-primary {
    display: none;
  }
  /* --------------------------------------*/
  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .hero-visual {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-name {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .hero-role {
    font-size: clamp(1.2rem, 5vw, 1.75rem);
  }
  /* --------------------------------------*/
  .about-inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-right {
    order: -1;
  }
}
/* --------------------------------------*/
@media (max-width: 768px) {
  :root {
    --space-3xl: 4rem;
    --space-2xl: 2.5rem;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .skills-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}
/* --------------------------------------*/
@media (max-width: 600px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }
}
/* --------------------------------------*/
@media (max-width: 480px) {
  :root {
    --space-xl: 1.5rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .contact-item {
    padding: var(--space-md);
  }
  .contact-cta {
    padding: var(--space-lg);
  }

  .terminal {
    font-size: 0.72rem;
  }
  .terminal-body {
    height: 260px;
    max-height: 260px;
  }
}
/* --------------------------------------*/
@media (max-width: 360px) {
  .logo-text {
    display: none;
  }
}
