:root {
  --bg: #070a0f;
  --bg-soft: #0d1119;
  --panel: rgba(18, 23, 34, .72);
  --line: rgba(255,255,255,.105);
  --text: #f3f7fb;
  --muted: #9aa5b3;
  --cyan: #49e7ff;
  --violet: #9a7cff;
  --lime: #b7ff5a;
  --orange: #ff9d57;
  --pink: #ff70b7;
  --blue: #6a9cff;
  --max: 1180px;
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 5%, rgba(73,231,255,.10), transparent 30%),
    radial-gradient(circle at 86% 12%, rgba(154,124,255,.11), transparent 34%),
    var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

a { color: inherit; text-decoration: none; }
svg { width: 100%; height: 100%; }

.noise {
  position: fixed;
  inset: 0;
  opacity: .035;
  pointer-events: none;
  z-index: 100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  opacity: .12;
  background: radial-gradient(circle, var(--cyan), transparent 68%);
  transform: translate(-50%, -50%);
  transition: opacity .2s ease;
}

.section-shell,
.site-header {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: .16em;
}
.brand-mark { color: var(--text); }
.brand-cursor { color: var(--cyan); animation: blink 1.1s steps(1) infinite; }

.nav { display: flex; align-items: center; gap: 28px; font-size: .92rem; color: var(--muted); }
.nav a { transition: color .2s ease; }
.nav a:hover { color: var(--text); }
.nav-cta {
  border: 1px solid var(--line);
  padding: 10px 17px;
  border-radius: 999px;
  background: rgba(255,255,255,.035);
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 64px;
  align-items: center;
  padding: 84px 0 120px;
}

.eyebrow {
  margin: 0 0 22px;
  color: #bac4cf;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
}
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 16px var(--lime);
}

h1, h2, h3 { margin: 0; line-height: 1.05; letter-spacing: -.045em; }
h1 { max-width: 760px; font-size: clamp(3.5rem, 6.5vw, 6.3rem); font-weight: 850; }
h2 { font-size: clamp(2.4rem, 4.7vw, 4.7rem); font-weight: 800; }
h3 { font-size: clamp(1.65rem, 2.1vw, 2.2rem); font-weight: 760; }
.text-gradient {
  color: transparent;
  background: linear-gradient(90deg, var(--cyan), #7dc9ff 42%, var(--violet));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-intro {
  max-width: 660px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.7vw, 1.3rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 38px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 22px;
  border-radius: 13px;
  font-weight: 760;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary { color: #061117; background: var(--cyan); box-shadow: 0 15px 50px rgba(73,231,255,.18); }
.button-ghost { border: 1px solid var(--line); background: rgba(255,255,255,.035); }
.button-ghost:hover { border-color: rgba(255,255,255,.25); }

.hero-visual { position: relative; isolation: isolate; }
.terminal-card {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background: rgba(9, 13, 21, .88);
  box-shadow: 0 40px 100px rgba(0,0,0,.48), inset 0 1px 0 rgba(255,255,255,.04);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  backdrop-filter: blur(18px);
}
.terminal-bar {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}
.terminal-bar span { width: 9px; height: 9px; border-radius: 50%; background: #36404d; }
.terminal-bar span:nth-child(1) { background: #ff6b6b; }
.terminal-bar span:nth-child(2) { background: #ffc857; }
.terminal-bar span:nth-child(3) { background: #67e480; }
.terminal-bar p {
  margin: 0 0 0 10px;
  color: #748090;
  font: .7rem ui-monospace, SFMono-Regular, Menlo, monospace;
}
.terminal-body { padding: clamp(24px, 4vw, 40px); font: .82rem/1.75 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; color: #afbac7; }
.terminal-body p { margin: 0 0 11px; }
.terminal-key { color: var(--cyan); }
.terminal-result { color: #f5f8fb; padding-left: 17px; }
.terminal-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 5px 0 20px 17px; }
.terminal-tags span { padding: 5px 8px; border: 1px solid rgba(73,231,255,.24); border-radius: 6px; color: #b7f6ff; background: rgba(73,231,255,.045); font-size: .68rem; }
.system-lines { margin: 5px 0 22px 17px; border-left: 1px solid rgba(255,255,255,.12); }
.system-lines div { display: flex; justify-content: space-between; gap: 18px; padding: 5px 0 5px 13px; }
.system-lines em { color: var(--lime); font-size: .66rem; font-style: normal; letter-spacing: .1em; }
.system-lines .pulse { animation: softPulse 1.6s ease-in-out infinite; }
.typing-line { color: #e8edf2; }
.caret { color: var(--cyan); animation: blink .9s steps(1) infinite; }

.orbit { position: absolute; z-index: 1; border-radius: 50%; border: 1px solid rgba(73,231,255,.22); }
.orbit::after { content: ""; position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px var(--cyan); }
.orbit-one { width: 430px; height: 430px; inset: -45px -80px auto auto; animation: rotate 18s linear infinite; }
.orbit-one::after { top: 48px; left: 55px; }
.orbit-two { width: 310px; height: 310px; inset: 55px auto auto -65px; border-color: rgba(154,124,255,.18); animation: rotate 14s linear reverse infinite; }
.orbit-two::after { right: 20px; bottom: 80px; background: var(--violet); box-shadow: 0 0 18px var(--violet); }

.ticker { overflow: hidden; border-block: 1px solid var(--line); background: rgba(255,255,255,.018); }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 30px; padding: 16px 0; animation: marquee 28s linear infinite; color: #727e8c; font: 700 .7rem ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .18em; }
.ticker-track i { color: rgba(73,231,255,.42); font-style: normal; }

.projects { padding: 140px 0; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; margin-bottom: 58px; }
.section-lead { max-width: 500px; margin: 0; color: var(--muted); font-size: 1.08rem; }
.project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.project-card {
  --accent: var(--cyan);
  position: relative;
  min-height: 425px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.014));
  transition: transform .28s ease, border-color .28s ease, background .28s ease;
}
.project-card::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -110px;
  top: -125px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(95px);
  opacity: .13;
  transition: opacity .25s ease, transform .35s ease;
}
.project-card:hover { transform: translateY(-7px); border-color: color-mix(in srgb, var(--accent) 42%, transparent); background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.02)); }
.project-card:hover::before { opacity: .23; transform: scale(1.2); }
.project-card.cyan { --accent: var(--cyan); }
.project-card.violet { --accent: var(--violet); }
.project-card.orange { --accent: var(--orange); }
.project-card.lime { --accent: var(--lime); }
.project-card.blue { --accent: var(--blue); }
.project-card.pink { --accent: var(--pink); }
.project-card.ice { --accent: #72b9ff; }
.project-card.electric { --accent: #6ee7ff; }
.project-card.mint { --accent: #72f0a7; }
.project-card.fiber { --accent: #37d9d2; }
.project-preview {
  position: relative;
  z-index: 2;
  width: min(100%, 290px);
  height: 128px;
  margin: 24px 0 24px;
  align-self: flex-start;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 15px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 12%, #111722), #0c1119);
  box-shadow: 0 18px 38px rgba(0,0,0,.25);
}
.project-preview::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.035);
}
.project-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  filter: saturate(.88) brightness(.82);
  transition: transform .55s ease, filter .35s ease;
}
.project-preview.logo-preview {
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(243,247,250,.94));
}
.project-preview.logo-preview .logo-image {
  object-fit: contain;
  padding: 14px 18px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(241,246,250,.96));
  filter: none;
}
.project-card:hover .project-preview.logo-preview .logo-image {
  transform: scale(1.01);
  filter: none;
}
.project-card:hover .project-preview img {
  transform: scale(1.035);
  filter: saturate(1) brightness(.93);
}
.preview-domain {
  position: absolute;
  z-index: 4;
  left: 12px;
  bottom: 11px;
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 7px;
  color: #e8eef5;
  background: rgba(5,8,13,.78);
  backdrop-filter: blur(8px);
  font: 650 .66rem ui-monospace, SFMono-Regular, Menlo, monospace;
}
.compact-preview { width: min(100%, 255px); height: 112px; }
.fiber-preview { width: min(100%, 280px); height: 145px; min-height: 0; margin: 0; align-self: center; justify-self: end; }
.wide-copy { align-self: center; }

.card-top, .card-footer { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.project-type, .live-label { font: 700 .68rem ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .13em; }
.project-type { color: #98a4b2; }
.live-label { color: var(--accent); }
.project-card h3 { position: relative; z-index: 2; margin-top: 0; }
.project-card p { position: relative; z-index: 2; max-width: 590px; margin: 15px 0 28px; color: var(--muted); }
.project-tags { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 28px; }
.project-tags span { padding: 6px 10px; border-radius: 7px; background: rgba(255,255,255,.045); color: #aeb9c5; font-size: .72rem; border: 1px solid rgba(255,255,255,.06); }
.card-footer { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); color: #dbe3eb; font: 600 .78rem ui-monospace, SFMono-Regular, Menlo, monospace; }
.card-footer span:last-child { color: var(--accent); font-size: 1.2rem; transition: transform .2s ease; }
.project-card:hover .card-footer span:last-child { transform: translate(3px, -3px); }
.project-card.wide { grid-column: 1 / -1; min-height: 335px; display: grid; grid-template-columns: 1fr .55fr; gap: 40px; }
.project-card.wide h3 { margin-top: 24px; }
.project-card.wide .card-footer { grid-column: 1 / -1; }
.about { padding: 0 0 140px; }
.about-panel {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  padding: clamp(34px, 6vw, 74px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(73,231,255,.045), rgba(154,124,255,.045));
}
.about-code { align-self: center; display: grid; grid-template-columns: 30px 1fr; gap: 15px 18px; color: #a9b5c2; font: .77rem/1.45 ui-monospace, SFMono-Regular, Menlo, monospace; }
.about-code span { color: #465260; user-select: none; }
.about-code p { margin: 0; }
.about-code p:nth-of-type(1) { color: #9ce8f1; }
.about-code p:nth-of-type(2) { color: #bba9ff; }
.about-code p:nth-of-type(3) { color: #ffc08f; }
.about-code p:nth-of-type(4) { color: #c9ff8a; }
.about-copy h2 { max-width: 760px; font-size: clamp(2.3rem, 4vw, 4rem); }
.about-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.about-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.about-chips span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: #c4ced8; background: rgba(255,255,255,.025); font-size: .78rem; }

.contact { padding: 0 0 110px; }
.contact-panel {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 60px;
  align-items: end;
  padding: clamp(34px, 6vw, 70px);
  border-radius: 28px;
  background: var(--text);
  color: #081016;
}
.contact-panel .eyebrow { color: #4c5964; }
.contact-panel h2 { max-width: 720px; font-size: clamp(2.5rem, 4.6vw, 4.5rem); }
.contact-panel p:not(.eyebrow) { max-width: 650px; margin: 20px 0 0; color: #4a5661; }
.contact-link { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; border-bottom: 2px solid #0d1922; font-weight: 800; font-size: clamp(1rem, 2vw, 1.45rem); }
.contact-link strong { font-size: 1.8rem; transition: transform .2s ease; }
.contact-link:hover strong { transform: translate(4px, -4px); }

.site-footer { display: flex; justify-content: space-between; gap: 24px; padding: 0 0 35px; color: #697684; font: .68rem ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .08em; }
.footer-status { margin-left: 15px; }
.footer-status i { display: inline-block; width: 6px; height: 6px; margin-right: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px var(--lime); }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@keyframes blink { 50% { opacity: 0; } }
@keyframes softPulse { 50% { opacity: .35; } }
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 940px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 60px; }
  .hero-copy { max-width: 780px; }
  .hero-visual { max-width: 650px; }
  .section-heading, .about-panel, .contact-panel { grid-template-columns: 1fr; }
  .about-code { order: 2; }
  .contact-link { max-width: 560px; }
}

@media (max-width: 700px) {
  .section-shell, .site-header { width: min(calc(100% - 28px), var(--max)); }
  .site-header { padding-top: 18px; }
  .nav a:not(.nav-cta) { display: none; }
  .hero { gap: 48px; padding: 64px 0 85px; }
  h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .terminal-card { transform: none; }
  .orbit { display: none; }
  .projects { padding: 100px 0; }
  .section-heading { gap: 25px; margin-bottom: 40px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card.wide { grid-column: auto; grid-template-columns: 1fr; }
  .project-card.wide .card-footer { grid-column: auto; }
  .fiber-preview { width: min(100%, 260px); height: 132px; min-height: 0; margin-top: 10px; justify-self: start; }
  .about { padding-bottom: 100px; }
  .about-panel { gap: 45px; padding: 32px 24px; }
  .about-code { grid-template-columns: 24px 1fr; gap: 13px 10px; font-size: .67rem; }
  .contact { padding-bottom: 75px; }
  .contact-panel { gap: 35px; padding: 38px 24px; }
  .site-footer { flex-direction: column; }
  .footer-status { display: block; margin: 9px 0 0; }
  .project-preview { width: min(76%, 260px); height: 116px; }
  .compact-preview { width: min(72%, 235px); height: 104px; }
}

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

/* Trajecten voor en met klanten */
.trajectories { padding: 0 0 140px; }
.trajectory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.trajectory-card {
  --trajectory-accent: var(--cyan);
  min-height: 390px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
  transition: transform .28s ease, border-color .28s ease, background .28s ease;
}
.trajectory-card:nth-child(2) { --trajectory-accent: var(--violet); }
.trajectory-card:nth-child(3) { --trajectory-accent: var(--orange); }
.trajectory-card:nth-child(4) { --trajectory-accent: var(--lime); }
.trajectory-card:nth-child(5) { --trajectory-accent: var(--pink); }
.trajectory-card:nth-child(6) { --trajectory-accent: var(--blue); }
.trajectory-card::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -100px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: var(--trajectory-accent);
  filter: blur(90px);
  opacity: .12;
  transition: opacity .25s ease, transform .35s ease;
}
.trajectory-card:hover {
  transform: translateY(-7px);
  border-color: color-mix(in srgb, var(--trajectory-accent) 42%, transparent);
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.018));
}
.trajectory-card:hover::before { opacity: .2; transform: scale(1.12); }
.trajectory-preview {
  position: relative;
  width: min(calc(100% - 48px), 260px);
  height: 118px;
  margin: 24px 24px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0c1119;
}
.trajectory-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(7,10,15,.34), transparent 60%);
}
.trajectory-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  filter: saturate(.82) brightness(.78);
  transition: transform .55s ease, filter .35s ease;
}
.trajectory-card:hover .trajectory-preview img {
  transform: scale(1.045);
  filter: saturate(1) brightness(.92);
}
.trajectory-status {
  position: absolute;
  z-index: 4;
  top: 14px;
  right: 14px;
  padding: 6px 9px;
  border: 1px solid color-mix(in srgb, var(--trajectory-accent) 38%, transparent);
  border-radius: 999px;
  color: var(--trajectory-accent);
  background: rgba(5,8,13,.82);
  backdrop-filter: blur(8px);
  font: 750 .61rem ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .1em;
}
.trajectory-status.is-building { animation: softPulse 2s ease-in-out infinite; }
.trajectory-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 21px 24px 24px;
}
.trajectory-body .project-type { margin: 0 0 17px; }
.trajectory-body h3 { font-size: clamp(1.5rem, 1.8vw, 1.9rem); }
.trajectory-body > p:not(.project-type) {
  margin: 14px 0 26px;
  color: var(--muted);
  font-size: .94rem;
}
.trajectory-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: #dbe3eb;
  font: 650 .75rem ui-monospace, SFMono-Regular, Menlo, monospace;
}
.trajectory-link b {
  color: var(--trajectory-accent);
  font-size: 1.12rem;
  transition: transform .2s ease;
}
.trajectory-card:hover .trajectory-link b { transform: translate(3px, -3px); }
.trajectory-preview.is-concept img { filter: blur(2px) saturate(.4) brightness(.28); transform: scale(1.06); }
.concept-overlay {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.concept-overlay span {
  color: var(--lime);
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -.08em;
}
.concept-overlay strong { color: #f2f7fb; font-size: 2.15rem; letter-spacing: -.06em; }

@media (max-width: 940px) {
  .trajectory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .trajectories { padding-bottom: 100px; }
  .trajectory-grid { grid-template-columns: 1fr; }
  .trajectory-card { min-height: 390px; }
  .trajectory-preview { width: min(calc(100% - 48px), 240px); height: 108px; }
}

.project-preview.dark-logo-preview {
  background: linear-gradient(135deg, #081018, #11172a);
}
.project-preview.dark-logo-preview .logo-image {
  padding: 0;
  object-fit: cover;
  background: transparent;
}
.project-card:hover .project-preview.dark-logo-preview .logo-image {
  transform: scale(1.025);
}
