:root {
  --black: #1a1a1a;
  --blue-dark: #19237d;
  --blue: #006eff;
  --purple: #8e00ff;
  --pink: #ff2d78;
  --coral: #ff506e;
  --yellow: #ffbe00;
  --green: #24c76a;
  --paper: #fffaf3;
  --soft: #f7f4ef;
  --line: rgba(26, 26, 26, .12);
  --shadow: 0 24px 70px rgba(26, 26, 26, .10);
  --radius: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--black);
  background:
    radial-gradient(circle at 6% 8%, rgba(255, 190, 0, .26), transparent 30rem),
    radial-gradient(circle at 90% 8%, rgba(0, 110, 255, .22), transparent 34rem),
    radial-gradient(circle at 14% 76%, rgba(255, 142, 0, .16), transparent 32rem),
    radial-gradient(circle at 92% 82%, rgba(25, 35, 125, .16), transparent 36rem),
    linear-gradient(180deg, #fffaf3 0%, #f9f7f2 48%, #ffffff 100%);
  overflow-x: clip;
  position: relative;
  width: 100%;
}

body::after {
  content: "";
  position: fixed;
  width: 44rem;
  height: 44rem;
  right: -18rem;
  top: 18rem;
  z-index: -1;
  border-radius: 50%;
  background: conic-gradient(from 180deg, var(--blue-dark), var(--blue), var(--yellow), var(--coral), var(--blue));
  filter: blur(80px);
  opacity: .16;
  pointer-events: none;
  animation: floatBlob 24s ease-in-out infinite alternate;
  will-change: transform;
}

body::before {
  content: "";
  position: fixed;
  left: -14rem;
  bottom: -12rem;
  width: 38rem;
  height: 38rem;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  opacity: .12;
  filter: blur(90px);
  background: radial-gradient(circle, rgba(0, 110, 255, .70) 0%, rgba(25, 35, 125, .64) 46%, rgba(255, 190, 0, .46) 100%);
  animation: floatBlobSecondary 32s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes floatBlob {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-2rem, 1.5rem, 0) scale(1.08);
  }

  100% {
    transform: translate3d(2rem, -1rem, 0) scale(.96);
  }
}

@keyframes floatBlobSecondary {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(2rem, -1.5rem, 0) scale(1.06);
  }

  100% {
    transform: translate3d(-1.5rem, 2rem, 0) scale(.94);
  }
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

::selection {
  background: var(--yellow);
  color: var(--black);
}

.site-shell {
  width: min(100% - 50px, 1480px);
  margin-inline: auto;
}

.section-band {
  position: relative;
  padding: 6.5rem 0;
  scroll-margin-top: 120px;
}

.section-band--plain {
  padding: 6rem 0;
}

#contact.section-band--plain {
  padding: 3rem 0;
}

.section-band--panel {
  isolation: isolate;
  margin: 2rem 0;
}

.section-band--panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 190, 0, .18), transparent 24rem),
    radial-gradient(circle at 86% 22%, rgba(0, 110, 255, .18), transparent 28rem),
    linear-gradient(135deg, rgba(255, 255, 255, .72), rgba(247, 244, 239, .92));
}

.section-band--panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .26;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, .65), transparent),
    radial-gradient(circle at 52% 0%, rgba(255, 142, 0, .12), transparent 24rem);
}

.section-band--soft::before {
  background:
    radial-gradient(circle at 6% 22%, rgba(0, 110, 255, .12), transparent 26rem),
    radial-gradient(circle at 92% 76%, rgba(255, 190, 0, .18), transparent 28rem),
    linear-gradient(135deg, rgba(255, 255, 255, .80), rgba(255, 250, 243, .88));
}

.navbar-wrap {
  position: sticky;
  top: 16px;
  z-index: 50;
  padding-top: 16px;
}

.navbar-custom {
  border: none;
  background: rgba(255, 250, 243, .72);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: 0 10px 34px rgba(26, 26, 26, .07);
  padding: .65rem .85rem;
}

.brand-logo {
  height: 44px;
  width: auto;
  display: block;
}

.brand-fallback {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--black);
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue), var(--purple), var(--pink));
  box-shadow: 0 10px 26px rgba(0, 110, 255, .22);
}

.navbar-toggler-icon {
  transition: background-image .15s ease, transform .15s ease;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-image: none;
  position: relative;
  transform: rotate(90deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.45rem;
  height: 2px;
  border-radius: 999px;
  background: var(--black);
  transform-origin: center;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-link {
  color: rgba(26, 26, 26, .74);
  font-weight: 700;
  font-size: .94rem;
  border-radius: 999px;
  padding: .65rem .9rem !important;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--black);
  background: rgba(26, 26, 26, .06);
}

.btn-pill {
  border-radius: 999px;
  padding: .6rem 1.1rem;
  font-weight: 800;
  border: 0;
}

.btn-dark-custom {
  background: linear-gradient(135deg, #1c2370 0%, #2d57c7 55%, #5c3db6 100%);
  color: #fff;
  box-shadow:
    0 10px 24px rgba(25, 35, 125, .16),
    0 4px 12px rgba(0, 110, 255, .10);
}

.btn-dark-custom:hover {
  background: linear-gradient(135deg, #182062 0%, #284fb8 55%, #5537ab 100%);
  color: #fff;
  transform: translateY(-1px);
}

.btn-light-custom {
  background: rgba(255, 255, 255, .78);
  border: none;
  color: var(--black);
}

.btn-light-custom:hover {
  background: #fff;
  border-color: rgba(26, 26, 26, .18);
  transform: translateY(-1px);
}

.hero {
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem .85rem;
  border-radius: 999px;
  background: #ffffff;
  border: none;
  color: rgba(26, 26, 26, .72);
  font-size: .92rem;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(26, 26, 26, .05);
}

.eyebrow-dot {
  width: .65rem;
  height: .65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--pink), var(--yellow));
  box-shadow: 0 0 0 5px rgba(255, 45, 120, .14);
}

h1,
h2,
h3,
h4 {
  letter-spacing: -.035em;
  line-height: .95;
  font-weight: 800;
}

.hero-title {
  font-size: clamp(3.2rem, 7.2vw, 8rem);
  max-width: 12ch;
  margin: 1.2rem 0 1.4rem;
}

.text-gradient {
  display: inline-block;
  background: linear-gradient(90deg, var(--blue-dark), var(--blue), var(--purple), var(--pink), var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  line-height: 1.55;
  max-width: 720px;
  color: rgba(26, 26, 26, .76);
}

.hero-card {
  position: relative;
  border-radius: var(--radius);
  border: none;
  background: #ffffff;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 10px;
  background: linear-gradient(90deg, var(--blue-dark), var(--blue), var(--purple), var(--pink), var(--coral), var(--yellow));
}

.portrait-placeholder {
  aspect-ratio: 4 / 5;
  min-height: 420px;
  display: grid;
  place-items: center;
  border-radius: calc(var(--radius) - 12px);
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 190, 0, .45), transparent 14rem),
    radial-gradient(circle at 80% 36%, rgba(255, 190, 0, .16), transparent 16rem),
    linear-gradient(135deg, rgba(0, 110, 255, .16), rgba(142, 0, 255, .12));
  border: 1px dashed rgba(26, 26, 26, .25);
  color: rgba(26, 26, 26, .54);
  text-align: center;
  padding: 2rem;
  font-weight: 800;
}

.portrait-photo {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: calc(var(--radius) - 12px);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.stat {
  padding: 0 .6rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1.55rem;
  letter-spacing: -.04em;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: .35rem;
  color: rgba(26, 26, 26, .62);
  font-size: .92rem;
  font-weight: 700;
}

.section-kicker {
  display: inline-block;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .92rem;
  margin-bottom: .9rem;
}

.section-title {
  font-size: clamp(1.9rem, 3.4vw, 3.8rem);
  max-width: 850px;
  margin-bottom: 1rem;
}

.section-intro {
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  line-height: 1.6;
  color: rgba(26, 26, 26, .70);
  max-width: 760px;
}

.intro-feature {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 5rem);
  border-radius: calc(var(--radius) + 14px);
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(26, 26, 26, .07);
  backdrop-filter: blur(18px);
}

.intro-number {
  display: inline-flex;
  flex-direction: column;
  gap: .35rem;
  max-width: 340px;
}

.intro-number strong {
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: .78;
  letter-spacing: -.08em;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue), var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.intro-number span {
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -.04em;
}

.intro-copy {
  max-width: 760px;
}

.intro-copy h2 {
  font-size: clamp(2rem, 4vw, 4.4rem);
  margin-bottom: 1.2rem;
}

.intro-copy p {
  font-size: clamp(1.08rem, 1.35vw, 1.35rem);
  line-height: 1.65;
  color: rgba(26, 26, 26, .72);
  margin-bottom: 1.4rem;
}

.intro-points {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.6rem;
}

.intro-point {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem .9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 26px rgba(26, 26, 26, .05);
  color: rgba(26, 26, 26, .74);
  font-size: .92rem;
  font-weight: 850;
}

.intro-point::before {
  content: "";
  width: .65rem;
  height: .65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--yellow));
}

.content-card {
  height: auto;
  padding: clamp(1.5rem, 2vw, 2.25rem);
  border-radius: var(--radius);
  border: none;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(26, 26, 26, .06);
  backdrop-filter: blur(12px);
}

.content-card.highlight {
  background: #ffffff;
  border: 1px solid transparent;
}

.card-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 1.25rem;
  background: var(--black);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 38px rgba(26, 26, 26, .15);
}

.icon-blue {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}

.icon-purple {
  background: linear-gradient(135deg, var(--purple), var(--pink));
}

.icon-yellow {
  background: linear-gradient(135deg, var(--yellow), var(--coral));
}

.content-card h3 {
  font-size: clamp(1.4rem, 1.6vw, 2rem);
  margin-bottom: .85rem;
}

.content-card > *:last-child {
  margin-bottom: 0 !important;
}

.content-card p,
.content-card li {
  color: rgba(26, 26, 26, .72);
  line-height: 1.62;
}

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

.clean-list li {
  position: relative;
  padding: .3rem 0 .3rem 1.7rem;
  font-weight: 650;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .75rem;
  width: .75rem;
  height: .75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--purple), var(--pink));
}

.portfolio-scroll-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.portfolio-scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  flex: 0 0 auto;
  padding: .55rem .8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 28px rgba(26, 26, 26, .06);
  color: rgba(26, 26, 26, .62);
  font-size: .86rem;
  font-weight: 850;
}

.portfolio-hint-icon {
  display: inline-grid;
  place-items: center;
  width: 1.45rem;
  height: 1.45rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--black);
  color: #fff;
  line-height: 1;
}

.portfolio-hint-icon svg,
.portfolio-arrow-icon {
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.portfolio-arrow-icon {
  width: 1.7rem;
  height: 1.7rem;
  stroke-width: 3.4;
}

.portfolio-scroll-wrap {
  position: relative;
  overflow: visible;
  padding: 1.25rem 0 .35rem;
}

.portfolio-grid {
  --portfolio-gap: 1.25rem;
  --portfolio-shadow-space-x: 5rem;
  --portfolio-shadow-space-top: 3.25rem;
  --portfolio-shadow-space-bottom: 7.5rem;

  display: flex;
  gap: var(--portfolio-gap);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--portfolio-shadow-space-x);
  padding:
    var(--portfolio-shadow-space-top)
    var(--portfolio-shadow-space-x)
    var(--portfolio-shadow-space-bottom);
  margin:
    calc(var(--portfolio-shadow-space-top) * -1)
    calc(var(--portfolio-shadow-space-x) * -1)
    calc((var(--portfolio-shadow-space-bottom) - .85rem) * -1);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
  cursor: grab;
  touch-action: pan-x pan-y;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 var(--portfolio-shadow-space-x),
    #000 calc(100% - var(--portfolio-shadow-space-x)),
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 var(--portfolio-shadow-space-x),
    #000 calc(100% - var(--portfolio-shadow-space-x)),
    transparent 100%
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.portfolio-grid:active {
  cursor: grabbing;
}

.portfolio-grid.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.portfolio-grid::-webkit-scrollbar {
  display: none;
}

.portfolio-card {
  position: relative;
  z-index: 1;
  flex: 0 0 calc((100% - (2 * var(--portfolio-shadow-space-x)) - (2 * var(--portfolio-gap))) / 3);
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: #ffffff;
  border: none;
  box-shadow:
    0 30px 76px rgba(26, 26, 26, .085),
    0 10px 24px rgba(26, 26, 26, .045);
  transition:
    transform .22s cubic-bezier(.22, 1, .36, 1),
    box-shadow .22s cubic-bezier(.22, 1, .36, 1);
}

.portfolio-card:hover,
.portfolio-card.is-active {
  z-index: 3;
  transform: translateY(-2px);
  box-shadow:
    0 36px 88px rgba(26, 26, 26, .11),
    0 12px 30px rgba(26, 26, 26, .055);
}

.portfolio-grid.is-dragging .portfolio-card {
  pointer-events: none;
}

.portfolio-card * {
  user-select: none;
}

.screenshot-placeholder {
  aspect-ratio: 1600 / 920;
  display: grid;
  place-items: center;
  color: rgba(26, 26, 26, .46);
  font-weight: 800;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(25, 35, 125, .12), rgba(0, 110, 255, .12)),
    repeating-linear-gradient(45deg, rgba(26, 26, 26, .05) 0 10px, transparent 10px 20px);
}

.portfolio-card:nth-child(2) .screenshot-placeholder,
.portfolio-card:nth-child(5) .screenshot-placeholder {
  background:
    linear-gradient(135deg, rgba(142, 0, 255, .13), rgba(255, 45, 120, .14)),
    repeating-linear-gradient(45deg, rgba(26, 26, 26, .05) 0 10px, transparent 10px 20px);
}

.portfolio-card:nth-child(3) .screenshot-placeholder,
.portfolio-card:nth-child(6) .screenshot-placeholder {
  background:
    linear-gradient(135deg, rgba(255, 190, 0, .24), rgba(255, 80, 110, .12)),
    repeating-linear-gradient(45deg, rgba(26, 26, 26, .05) 0 10px, transparent 10px 20px);
}

.portfolio-card:nth-child(4) .screenshot-placeholder,
.portfolio-card:nth-child(7) .screenshot-placeholder {
  background:
    linear-gradient(135deg, rgba(0, 110, 255, .13), rgba(36, 199, 106, .13)),
    repeating-linear-gradient(45deg, rgba(26, 26, 26, .05) 0 10px, transparent 10px 20px);
}

.portfolio-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.35rem;
}

.portfolio-body h3 {
  font-size: 1.35rem;
  letter-spacing: -.04em;
  margin-bottom: .45rem;
}

.portfolio-body p {
  color: rgba(26, 26, 26, .72);
  line-height: 1.58;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: auto;
  padding-top: 1rem;
}

.tag {
  border-radius: 999px;
  padding: .35rem .62rem;
  background: rgba(26, 26, 26, .06);
  font-size: .78rem;
  font-weight: 800;
  color: rgba(26, 26, 26, .70);
}

.portfolio-nav {
  position: absolute;
  inset: 1.25rem 0 2.2rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.portfolio-nav-btn {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--black);
  box-shadow: 0 14px 36px rgba(26, 26, 26, .12);
  backdrop-filter: blur(14px);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: auto;
  transition:
    transform .2s ease,
    background .2s ease,
    box-shadow .2s ease,
    opacity .2s ease;
}

.portfolio-nav-btn:hover {
  background: #fff;
  box-shadow: 0 18px 44px rgba(26, 26, 26, .16);
}

.portfolio-nav-btn.prev {
  transform: translateX(-50%);
}

.portfolio-nav-btn.next {
  transform: translateX(50%);
}

.portfolio-nav-btn.prev:hover {
  transform: translateX(-50%) scale(1.06);
}

.portfolio-nav-btn.next:hover {
  transform: translateX(50%) scale(1.06);
}

.portfolio-nav-btn:disabled {
  opacity: .28;
  cursor: default;
}

.portfolio-dots {
  position: relative;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .7rem;
  width: 100%;
  margin-top: .85rem;
}

.portfolio-dot {
  width: 22px;
  height: 22px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.portfolio-dot::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 999px;
  background: rgba(26, 26, 26, .18);
  transition:
    transform .25s ease,
    background .25s ease;
}

.portfolio-dot.active::before {
  background: var(--black);
  transform: scale(1.4);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.why-item {
  min-height: 0;
  padding: 1.25rem;
  border-radius: 24px;
  background: #ffffff;
  border: none;
  font-weight: 800;
  line-height: 1.28;
  box-shadow: 0 12px 30px rgba(26, 26, 26, .05);
}

.why-item::before {
  content: "";
  display: block;
  width: 34px;
  height: 8px;
  border-radius: 999px;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--pink), var(--yellow));
}

.contact-panel {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 10px);
  padding: clamp(2rem, 5vw, 5rem);
  background:
    linear-gradient(135deg, rgba(26, 26, 26, .94), rgba(25, 35, 125, .92)),
    radial-gradient(circle at 90% 10%, rgba(255, 190, 0, .40), transparent 22rem);
  color: #fff;
  box-shadow: 0 30px 90px rgba(26, 26, 26, .22);
}

.contact-panel::after {
  content: "";
  position: absolute;
  right: -10rem;
  bottom: -16rem;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  background: conic-gradient(from 90deg, var(--blue), var(--purple), var(--pink), var(--yellow), var(--blue));
  filter: blur(34px);
  opacity: .48;
}

.contact-content {
  position: relative;
  z-index: 2;
}

.contact-panel h2 {
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  max-width: 800px;
  margin-bottom: 1.2rem;
}

.contact-panel p {
  color: rgba(255, 255, 255, .75);
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  line-height: 1.6;
  max-width: 680px;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .75rem 1rem;
  margin-top: 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  font-weight: 800;
}

.check {
  width: 1.4rem;
  height: 1.4rem;
  min-width: 1.4rem;
  flex: 0 0 1.4rem;
  aspect-ratio: 1 / 1;
  line-height: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: .9rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.8rem;
}

.contact-links a {
  color: var(--black);
  background: #fff;
  border-radius: 999px;
  padding: .9rem 1.15rem;
  font-weight: 800;
  text-decoration: none;
}

.contact-links a:hover {
  transform: translateY(-1px);
}

.contact-meta {
  margin-top: 2rem;
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .75);
}

.contact-meta {
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: right;
}

footer {
  padding: 2.5rem 0 3rem;
  color: rgba(26, 26, 26, .54);
  font-weight: 700;
}

@media (max-width: 1199.98px) {
  .portfolio-nav {
    position: absolute;
    inset: 1.25rem 0 2.2rem;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
  }

  .portfolio-nav-btn {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: var(--black);
    box-shadow: 0 14px 36px rgba(26, 26, 26, .12);
    backdrop-filter: blur(14px);
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
    pointer-events: auto;
    transition:
      transform .2s ease,
      background .2s ease,
      box-shadow .2s ease,
      opacity .2s ease;
  }

  .portfolio-nav-btn:hover {
    background: #fff;
    box-shadow: 0 18px 44px rgba(26, 26, 26, .16);
  }

  .portfolio-nav-btn.prev {
    transform: translateX(-50%);
  }

  .portfolio-nav-btn.next {
    transform: translateX(50%);
  }

  .portfolio-nav-btn.prev:hover {
    transform: translateX(-50%) scale(1.06);
  }

  .portfolio-nav-btn.next:hover {
    transform: translateX(50%) scale(1.06);
  }

  .portfolio-nav-btn:disabled {
    opacity: .28;
    cursor: default;
  }

  .portfolio-dots {
    position: relative;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .7rem;
    width: 100%;
    margin-top: .85rem;
  }

  .portfolio-dot {
    width: 22px;
    height: 22px;
    border: 0;
    padding: 0;
    border-radius: 999px;
    background: transparent;
    position: relative;
    cursor: pointer;
  }

  .portfolio-dot::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 999px;
    background: rgba(26, 26, 26, .18);
    transition:
      transform .25s ease,
      background .25s ease;
  }

  .portfolio-dot.active::before {
    background: var(--black);
    transform: scale(1.4);
  }

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

@media (max-width: 991.98px) {
  .navbar-wrap {
    padding-top: 0;
  }

  .intro-feature {
    grid-template-columns: 1fr;
  }

  .intro-number {
    max-width: 520px;
  }

  .navbar-custom {
    border-radius: 28px;
  }

  .navbar-collapse {
    padding-top: 0;
  }

  .navbar-collapse .navbar-nav {
    padding-top: 0;
    margin-top: 2rem;
    margin-bottom: 1.45rem;
    gap: 1.3rem;
    align-items: flex-start !important;
  }

  .navbar-collapse .nav-item {
    margin: 0 !important;
    line-height: 1.15;
  }

  .navbar-collapse .nav-link,
  .navbar-collapse .btn-dark-custom {
    display: inline-block;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 1.36rem;
    line-height: 1.15;
    font-weight: 800;
    vertical-align: top;
  }

  .navbar-collapse .nav-link:hover,
  .navbar-collapse .nav-link:focus {
    background: transparent !important;
  }

  .navbar-collapse .btn-dark-custom {
    background-image: linear-gradient(135deg, #1c2370 0%, #2d57c7 55%, #5c3db6 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    -webkit-text-fill-color: transparent;
  }

  .navbar-collapse .btn-dark-custom:hover,
  .navbar-collapse .btn-dark-custom:focus {
    transform: none;
    background-image: linear-gradient(135deg, #182062 0%, #284fb8 55%, #5537ab 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
  }

  .navbar-collapse.collapsing {
    transition-timing-function: ease;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-title {
    font-size: clamp(3.6rem, 14vw, 7rem);
  }

  .portrait-placeholder {
    min-height: 320px;
  }

  .section-band,
  .section-band--plain {
    padding: 4.5rem 0;
  }

  #contact.section-band--plain {
    padding: 2.25rem 0;
  }

  #websites.section-band--plain .site-shell .container-fluid.px-0 .row .col-lg-8 + .col-lg-4,
  #portfolio.section-band--panel .site-shell .container-fluid.px-0 .row .col-lg-8 + .col-lg-4,
  #waarom.section-band--plain .site-shell .container-fluid.px-0 .row .col-lg-7 + .col-lg-5 {
    margin-top: .2rem;
  }
}

@media (max-width: 767.98px) {
  .intro-feature {
    padding: clamp(1.5rem, 2vw, 2.25rem);
    border-radius: 28px;
  }

  .intro-points {
    align-items: flex-start;
  }

  .site-shell {
    width: min(100% - 30px, 1480px);
  }

  .section-band,
  .section-band--plain {
    padding: 3.6rem 0;
  }

  #contact.section-band--plain {
    padding: 1.8rem 0;
  }

  .section-band--panel {
    margin: 1rem 0;
  }

  .portfolio-nav {
    position: absolute;
    inset: 1.25rem 0 2.2rem;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
  }

  .portfolio-nav-btn {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: var(--black);
    box-shadow: 0 14px 36px rgba(26, 26, 26, .12);
    backdrop-filter: blur(14px);
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
    pointer-events: auto;
    transition:
      transform .2s ease,
      background .2s ease,
      box-shadow .2s ease,
      opacity .2s ease;
  }

  .portfolio-nav-btn:hover {
    background: #fff;
    box-shadow: 0 18px 44px rgba(26, 26, 26, .16);
  }

  .portfolio-nav-btn.prev {
    transform: translateX(-50%);
  }

  .portfolio-nav-btn.next {
    transform: translateX(50%);
  }

  .portfolio-nav-btn.prev:hover {
    transform: translateX(-50%) scale(1.06);
  }

  .portfolio-nav-btn.next:hover {
    transform: translateX(50%) scale(1.06);
  }

  .portfolio-nav-btn:disabled {
    opacity: .28;
    cursor: default;
  }

  .portfolio-dots {
    position: relative;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .7rem;
    width: 100%;
    margin-top: .85rem;
  }

  .portfolio-dot {
    width: 22px;
    height: 22px;
    border: 0;
    padding: 0;
    border-radius: 999px;
    background: transparent;
    position: relative;
    cursor: pointer;
  }

  .portfolio-dot::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 999px;
    background: rgba(26, 26, 26, .18);
    transition:
      transform .25s ease,
      background .25s ease;
  }

  .portfolio-dot.active::before {
    background: var(--black);
    transform: scale(1.4);
  }

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

  .hero-title {
    letter-spacing: -.035em;
  }

  .contact-panel {
    padding: clamp(1.5rem, 2vw, 2.25rem);
    border-radius: 28px;
  }

  .portfolio-scroll-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .portfolio-scroll-hint {
    font-size: .8rem;
  }

  .portfolio-grid {
    --portfolio-gap: .9rem;
    --portfolio-shadow-space-x: 2.25rem;
    --portfolio-shadow-space-top: 2.25rem;
    --portfolio-shadow-space-bottom: 6rem;

    padding:
      var(--portfolio-shadow-space-top)
      var(--portfolio-shadow-space-x)
      var(--portfolio-shadow-space-bottom);
    margin:
      calc(var(--portfolio-shadow-space-top) * -1)
      calc(var(--portfolio-shadow-space-x) * -1)
      calc((var(--portfolio-shadow-space-bottom) - .8rem) * -1);
  }

  .portfolio-card {
    flex-basis: min(84vw, 360px);
    border-radius: 24px;
  }

  .portfolio-nav {
    display: none !important;
  }

  .contact-meta {
    position: relative;
    right: auto;
    bottom: auto;
    text-align: left;
  }

  footer.site-shell {
    text-align: center;
  }
}