/* ==========================================================================
   Design Tokens
   ========================================================================== */
:root {
  --bg-color: #070c17;
  --panel-bg: rgba(17, 25, 40, 0.45);
  --panel-bg-strong: rgba(17, 25, 40, 0.75);
  --panel-border: rgba(255, 255, 255, 0.08);
  --panel-hover: rgba(255, 255, 255, 0.15);
  --accent-color: #3a66e8;
  --accent-hover: #5580f0;
  --accent-soft: rgba(61, 108, 255, 0.15);
  --accent-ring: rgba(61, 108, 255, 0.35);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #8896a8;
  --gradient-start: #3a66e8;
  --gradient-end: #00e1ff;
  --blob-1: rgba(61, 108, 255, 0.25);
  --blob-2: rgba(0, 225, 255, 0.15);
  --status-color: #22c55e;

  --radius-sm: 10px;
  --radius-md: 12px;
  --radius-lg: 16px;

  --shadow-panel: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-lift: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(61, 108, 255, 0.1);
  --shadow-button: 0 4px 15px rgba(61, 108, 255, 0.35);
  --shadow-button-hover: 0 8px 25px rgba(61, 108, 255, 0.5);
}

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

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

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

::-webkit-scrollbar-track {
  background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, var(--accent-hover), var(--gradient-end));
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1,
.h1 {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

h2,
.h2 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h3,
.h3 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

h4,
.h4 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
}

.text-lg {
  font-size: 1.15rem;
  line-height: 1.7;
}

.text-base {
  font-size: 1rem;
  line-height: 1.6;
}

.text-sm {
  font-size: 0.95rem;
  line-height: 1.5;
}

.text-xs {
  font-size: 0.85rem;
  line-height: 1.5;
}

.font-light {
  font-weight: 400;
}

.font-bold {
  font-weight: 600;
}

.font-heavy {
  font-weight: 700;
}

li a,
p a {
  color: var(--gradient-end);
  text-decoration: underline;
  text-decoration-color: rgba(0, 225, 255, 0.4);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.3s ease;
}

li a:hover,
p a:hover {
  text-decoration-color: var(--gradient-end);
}

.text-gradient {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  z-index: 10;
}

.container-large {
  max-width: 1200px;
}

.section {
  margin-top: 4rem;
  scroll-margin-top: 6rem;
}

section.testimonials {
  margin: 0;
}

.section-title {
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  display: inline-block;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  border-radius: 2px;
}

/* ==========================================================================
   Background Decoration
   ========================================================================== */
.background-glass {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(16, 25, 45, 0.9) 0%, var(--bg-color) 60%);
  z-index: -2;
}

.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  animation: drift 25s infinite alternate ease-in-out;
  opacity: 0.8;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--blob-1);
  top: -150px;
  left: -150px;
}

.blob-2 {
  width: 600px;
  height: 600px;
  background: var(--blob-2);
  bottom: -200px;
  right: -200px;
  animation-delay: -12s;
}

@keyframes drift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(60px, 40px) scale(1.15);
  }
}

/* ==========================================================================
   Panels & Cards
   ========================================================================== */
.glass-panel {
  background: var(--panel-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-panel);
  padding: 2.5rem;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.text-center-panel {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(61, 108, 255, 0.4);
  box-shadow: var(--shadow-lift);
}

.card-icon {
  width: 54px;
  height: 54px;
  background: rgba(61, 108, 255, 0.12);
  border: 1px solid rgba(61, 108, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  margin-bottom: 1.25rem;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(61, 108, 255, 0.2);
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--text-secondary);
}

/* ==========================================================================
   Header & Hero
   ========================================================================== */
.header {
  display: flex;
  justify-content: flex-start;
  padding: 1rem 0 3rem;
}

.logo {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.headline {
  width: 100%;
}

.subheadline {
  color: var(--text-secondary);
}

.hero-description {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.hero-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 20px;
  border: 2px solid var(--panel-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.hero-image:hover {
  transform: scale(1.02);
  border-color: rgba(61, 108, 255, 0.4);
}

@media (min-width: 768px) {
  .hero-layout {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .hero-content {
    flex: 1;
  }

  .hero-image-wrap {
    flex: 0 0 214px;
    display: flex;
    justify-content: center;
  }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.button-group {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: none;
  outline: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--accent-color);
  color: #fff;
  box-shadow: var(--shadow-button);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-button-hover);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border: 1px solid var(--panel-border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--panel-hover);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
  margin-top: 0.5rem;
}

.btn-success {
  background: var(--status-color);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

/* ==========================================================================
   About & Lists
   ========================================================================== */
.about-panel p {
  color: var(--text-secondary);
}

.list-card {
  padding: 2.5rem;
}

.clean-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.clean-list li {
  font-size: 1.1rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
}

.clean-list li + li {
  padding-top: 0.8rem;
}

.clean-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.clean-list li::before {
  content: "•";
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-right: 1rem;
  line-height: 1;
}

/* ==========================================================================
   Products Section
   ========================================================================== */
.products-intro {
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 2rem;
}

.product-card {
  padding: 0;
  overflow: hidden;
  position: relative;
  background: radial-gradient(circle at top right, rgba(61, 108, 255, 0.18), transparent 60%), var(--panel-bg);
}

@media (min-width: 768px) {
  .product-card-body {
    padding: 2.5rem;
  }
}

.product-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 999px;
  color: var(--status-color);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.dot-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--status-color);
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
}

.product-title {
  margin-bottom: 0.75rem;
}

.product-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  max-width: 560px;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: grid;
  gap: 0.6rem;
}

.product-features li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--text-secondary);
}

.product-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
  transform: rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
  .dot-live {
    animation: none;
  }
}

/* ==========================================================================
   Projects Stack
   ========================================================================== */
.projects-intro {
  margin-bottom: 4rem;
}

.projects-intro .section-title {
  margin-bottom: 1rem;
}

.projects-intro p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.projects-stack-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 100vh; */
  flex-direction: column;
}

.sticky-slide {
  margin-bottom: 2rem;
  position: sticky;
  top: 7vh;
  opacity: 0;
  max-height: calc(100vh - 4rem);
  border-radius: var(--radius-lg);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: contain;
  background-position: top;
  overflow: hidden;
  transform: scale(0.5);
  transform-origin: center center;
  will-change: transform, opacity;
  aspect-ratio: 1200/750;
}

.sticky-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 12, 23, 0.6);
  transition: background 0.4s ease;
  z-index: 1;
}

.sticky-slide:hover::before {
  background: rgba(7, 12, 23, 0.3);
}

.slide-robertherjavec {
  background-image:
    linear-gradient(135deg, rgba(58, 102, 232, 0.4), rgba(0, 225, 255, 0.4)),
    url("../images/projects/robertherjavec.webp");
}

.slide-oatside {
  background-image:
    linear-gradient(135deg, rgba(58, 102, 232, 0.4), rgba(0, 225, 255, 0.4)), url("../images/projects/oatside.webp");
}

.slide-proterraasia {
  background-image:
    linear-gradient(135deg, rgba(58, 102, 232, 0.4), rgba(0, 225, 255, 0.4)),
    url("../images/projects/proterraasia.webp");
}

.slide-shoplogix {
  background-image:
    linear-gradient(135deg, rgba(58, 102, 232, 0.4), rgba(0, 225, 255, 0.4)), url("../images/projects/shoplogix.webp");
}

.slide-findyouraudience {
  background-image:
    linear-gradient(135deg, rgba(58, 102, 232, 0.4), rgba(0, 225, 255, 0.4)),
    url("../images/projects/findyouraudience.webp");
}

.slide-nedgraphics {
  background-image:
    linear-gradient(135deg, rgba(58, 102, 232, 0.4), rgba(0, 225, 255, 0.4)), url("../images/projects/nedgraphics.webp");
}

.project-overlay {
  position: relative;
  z-index: 2;
  background: var(--panel-bg-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  width: 90%;
  max-width: 600px;
  padding: 2rem 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(40px);
  text-align: center;
}

.project-overlay .btn-primary {
  padding: 10px 20px;
}

.sticky-slide:hover .project-overlay {
  opacity: 1;
  transform: translateY(0);
}

.project-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.project-role {
  font-size: 1.1rem;
  color: var(--gradient-end);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.project-description {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.tech-pill {
  padding: 0.5rem 1.25rem;
  background: var(--accent-soft);
  border: 1px solid rgba(61, 108, 255, 0.3);
  border-radius: 30px;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
}

.badge-archived {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  border-radius: 8px;
  border: 1px solid var(--panel-border);
  margin-top: 0.5rem;
  cursor: not-allowed;
}

/* ==========================================================================
   Testimonials Carousel
   ========================================================================== */
.carousel-wrapper {
  position: relative;
}

.testimonials-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1.5rem;
  padding: 2.5rem 1.5rem;
  margin: -2.5rem -1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonials-carousel::-webkit-scrollbar {
  display: none;
}

.testimonials-carousel .card {
  flex: 0 0 100%;
  scroll-snap-align: center;
  min-width: 0;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--panel-border);
}

.testimonial-author-name {
  color: var(--text-primary);
  margin: 0;
}

.testimonial-author-title {
  color: var(--text-secondary);
  margin-top: 0.2rem;
}

.testimonial-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(17, 25, 40, 0.8);
  border: 1px solid var(--panel-border);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.carousel-arrow:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow svg {
  width: 24px;
  height: 24px;
}

.carousel-arrow-left {
  left: -22px;
}

.carousel-arrow-right {
  right: -22px;
}

.carousel-arrow[hidden] {
  display: none;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 2rem;
}

.dot-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.3s ease;
}

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

@media (min-width: 768px) {
  .testimonials-carousel .card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

/* ==========================================================================
   Status Panel
   ========================================================================== */
.status-panel {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  background: rgba(17, 25, 40, 0.3);
  border-left: 4px solid var(--status-color);
}

.status-indicator {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.dot,
.pulse {
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: var(--status-color);
  border-radius: 50%;
}

.pulse {
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  75%,
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

.status-panel p {
  margin: 0;
  color: var(--text-secondary);
}

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

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-intro {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  color: var(--text-secondary);
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(17, 25, 40, 0.4);
  border: 1px solid var(--panel-border);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(17, 25, 40, 0.6);
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.1),
    0 0 0 3px rgba(61, 108, 255, 0.2);
}

.form-control::placeholder {
  color: rgba(148, 163, 184, 0.5);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

@media (min-width: 768px) {
  .form-row {
    flex-direction: row;
  }

  .form-row .form-group {
    flex: 1;
  }
}

.contact-links {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  flex: 1;
}

.contact-link:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--panel-hover);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-link svg {
  color: var(--text-secondary);
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.contact-link:hover svg {
  color: var(--text-primary);
  transform: scale(1.1);
}

.contact-link span {
  display: none;
}

@media (min-width: 600px) {
  .contact-link span {
    display: inline;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  margin-top: 6rem;
  text-align: center;
  color: var(--text-secondary);
  padding-bottom: 2rem;
}

.footer-brand {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.copyright {
  margin-top: 1.25rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

.delay-4 {
  animation-delay: 0.6s;
}

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

@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .blob,
  .pulse {
    animation: none;
  }
  .fade-in {
    opacity: 1;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
  h1,
  .h1 {
    font-size: 2.5rem;
  }
  h2,
  .h2 {
    font-size: 1.8rem;
  }
  h3,
  .h3 {
    font-size: 1.35rem;
  }
  h4,
  .h4 {
    font-size: 1.15rem;
  }

  .container {
    padding: 1.25rem;
  }

  .glass-panel {
    padding: 1.75rem;
  }

  .status-panel {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

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

  .blob {
    display: none;
  }

  .carousel-arrow {
    display: none !important;
  }

  .project-overlay {
    opacity: 1;
    transform: translateY(0);
    background: rgba(17, 25, 40, 0.95);
    padding: 2rem;
  }
  .tech-pill {
    font-size: 12px;
    padding: 8px 12px;
  }

  .tech-stack {
    gap: 0.5rem;
  }

  .project-overlay .btn-primary,
  .badge-archived {
    padding: 6px 15px;
    font-size: 0.8rem;
  }
  .project-title {
    font-size: 1.6rem;
  }
  .project-role {
    font-size: 1rem;
  }
  .sticky-slide {
    aspect-ratio: 320/531;
    background-size: cover;
  }
  .project-description {
    display: none;
  }
}
