:root {
  --black: #020202;
  --white: #f8f8f8;
  --muted: rgba(255, 255, 255, 0.64);
  --line: rgba(255, 255, 255, 0.1);
  --accent: #0d6bff;
  --accent-2: #0d6bff;
  --font-display: "Space Grotesk", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

#loading-screen {
  position: fixed;
  inset: 0;
  background: #010101;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen img {
  width: 140px;
  height: auto;
  animation: pulse 1.6s ease-in-out infinite;
  filter: drop-shadow(0 20px 60px rgba(13, 107, 255, 0.45));
}

#loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.bg-glow {
  position: fixed;
  width: 32vw;
  height: 32vw;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
}

.bg-glow.left {
  top: -10vw;
  left: -8vw;
  background: radial-gradient(circle, rgba(13, 107, 255, 0.75), transparent 65%);
}

.bg-glow.right {
  bottom: -12vw;
  right: -6vw;
  background: radial-gradient(circle, rgba(8, 52, 150, 0.7), transparent 70%);
}

.grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(
      transparent 92%,
      rgba(255, 255, 255, 0.03) 95%
    ),
    linear-gradient(
      90deg,
      transparent 92%,
      rgba(255, 255, 255, 0.03) 95%
    );
  background-size: 80px 80px;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
  display: none;
}

#cursor-trail {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 0 12px rgba(13, 107, 255, 0.3));
  mix-blend-mode: screen;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

header,
main,
footer {
  position: relative;
  z-index: 1;
}

.hero {
  padding: clamp(1.5rem, 3vw, 3.5rem);
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
}

.nav.clean {
  padding: 0.8rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(2, 2, 2, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: 1100px;
  transition: transform 0.4s ease, box-shadow 0.4s ease,
    border-color 0.4s ease, background 0.4s ease;
  position: sticky;
  top: 1rem;
  z-index: 100;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(2, 2, 2, 0.55);
  border-radius: 999px;
  padding: 0.15rem 0.35rem 0.15rem 0.15rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.nav-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.16);
}

.nav-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.nav-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.nav-icon:hover,
.nav-icon:focus-visible {
  color: #0d6bff;
  background: rgba(13, 107, 255, 0.15);
  transform: translateY(-1px);
}

.nav-actions .btn {
  margin: 0;
}

.nav.clean.scrolled {
  transform: translateY(12px);
  border-color: rgba(13, 107, 255, 0.6);
  background: rgba(5, 5, 5, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo-icon {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-left: auto;
}

.nav-links a {
  color: var(--muted);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--white);
}


.nav-links a.is-active {
  color: var(--white);
  position: relative;
}

.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.hero-center {
  max-width: 760px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-center h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.1;
  margin: 0.6rem 0 1.4rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.75rem;
  color: var(--muted);
}

.accent {
  color: var(--accent);
}

.lede {
  color: var(--muted);
  max-width: 60ch;
}

.lede.center {
  text-align: center;
  margin: 0 auto;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 2.6rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  font-weight: 600;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.btn.solid {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 30px rgba(13, 107, 255, 0.35);
}

.btn.outline,
.btn.ghost {
  border-color: rgba(255, 255, 255, 0.25);
}

.btn.ghost {
  padding-inline: 1.2rem;
  font-size: 0.75rem;
}

.btn.play {
  border-radius: 18px;
  padding: 0.5rem 1.2rem;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  letter-spacing: 0.2em;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 18px 40px rgba(13, 107, 255, 0.45);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  text-align: center;
  margin: 1.5rem 0 2rem;
}

.metrics span {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
}

.metrics p {
  color: var(--muted);
  margin: 0.2rem 0 0;
}

/* Removed old showreel styles */

main section {
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 6vw, 5rem);
}

/* Logo marquee */
.logo-marquee {
  width: min(100%, 1100px);
  margin: clamp(1rem, 3vw, 2rem) auto;
  padding: 0;
}

.logo-marquee__mask {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 110px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}

.logo-marquee__mask::before,
.logo-marquee__mask::after {
  display: none;
}

.logo-marquee__track {
  display: flex;
  gap: clamp(1.6rem, 3vw, 3rem);
  padding: 1rem 2.5rem;
  animation: marqueeScroll 24s linear infinite;
  position: relative;
  z-index: 3;
  width: max-content;
  will-change: transform;
  transform: translateX(0);
}

.logo-marquee__group {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.5vw, 2.2rem);
  flex: 0 0 auto;
}

.logo-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 90px;
  padding: 0 0.75rem;
  background: transparent;
  border-radius: 0;
}

.creator-line {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0.15rem 0 0.8rem;
  font-size: 0.88rem;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}

.creator-name {
  font-weight: 600;
  color: var(--white);
}

.creator-badge {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.creator-badge::after {
  content: "✓";
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1;
}

.logo-pill img {
  height: 80px;
  width: auto;
  object-fit: contain;
  opacity: 1;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.65));
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-pill img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0.5rem 0 1rem;
}

.section-header p {
  color: var(--muted);
  max-width: 70ch;
}

.about {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.about-text h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
}

.about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.about-stats article {
  padding: 1.25rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 20% 15%, rgba(13, 107, 255, 0.25), rgba(0, 0, 0, 0.6));
}

.about-stats h3 {
  margin: 0 0 0.5rem;
  font-size: 1.6rem;
}

.experiences {
  border-bottom: 1px solid var(--line);
}

.exp-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.exp-card {
  border-radius: 28px;
  border: 1px solid var(--line);
  background: transparent;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.exp-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 25px 50px rgba(13, 107, 255, 0.22);
}

.exp-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.exp-card:hover img {
  transform: scale(1.02);
  filter: saturate(1.2);
}

.exp-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  height: 100%;
}

.exp-body h3 {
  margin: 0.9rem 0 0.4rem;
  font-size: 1.4rem;
}

.exp-body p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.exp-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
  display: grid;
  gap: 0.2rem;
}

.exp-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.live-ccu {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--muted);
  white-space: nowrap;
  min-width: 0;
}

.live-ccu .live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f7a874;
  box-shadow: 0 0 12px rgba(247, 168, 116, 0.5);
  animation: livePulse 1.8s ease-in-out infinite;
}

.live-ccu .live-label {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
}

.live-ccu .live-value {
  font-weight: 600;
  color: var(--white);
  min-width: 2.4ch;
  display: inline-block;
  text-align: right;
  transition: color 0.3s ease;
}

.live-ccu.success .live-dot {
  background: #22c55e;
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.6);
}

.live-ccu.success .live-value {
  color: #86efac;
}

.live-ccu.warn .live-dot {
  background: #fbbf24;
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.45);
}

.live-ccu.warn .live-value {
  color: #fde68a;
}

.live-ccu.error .live-dot {
  background: #f87171;
  box-shadow: 0 0 10px rgba(248, 113, 113, 0.45);
  animation: none;
}

.live-ccu.error .live-value {
  color: #fecaca;
}

.btn.small {
  padding: 0.55rem 1.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  border-radius: 999px;
  text-transform: none;
  align-self: flex-end;
  margin-top: auto;
}

.exp-card-footer .btn.small {
  align-self: auto;
  margin-top: 0;
  margin-left: auto;
  white-space: nowrap;
}

.exp-body ul li {
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.exp-body ul li + li {
  margin-top: 0.1rem;
}

.experiences-page .live-ccu {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  flex: 1 1 auto;
}

.experiences-page .live-ccu .live-value {
  font-size: 0.9rem;
}

.exp-actions {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.btn.see-all-experiences {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: none;
  background: linear-gradient(120deg, #1a78ff, #2563eb);
  box-shadow: 0 20px 50px rgba(13, 107, 255, 0.45);
}
.btn.see-all-experiences span {
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.btn.see-all-experiences:hover span {
  transform: translateX(3px);
}

.loop {
  border-bottom: 1px solid var(--line);
}


.timeline {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.timeline .step {
  padding: 1.6rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 20% 15%, rgba(13, 107, 255, 0.25), rgba(0, 0, 0, 0.6));
  min-height: 170px;
  position: relative;
  overflow: hidden;
}

.timeline .step::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -40%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(120, 245, 255, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.timeline .step:hover::after {
  opacity: 1;
}

.timeline span {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--muted);
}

.timeline h4 {
  margin: 0.8rem 0;
  font-size: 1.1rem;
}

.timeline p {
  color: var(--muted);
}

.loop.is-hidden {
  display: none;
}

.community {
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.community-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.community-card h2 {
  font-family: var(--font-display);
  margin: 0.4rem 0 0.8rem;
}

.community-card p {
  color: var(--muted);
}

.community-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.community-stats span {
  font-size: 1.7rem;
  font-weight: 600;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 60px);
  gap: 0.6rem;
}

.tile {
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(120, 245, 255, 0.25), rgba(140, 126, 255, 0.2));
  animation: pulse 6s ease-in-out infinite;
}

.tile.large {
  grid-column: span 4;
  grid-row: span 4;
  animation-delay: 0s;
}

.tile.mid {
  grid-column: span 2;
  grid-row: span 3;
  animation-delay: 1s;
}

.tile.small {
  grid-column: span 3;
  grid-row: span 2;
  animation-delay: 2s;
}

.contact-page {
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.8rem 0 1rem;
}

.contact-logo {
  width: 72px;
  opacity: 0.9;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  color: var(--muted);
  display: grid;
  gap: 0.4rem;
}

.checklist li::before {
  content: "✔";
  margin-right: 0.6rem;
  color: var(--accent);
}

.contact-segments {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.contact-segments article {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  background: rgba(5, 5, 5, 0.45);
}

.contact-segments h3 {
  margin: 0 0 0.25rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.92);
}

.contact-segments p {
  margin: 0 0 0.4rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
}

.contact-segments ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  display: grid;
  gap: 0.2rem;
}

.contact-segments li::before {
  content: "•";
  color: var(--accent);
  margin-right: 0.35rem;
}

.link-row {
  color: var(--muted);
}

.link-row a {
  color: var(--white);
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.5rem;
  background: radial-gradient(circle at 20% 15%, rgba(13, 107, 255, 0.25), rgba(0, 0, 0, 0.6));
  display: grid;
  gap: 1rem;
}

.contact-form label.confirm-check {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
}

.contact-form label.confirm-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 0.85rem 1rem;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(5, 5, 5, 0.8);
  color: var(--white);
  font: inherit;
}

.contact-form button {
  justify-self: flex-start;
}

.alt-email {
  font-size: 0.85rem;
  color: var(--muted);
}

.form-status {
  font-size: 0.85rem;
  min-height: 1.5rem;
  color: var(--muted);
}
.form-status.success {
  color: #7dffb0;
}
.form-status.error {
  color: #ff8f8f;
}

.footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}

.fade {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 0.9s forwards ease;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.03);
    opacity: 1;
  }
}

@keyframes livePulse {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 960px) {
  .nav-links {
    justify-content: center;
    width: 100%;
  }
  .nav-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-inline: 1.25rem;
  }
  .cta-actions {
    width: 100%;
    flex-direction: column;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
  .gallery {
    grid-template-rows: repeat(6, 40px);
  }
  .logo-marquee__mask {
    border-radius: 32px;
    max-width: 95vw;
  }
  .logo-marquee__mask::before,
  .logo-marquee__mask::after {
    width: 28px;
  }
  .logo-marquee__track {
    padding: 0 0.8rem;
  }
  .logo-marquee__group {
    gap: 0.9rem;
    padding: 0.9rem 0;
  }
  .logo-pill {
    min-width: 70px;
  }
  .logo-pill img {
    height: 32px;
  }
}

@media (max-width: 900px) {
  .nav.clean {
    flex-direction: column;
    gap: 0.75rem;
  }

  .nav-links {
    justify-content: center;
    width: 100%;
  }

  .hero-center h1 {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }

  .metrics {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }

  .exp-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .contact-page {
    grid-template-columns: 1fr;
  }

  .contact-hero,
  .contact-form {
    width: 100%;
  }
  .logo-marquee__group {
    gap: clamp(1.4rem, 4vw, 3rem);
  }
}





.experiences-page .hero {
  min-height: auto;
  padding-bottom: 1.2rem;
}

.experiences-page .hero-center {
  min-height: 0;
  padding: 0;
}

.experiences-page main {
  margin-top: 0;
}

.experiences-page .experiences {
  padding-top: 1rem;
}

.experiences-page .exp-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem;
}

.experiences-page .exp-card-footer {
  flex-wrap: nowrap;
  gap: 0.75rem;
}

@media (max-width: 600px) {
  .experiences-page .exp-card-footer {
    flex-wrap: wrap;
  }
}

@media (max-width: 1200px) {
  .experiences-page .exp-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}
