:root {
  color-scheme: dark;
  --bg: #10120f;
  --bg-2: #171913;
  --panel: #f6f1e8;
  --panel-ink: #171913;
  --card: rgb(255 255 255 / 0.08);
  --card-strong: rgb(255 255 255 / 0.13);
  --line: rgb(246 241 232 / 0.16);
  --line-strong: rgb(246 241 232 / 0.28);
  --text: #f8f4ec;
  --muted: #c8c0b4;
  --soft: #948b7f;
  --teal: #2dd4bf;
  --lime: #b8f36e;
  --coral: #ff8f70;
  --gold: #f6c667;
  --shadow: 0 32px 90px rgb(0 0 0 / 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgb(255 143 112 / 0.07) 0%, transparent 31rem),
    linear-gradient(110deg, rgb(45 212 191 / 0.1), transparent 27rem),
    linear-gradient(270deg, rgb(184 243 110 / 0.07), transparent 25rem),
    var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgb(246 241 232 / 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgb(246 241 232 / 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgb(0 0 0 / 0.65), transparent 82%);
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--lime);
  color: #17210d;
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

body.is-loading {
  overflow: hidden;
}

body.is-loading .skip-link,
body.is-loading .site-header,
body.is-loading .scroll-nav,
body.is-loading main,
body.is-loading .site-footer {
  opacity: 0;
  visibility: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgb(56 189 248 / 0.22), transparent 22rem),
    radial-gradient(circle at 18% 18%, rgb(14 165 233 / 0.16), transparent 20rem),
    linear-gradient(135deg, #020617, #030712 48%, #020617);
  color: #f8fbff;
  opacity: 1;
  transition:
    opacity 420ms ease,
    visibility 420ms ease;
  visibility: visible;
}

.site-loader::before,
.site-loader::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.site-loader::before {
  background-image:
    linear-gradient(rgb(56 189 248 / 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgb(56 189 248 / 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, rgb(0 0 0 / 0.72), transparent 72%);
  animation: loaderGridDrift 14s linear infinite;
}

.site-loader::after {
  background:
    radial-gradient(circle, transparent 0 54%, rgb(2 6 23 / 0.74) 100%),
    linear-gradient(180deg, rgb(2 6 23 / 0), rgb(2 6 23 / 0.74));
}

body.is-loaded .site-loader {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 24px;
  width: min(68vw, 240px);
}

.loader-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: min(54vw, 184px);
  aspect-ratio: 1;
}

.loader-stage::before,
.loader-stage::after {
  position: absolute;
  border-radius: 999px;
  content: "";
}

.loader-stage::before {
  inset: 0;
  border: 1px solid rgb(56 189 248 / 0.22);
  border-top-color: #38bdf8;
  border-right-color: rgb(56 189 248 / 0.58);
  box-shadow:
    0 0 34px rgb(56 189 248 / 0.28),
    inset 0 0 28px rgb(56 189 248 / 0.08);
  animation: loaderOrbit 1200ms linear infinite;
}

.loader-stage::after {
  inset: 20%;
  border: 1px solid rgb(56 189 248 / 0.18);
  background: radial-gradient(circle, rgb(56 189 248 / 0.14), transparent 68%);
  animation: loaderPulse 1600ms ease-in-out infinite;
}

.loader-logo {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(84px, 18vw, 118px);
  aspect-ratio: 1;
  border: 1px solid rgb(56 189 248 / 0.42);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgb(15 23 42 / 0.92), rgb(2 8 23 / 0.82)),
    rgb(2 8 23 / 0.9);
  box-shadow:
    0 28px 78px rgb(0 0 0 / 0.46),
    0 0 48px rgb(56 189 248 / 0.3),
    inset 0 1px 0 rgb(255 255 255 / 0.12);
  animation: loaderLogoLift 1400ms ease-in-out infinite;
}

.loader-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgb(56 189 248 / 0.38));
  transform: scale(1.9);
  transform-origin: center;
}

.loader-progress {
  position: relative;
  width: min(100%, 190px);
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgb(148 163 184 / 0.22);
}

.loader-progress::before {
  position: absolute;
  inset: 0;
  width: 44%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, #38bdf8, #0ea5e9);
  box-shadow: 0 0 18px rgb(56 189 248 / 0.48);
  content: "";
  transform: translateX(-100%);
  animation: loaderProgress 1000ms ease-in-out infinite;
}

.loader-status-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgb(246 241 232 / 0.22);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), var(--lime));
  color: #10120f;
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 12px 34px rgb(45 212 191 / 0.22);
}

.brand-copy {
  display: grid;
  min-width: 0;
}

.brand-copy strong {
  overflow: hidden;
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(16 18 15 / 0.58);
  padding: 5px;
  box-shadow: 0 18px 50px rgb(0 0 0 / 0.18);
}

.nav-links a {
  border-radius: 999px;
  color: var(--muted);
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgb(246 241 232 / 0.1);
  color: var(--text);
}

main {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
  padding: 42px 0 70px;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.85fr);
  gap: 26px;
  align-items: stretch;
  min-height: calc(100vh - 132px);
}

.hero-copy,
.hero-card,
.section-block,
.contact-section {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(145deg, rgb(255 255 255 / 0.11), rgb(255 255 255 / 0.055));
  box-shadow: var(--shadow);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 5vw, 62px);
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 850px;
  font-size: clamp(2.55rem, 7vw, 5.85rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  color: var(--text);
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero-text {
  max-width: 760px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 11px 18px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgb(246 241 232 / 0.46);
  box-shadow: 0 18px 36px rgb(0 0 0 / 0.22);
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--lime), var(--teal));
  color: #10120f;
}

.button.secondary {
  background: rgb(246 241 232 / 0.08);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: auto 0 0;
  padding-top: 42px;
}

.proof-strip div {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgb(255 255 255 / 0.06);
  padding: 15px;
}

.proof-strip dt {
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-strip dd {
  margin: 5px 0 0;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 850;
}

.hero-card {
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 620px;
  overflow: hidden;
  padding: 20px;
  background:
    linear-gradient(180deg, transparent 0%, rgb(16 18 15 / 0.62) 100%),
    linear-gradient(140deg, rgb(255 143 112 / 0.18), transparent 42%),
    linear-gradient(315deg, rgb(45 212 191 / 0.18), transparent 45%),
    var(--bg-2);
}

.photo-card {
  overflow: hidden;
  margin-bottom: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
}

.profile-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.status-card,
.snapshot-grid > div {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgb(16 18 15 / 0.68);
  backdrop-filter: blur(16px);
}

.status-card {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px;
  color: var(--text);
  font-size: 0.93rem;
  font-weight: 850;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgb(184 243 110 / 0.16);
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.snapshot-grid > div {
  padding: 16px;
}

.snapshot-grid span {
  display: block;
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.snapshot-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.2;
}

.section-block,
.contact-section {
  margin-top: 26px;
  padding: clamp(22px, 4vw, 42px);
}

.section-heading {
  max-width: 760px;
}

.section-heading p:not(.section-kicker),
.contact-section p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.02rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.bento-card,
.work-card,
.service-list article,
.process-list li {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgb(255 255 255 / 0.07);
}

.bento-card {
  min-height: 260px;
  padding: 22px;
}

.bento-card.wide {
  grid-column: span 2;
  background:
    linear-gradient(145deg, rgb(246 198 103 / 0.14), transparent 56%),
    rgb(255 255 255 / 0.08);
}

.card-label,
.work-meta,
.service-list article span,
.process-list li span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bento-card h3 {
  margin-top: 30px;
  font-size: clamp(1.28rem, 2vw, 1.8rem);
}

.bento-card p,
.work-card p,
.service-list p,
.process-list p {
  margin-top: 12px;
  color: var(--muted);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.work-card {
  min-height: 280px;
  padding: 20px;
}

.work-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--coral);
}

.work-card h3 {
  margin-top: 60px;
  font-size: 1.35rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 92px;
}

.service-list {
  display: grid;
  gap: 12px;
}

.service-list article {
  padding: 20px;
}

.service-list article h3 {
  margin-top: 10px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 250px;
  padding: 20px;
}

.process-list h3 {
  margin-top: 42px;
}

.contact-section {
  background:
    linear-gradient(135deg, rgb(184 243 110 / 0.15), transparent 45%),
    linear-gradient(315deg, rgb(255 143 112 / 0.15), transparent 42%),
    rgb(255 255 255 / 0.08);
}

.contact-section h2 {
  max-width: 760px;
}

.contact-section p {
  max-width: 690px;
}

@media (max-width: 980px) {
  .hero-section,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-card {
    min-height: auto;
  }

  .photo-card {
    max-width: 380px;
  }

  .bento-grid,
  .work-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sticky-heading {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    width: min(100% - 24px, 1180px);
  }

  .brand-copy strong {
    max-width: 10rem;
  }

  .nav-links {
    display: none;
  }

  main {
    width: min(100% - 24px, 1180px);
    padding-top: 14px;
  }

  .hero-copy,
  .hero-card,
  .section-block,
  .contact-section {
    border-radius: 22px;
  }

  .hero-copy,
  .section-block,
  .contact-section {
    padding: 22px;
  }

  h1 {
    font-size: clamp(2.4rem, 13vw, 3.65rem);
  }

  .proof-strip,
  .bento-grid,
  .work-grid,
  .process-list,
  .snapshot-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    padding-top: 28px;
  }

  .bento-card.wide {
    grid-column: auto;
  }

  .bento-card,
  .work-card,
  .process-list li {
    min-height: auto;
  }

  .work-card h3,
  .process-list h3 {
    margin-top: 34px;
  }

  .button {
    width: 100%;
  }
}

/* Phase 1 hero and credibility redesign */
.hero-section {
  position: relative;
  isolation: isolate;
  grid-template-columns: minmax(0, 1.04fr) minmax(410px, 0.96fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  min-height: calc(100vh - 118px);
  overflow: hidden;
  border: 1px solid rgb(56 189 248 / 0.2);
  border-radius: 34px;
  background:
    radial-gradient(circle at 74% 38%, rgb(14 165 233 / 0.34), transparent 28rem),
    radial-gradient(circle at 16% 14%, rgb(56 189 248 / 0.14), transparent 22rem),
    linear-gradient(135deg, rgb(2 8 23 / 0.98), rgb(3 7 18 / 0.94) 46%, rgb(2 6 23 / 0.98));
  box-shadow:
    0 34px 110px rgb(0 0 0 / 0.48),
    inset 0 1px 0 rgb(255 255 255 / 0.06);
  padding: clamp(34px, 5vw, 68px) clamp(24px, 4vw, 48px);
}

.hero-section::before,
.hero-section::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
}

.hero-section::before {
  background-image:
    linear-gradient(rgb(56 189 248 / 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgb(56 189 248 / 0.06) 1px, transparent 1px);
  background-position: 0 0;
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 36%, rgb(0 0 0 / 0.85), transparent 72%);
  animation: heroGridDrift 18s linear infinite;
}

.hero-section::after {
  background:
    linear-gradient(90deg, rgb(3 7 18 / 0.82), transparent 42%, rgb(3 7 18 / 0.24)),
    radial-gradient(circle at 74% 45%, rgb(56 189 248 / 0.28), transparent 19rem);
}

.hero-copy,
.hero-card {
  min-width: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-copy {
  padding: 0;
  animation: heroFadeUp 620ms ease both;
}

.hero-copy .section-kicker {
  margin-bottom: 16px;
  color: #38bdf8;
  font-size: clamp(0.73rem, 1vw, 0.86rem);
  letter-spacing: 0.06em;
}

.hero-copy h1 {
  max-width: 760px;
  color: #f8fbff;
  font-size: clamp(3.15rem, 6.3vw, 5.55rem);
  line-height: 1.04;
  text-wrap: balance;
}

.hero-accent {
  color: #38bdf8;
  text-shadow:
    0 0 24px rgb(56 189 248 / 0.42),
    0 0 64px rgb(14 165 233 / 0.24);
}

.hero-text {
  max-width: 720px;
  margin-top: 22px;
  color: rgb(226 232 240 / 0.86);
  font-size: clamp(1rem, 1.38vw, 1.16rem);
  line-height: 1.72;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 720px;
  margin-top: 30px;
}

.hero-feature {
  display: grid;
  justify-items: center;
  gap: 9px;
  min-width: 0;
  color: #f8fbff;
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.18;
  text-align: center;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgb(56 189 248 / 0.5);
  border-radius: 14px;
  color: #38bdf8;
  background: rgb(14 165 233 / 0.08);
  box-shadow:
    0 0 24px rgb(56 189 248 / 0.2),
    inset 0 0 18px rgb(56 189 248 / 0.07);
}

.hero-section svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.hero-cta {
  gap: 16px;
  margin-top: 34px;
}

.hero-cta .button {
  gap: 12px;
  min-width: 166px;
  min-height: 52px;
  border-color: rgb(56 189 248 / 0.34);
  color: #f8fbff;
}

.hero-cta .button:hover,
.hero-cta .button:focus-visible {
  border-color: rgb(56 189 248 / 0.68);
  box-shadow:
    0 18px 44px rgb(14 165 233 / 0.26),
    0 0 0 4px rgb(56 189 248 / 0.08);
}

.hero-cta .button.primary {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #f8fbff;
  box-shadow:
    0 18px 44px rgb(14 165 233 / 0.3),
    inset 0 1px 0 rgb(255 255 255 / 0.32);
}

.hero-cta .button.secondary {
  background: rgb(2 8 23 / 0.52);
  backdrop-filter: blur(16px);
}

.button-icon {
  display: inline-grid;
  place-items: center;
}

.button-icon svg {
  width: 18px;
  height: 18px;
}

.hero-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
  overflow: visible;
  padding: 0;
  animation: heroFadeUp 720ms 90ms ease both;
}

.hero-card::before {
  position: absolute;
  width: min(82%, 430px);
  aspect-ratio: 1;
  border: 2px solid rgb(56 189 248 / 0.72);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgb(56 189 248 / 0.08), transparent 62%),
    repeating-radial-gradient(circle, transparent 0 12px, rgb(56 189 248 / 0.055) 13px 14px);
  box-shadow:
    0 0 32px rgb(56 189 248 / 0.45),
    inset 0 0 42px rgb(56 189 248 / 0.14);
  content: "";
  transform: translate(2%, -8%);
}

.hero-card::after {
  position: absolute;
  width: min(72%, 390px);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 25% 40%, rgb(56 189 248 / 0.24) 1px, transparent 2px),
    radial-gradient(circle at 60% 34%, rgb(56 189 248 / 0.16) 1px, transparent 2px),
    radial-gradient(circle at 42% 65%, rgb(56 189 248 / 0.14) 1px, transparent 2px);
  background-size: 26px 26px, 34px 34px, 42px 42px;
  content: "";
  opacity: 0.82;
  transform: translate(2%, -8%);
}

.hero-card .photo-card {
  position: relative;
  z-index: 2;
  width: min(78%, 390px);
  overflow: hidden;
  margin: 0 auto;
  border: 1px solid rgb(56 189 248 / 0.38);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgb(15 23 42 / 0.18), rgb(2 6 23 / 0.84)),
    #e5e7eb;
  box-shadow:
    0 36px 90px rgb(0 0 0 / 0.5),
    0 0 58px rgb(56 189 248 / 0.22);
}

.hero-card .profile-photo {
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
  object-position: center 27%;
}

.europe-card {
  position: absolute;
  z-index: 3;
  top: auto;
  right: 0;
  bottom: 42px;
  width: min(238px, 48%);
  border: 1px solid rgb(56 189 248 / 0.3);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgb(15 23 42 / 0.86), rgb(2 8 23 / 0.72)),
    rgb(2 8 23 / 0.72);
  box-shadow:
    0 24px 64px rgb(0 0 0 / 0.38),
    0 0 42px rgb(56 189 248 / 0.14),
    inset 0 1px 0 rgb(255 255 255 / 0.08);
  padding: 20px;
  backdrop-filter: blur(18px);
}

.europe-card h2 {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #f8fbff;
  font-size: 0.94rem;
  line-height: 1.2;
}

.pin-icon {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: #38bdf8;
}

.pin-icon svg {
  width: 18px;
  height: 18px;
}

.country-list {
  display: grid;
  gap: 13px;
  margin: 18px 0 20px;
  padding: 0;
  list-style: none;
}

.country-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgb(248 251 255 / 0.92);
  font-size: 0.92rem;
  font-weight: 750;
}

.flag {
  width: 26px;
  height: 17px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgb(255 255 255 / 0.18);
}

.flag-pl {
  background: linear-gradient(#fff 0 50%, #dc143c 50% 100%);
}

.flag-it {
  background: linear-gradient(90deg, #009246 0 33%, #fff 33% 66%, #ce2b37 66% 100%);
}

.flag-hu {
  background: linear-gradient(#ce2939 0 33%, #fff 33% 66%, #477050 66% 100%);
}

.experience-callout {
  border-top: 1px solid rgb(56 189 248 / 0.2);
  padding-top: 18px;
}

.experience-callout strong {
  display: block;
  color: #38bdf8;
  font-size: 2rem;
  line-height: 1;
  text-shadow: 0 0 24px rgb(56 189 248 / 0.28);
}

.experience-callout span,
.europe-card p {
  display: block;
  margin-top: 8px;
  color: rgb(226 232 240 / 0.84);
  font-size: 0.92rem;
  line-height: 1.5;
}

.europe-card p span {
  color: #38bdf8;
}

.credibility-strip {
  display: grid;
  grid-template-columns: minmax(150px, 0.78fr) minmax(300px, 1.35fr) minmax(420px, 2fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: center;
  margin-top: 24px;
  border: 1px solid rgb(56 189 248 / 0.24);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgb(15 23 42 / 0.72), rgb(2 8 23 / 0.54)),
    rgb(2 8 23 / 0.74);
  box-shadow:
    0 26px 80px rgb(0 0 0 / 0.34),
    0 0 50px rgb(56 189 248 / 0.1),
    inset 0 1px 0 rgb(255 255 255 / 0.07);
  padding: 22px 24px;
  backdrop-filter: blur(18px);
  animation: heroFadeUp 680ms 160ms ease both;
}

.credibility-intro span {
  color: #38bdf8;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.credibility-intro p {
  margin-top: 8px;
  color: rgb(248 251 255 / 0.9);
  font-size: 0.96rem;
}

.company-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.company-row span {
  color: #f8fbff;
  font-size: clamp(1rem, 1.7vw, 1.38rem);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.credibility-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
}

.credibility-stats div {
  min-width: 0;
  border-left: 1px solid rgb(56 189 248 / 0.18);
  padding-left: 18px;
}

.credibility-stats dt {
  color: #38bdf8;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  font-weight: 950;
  line-height: 1;
  text-shadow: 0 0 22px rgb(56 189 248 / 0.22);
}

.credibility-stats dd {
  margin: 7px 0 0;
  color: rgb(226 232 240 / 0.86);
  font-size: 0.77rem;
  line-height: 1.28;
}

@keyframes heroFadeUp {
  from {
    opacity: 0.86;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroGridDrift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 44px 44px;
  }
}

@keyframes loaderGridDrift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 42px 42px;
  }
}

@keyframes loaderOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loaderPulse {
  0%,
  100% {
    opacity: 0.54;
    transform: scale(0.92);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes loaderLogoLift {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-6px) scale(1.025);
  }
}

@keyframes loaderProgress {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(230%);
  }
}

@media (max-width: 980px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 34px 28px;
  }

  .hero-card {
    min-height: 560px;
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .hero-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 520px;
  }

  .credibility-strip {
    grid-template-columns: 1fr;
  }

  .company-row,
  .credibility-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .credibility-stats div {
    border-left: 0;
    border-top: 1px solid rgb(56 189 248 / 0.18);
    padding: 14px 0 0;
  }
}

@media (max-width: 720px) {
  .hero-section {
    border-radius: 24px;
    padding: 28px 20px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.55rem, 13.5vw, 4.1rem);
  }

  .hero-card {
    min-height: auto;
    padding-top: 22px;
  }

  .hero-card::before,
  .hero-card::after {
    width: min(92%, 390px);
    transform: translate(0, -12%);
  }

  .hero-card .photo-card {
    width: min(88%, 360px);
  }

  .europe-card {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 360px);
    margin: -12px auto 0;
  }

  .hero-cta .button {
    width: 100%;
  }

  .credibility-strip {
    padding: 20px;
  }
}

@media (max-width: 720px) {
  .hero-features,
  .company-row,
  .credibility-stats {
    grid-template-columns: 1fr;
  }

  .hero-feature {
    grid-template-columns: 42px 1fr;
    justify-items: start;
    text-align: left;
  }

  .company-row span {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-loader::before,
  .loader-stage::before,
  .loader-stage::after,
  .loader-logo,
  .loader-progress::before {
    animation: none;
  }

  .hero-section::before,
  .hero-copy,
  .hero-card,
  .credibility-strip {
    animation: none;
  }
}

/* About block */
.about-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(430px, 0.96fr) minmax(360px, 0.9fr);
  gap: 0;
  align-items: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: clamp(14px, 2vw, 28px) 0;
}

.about-media {
  position: relative;
  height: clamp(520px, 38vw, 580px);
  margin-right: clamp(-88px, -5.4vw, -56px);
  overflow: hidden;
  border: 1px solid rgb(56 189 248 / 0.2);
  border-right-color: transparent;
  border-radius: 20px;
  background: #020617;
  box-shadow:
    0 24px 64px rgb(0 0 0 / 0.34),
    inset 0 1px 0 rgb(255 255 255 / 0.07);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 74%, rgb(0 0 0 / 0.54) 91%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 74%, rgb(0 0 0 / 0.54) 91%, transparent 100%);
}

.about-media::before {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 1;
  width: 40%;
  background: linear-gradient(90deg, transparent 0%, rgb(2 8 23 / 0.26) 50%, rgb(2 8 23 / 0.8) 82%, rgb(2 8 23 / 0.98) 100%);
  content: "";
  pointer-events: none;
}

.about-media::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(2 8 23 / 0.04) 0%, rgb(2 8 23 / 0.12) 42%, rgb(2 8 23 / 0.34) 100%),
    linear-gradient(90deg, rgb(2 8 23 / 0.08) 0%, transparent 72%, rgb(2 8 23 / 0.22) 100%);
  content: "";
  pointer-events: none;
}

.about-media picture,
.about-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.about-media img {
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(0.82) contrast(1.08) brightness(0.82);
}

.about-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-self: stretch;
  min-width: 0;
  width: auto;
  margin-left: clamp(6px, 0.4vw, 16px);
  padding: clamp(24px, 2.6vw, 38px) clamp(22px, 3vw, 42px) clamp(24px, 2.6vw, 38px)
    clamp(84px, 8.2vw, 132px);
}

.about-content .section-kicker {
  margin-bottom: 10px;
  color: #38bdf8;
  letter-spacing: 0.06em;
}

.about-content h2 {
  color: #f8fbff;
  font-size: clamp(1.7rem, 2.35vw, 2.55rem);
  line-height: 1.08;
  text-wrap: balance;
}

.about-content p:not(.section-kicker) {
  max-width: 54ch;
  margin-top: 12px;
  color: rgb(226 232 240 / 0.86);
  font-size: clamp(0.94rem, 0.98vw, 1.01rem);
  line-height: 1.64;
}

@media (max-width: 900px) {
  .about-section {
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgb(2 8 23 / 0.2), rgb(2 8 23 / 0.64)),
      linear-gradient(145deg, rgb(15 23 42 / 0.5), rgb(2 8 23 / 0.78));
    padding: clamp(16px, 3vw, 24px);
  }

  .about-media {
    height: 480px;
    margin-right: 0;
    border-right-color: rgb(56 189 248 / 0.2);
    -webkit-mask-image: none;
    mask-image: none;
  }

  .about-content {
    width: auto;
    max-width: 58ch;
    margin: -82px clamp(14px, 5vw, 42px) 0;
    padding: clamp(22px, 5vw, 34px);
  }

  .about-content::before {
    display: none;
  }
}

@media (max-width: 620px) {
  .about-section {
    width: 100vw;
    max-width: 100vw;
    min-height: 620px;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    border-radius: 22px;
    background:
      linear-gradient(90deg, rgb(2 8 23 / 0.58) 0%, rgb(2 8 23 / 0.5) 54%, rgb(2 8 23 / 0.42) 100%),
      linear-gradient(180deg, rgb(2 8 23 / 0.16) 0%, rgb(2 8 23 / 0.24) 42%, rgb(2 8 23 / 0.52) 100%),
      url("assets/arun-kumar-ganesan-about-mobile.webp") 60% 50% / cover no-repeat;
    padding: clamp(24px, 6vw, 30px) max(clamp(20px, 6vw, 28px), env(safe-area-inset-right, 0px))
      clamp(24px, 6vw, 30px) max(clamp(20px, 6vw, 28px), env(safe-area-inset-left, 0px));
  }

  .about-section::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
      radial-gradient(ellipse at 72% 28%, transparent 0 34%, rgb(2 8 23 / 0.12) 70%, rgb(2 8 23 / 0.3) 100%),
      linear-gradient(180deg, transparent 0%, rgb(2 8 23 / 0.2) 100%);
    content: "";
  }

  .about-media {
    display: none;
  }

  .about-content {
    justify-content: flex-end;
    min-height: 100%;
    max-width: 33ch;
    margin: -10px 0 -10px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(90deg, rgb(2 8 23 / 0.32), rgb(2 8 23 / 0.16) 72%, transparent);
    box-shadow: none;
    padding: 10px;
    backdrop-filter: none;
    text-shadow:
      0 2px 8px rgb(0 0 0 / 0.6),
      0 0 14px rgb(2 8 23 / 0.3);
  }

  .about-content::before {
    display: none;
  }

  .about-content .section-kicker {
    color: rgb(56 189 248 / 0.84);
  }

  .about-content h2 {
    color: rgb(248 251 255 / 0.84);
    font-size: clamp(1.64rem, 8.1vw, 2.32rem);
  }

  .about-content p:not(.section-kicker) {
    margin-top: 14px;
    color: rgb(248 251 255 / 0.6);
    font-size: 0.98rem;
    line-height: 1.58;
  }
}

/* What I Build section */
.build-section {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding-inline: 0;
}

.build-heading,
.projects-heading,
.process-heading {
  max-width: min(100%, 980px);
  margin: 0 auto;
  text-align: center;
}

.build-heading .section-kicker {
  color: #38bdf8;
  letter-spacing: 0.06em;
}

.build-heading h2,
.projects-heading h2,
.process-heading h2 {
  color: #f8fbff;
  font-family:
    "Avenir Next",
    "Aptos Display",
    Inter,
    ui-sans-serif,
    system-ui,
    sans-serif;
  font-size: clamp(1.2rem, 2.85vw, 2.45rem);
  font-weight: 820;
  line-height: 1.08;
  text-wrap: balance;
  white-space: normal;
}

.build-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.build-card {
  min-width: 0;
  min-height: 220px;
  border: 1px solid rgb(56 189 248 / 0.18);
  border-radius: 16px;
  background:
    linear-gradient(150deg, rgb(15 23 42 / 0.78), rgb(2 8 23 / 0.66)),
    rgb(2 8 23 / 0.72);
  box-shadow:
    0 22px 64px rgb(0 0 0 / 0.28),
    inset 0 1px 0 rgb(255 255 255 / 0.055);
  padding: 22px 18px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.build-card:hover,
.build-card:focus-within {
  transform: translateY(-6px);
  border-color: rgb(56 189 248 / 0.62);
  background:
    linear-gradient(150deg, rgb(15 23 42 / 0.88), rgb(2 8 23 / 0.76)),
    rgb(2 8 23 / 0.82);
  box-shadow:
    0 28px 78px rgb(0 0 0 / 0.36),
    0 0 46px rgb(56 189 248 / 0.18),
    inset 0 1px 0 rgb(255 255 255 / 0.08);
}

.build-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgb(56 189 248 / 0.42);
  border-radius: 14px;
  color: #38bdf8;
  background: rgb(14 165 233 / 0.08);
  box-shadow:
    0 0 28px rgb(56 189 248 / 0.14),
    inset 0 0 20px rgb(56 189 248 / 0.06);
  transition:
    box-shadow 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.build-card:hover .build-icon,
.build-card:focus-within .build-icon {
  border-color: rgb(56 189 248 / 0.76);
  color: #7dd3fc;
  box-shadow:
    0 0 34px rgb(56 189 248 / 0.32),
    inset 0 0 24px rgb(56 189 248 / 0.12);
}

.build-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.build-card h3 {
  margin-top: 26px;
  color: #f8fbff;
  font-size: clamp(0.94rem, 0.9vw, 1.08rem);
  line-height: 1.25;
}

.build-card p {
  margin-top: 12px;
  color: rgb(226 232 240 / 0.78);
  font-size: clamp(0.8rem, 0.78vw, 0.9rem);
  line-height: 1.58;
}

@media (max-width: 1180px) {
  .build-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  .build-card {
    min-height: auto;
    padding: 18px 14px;
  }

  .build-icon {
    width: 44px;
    height: 44px;
  }

  .build-icon svg {
    width: 25px;
    height: 25px;
  }

  .build-card h3 {
    margin-top: 20px;
  }

  .build-card p {
    font-size: 0.76rem;
    line-height: 1.5;
  }
}

/* Real projects section */
.projects-section {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.projects-heading .section-kicker {
  color: #38bdf8;
  letter-spacing: 0.06em;
}

.project-carousel {
  width: min(100%, 1060px);
  margin: 32px auto 0;
}

.project-viewport {
  overflow: hidden;
  margin: -6px;
  border-radius: 24px;
  padding: 6px;
}

.project-grid {
  display: flex;
  gap: 0;
  overflow-x: auto;
  margin: 0;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

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

.project-card {
  --project-card-padding: clamp(18px, 2.4vw, 30px);

  flex: 0 0 100%;
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(22px, 3vw, 34px);
  min-width: 100%;
  border: 1px solid rgb(56 189 248 / 0.2);
  border-radius: 24px;
  background:
    radial-gradient(circle at 14% 0%, rgb(56 189 248 / 0.16), transparent 28rem),
    linear-gradient(150deg, rgb(15 23 42 / 0.9), rgb(2 8 23 / 0.74)),
    rgb(2 8 23 / 0.76);
  box-shadow:
    0 28px 84px rgb(0 0 0 / 0.34),
    inset 0 1px 0 rgb(255 255 255 / 0.06);
  padding: var(--project-card-padding);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.project-card:hover,
.project-card:focus-within {
  transform: translateY(-4px);
  border-color: rgb(56 189 248 / 0.62);
  box-shadow:
    0 30px 86px rgb(0 0 0 / 0.38),
    0 0 46px rgb(56 189 248 / 0.18),
    inset 0 1px 0 rgb(255 255 255 / 0.08);
}

.project-visual {
  position: relative;
  align-self: start;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgb(56 189 248 / 0.22);
  border-radius: 18px;
  background: rgb(2 8 23 / 0.82);
  box-shadow:
    0 24px 58px rgb(0 0 0 / 0.28),
    inset 0 1px 0 rgb(255 255 255 / 0.07);
}

.project-visual::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgb(2 6 23 / 0.28) 0%, rgb(2 8 23 / 0.46) 62%, rgb(2 8 23 / 0.78) 100%),
    rgb(0 0 0 / 0.22);
  content: "";
  pointer-events: none;
}

.project-visual::before {
  position: absolute;
  right: clamp(12px, 1.5vw, 18px);
  bottom: clamp(12px, 1.5vw, 18px);
  z-index: 2;
  max-width: min(360px, calc(100% - 24px));
  border: 1px solid rgb(56 189 248 / 0.3);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgb(15 23 42 / 0.92), rgb(2 8 23 / 0.82)),
    rgb(2 8 23 / 0.9);
  box-shadow:
    0 16px 34px rgb(0 0 0 / 0.34),
    0 0 24px rgb(56 189 248 / 0.14),
    inset 0 1px 0 rgb(255 255 255 / 0.08);
  color: rgb(224 246 255 / 0.92);
  content: "AI illustrated preview - client details hidden for privacy";
  font-size: clamp(0.62rem, 0.85vw, 0.74rem);
  font-weight: 850;
  line-height: 1.2;
  padding: 8px 12px;
  pointer-events: none;
  text-wrap: balance;
}

.project-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1672 / 941;
  filter: brightness(0.76) saturate(0.88) contrast(1.04);
  object-fit: cover;
}

.project-content {
  display: grid;
  align-self: start;
  gap: 18px;
  min-width: 0;
  padding: 2px 0;
}

.project-label {
  width: fit-content;
  margin: 0;
  border: 1px solid rgb(56 189 248 / 0.24);
  border-radius: 999px;
  background: rgb(56 189 248 / 0.08);
  color: #38bdf8;
  padding: 7px 11px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.project-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: -8px;
}

.project-categories span {
  border: 1px solid rgb(148 163 184 / 0.16);
  border-radius: 999px;
  background: rgb(15 23 42 / 0.62);
  color: rgb(226 232 240 / 0.76);
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
}

.project-content h3 {
  margin: 0;
  color: #f8fbff;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.08;
}

.project-tagline {
  margin: -8px 0 0;
  max-width: 58ch;
  color: rgb(226 232 240 / 0.86);
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
  font-weight: 700;
  line-height: 1.48;
}

.project-story {
  display: grid;
  gap: 14px;
}

.story-step {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 14px;
  border: 1px solid rgb(148 163 184 / 0.14);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgb(15 23 42 / 0.62), rgb(2 8 23 / 0.38)),
    rgb(2 8 23 / 0.24);
  padding: 13px 14px;
}

.story-step span {
  color: #38bdf8;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.story-step p {
  margin: 0;
  color: rgb(248 251 255 / 0.84);
  font-size: 0.9rem;
  line-height: 1.58;
}

.project-capabilities {
  display: grid;
  gap: 12px;
  min-width: 0;
  margin-top: 22px;
}

.project-capabilities h4 {
  margin: 0;
  color: rgb(248 251 255 / 0.74);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.project-capabilities ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-capabilities li {
  border: 1px solid rgb(56 189 248 / 0.19);
  border-radius: 999px;
  background: rgb(15 23 42 / 0.72);
  color: rgb(248 251 255 / 0.88);
  padding: 7px 10px;
  font-size: 0.79rem;
  font-weight: 760;
  line-height: 1.2;
}

.project-highlight {
  margin: 18px 0 0;
  border: 1px solid rgb(56 189 248 / 0.26);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgb(56 189 248 / 0.14), rgb(14 165 233 / 0.04)),
    rgb(2 8 23 / 0.34);
  color: #e0f6ff;
  padding: 14px 16px;
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.45;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.06);
}

.project-details {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.project-details > summary {
  display: none;
}

@media (min-width: 1101px) {
  .project-carousel {
    width: 100%;
  }

  .project-card {
    --project-card-padding: clamp(24px, 3vw, 36px);
    --project-card-padding-negative: clamp(-36px, -3vw, -24px);

    grid-template-columns: 1fr;
    gap: 0;
    padding: var(--project-card-padding);
  }

  .project-visual {
    width: calc(100% + var(--project-card-padding) + var(--project-card-padding));
    height: clamp(230px, 18vw, 320px);
    margin: var(--project-card-padding-negative) var(--project-card-padding-negative) 0;
    border: 0;
    border-radius: 24px 24px 0 0;
    background: transparent;
    box-shadow: none;
  }

  .project-visual::after {
    background:
      linear-gradient(180deg, rgb(2 6 23 / 0.24) 0%, rgb(2 8 23 / 0.44) 58%, rgb(2 8 23 / 0.82) 100%),
      rgb(0 0 0 / 0.2);
  }

  .project-visual img {
    height: 100%;
    aspect-ratio: auto;
    object-position: center top;
  }

  .project-content {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px 24px;
    margin: clamp(22px, 2.4vw, 34px) clamp(14px, 2vw, 28px) 0;
    padding: 0 clamp(4px, 0.8vw, 10px) 0;
  }

  .project-label {
    align-self: center;
  }

  .project-categories {
    align-self: center;
    justify-self: end;
    margin-top: 0;
  }

  .project-content h3 {
    font-size: clamp(1.75rem, 2.4vw, 2.45rem);
  }

  .project-tagline {
    align-self: end;
    justify-self: end;
    max-width: 42ch;
    margin-top: 0;
    text-align: right;
  }

  .project-details {
    grid-column: 1 / -1;
    gap: 26px;
    margin-top: 12px;
  }

  .project-story {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 16px;
  }

  .story-step {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 10px;
    height: 100%;
    min-width: 0;
    padding: 16px;
  }

  .project-highlight {
    max-width: 62ch;
  }
}

@media (max-width: 1100px) {
  .project-carousel {
    width: min(100%, 920px);
  }

  .project-card {
    grid-template-columns: 1fr;
  }

  .project-visual {
    max-width: 760px;
    width: 100%;
    justify-self: center;
  }
}

@media (max-width: 680px) {
  .projects-section {
    padding-right: 0;
    padding-left: 0;
  }

  .build-heading,
  .projects-heading,
  .process-heading {
    padding: 0 16px;
  }

  .project-carousel {
    width: 100%;
    margin-top: 24px;
  }

  .project-carousel.is-details-open .project-grid {
    overflow-x: hidden;
    scroll-snap-type: none;
    touch-action: pan-y;
  }

  .project-viewport {
    margin: -4px;
    padding: 4px;
  }

  .project-card {
    gap: 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .project-card:hover,
  .project-card:focus-within {
    transform: none;
    border-color: transparent;
    box-shadow: none;
  }

  .project-content {
    gap: 10px;
    padding: 0 4px;
  }

  .project-visual {
    border-radius: 14px;
  }

  .project-visual img {
    aspect-ratio: 16 / 9;
  }

  .project-label {
    padding: 6px 9px;
    font-size: 0.6rem;
  }

  .project-categories {
    gap: 6px;
    margin-top: -3px;
  }

  .project-categories span {
    padding: 5px 8px;
    font-size: 0.66rem;
  }

  .project-content h3 {
    font-size: clamp(1.2rem, 5.8vw, 1.55rem);
  }

  .project-tagline {
    margin-top: -3px;
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .project-details {
    gap: 12px;
    margin-top: 2px;
    overflow: hidden;
  }

  .project-details > summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: start;
    min-height: 34px;
    border: 1px solid rgb(56 189 248 / 0.34);
    border-radius: 999px;
    background:
      linear-gradient(135deg, rgb(56 189 248 / 0.14), rgb(14 165 233 / 0.04)),
      rgb(2 8 23 / 0.58);
    color: #dff7ff;
    cursor: pointer;
    padding: 0 12px;
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;
    list-style: none;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.06);
    transition:
      border-color 160ms ease,
      background 160ms ease,
      color 160ms ease;
  }

  .project-details > summary:focus-visible {
    outline: 2px solid rgb(56 189 248 / 0.7);
    outline-offset: 3px;
  }

  .project-details > summary::-webkit-details-marker {
    display: none;
  }

  .project-details > summary::after {
    width: 7px;
    height: 7px;
    margin-left: 8px;
    border-right: 2px solid #38bdf8;
    border-bottom: 2px solid #38bdf8;
    content: "";
    transform: rotate(45deg) translateY(-1px);
    transition: transform 180ms ease;
  }

  .project-details[open] > summary::after {
    transform: rotate(225deg) translate(-1px, -1px);
  }

  .story-step {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 12px;
  }

  .project-capabilities li {
    border-radius: 10px;
    padding: 8px 9px;
    font-size: 0.72rem;
  }

  .project-highlight {
    border-radius: 12px;
    padding: 12px;
    font-size: 0.84rem;
  }

  .project-controls {
    margin-top: 14px;
  }

  .project-control {
    width: 42px;
    height: 42px;
  }
}

.project-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.project-control {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgb(56 189 248 / 0.3);
  border-radius: 999px;
  background: rgb(2 8 23 / 0.54);
  color: #f8fbff;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.06),
    0 14px 34px rgb(0 0 0 / 0.24);
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    box-shadow 170ms ease,
    background 170ms ease;
}

.project-control:hover,
.project-control:focus-visible {
  transform: translateY(-2px);
  border-color: rgb(56 189 248 / 0.68);
  background: rgb(14 165 233 / 0.18);
  box-shadow:
    0 18px 44px rgb(14 165 233 / 0.2),
    0 0 0 4px rgb(56 189 248 / 0.08);
  outline: 0;
}

.project-control svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

/* Process timeline section */
.process-section {
  position: relative;
  isolation: isolate;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: clamp(30px, 3.4vw, 44px) clamp(28px, 4vw, 54px) clamp(28px, 3.2vw, 42px);
}

.process-section::before {
  display: none;
  content: none;
}

.process-heading .section-kicker {
  margin-bottom: 6px;
  color: #38bdf8;
  letter-spacing: 0.06em;
  text-shadow: 0 0 18px rgb(56 189 248 / 0.42);
}

.process-section .process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 42px);
  align-items: center;
  margin: clamp(26px, 2.9vw, 38px) 0 0;
  padding: 0;
  list-style: none;
}

.process-section .process-list::before {
  display: none;
  content: none;
}

.process-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(74px, 92px) minmax(0, 1fr);
  gap: clamp(14px, 1.5vw, 22px);
  align-items: center;
  justify-items: stretch;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  animation: processReveal 640ms ease both;
}

.process-step:nth-child(2) {
  animation-delay: 80ms;
}

.process-step:nth-child(3) {
  animation-delay: 160ms;
}

.process-step:nth-child(4) {
  animation-delay: 240ms;
}

.process-step:nth-child(5) {
  animation-delay: 320ms;
}

.process-node {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 1px solid rgb(56 189 248 / 0.54);
  border-radius: 999px;
  color: #38bdf8;
  background:
    radial-gradient(circle at 50% 38%, rgb(56 189 248 / 0.18), transparent 58%),
    rgb(2 8 23 / 0.86);
  box-shadow:
    0 0 34px rgb(56 189 248 / 0.22),
    inset 0 0 24px rgb(56 189 248 / 0.1);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.process-node::before {
  position: absolute;
  inset: -8px;
  border: 2px solid transparent;
  border-top-color: rgb(56 189 248 / 0.44);
  border-left-color: rgb(56 189 248 / 0.18);
  border-radius: inherit;
  content: "";
  filter: drop-shadow(0 0 14px rgb(56 189 248 / 0.36));
  transform: rotate(-24deg);
}

.process-node svg {
  width: 43px;
  height: 43px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.process-card {
  min-width: 0;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  transition:
    transform 180ms ease,
    color 180ms ease;
}

.process-step:hover .process-node,
.process-step:focus-within .process-node {
  border-color: rgb(125 211 252 / 0.82);
  color: #7dd3fc;
  box-shadow:
    0 0 42px rgb(56 189 248 / 0.32),
    inset 0 0 28px rgb(56 189 248 / 0.15);
  transform: translateY(-3px);
}

.process-step:hover .process-card,
.process-step:focus-within .process-card {
  transform: translateY(-2px);
}

.process-number {
  display: inline-block;
  color: #38bdf8;
  font-size: clamp(1rem, 1.1vw, 1.18rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 0 18px rgb(56 189 248 / 0.42);
}

.process-card h3 {
  margin-top: 8px;
  color: #f8fbff;
  font-size: clamp(1.05rem, 1.12vw, 1.25rem);
  font-weight: 820;
  line-height: 1.15;
  text-shadow: 0 3px 10px rgb(0 0 0 / 0.5);
}

.process-card p {
  max-width: 18ch;
  margin-top: 10px;
  color: rgb(226 232 240 / 0.8);
  font-size: clamp(0.86rem, 0.9vw, 0.98rem);
  line-height: 1.55;
}

@keyframes processReveal {
  from {
    opacity: 0.82;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@supports (animation-timeline: view()) {
  .process-step {
    animation-delay: 0ms;
    animation-timeline: view();
    animation-range: entry 8% cover 34%;
  }
}

@media (max-width: 1180px) {
  .process-section .process-list {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
  }

  .process-section .process-list::before {
    display: none;
  }

  .process-step {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 20px;
  }

  .process-card p {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .process-section {
    padding: 24px 18px;
  }

  .process-section .process-list::before {
    display: none;
  }

  .process-step {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 16px;
  }

  .process-node {
    width: 68px;
    height: 68px;
  }

  .process-node::before {
    inset: -6px;
  }

  .process-node svg {
    width: 32px;
    height: 32px;
  }

  .process-card h3 {
    margin-top: 6px;
  }

  .process-card p {
    margin-top: 8px;
    font-size: 0.86rem;
  }
}

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

/* The early generic `.process-list li` card rules are for the old layout. */
.process-section .process-list::before {
  z-index: 0;
}

.process-section .process-step {
  grid-template-columns: minmax(84px, 96px) minmax(0, 1fr);
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.process-section .process-node {
  color: #38bdf8;
  font-size: inherit;
  font-weight: inherit;
  text-transform: none;
}

.process-section .process-card {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.process-section .process-number {
  color: #38bdf8;
  font-size: clamp(1rem, 1.1vw, 1.18rem);
  text-transform: none;
}

.process-section .process-card p {
  color: rgb(226 232 240 / 0.8);
}

/* Businesses section */
.industries-section {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.industries-heading {
  max-width: none;
  text-align: center;
}

.industries-heading .section-kicker {
  color: #38bdf8;
  letter-spacing: 0;
  text-transform: none;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.industry-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto minmax(2.7em, auto);
  justify-items: start;
  align-content: center;
  gap: 12px;
  min-height: 178px;
  border: 1px solid rgb(56 189 248 / 0.18);
  border-radius: 18px;
  background:
    linear-gradient(150deg, rgb(15 23 42 / 0.78), rgb(2 8 23 / 0.66)),
    rgb(2 8 23 / 0.72);
  box-shadow:
    0 18px 52px rgb(0 0 0 / 0.25),
    inset 0 1px 0 rgb(255 255 255 / 0.055);
  overflow: hidden;
  padding: 20px;
  text-align: left;
  cursor: pointer;
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    box-shadow 170ms ease,
    background 170ms ease;
}

.industry-card::before {
  position: absolute;
  inset: auto 16px 12px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(56 189 248 / 0.32), transparent);
  content: "";
  opacity: 0;
  transform: scaleX(0.7);
  transition:
    opacity 170ms ease,
    transform 170ms ease;
  pointer-events: none;
}

.industry-card:hover,
.industry-card:focus,
.industry-card:focus-within {
  transform: translateY(-4px);
  border-color: rgb(56 189 248 / 0.58);
  background:
    linear-gradient(150deg, rgb(15 23 42 / 0.9), rgb(2 8 23 / 0.76)),
    rgb(2 8 23 / 0.8);
  box-shadow:
    0 24px 62px rgb(0 0 0 / 0.32),
    0 0 36px rgb(56 189 248 / 0.15),
    inset 0 1px 0 rgb(255 255 255 / 0.08);
}

.industry-card:hover::before,
.industry-card:focus::before,
.industry-card:focus-within::before {
  opacity: 1;
  transform: scaleX(1);
}

.industry-card:focus-visible {
  outline: 2px solid rgb(56 189 248 / 0.72);
  outline-offset: 4px;
}

.industry-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgb(56 189 248 / 0.4);
  border-radius: 15px;
  color: #38bdf8;
  background: rgb(14 165 233 / 0.08);
  box-shadow:
    0 0 24px rgb(56 189 248 / 0.13),
    inset 0 0 18px rgb(56 189 248 / 0.06);
  transition:
    border-color 170ms ease,
    box-shadow 170ms ease,
    transform 170ms ease;
}

.industry-card:hover .industry-icon,
.industry-card:focus .industry-icon,
.industry-card:focus-within .industry-icon {
  border-color: rgb(125 211 252 / 0.76);
  box-shadow:
    0 0 30px rgb(56 189 248 / 0.24),
    inset 0 0 20px rgb(56 189 248 / 0.08);
  transform: translateY(-2px);
}

.industry-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.industry-card h3 {
  color: #f8fbff;
  font-size: clamp(0.98rem, 1.15vw, 1.12rem);
  line-height: 1.18;
}

.industry-card p {
  margin: 0;
  color: rgb(226 232 240 / 0.78);
  font-size: clamp(0.76rem, 0.9vw, 0.9rem);
  font-weight: 750;
  line-height: 1.36;
  opacity: 0;
  transform: translateY(7px);
  transition:
    opacity 170ms ease,
    transform 170ms ease,
    color 170ms ease;
}

.industry-card:hover p,
.industry-card:focus p,
.industry-card:focus-within p {
  color: rgb(226 232 240 / 0.92);
  opacity: 1;
  transform: translateY(0);
}

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

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

  .industry-card {
    min-height: 168px;
    gap: 10px;
    padding: 16px 12px;
  }

  .industry-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .industry-icon svg {
    width: 23px;
    height: 23px;
  }

  .industry-card h3 {
    font-size: clamp(0.82rem, 3.35vw, 0.98rem);
  }

  .industry-card p {
    font-size: clamp(0.68rem, 2.85vw, 0.78rem);
  }
}

@media (max-width: 380px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact and footer */
.contact-redesign {
  position: relative;
  overflow: hidden;
  border-color: rgb(56 189 248 / 0.22);
  background:
    radial-gradient(circle at 18% 50%, rgb(56 189 248 / 0.18), transparent 18rem),
    radial-gradient(circle at 82% 18%, rgb(14 165 233 / 0.16), transparent 18rem),
    linear-gradient(145deg, rgb(15 23 42 / 0.76), rgb(2 8 23 / 0.66));
  box-shadow:
    0 30px 90px rgb(0 0 0 / 0.38),
    0 0 54px rgb(56 189 248 / 0.1),
    inset 0 1px 0 rgb(255 255 255 / 0.06);
}

.contact-redesign::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgb(56 189 248 / 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgb(56 189 248 / 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  mask-image: radial-gradient(circle at 50% 50%, rgb(0 0 0 / 0.7), transparent 76%);
}

.contact-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
}

.contact-copy {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 1px solid rgb(56 189 248 / 0.42);
  border-radius: 20px;
  color: #38bdf8;
  background: rgb(14 165 233 / 0.08);
  box-shadow:
    0 0 34px rgb(56 189 248 / 0.2),
    inset 0 0 24px rgb(56 189 248 / 0.07);
}

.contact-brand-mark {
  overflow: visible;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.contact-brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgb(56 189 248 / 0.42));
  transform: scale(1.9);
}

.contact-redesign svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-copy h2 {
  max-width: 650px;
  color: #f8fbff;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.05;
}

.contact-copy p {
  max-width: 590px;
  margin-top: 12px;
  color: rgb(226 232 240 / 0.82);
  font-size: 1.02rem;
}

.contact-actions {
  display: grid;
  gap: 14px;
}

.contact-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
  border: 1px solid rgb(56 189 248 / 0.24);
  border-radius: 16px;
  padding: 16px;
  text-decoration: none;
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    box-shadow 170ms ease,
    background 170ms ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgb(56 189 248 / 0.62);
  box-shadow:
    0 24px 58px rgb(0 0 0 / 0.34),
    0 0 38px rgb(56 189 248 / 0.16);
}

.contact-card-primary {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #f8fbff;
  box-shadow:
    0 20px 54px rgb(14 165 233 / 0.28),
    inset 0 1px 0 rgb(255 255 255 / 0.3);
}

.contact-card-secondary {
  background: rgb(2 8 23 / 0.52);
  color: #f8fbff;
  backdrop-filter: blur(16px);
}

.contact-card-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 14px;
  background: rgb(255 255 255 / 0.09);
}

.contact-card-secondary .contact-card-icon {
  border-color: rgb(56 189 248 / 0.28);
  color: #38bdf8;
  background: rgb(14 165 233 / 0.08);
}

.contact-card-icon svg {
  width: 25px;
  height: 25px;
}

.contact-card strong,
.contact-card span span {
  display: block;
  min-width: 0;
}

.contact-card strong {
  font-size: 1rem;
  line-height: 1.2;
}

.contact-card span span {
  overflow-wrap: anywhere;
  margin-top: 5px;
  color: rgb(248 251 255 / 0.78);
  font-size: 0.86rem;
  line-height: 1.3;
}

.contact-response-time {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 8px;
  margin: 2px 0 0;
  color: rgb(226 232 240 / 0.78);
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.25;
}

.contact-response-time span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgb(56 189 248 / 0.26);
  border-radius: 999px;
  background: rgb(14 165 233 / 0.08);
  color: #38bdf8;
}

.contact-response-time svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.9;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 12px;
  width: min(100% - 32px, 1180px);
  margin: -38px auto 0;
  padding: 0 0 34px;
  color: rgb(226 232 240 / 0.56);
  font-size: 0.86rem;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f8fbff;
  text-decoration: none;
}

.footer-brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  overflow: visible;
}

.footer-brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgb(56 189 248 / 0.34));
  transform: scale(1.95);
}

.footer-brand-copy {
  display: grid;
  gap: 2px;
  text-align: left;
}

.footer-brand-copy strong {
  color: #f8fbff;
  font-size: 0.9rem;
  line-height: 1.05;
}

.footer-brand-copy span {
  color: rgb(226 232 240 / 0.58);
  font-size: 0.76rem;
  line-height: 1.2;
}

.site-footer p {
  margin: 0;
}

.pre-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 24px);
  align-items: stretch;
  width: 100%;
  margin-top: 26px;
  margin-right: auto;
  margin-left: auto;
}

.pre-contact-grid > .section-block {
  margin-top: 0;
}

@media (hover: hover) and (pointer: fine) and (min-width: 901px) {
  .pre-contact-grid {
    transition: grid-template-columns 260ms ease;
  }

  .pre-contact-grid:has(.next-section:hover) {
    grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
  }

  .pre-contact-grid:has(.why-section:hover) {
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  }

  .pre-contact-grid > .section-block {
    transition:
      transform 190ms ease,
      border-color 190ms ease,
      box-shadow 190ms ease,
      background 190ms ease;
  }

  .pre-contact-grid > .section-block:hover {
    transform: translateY(-3px);
    border-color: rgb(56 189 248 / 0.5);
    box-shadow:
      0 28px 72px rgb(0 0 0 / 0.36),
      0 0 42px rgb(56 189 248 / 0.13),
      inset 0 1px 0 rgb(255 255 255 / 0.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pre-contact-grid,
  .pre-contact-grid > .section-block {
    transition: none;
  }

  .pre-contact-grid:has(.next-section:hover),
  .pre-contact-grid:has(.why-section:hover) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pre-contact-grid > .section-block:hover {
    transform: none;
  }
}

.next-section,
.why-section {
  border-color: rgb(56 189 248 / 0.22);
  border-radius: 22px;
  background:
    radial-gradient(circle at 0% 0%, rgb(56 189 248 / 0.16), transparent 18rem),
    linear-gradient(145deg, rgb(15 23 42 / 0.76), rgb(2 8 23 / 0.7));
  box-shadow:
    0 22px 64px rgb(0 0 0 / 0.3),
    inset 0 1px 0 rgb(255 255 255 / 0.06);
  padding: clamp(20px, 3vw, 30px);
}

.next-section {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  gap: 22px;
  align-items: start;
  align-content: stretch;
  width: 100%;
  margin-top: 0;
}

.why-section {
  display: grid;
  align-content: start;
  gap: 14px;
  margin-top: 0;
}

.next-copy .section-kicker {
  color: #38bdf8;
  letter-spacing: 0.06em;
}

.why-section .section-kicker {
  margin-bottom: 0;
  color: #38bdf8;
  letter-spacing: 0.06em;
}

.next-copy h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  line-height: 1.05;
}

.why-section h2 {
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.12;
}

.next-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-self: end;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.next-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  min-width: 0;
}

.next-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgb(56 189 248 / 0.32);
  border-radius: 14px;
  background: rgb(14 165 233 / 0.1);
  color: #38bdf8;
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.06);
}

.next-list p {
  margin: 0;
  color: rgb(248 251 255 / 0.88);
  font-size: clamp(0.92rem, 1.3vw, 1rem);
  font-weight: 760;
  line-height: 1.38;
}

.why-list {
  display: grid;
  gap: 0;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.why-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  min-width: 0;
  border-top: 1px solid rgb(56 189 248 / 0.12);
  padding: 9px 0;
  color: rgb(248 251 255 / 0.86);
  font-size: 0.94rem;
  font-weight: 760;
  line-height: 1.35;
}

.why-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.why-list li:last-child {
  padding-bottom: 0;
}

.why-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgb(56 189 248 / 0.26);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgb(56 189 248 / 0.14), rgb(14 165 233 / 0.04)),
    rgb(2 8 23 / 0.34);
  color: #38bdf8;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.06),
    0 0 18px rgb(56 189 248 / 0.08);
}

.why-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.why-list strong {
  min-width: 0;
  color: rgb(248 251 255 / 0.9);
  font-size: 0.95rem;
  line-height: 1.25;
}

.why-list li:hover .why-icon {
  border-color: rgb(56 189 248 / 0.46);
  background: rgb(14 165 233 / 0.14);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.08),
    0 0 24px rgb(56 189 248 / 0.16);
}

.why-list li:hover strong {
  color: #f8fbff;
}

.why-list li::before {
  display: none;
}

/* Legacy fallback for older cached markup without icons. */
.why-list li:not(:has(.why-icon)) {
  position: relative;
  display: block;
  padding-left: 22px;
}

.why-list li:not(:has(.why-icon))::before {
  position: absolute;
  left: 1px;
  top: 0.85em;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #38bdf8;
  box-shadow: 0 0 16px rgb(56 189 248 / 0.44);
  content: "";
}

@media (min-width: 901px) {
  .why-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
  }

  .why-list li {
    border: 1px solid rgb(56 189 248 / 0.13);
    border-radius: 14px;
    background: rgb(2 8 23 / 0.24);
    padding: 10px;
  }

  .why-list li:first-child,
  .why-list li:last-child {
    padding: 10px;
  }

  .why-list li:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .pre-contact-grid {
    grid-template-columns: 1fr;
  }

  .next-section {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .next-section {
    gap: 18px;
    border-radius: 18px;
  }

  .next-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-copy,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-icon {
    width: 64px;
    height: 64px;
  }

  .contact-brand-mark {
    justify-self: start;
  }

  .contact-actions {
    gap: 12px;
  }

  .contact-card {
    justify-items: start;
  }

  .site-footer {
    width: min(100% - 24px, 1180px);
    margin-top: -42px;
  }

  .footer-brand {
    justify-content: center;
  }
}

/* Full-page polish */
:root {
  --cursor-x: 50vw;
  --cursor-y: 50vh;
  --bg: #020617;
  --bg-2: #0f172a;
  --panel: #e2e8f0;
  --panel-ink: #020617;
  --line: rgb(56 189 248 / 0.18);
  --line-strong: rgb(56 189 248 / 0.34);
  --text: #f8fbff;
  --muted: #cbd5e1;
  --soft: #94a3b8;
  --teal: #38bdf8;
  --lime: #38bdf8;
  --coral: #0ea5e9;
  --gold: #38bdf8;
  --shadow: 0 32px 90px rgb(0 0 0 / 0.4);
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-padding-top: 96px;
}

:target {
  scroll-margin-top: 96px;
}

body {
  max-width: 100%;
  background:
    radial-gradient(circle at 14% 0%, rgb(56 189 248 / 0.09), transparent 24rem),
    radial-gradient(circle at 86% 12%, rgb(14 165 233 / 0.08), transparent 28rem),
    linear-gradient(180deg, #020617 0%, #030712 52%, #020617 100%);
  overflow-x: hidden;
}

body::before {
  opacity: 0.82;
  background-image:
    linear-gradient(rgb(56 189 248 / 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgb(56 189 248 / 0.045) 1px, transparent 1px);
  animation: pageGridDrift 48s linear infinite;
}

body::after {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  background: radial-gradient(
    360px circle at var(--cursor-x) var(--cursor-y),
    rgb(56 189 248 / 0.16),
    rgb(56 189 248 / 0.06) 28%,
    transparent 68%
  );
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

.has-cursor-glow body::after {
  opacity: 1;
}

body > * {
  position: relative;
  z-index: 1;
}

img,
svg {
  max-width: 100%;
}

h1,
h2,
h3,
p,
a,
li,
span,
strong,
dt,
dd {
  overflow-wrap: break-word;
}

a,
button,
.button,
.contact-card {
  -webkit-tap-highlight-color: transparent;
}

.button,
.contact-card {
  min-height: 44px;
}

.site-header {
  background: linear-gradient(180deg, rgb(2 6 23 / 0.72), rgb(2 6 23 / 0.24));
  border-radius: 0 0 24px 24px;
}

.nav-links {
  background: rgb(2 6 23 / 0.68);
  box-shadow:
    0 18px 50px rgb(0 0 0 / 0.22),
    inset 0 1px 0 rgb(255 255 255 / 0.04);
}

.nav-links a {
  color: rgb(203 213 225 / 0.78);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgb(56 189 248 / 0.12);
  color: #f8fbff;
}

.brand-mark {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  box-shadow:
    0 12px 34px rgb(56 189 248 / 0.22),
    inset 0 1px 0 rgb(255 255 255 / 0.35);
}

.skip-link {
  background: #38bdf8;
  color: #020617;
}

.hero-copy h1 {
  font-size: clamp(3rem, 5.4vw, 5.1rem);
  text-wrap: auto;
}

.service-list article,
.credibility-strip,
.build-card,
.project-card,
.process-card,
.industry-card,
.contact-card,
.photo-card,
.europe-card {
  will-change: transform;
}

.service-list article {
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    box-shadow 170ms ease,
    background 170ms ease;
}

.service-list article:hover,
.service-list article:focus-within {
  transform: translateY(-4px);
  border-color: rgb(56 189 248 / 0.46);
  box-shadow:
    0 24px 62px rgb(0 0 0 / 0.3),
    0 0 34px rgb(56 189 248 / 0.12);
}

.reveal-target {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms ease var(--reveal-delay, 0ms),
    transform 620ms ease var(--reveal-delay, 0ms);
}

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

@keyframes pageGridDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 46px 46px, 46px 46px;
  }
}

@media (max-width: 1024px) {
  main,
  .site-header,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  main {
    padding-top: 24px;
  }

  .section-block,
  .contact-section,
  .credibility-strip {
    margin-top: 22px;
  }

  .hero-copy h1 {
    font-size: clamp(2.85rem, 7.2vw, 4.85rem);
    text-wrap: auto;
  }

  .hero-text {
    max-width: 660px;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 24px;
  }

  :target {
    scroll-margin-top: 24px;
  }

  .site-header {
    padding: 14px 0;
  }

  .hero-section {
    padding: 30px 22px;
  }

  .section-block,
  .contact-section {
    padding: clamp(20px, 5vw, 30px);
  }

  .hero-copy h1,
  .build-heading h2,
  .projects-heading h2,
  .process-heading h2,
  .contact-copy h2 {
    letter-spacing: 0;
  }

  .project-card {
    gap: 16px;
  }

  .build-card h3,
  .process-card h3 {
    font-size: 1.05rem;
  }

  .project-content h3 {
    font-size: 1.24rem;
  }

  .site-footer {
    margin-top: -34px;
  }
}

@media (max-width: 430px) {
  main,
  .site-header,
  .site-footer {
    width: min(100% - 20px, 1180px);
  }

  main {
    padding-top: 12px;
    padding-bottom: 62px;
  }

  .site-header {
    gap: 12px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .brand-copy strong {
    max-width: 12rem;
    font-size: 0.9rem;
  }

  .hero-section {
    border-radius: 22px;
    padding: 24px 16px;
  }

  .hero-copy .section-kicker,
  .section-kicker,
  .industries-heading .section-kicker {
    font-size: 0.68rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.22rem, 11.8vw, 3.05rem);
    line-height: 1.08;
  }

  .hero-text {
    margin-top: 18px;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .hero-features {
    gap: 12px;
    margin-top: 24px;
  }

  .hero-cta {
    margin-top: 26px;
  }

  .hero-card .photo-card {
    width: min(94%, 330px);
  }

  .europe-card {
    padding: 18px;
  }

  .credibility-strip,
  .section-block,
  .contact-section {
    border-radius: 18px;
    padding: 18px;
  }

  .company-row span {
    font-size: 0.98rem;
  }

  .credibility-stats dt {
    font-size: 1.45rem;
  }

  .build-grid,
  .industries-grid {
    gap: 12px;
  }

  .build-card,
  .project-card,
  .process-card,
  .industry-card {
    border-radius: 16px;
  }

  .project-card {
    padding: 14px;
  }

  .project-visual {
    min-height: 205px;
  }

  .process-section .process-list::before {
    left: 29px;
  }

  .process-step {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
  }

  .process-node {
    width: 58px;
    height: 58px;
  }

  .process-node svg {
    width: 24px;
    height: 24px;
  }

  .contact-copy h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.35rem);
    line-height: 1.08;
  }

  .contact-copy p {
    font-size: 0.96rem;
  }

  .contact-card {
    padding: 15px;
  }

  .contact-card strong {
    font-size: 0.96rem;
  }

  .contact-card span span {
    font-size: 0.8rem;
  }

  .site-footer {
    margin-top: -38px;
    padding-bottom: 28px;
    font-size: 0.8rem;
  }
}

@media (hover: none), (pointer: coarse) {
  body::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  body::after {
    display: none;
  }

  .reveal-target,
  .reveal-target.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* Final scoped hero and credibility strip redesign */
.hero-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: clamp(24px, 3.6vw, 42px);
  align-items: center;
  min-height: calc(100svh - 118px);
  overflow: hidden;
  border: 1px solid rgb(56 189 248 / 0.24);
  border-radius: 32px;
  background:
    radial-gradient(circle at 76% 42%, rgb(56 189 248 / 0.26), transparent 27rem),
    radial-gradient(circle at 19% 18%, rgb(14 165 233 / 0.16), transparent 21rem),
    linear-gradient(135deg, rgb(2 8 23 / 0.99), rgb(3 7 18 / 0.96) 54%, rgb(2 6 23 / 0.99));
  box-shadow:
    0 34px 110px rgb(0 0 0 / 0.48),
    0 0 62px rgb(56 189 248 / 0.1),
    inset 0 1px 0 rgb(255 255 255 / 0.06);
  padding: clamp(30px, 4.4vw, 56px) clamp(20px, 3.4vw, 42px);
}

.hero-section::before,
.hero-section::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
}

.hero-section::before {
  opacity: 0.9;
  background-image:
    linear-gradient(rgb(56 189 248 / 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgb(56 189 248 / 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 58% 34%, rgb(0 0 0 / 0.8), transparent 72%);
  animation: heroGridDrift 20s linear infinite;
}

.hero-section::after {
  background:
    linear-gradient(90deg, rgb(2 6 23 / 0.84), transparent 46%, rgb(2 6 23 / 0.24)),
    radial-gradient(circle at 74% 46%, rgb(56 189 248 / 0.2), transparent 22rem);
}

.hero-copy,
.hero-card {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 740px;
  padding: 0;
  animation: heroFadeUp 620ms ease both;
}

.hero-copy .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-bottom: 17px;
  border: 1px solid rgb(56 189 248 / 0.26);
  border-radius: 999px;
  background: rgb(15 23 42 / 0.72);
  box-shadow:
    0 0 30px rgb(56 189 248 / 0.08),
    inset 0 1px 0 rgb(255 255 255 / 0.06);
  padding: 8px 12px;
  color: rgb(226 232 240 / 0.92);
  font-size: clamp(0.68rem, 0.94vw, 0.78rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.hero-copy .section-kicker::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #38bdf8;
  box-shadow: 0 0 16px rgb(56 189 248 / 0.72);
  content: "";
}

.kicker-part {
  display: inline;
}

.hero-mobile-break {
  display: none;
}

.hero-copy h1 {
  max-width: 760px;
  color: #f8fbff;
  font-size: clamp(3rem, 4.55vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-accent {
  color: #38bdf8;
  text-shadow:
    0 0 24px rgb(56 189 248 / 0.42),
    0 0 64px rgb(14 165 233 / 0.24);
}

.hero-text {
  max-width: 705px;
  margin-top: 22px;
  color: rgb(226 232 240 / 0.86);
  font-size: clamp(1rem, 1.36vw, 1.16rem);
  line-height: 1.7;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 710px;
  margin-top: 30px;
}

.hero-feature {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 98px;
  border: 1px solid rgb(56 189 248 / 0.18);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgb(15 23 42 / 0.64), rgb(2 8 23 / 0.46)),
    rgb(2 8 23 / 0.58);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.05),
    0 14px 34px rgb(0 0 0 / 0.2);
  padding: 15px 10px;
  color: #f8fbff;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.22;
  text-align: center;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgb(56 189 248 / 0.5);
  border-radius: 14px;
  color: #38bdf8;
  background: rgb(14 165 233 / 0.08);
  box-shadow:
    0 0 24px rgb(56 189 248 / 0.2),
    inset 0 0 18px rgb(56 189 248 / 0.07);
}

.hero-section svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.hero-actions.hero-cta {
  gap: 16px;
  margin-top: 34px;
}

.hero-cta .button {
  gap: 12px;
  min-width: 168px;
  min-height: 52px;
  border-color: rgb(56 189 248 / 0.34);
  border-radius: 14px;
  color: #f8fbff;
}

.hero-cta .button:hover,
.hero-cta .button:focus-visible {
  border-color: rgb(56 189 248 / 0.68);
  box-shadow:
    0 18px 44px rgb(14 165 233 / 0.26),
    0 0 0 4px rgb(56 189 248 / 0.08);
}

.hero-cta .button.primary {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #f8fbff;
  box-shadow:
    0 18px 44px rgb(14 165 233 / 0.3),
    inset 0 1px 0 rgb(255 255 255 / 0.32);
}

.hero-cta .button.secondary {
  background: rgb(2 8 23 / 0.52);
  backdrop-filter: blur(16px);
}

.button-icon {
  display: inline-grid;
  place-items: center;
}

.button-icon svg {
  width: 18px;
  height: 18px;
}

.hero-card {
  position: relative;
  display: grid;
  place-items: center end;
  width: 100%;
  min-height: 560px;
  overflow: visible;
  padding: 0;
  animation: heroFadeUp 720ms 90ms ease both;
}

.hero-card::before,
.hero-card::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero-card::before {
  right: 5%;
  top: 9%;
  width: min(88%, 460px);
  aspect-ratio: 1;
  border: 1px solid rgb(56 189 248 / 0.58);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgb(56 189 248 / 0.09), transparent 62%),
    repeating-radial-gradient(circle, transparent 0 14px, rgb(56 189 248 / 0.055) 15px 16px);
  box-shadow:
    0 0 34px rgb(56 189 248 / 0.28),
    inset 0 0 42px rgb(56 189 248 / 0.12);
}

.hero-card::after {
  right: 0;
  bottom: 12%;
  width: min(70%, 350px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgb(56 189 248 / 0.22), transparent 68%);
  filter: blur(10px);
}

.hero-card .photo-card {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: end;
  justify-items: center;
  width: min(84%, 390px);
  aspect-ratio: 0.8;
  overflow: hidden;
  margin: 0 0 34px auto;
  border: 1px solid rgb(56 189 248 / 0.38);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 72%, rgb(56 189 248 / 0.18), transparent 36%),
    linear-gradient(180deg, rgb(15 23 42 / 0.24), rgb(2 6 23 / 0.86)),
    rgb(2 8 23 / 0.78);
  box-shadow:
    0 36px 90px rgb(0 0 0 / 0.5),
    0 0 58px rgb(56 189 248 / 0.22),
    inset 0 1px 0 rgb(255 255 255 / 0.07);
}

.hero-card .photo-card::before {
  position: absolute;
  inset: 10%;
  border: 1px solid rgb(56 189 248 / 0.24);
  border-radius: 999px;
  background: radial-gradient(circle, rgb(56 189 248 / 0.08), transparent 66%);
  content: "";
}

.hero-card .profile-photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 112%;
  height: auto;
  max-width: none;
  margin-bottom: -2%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 24px 38px rgb(0 0 0 / 0.42));
}

.europe-card {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 28px;
  width: min(94%, 390px);
  border: 1px solid rgb(56 189 248 / 0.32);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgb(15 23 42 / 0.88), rgb(2 8 23 / 0.74)),
    rgb(2 8 23 / 0.78);
  box-shadow:
    0 24px 64px rgb(0 0 0 / 0.42),
    0 0 42px rgb(56 189 248 / 0.15),
    inset 0 1px 0 rgb(255 255 255 / 0.08);
  padding: 20px;
  backdrop-filter: blur(18px);
}

.europe-card h2 {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #f8fbff;
  font-size: 0.96rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.pin-icon {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: #38bdf8;
}

.pin-icon svg {
  width: 18px;
  height: 18px;
}

.country-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0;
  padding: 0;
  list-style: none;
}

.country-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: rgb(248 251 255 / 0.92);
  font-size: 0.86rem;
  font-weight: 800;
}

.flag {
  flex: 0 0 auto;
  width: 24px;
  height: 16px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgb(255 255 255 / 0.18);
}

.flag-pl {
  background: linear-gradient(#fff 0 50%, #dc143c 50% 100%);
}

.flag-it {
  background: linear-gradient(90deg, #009246 0 33%, #fff 33% 66%, #ce2b37 66% 100%);
}

.flag-hu {
  background: linear-gradient(#ce2939 0 33%, #fff 33% 66%, #477050 66% 100%);
}

.experience-callout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border-top: 1px solid rgb(56 189 248 / 0.2);
  padding-top: 16px;
}

.experience-callout strong {
  display: block;
  color: #38bdf8;
  font-size: 2.05rem;
  line-height: 1;
  text-shadow: 0 0 24px rgb(56 189 248 / 0.28);
}

.experience-callout span,
.europe-card p {
  display: block;
  color: rgb(226 232 240 / 0.84);
  font-size: 0.88rem;
  line-height: 1.42;
}

.europe-card p {
  margin-top: 14px;
}

.europe-card p span {
  color: #38bdf8;
}

.credibility-strip {
  display: grid;
  grid-template-columns: minmax(150px, 0.75fr) minmax(300px, 1.28fr) minmax(420px, 1.97fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: center;
  margin-top: 24px;
  border: 1px solid rgb(56 189 248 / 0.24);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgb(15 23 42 / 0.72), rgb(2 8 23 / 0.54)),
    rgb(2 8 23 / 0.74);
  box-shadow:
    0 26px 80px rgb(0 0 0 / 0.34),
    0 0 50px rgb(56 189 248 / 0.1),
    inset 0 1px 0 rgb(255 255 255 / 0.07);
  padding: 22px 24px;
  backdrop-filter: blur(18px);
  animation: heroFadeUp 680ms 160ms ease both;
}

.credibility-intro span {
  color: #38bdf8;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.credibility-intro p {
  margin-top: 8px;
  color: rgb(248 251 255 / 0.9);
  font-size: 0.96rem;
}

.company-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.company-row span {
  display: grid;
  place-items: center;
  min-height: 48px;
  border: 1px solid rgb(56 189 248 / 0.16);
  border-radius: 14px;
  background: rgb(15 23 42 / 0.42);
  color: #f8fbff;
  font-size: clamp(0.86rem, 1.28vw, 1.02rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.12;
  text-align: center;
}

.credibility-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
}

.credibility-stats div {
  min-width: 0;
  border-left: 1px solid rgb(56 189 248 / 0.18);
  padding-left: 16px;
}

.credibility-stats dt {
  color: #38bdf8;
  font-size: clamp(1.22rem, 1.75vw, 1.74rem);
  font-weight: 950;
  line-height: 1.04;
  letter-spacing: 0;
  text-shadow: 0 0 22px rgb(56 189 248 / 0.22);
}

.credibility-stats dd {
  margin: 7px 0 0;
  color: rgb(226 232 240 / 0.86);
  font-size: 0.76rem;
  line-height: 1.28;
}

@media (max-width: 1080px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 860px;
  }

  .hero-card {
    width: min(100%, 640px);
    min-height: 590px;
    margin: 0 auto;
    place-items: center;
  }

  .hero-card .photo-card {
    margin-right: auto;
  }

  .hero-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 560px;
  }

  .credibility-strip {
    grid-template-columns: 1fr;
  }

  .company-row,
  .credibility-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .credibility-stats div {
    border-left: 0;
    border-top: 1px solid rgb(56 189 248 / 0.18);
    padding: 14px 0 0;
  }
}

@media (max-width: 720px) {
  main,
  .site-header,
  .site-footer {
    width: min(100% - 28px, 360px);
    margin-right: auto;
    margin-left: 14px;
  }

  .hero-section {
    width: 100%;
    max-width: 360px;
    gap: 24px;
    border-radius: 24px;
    padding: 28px 20px;
  }

  .hero-copy {
    width: 100%;
    max-width: 320px;
  }

  .hero-copy .section-kicker {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    padding-left: 28px;
    font-size: 0.62rem;
    line-height: 1.35;
    white-space: normal;
  }

  .hero-copy .section-kicker::before {
    position: absolute;
    left: 12px;
    top: 10px;
  }

  .kicker-part {
    display: block;
  }

  .hero-mobile-break {
    display: block;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.1rem, 7.8vw, 2.55rem);
    line-height: 1.06;
    overflow-wrap: break-word;
    text-wrap: wrap;
    white-space: normal;
  }

  .hero-text {
    margin-top: 18px;
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero-card {
    min-height: auto;
  }

  .hero-card::before {
    right: 50%;
    top: 18px;
    width: min(92%, 390px);
    transform: translateX(50%);
  }

  .hero-card::after {
    right: 50%;
    bottom: 18%;
    transform: translateX(50%);
  }

  .hero-card .photo-card {
    width: min(90%, 360px);
    margin: 0 auto;
  }

  .europe-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(100%, 380px);
    margin: -12px auto 0;
  }

  .country-list {
    grid-template-columns: 1fr;
  }

  .credibility-strip {
    width: 100%;
    max-width: 360px;
    border-radius: 20px;
    padding: 20px;
  }
}

@media (max-width: 520px) {
  .hero-copy .section-kicker {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: 0.62rem;
    line-height: 1.35;
    padding-left: 28px;
    white-space: normal;
  }

  .hero-copy .section-kicker::before {
    position: absolute;
    left: 12px;
    top: 10px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.08rem, 9.8vw, 2.72rem);
    line-height: 1.1;
    overflow-wrap: break-word;
    text-wrap: wrap;
    white-space: normal;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .hero-feature {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 72px;
    justify-items: start;
    padding: 14px;
    text-align: left;
  }

  .hero-actions.hero-cta {
    margin-top: 26px;
  }

  .hero-cta .button {
    width: 100%;
  }

  .company-row,
  .credibility-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 390px) {
  main,
  .site-header,
  .site-footer {
    width: calc(100% - 28px);
    margin-right: auto;
    margin-left: 14px;
  }

  .hero-section {
    padding: 24px 16px;
  }

  .hero-copy {
    max-width: 306px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 9.4vw, 2.42rem);
  }

  .company-row,
  .credibility-stats {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-section::before,
  .hero-copy,
  .hero-card,
  .credibility-strip {
    animation: none !important;
  }
}

/* Final scoped navigation redesign */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: none;
  height: 80px;
  margin: 0;
  border-bottom: 1px solid rgb(56 189 248 / 0.14);
  border-radius: 0;
  background: rgb(1 5 12 / 0.88);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.035),
    0 18px 54px rgb(0 0 0 / 0.34);
  padding: 0 clamp(28px, 4vw, 58px);
  backdrop-filter: blur(18px);
}

body {
  padding-top: var(--site-header-height, 80px);
}

.scroll-nav {
  position: fixed;
  right: clamp(14px, 2.5vw, 34px);
  bottom: calc(clamp(18px, 3.2vh, 34px) + env(safe-area-inset-bottom, 0px));
  z-index: 26;
  display: grid;
  gap: 8px;
  border: 1px solid rgb(56 189 248 / 0.22);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgb(15 23 42 / 0.78), rgb(2 8 23 / 0.7)),
    rgb(2 8 23 / 0.72);
  box-shadow:
    0 18px 48px rgb(0 0 0 / 0.34),
    0 0 28px rgb(56 189 248 / 0.1),
    inset 0 1px 0 rgb(255 255 255 / 0.07);
  padding: 6px;
  backdrop-filter: blur(16px);
}

.scroll-nav[hidden] {
  display: none;
}

.scroll-nav-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgb(56 189 248 / 0.26);
  border-radius: 999px;
  background: rgb(14 165 233 / 0.08);
  color: #38bdf8;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    opacity 160ms ease,
    box-shadow 160ms ease;
}

.scroll-nav-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.scroll-nav-button:hover,
.scroll-nav-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgb(56 189 248 / 0.58);
  background: rgb(14 165 233 / 0.18);
  color: #f8fbff;
  box-shadow:
    0 10px 28px rgb(0 0 0 / 0.24),
    0 0 24px rgb(56 189 248 / 0.18);
}

.scroll-nav-button:disabled {
  transform: none;
  border-color: rgb(148 163 184 / 0.12);
  background: rgb(15 23 42 / 0.36);
  box-shadow: none;
  color: rgb(148 163 184 / 0.42);
  cursor: not-allowed;
  opacity: 0.62;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #38bdf8, #0ea5e9 58%, #7dd3fc);
  box-shadow:
    0 0 14px rgb(56 189 248 / 0.72),
    0 -1px 0 rgb(255 255 255 / 0.08);
  content: "";
  pointer-events: none;
  transform: scaleX(var(--page-scroll-progress, 0));
  transform-origin: left center;
  transition: transform 90ms linear;
}

.brand {
  justify-self: start;
  gap: 18px;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgb(56 189 248 / 0.38));
  transform: scale(2.1);
}

.brand-copy strong {
  color: #f8fbff;
  font-size: clamp(0.98rem, 1.35vw, 1.13rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
}

.brand-copy span {
  display: none;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 32px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.nav-links a {
  position: relative;
  border-radius: 0;
  color: rgb(226 232 240 / 0.86);
  padding: 7px 0;
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition:
    color 160ms ease,
    text-shadow 160ms ease;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: #38bdf8;
  box-shadow: 0 0 14px rgb(56 189 248 / 0.88);
  content: "";
  transition: width 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  background: transparent;
  color: #38bdf8;
  text-shadow: 0 0 18px rgb(56 189 248 / 0.58);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after {
  width: 100%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  gap: 9px;
  min-height: 42px;
  border: 1px solid rgb(56 189 248 / 0.5);
  border-radius: 11px;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  box-shadow:
    0 12px 30px rgb(14 165 233 / 0.34),
    0 0 26px rgb(56 189 248 / 0.28),
    inset 0 1px 0 rgb(255 255 255 / 0.3);
  padding: 0 22px;
  color: #f8fbff;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
  border-color: rgb(125 211 252 / 0.82);
  box-shadow:
    0 16px 36px rgb(14 165 233 / 0.42),
    0 0 34px rgb(56 189 248 / 0.34),
    inset 0 1px 0 rgb(255 255 255 / 0.36);
}

.header-cta-icon {
  display: block;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(220px, 1fr) auto;
    height: 74px;
    padding: 0 22px;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 720px) {
  .scroll-nav {
    right: 12px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    gap: 6px;
    padding: 5px;
  }

  .scroll-nav-button {
    width: 40px;
    height: 40px;
  }

  .header-cta {
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 14px;
    padding: 0;
  }

  .header-cta-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }
}

@media (max-width: 560px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-items: stretch;
    width: 100%;
    max-width: none;
    height: 70px;
    margin: 0;
    padding: 0 16px;
  }

  .brand {
    justify-self: start;
    justify-content: flex-start;
    gap: 12px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-copy strong {
    max-width: 13rem;
    font-size: 0.92rem;
  }

  .header-cta {
    display: inline-grid;
  }
}

/* Wide-screen alignment: keep nav content and cards on the same grid. */
:root {
  --layout-max: 1560px;
  --layout-gutter: clamp(28px, 5vw, 96px);
  --site-header-height: 80px;
}

@media (max-width: 980px) {
  :root {
    --site-header-height: 74px;
  }
}

@media (max-width: 560px) {
  :root {
    --site-header-height: 70px;
  }
}

@media (min-width: 721px) {
  main,
  .site-footer {
    width: min(calc(100% - (var(--layout-gutter) * 2)), var(--layout-max));
  }
}

@media (min-width: 981px) {
  .site-header {
    isolation: isolate;
    width: min(calc(100% - (var(--layout-gutter) * 2)), var(--layout-max));
    max-width: var(--layout-max);
    margin: 0 auto;
    padding: 0;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
  }

  .site-header::before {
    position: absolute;
    inset: 0 auto auto 50%;
    z-index: 0;
    width: 100vw;
    height: 100%;
    transform: translateX(-50%);
    border-bottom: 1px solid rgb(56 189 248 / 0.14);
    background: rgb(1 5 12 / 0.88);
    box-shadow:
      0 1px 0 rgb(255 255 255 / 0.035),
      0 18px 54px rgb(0 0 0 / 0.34);
    content: "";
  }

  .site-header > * {
    position: relative;
    z-index: 1;
  }
}

@media (min-width: 981px) {
  .site-header {
    left: 50%;
    right: auto;
    margin: 0;
    transform: translateX(-50%);
  }
}

@media (min-width: 1280px) {
  .hero-section {
    grid-template-columns: minmax(0, 1.12fr) minmax(440px, 0.88fr);
    gap: clamp(34px, 4vw, 64px);
    padding-right: clamp(34px, 4vw, 62px);
    padding-left: clamp(34px, 4vw, 62px);
  }

  .hero-copy {
    max-width: 860px;
  }

  .hero-copy h1 {
    max-width: 860px;
    font-size: clamp(4rem, 4.1vw, 5rem);
  }

  .hero-text,
  .hero-features {
    max-width: 820px;
  }

  .hero-card {
    min-height: 620px;
  }

  .hero-card .photo-card {
    width: min(82%, 470px);
  }

  .europe-card {
    width: min(94%, 440px);
  }
}

/* Portrait composition: glowing globe + tall Europe card. */
@media (min-width: 721px) {
  .hero-card {
    position: relative;
    display: block;
    min-height: clamp(560px, 42vw, 680px);
    overflow: visible;
  }

  .hero-card::before {
    left: clamp(0px, 2vw, 28px);
    right: auto;
    top: clamp(24px, 4vw, 58px);
    width: min(72%, 560px);
    border: 2px solid rgb(14 165 233 / 0.78);
    background:
      radial-gradient(circle at 54% 45%, rgb(2 8 23 / 0.18), rgb(2 8 23 / 0.82) 58%, rgb(1 5 12 / 0.96) 70%),
      radial-gradient(circle at 34% 24%, rgb(56 189 248 / 0.24), transparent 2px),
      radial-gradient(circle at 48% 35%, rgb(56 189 248 / 0.2), transparent 1.5px),
      radial-gradient(circle at 67% 31%, rgb(56 189 248 / 0.16), transparent 1.5px),
      radial-gradient(circle at 42% 58%, rgb(56 189 248 / 0.14), transparent 1.5px);
    background-size: auto, 34px 28px, 42px 36px, 30px 26px, 48px 40px;
    box-shadow:
      0 0 22px rgb(14 165 233 / 0.72),
      0 0 58px rgb(56 189 248 / 0.35),
      inset 0 0 52px rgb(56 189 248 / 0.13);
    opacity: 0.95;
  }

  .hero-card::after {
    left: clamp(0px, 2vw, 28px);
    right: auto;
    top: clamp(24px, 4vw, 58px);
    bottom: auto;
    width: min(72%, 560px);
    border-radius: 999px;
    background:
      linear-gradient(105deg, transparent 0 19%, rgb(56 189 248 / 0.1) 20% 21%, transparent 22% 100%),
      linear-gradient(16deg, transparent 0 44%, rgb(56 189 248 / 0.08) 45% 46%, transparent 47% 100%),
      radial-gradient(circle at 50% 50%, transparent 0 63%, rgb(14 165 233 / 0.22) 64% 65%, transparent 66%);
    filter: none;
    opacity: 0.72;
  }

  .hero-card .photo-card {
    position: absolute;
    z-index: 2;
    left: clamp(8px, 1.6vw, 30px);
    bottom: clamp(0px, 2vw, 24px);
    width: min(64%, 500px);
    aspect-ratio: auto;
    overflow: visible;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-card .photo-card::before {
    display: none;
  }

  .hero-card .profile-photo {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    object-fit: contain;
    filter:
      drop-shadow(0 28px 34px rgb(0 0 0 / 0.62))
      drop-shadow(0 0 18px rgb(56 189 248 / 0.12));
  }

  .europe-card {
    position: absolute;
    z-index: 4;
    left: auto;
    right: clamp(0px, 1.5vw, 24px);
    top: clamp(64px, 7vw, 108px);
    bottom: auto;
    display: flex;
    flex-direction: column;
    width: min(43%, 330px);
    min-height: clamp(410px, 31vw, 510px);
    margin: 0;
    border-color: rgb(148 163 184 / 0.24);
    border-radius: 18px;
    background:
      radial-gradient(circle at 0% 0%, rgb(56 189 248 / 0.14), transparent 15rem),
      linear-gradient(145deg, rgb(15 23 42 / 0.9), rgb(2 8 23 / 0.78));
    box-shadow:
      0 28px 70px rgb(0 0 0 / 0.46),
      0 0 34px rgb(56 189 248 / 0.12),
      inset 0 1px 0 rgb(255 255 255 / 0.08);
    padding: clamp(22px, 2vw, 30px);
  }

  .europe-card h2 {
    font-size: clamp(1rem, 1.08vw, 1.18rem);
  }

  .country-list {
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 28px 0;
  }

  .country-list li {
    gap: 12px;
    font-size: clamp(0.96rem, 1vw, 1.08rem);
  }

  .flag {
    width: 30px;
    height: 20px;
  }

  .experience-callout {
    display: block;
    margin-top: auto;
    padding-top: 28px;
  }

  .experience-callout strong {
    font-size: clamp(2rem, 2.25vw, 2.55rem);
  }

  .experience-callout span,
  .europe-card p {
    max-width: 15rem;
    font-size: clamp(0.94rem, 1vw, 1.05rem);
    line-height: 1.5;
  }

  .experience-callout span {
    margin-top: 12px;
    color: #f8fbff;
    font-weight: 850;
  }

  .europe-card p {
    margin-top: 28px;
    color: rgb(226 232 240 / 0.88);
    font-weight: 750;
  }
}

@media (min-width: 1280px) {
  .hero-card::before,
  .hero-card::after {
    width: min(74%, 620px);
  }

  .hero-card .photo-card {
    width: min(65%, 550px);
  }

  .europe-card {
    width: min(40%, 350px);
  }
}

/* Final portrait sizing pass: keep the photo dominant with the Europe card beside it. */
@media (min-width: 721px) {
  .hero-card::before,
  .hero-card::after {
    left: clamp(-12px, -1vw, 0px);
    top: clamp(22px, 3.8vw, 50px);
    width: min(82%, 610px);
  }

  .hero-card .photo-card {
    left: clamp(-26px, -2vw, -10px);
    top: clamp(56px, 5vw, 86px);
    bottom: auto;
    width: min(86%, 560px);
  }

  .europe-card {
    right: clamp(-4px, 0.6vw, 10px);
    top: clamp(72px, 7vw, 104px);
    width: min(46%, 360px);
  }

  .europe-card h2 {
    white-space: nowrap;
  }
}

@media (min-width: 1280px) {
  .hero-card .photo-card {
    width: min(86%, 590px);
  }

  .europe-card {
    width: min(44%, 370px);
  }
}

/* Hero compactness and feature-icon refinement. */
.hero-section {
  align-items: center;
}

.hero-copy .section-kicker {
  display: block;
  width: auto;
  margin-bottom: clamp(16px, 2vw, 24px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  color: #38bdf8;
  font-size: clamp(0.92rem, 1.08vw, 1.08rem);
  font-weight: 950;
  line-height: 1.15;
  text-shadow:
    0 0 18px rgb(56 189 248 / 0.42),
    0 2px 10px rgb(0 0 0 / 0.74);
}

.hero-copy .section-kicker::before {
  display: none;
}

.hero-copy h1 {
  max-width: 830px;
  font-size: clamp(4.05rem, 5vw, 5.65rem);
  line-height: 1.04;
  text-shadow: 0 6px 16px rgb(0 0 0 / 0.58);
}

.hero-text {
  max-width: 760px;
  margin-top: clamp(20px, 2vw, 28px);
  font-size: clamp(1.15rem, 1.38vw, 1.34rem);
  line-height: 1.62;
  font-weight: 650;
  text-shadow: 0 3px 10px rgb(0 0 0 / 0.48);
}

.hero-features {
  gap: clamp(22px, 3.6vw, 54px);
  max-width: 850px;
  margin-top: clamp(26px, 3.4vw, 42px);
}

.hero-feature {
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  color: #f8fbff;
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  font-weight: 900;
  line-height: 1.18;
  text-shadow: 0 3px 10px rgb(0 0 0 / 0.58);
}

.feature-icon {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #38bdf8;
  filter:
    drop-shadow(0 0 10px rgb(56 189 248 / 0.62))
    drop-shadow(0 4px 8px rgb(0 0 0 / 0.68));
}

.feature-icon svg {
  width: 50px;
  height: 50px;
  stroke-width: 1.9;
}

.hero-actions.hero-cta {
  margin-top: clamp(30px, 3.2vw, 44px);
}

@media (min-width: 981px) {
  .hero-section {
    min-height: auto;
    padding-top: clamp(42px, 4.8vw, 74px);
    padding-bottom: clamp(26px, 3.2vw, 44px);
  }
}

@media (min-width: 1280px) {
  .hero-section {
    grid-template-columns: minmax(0, 1.05fr) minmax(520px, 0.95fr);
    gap: clamp(26px, 3vw, 46px);
    padding-top: clamp(42px, 4vw, 62px);
    padding-bottom: clamp(20px, 2.4vw, 34px);
  }

  .hero-copy h1 {
    font-size: clamp(4.4rem, 4.5vw, 5.45rem);
  }

  .hero-card {
    min-height: clamp(520px, 33vw, 610px);
  }

  .hero-card::before,
  .hero-card::after {
    top: clamp(0px, 1vw, 18px);
    width: min(84%, 640px);
  }

  .hero-card .photo-card {
    top: clamp(8px, 1.4vw, 28px);
    width: min(88%, 625px);
  }

  .europe-card {
    top: clamp(54px, 4.8vw, 82px);
  }
}

@media (max-width: 1279px) and (min-width: 721px) {
  .hero-section {
    min-height: auto;
    padding-top: clamp(34px, 5vw, 52px);
    padding-bottom: clamp(24px, 3.8vw, 42px);
  }

  .hero-copy h1 {
    font-size: clamp(3.35rem, 5.6vw, 4.85rem);
  }

  .hero-card {
    min-height: clamp(500px, 55vw, 590px);
  }
}

@media (max-width: 1080px) {
  .hero-features {
    gap: 18px 32px;
    max-width: 640px;
  }
}

@media (max-width: 720px) {
  .hero-section {
    padding-top: 28px;
    padding-bottom: 22px;
  }

  .hero-copy .section-kicker {
    max-width: 19rem;
    margin-bottom: 16px;
    padding-left: 0;
    font-size: 0.72rem;
    line-height: 1.3;
  }

  .hero-copy .section-kicker::before {
    display: none;
  }

  .kicker-part {
    display: block;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 10vw, 3rem);
    line-height: 1.08;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.56;
  }

  .hero-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
    margin-top: 24px;
  }

  .hero-feature {
    display: grid;
    grid-template-columns: none;
    justify-items: center;
    gap: 8px;
    font-size: 0.86rem;
    text-align: center;
  }

  .feature-icon {
    width: 46px;
    height: 46px;
  }

  .feature-icon svg {
    width: 40px;
    height: 40px;
  }

  .hero-card {
    padding-top: 0;
  }
}

@media (max-width: 390px) {
  .hero-features {
    grid-template-columns: 1fr;
  }
}

/* Final hero fit pass: remove excess top/bottom space on desktop. */
@media (min-width: 981px) {
  main {
    padding-top: 22px;
  }

  .hero-section {
    align-items: start;
    min-height: auto;
    padding-top: clamp(30px, 3.1vw, 44px);
    padding-bottom: clamp(18px, 2vw, 30px);
  }

  .hero-copy {
    padding-top: clamp(8px, 1vw, 16px);
  }

  .hero-copy .section-kicker {
    margin-bottom: clamp(14px, 1.55vw, 22px);
    font-size: clamp(0.86rem, 0.94vw, 1rem);
  }

  .hero-copy h1 {
    max-width: 760px;
    font-size: clamp(3.4rem, 4.1vw, 4.85rem);
    line-height: 1.05;
  }

  .hero-text {
    max-width: 710px;
    margin-top: clamp(16px, 1.6vw, 24px);
    font-size: clamp(1.03rem, 1.16vw, 1.18rem);
    line-height: 1.58;
  }

  .hero-features {
    gap: clamp(16px, 2vw, 28px);
    max-width: 790px;
    margin-top: clamp(22px, 2.3vw, 32px);
  }

  .hero-feature {
    font-size: clamp(0.88rem, 0.94vw, 0.98rem);
  }

  .feature-icon {
    width: 52px;
    height: 52px;
  }

  .feature-icon svg {
    width: 44px;
    height: 44px;
  }

  .hero-actions.hero-cta {
    margin-top: clamp(24px, 2.4vw, 34px);
  }

  .hero-card {
    align-self: start;
    min-height: clamp(470px, 31vw, 565px);
  }

  .hero-card::before,
  .hero-card::after {
    top: clamp(-8px, 0.35vw, 8px);
    width: min(83%, 600px);
  }

  .hero-card .photo-card {
    top: clamp(-2px, 0.7vw, 12px);
    width: min(84%, 570px);
  }

  .europe-card {
    top: clamp(42px, 4.2vw, 70px);
    width: min(43%, 360px);
  }
}

@media (min-width: 1440px) {
  .hero-section {
    grid-template-columns: minmax(0, 1.08fr) minmax(500px, 0.92fr);
  }

  .hero-copy h1 {
    font-size: clamp(4rem, 4.15vw, 4.95rem);
  }

  .hero-card .photo-card {
    width: min(86%, 600px);
  }
}

@media (min-width: 981px) {
  .hero-section {
    padding-top: clamp(24px, 2.2vw, 34px);
    padding-bottom: clamp(16px, 1.7vw, 26px);
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-card {
    min-height: clamp(455px, 30vw, 545px);
  }

  .hero-card::before,
  .hero-card::after {
    top: clamp(-14px, -0.2vw, -4px);
  }

  .hero-card .photo-card {
    top: clamp(-18px, -0.4vw, -6px);
    width: min(88%, 610px);
  }

  .europe-card {
    top: clamp(34px, 3.6vw, 58px);
  }
}

@media (min-width: 1440px) {
  .hero-card .photo-card {
    width: min(90%, 640px);
  }
}

@media (max-width: 720px) {
  .hero-copy h1 {
    font-size: clamp(1.95rem, 7.8vw, 2.12rem);
    line-height: 1.09;
  }

  .hero-mobile-break {
    display: none;
  }

  .hero-text {
    font-size: 0.96rem;
  }

  .hero-feature {
    font-size: 0.82rem;
  }

  .hero-actions.hero-cta {
    margin-top: 22px;
  }
}

/* Hero profile card proof list. */
.profile-proof-list {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0 0 24px;
  border-bottom: 1px solid rgb(148 163 184 / 0.26);
  list-style: none;
}

.profile-proof-list li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  color: #f8fbff;
  font-size: clamp(1rem, 1.03vw, 1.15rem);
  font-weight: 650;
  line-height: 1.42;
}

.profile-proof-list li:first-child {
  padding-bottom: 18px;
  border-bottom: 1px solid rgb(148 163 184 / 0.26);
}

.profile-proof-list .pin-icon {
  width: 32px;
  height: 32px;
  color: #38bdf8;
  filter: drop-shadow(0 0 12px rgb(56 189 248 / 0.42));
}

.profile-proof-list .pin-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.8;
}

.europe-card .profile-proof-list + p {
  max-width: 100%;
  margin-top: 22px;
  color: rgb(248 251 255 / 0.9);
  font-size: clamp(1rem, 1.03vw, 1.12rem);
  font-weight: 520;
  line-height: 1.55;
}

.europe-card .profile-proof-list + p span {
  color: #38bdf8;
}

@media (min-width: 721px) {
  .europe-card {
    justify-content: center;
    min-height: clamp(390px, 28vw, 455px);
  }
}

@media (max-width: 720px) {
  .profile-proof-list {
    gap: 16px;
    padding-bottom: 20px;
  }

  .profile-proof-list li {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
    font-size: 0.98rem;
  }

  .profile-proof-list li:first-child {
    padding-bottom: 16px;
  }

  .profile-proof-list .pin-icon {
    width: 28px;
    height: 28px;
  }

  .profile-proof-list .pin-icon svg {
    width: 25px;
    height: 25px;
  }
}

/* Credibility strip logo pass. */
.credibility-strip {
  position: relative;
  isolation: isolate;
  grid-template-columns: minmax(150px, 0.72fr) minmax(330px, 1.45fr) minmax(490px, 2.25fr);
  gap: clamp(18px, 2.3vw, 36px);
  min-height: 136px;
  overflow: hidden;
  border-color: rgb(148 163 184 / 0.22);
  border-radius: 22px;
  background:
    radial-gradient(circle at 68% 0%, rgb(56 189 248 / 0.13), transparent 25rem),
    linear-gradient(135deg, rgb(2 8 23 / 0.86), rgb(15 23 42 / 0.56) 54%, rgb(2 8 23 / 0.86));
  box-shadow:
    0 26px 82px rgb(0 0 0 / 0.34),
    0 0 44px rgb(56 189 248 / 0.08),
    inset 0 1px 0 rgb(255 255 255 / 0.06);
  padding: clamp(22px, 2vw, 30px) clamp(24px, 2.7vw, 42px);
}

.credibility-strip::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgb(56 189 248 / 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgb(56 189 248 / 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(90deg, transparent, rgb(0 0 0 / 0.76) 22%, rgb(0 0 0 / 0.55), transparent);
  content: "";
}

.credibility-intro span {
  display: block;
  color: #38bdf8;
  font-size: clamp(0.74rem, 0.9vw, 0.9rem);
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: 0 0 18px rgb(56 189 248 / 0.38);
}

.credibility-intro p {
  max-width: 11rem;
  margin-top: 12px;
  color: rgb(248 251 255 / 0.9);
  font-size: clamp(0.92rem, 1vw, 1.05rem);
  font-weight: 700;
  line-height: 1.45;
}

.company-row {
  display: grid;
  grid-template-columns: 0.95fr 1.85fr 0.76fr 0.86fr;
  gap: clamp(12px, 1.35vw, 22px);
  align-items: center;
  border-right: 1px solid rgb(148 163 184 / 0.24);
  padding-right: clamp(20px, 2vw, 32px);
}

.company-logo {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 54px;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.company-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 5px 10px rgb(0 0 0 / 0.5));
}

.logo-sony img {
  max-height: 34px;
  filter:
    brightness(0) invert(1)
    drop-shadow(0 5px 10px rgb(0 0 0 / 0.52));
}

.logo-thomson img {
  max-height: 62px;
  filter:
    grayscale(1) brightness(1.85)
    drop-shadow(0 5px 10px rgb(0 0 0 / 0.42));
}

.logo-splunk img {
  max-height: 56px;
  border-radius: 999px;
}

.logo-cisco img {
  max-height: 46px;
  filter:
    brightness(0) invert(1)
    drop-shadow(0 5px 10px rgb(0 0 0 / 0.52));
}

.credibility-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: start;
}

.credibility-stats div {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    "icon detail";
  column-gap: 10px;
  row-gap: 5px;
  align-items: start;
  min-width: 0;
  border-left: 1px solid rgb(56 189 248 / 0.16);
  padding: 0 clamp(8px, 0.8vw, 14px);
}

.credibility-stats div:first-child {
  border-left: 0;
  padding-left: 0;
}

.credibility-stats dt {
  grid-area: title;
  min-width: 0;
  margin: 0;
  color: #f8fbff;
  font-size: clamp(0.86rem, 0.9vw, 0.98rem);
  font-weight: 860;
  line-height: 1.18;
  overflow-wrap: normal;
  word-break: normal;
  text-shadow: 0 3px 10px rgb(0 0 0 / 0.48);
}

.credibility-stats dt strong {
  display: block;
  color: #38bdf8;
  font-size: clamp(1.7rem, 2vw, 2.15rem);
  font-weight: 950;
  line-height: 1;
  text-shadow:
    0 0 18px rgb(56 189 248 / 0.44),
    0 4px 10px rgb(0 0 0 / 0.42);
}

.credibility-stats dt .region-label {
  max-width: 8.6rem;
  font-size: clamp(1.12rem, 1.25vw, 1.34rem);
  line-height: 1.05;
}

.credibility-stats dt .stat-title {
  max-width: 9rem;
  color: #f8fbff;
  font-size: clamp(0.92rem, 0.98vw, 1.04rem);
  font-weight: 820;
  line-height: 1.32;
  text-shadow: 0 3px 10px rgb(0 0 0 / 0.48);
}

.stat-icon {
  grid-area: icon;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 1px solid rgb(56 189 248 / 0.48);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgb(56 189 248 / 0.16), transparent 64%),
    rgb(14 165 233 / 0.07);
  box-shadow:
    0 0 24px rgb(56 189 248 / 0.18),
    inset 0 0 20px rgb(56 189 248 / 0.1);
}

.stat-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: #38bdf8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.credibility-stats dd {
  grid-area: detail;
  margin: 0;
  color: rgb(248 251 255 / 0.82);
  font-size: clamp(0.72rem, 0.76vw, 0.8rem);
  font-weight: 760;
  line-height: 1.25;
  overflow-wrap: normal;
  word-break: normal;
}

@media (max-width: 1180px) {
  .credibility-strip {
    grid-template-columns: 1fr;
  }

  .company-row {
    border-right: 0;
    border-bottom: 1px solid rgb(148 163 184 / 0.2);
    padding: 0 0 18px;
  }

  .credibility-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 0;
  }

  .credibility-stats div:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 720px) {
  .credibility-strip {
    max-width: 360px;
    gap: 20px;
    padding: 20px;
  }

  .credibility-intro p {
    max-width: 100%;
  }

  .company-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 20px;
  }

  .company-logo {
    min-height: 44px;
  }

  .logo-sony img {
    max-height: 27px;
  }

  .logo-thomson img {
    max-height: 42px;
  }

  .logo-splunk img {
    max-height: 48px;
  }

  .logo-cisco img {
    max-height: 38px;
  }

  .credibility-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .credibility-stats div,
  .credibility-stats div:nth-child(odd) {
    grid-template-columns: 40px minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "icon detail";
    align-content: center;
    align-items: center;
    column-gap: 8px;
    row-gap: 3px;
    justify-items: start;
    min-height: 88px;
    border: 1px solid rgb(56 189 248 / 0.18);
    border-radius: 18px;
    background: rgb(2 8 23 / 0.34);
    padding: 12px 10px;
    text-align: left;
  }

  .credibility-stats div:first-child {
    border: 1px solid rgb(56 189 248 / 0.18);
    padding: 12px 10px;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
  }

  .credibility-stats dt,
  .credibility-stats dd {
    text-align: left;
  }

  .credibility-stats dt {
    align-self: end;
    font-size: clamp(0.78rem, 2.4vw, 0.9rem);
  }

  .credibility-stats dt strong {
    font-size: clamp(1.46rem, 5vw, 1.78rem);
  }

  .credibility-stats dd {
    align-self: start;
    font-size: clamp(0.66rem, 2.1vw, 0.76rem);
  }

  .stat-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* Remove the outer hero background card while keeping the glow/grid scene. */
.hero-section {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-section::after {
  background: radial-gradient(circle at 74% 45%, rgb(56 189 248 / 0.24), transparent 21rem);
}

/* Static role and rotating hero prompt. */
.hero-role {
  width: fit-content;
  max-width: 100%;
  margin: 0 0 6px;
  color: #38bdf8;
  font-family:
    "Avenir Next Condensed",
    "Avenir Next",
    "Segoe UI",
    ui-sans-serif,
    system-ui,
    sans-serif;
  font-size: clamp(0.75rem, 0.86vw, 0.9rem);
  font-style: italic;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow:
    0 0 16px rgb(56 189 248 / 0.46),
    0 2px 10px rgb(0 0 0 / 0.72);
}

.hero-typewriter.hero-typewriter {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: min(100%, 46rem);
  min-height: 1.45em;
  margin: 0 0 clamp(18px, 2vw, 26px);
  overflow: hidden;
  color: #bae6fd;
  font-family:
    "SFMono-Regular",
    "JetBrains Mono",
    "Cascadia Code",
    "Menlo",
    "Consolas",
    monospace;
  font-size: clamp(0.86rem, 0.95vw, 1rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
  text-shadow:
    0 0 14px rgb(56 189 248 / 0.26),
    0 2px 10px rgb(0 0 0 / 0.68);
}

.typewriter-text {
  display: inline-block;
  max-width: calc(100% - 8px);
  overflow: hidden;
  white-space: nowrap;
}

.typewriter-text::before {
  color: #38bdf8;
  content: "> ";
}

.typewriter-caret {
  width: 2px;
  height: 1.1em;
  border-radius: 999px;
  background: #38bdf8;
  box-shadow:
    0 0 10px rgb(56 189 248 / 0.75),
    0 0 20px rgb(14 165 233 / 0.45);
  animation: typewriterCaretBlink 760ms steps(1, end) infinite;
}

@keyframes typewriterCaretBlink {
  0%,
  48% {
    opacity: 1;
  }

  49%,
  100% {
    opacity: 0;
  }
}

@media (max-width: 720px) {
  .hero-role {
    width: fit-content;
    max-width: 100%;
    margin-bottom: 10px;
    border: 1px solid rgb(56 189 248 / 0.34);
    border-radius: 999px;
    background:
      linear-gradient(135deg, rgb(56 189 248 / 0.18), rgb(14 165 233 / 0.08)),
      rgb(2 8 23 / 0.52);
    box-shadow:
      0 0 22px rgb(56 189 248 / 0.16),
      inset 0 1px 0 rgb(255 255 255 / 0.08);
    padding: 7px 10px;
    font-size: clamp(0.58rem, 2.45vw, 0.68rem);
    line-height: 1.22;
  }

  .hero-typewriter.hero-typewriter {
    width: 100%;
    font-size: clamp(0.62rem, 2.55vw, 0.78rem);
  }
}

@media (max-width: 720px) {
  .hero-features {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    gap: 10px;
    max-width: 100%;
  }

  .hero-feature {
    grid-template-columns: 1fr;
    min-height: 0;
    justify-items: center;
    gap: 6px;
    padding: 0;
    font-size: clamp(0.62rem, 2.55vw, 0.72rem);
    line-height: 1.15;
    text-align: center;
  }

  .feature-icon {
    width: 36px;
    height: 36px;
  }

  .feature-icon svg {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 360px) {
  .hero-features {
    gap: 6px;
  }

  .hero-feature {
    font-size: 0.58rem;
  }

  .company-row {
    grid-template-columns: 1.15fr 1.45fr 0.72fr 0.86fr;
    gap: 6px;
  }

  .logo-sony img {
    max-height: 19px;
  }

  .logo-thomson img {
    max-height: 28px;
  }

  .logo-splunk img {
    max-height: 30px;
  }

  .logo-cisco img {
    max-height: 24px;
  }
}

/* Hero and credibility interaction polish. */
.hero-feature,
.feature-icon,
.hero-feature > span:last-child,
.hero-cta .button,
.hero-cta .button .button-icon,
.hero-card::before,
.hero-card::after,
.hero-card .profile-photo,
.europe-card,
.profile-proof-list li,
.profile-proof-list .pin-icon,
.company-logo,
.company-logo::after,
.company-logo img,
.credibility-stats div,
.credibility-stats dt,
.credibility-stats dd,
.stat-icon,
.stat-icon svg {
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    filter 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.hero-feature {
  position: relative;
}

.hero-feature::after {
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: #38bdf8;
  box-shadow: 0 0 14px rgb(56 189 248 / 0.55);
  content: "";
  opacity: 0;
  transform: translateX(-50%) scaleX(0.35);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.hero-card .profile-photo {
  transform-origin: center bottom;
}

.profile-proof-list li {
  position: relative;
  isolation: isolate;
}

.profile-proof-list li::before {
  position: absolute;
  inset: -8px -10px;
  z-index: -1;
  border: 1px solid rgb(56 189 248 / 0);
  border-radius: 14px;
  background: rgb(14 165 233 / 0);
  content: "";
  opacity: 0;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    opacity 180ms ease;
}

.company-logo {
  position: relative;
  isolation: isolate;
}

.company-logo::after {
  position: absolute;
  inset: 2px 0;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(circle, rgb(56 189 248 / 0.18), transparent 68%);
  content: "";
  opacity: 0;
  transform: scale(0.82);
}

.company-logo img {
  opacity: 0.88;
}

.credibility-stats div {
  position: relative;
  border-radius: 16px;
}

.stat-icon {
  transform-origin: center;
}

@media (hover: hover) and (pointer: fine) {
  .hero-feature:hover {
    color: #fff;
    transform: translateY(-3px);
  }

  .hero-feature:hover::after {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
  }

  .hero-feature:hover .feature-icon {
    color: #7dd3fc;
    filter:
      drop-shadow(0 0 16px rgb(56 189 248 / 0.72))
      drop-shadow(0 7px 12px rgb(0 0 0 / 0.62));
    transform: translateY(-2px) scale(1.04);
  }

  .hero-feature:hover > span:last-child {
    color: #fff;
    text-shadow:
      0 0 18px rgb(56 189 248 / 0.24),
      0 3px 10px rgb(0 0 0 / 0.58);
  }

  .hero-cta .button:hover,
  .hero-cta .button:focus-visible {
    transform: translateY(-2px);
  }

  .hero-cta .button:hover .button-icon,
  .hero-cta .button:focus-visible .button-icon {
    transform: translateX(4px);
  }

  .hero-cta .button.secondary:hover,
  .hero-cta .button.secondary:focus-visible {
    border-color: rgb(56 189 248 / 0.7);
    background: rgb(14 165 233 / 0.1);
  }

  .hero-card:hover::before {
    border-color: rgb(125 211 252 / 0.92);
    box-shadow:
      0 0 34px rgb(14 165 233 / 0.82),
      0 0 86px rgb(56 189 248 / 0.38),
      inset 0 0 58px rgb(56 189 248 / 0.18);
  }

  .hero-card:hover::after {
    opacity: 0.9;
    transform: translate(2%, -8%) scale(1.015);
  }

  .hero-card:hover .profile-photo {
    filter:
      drop-shadow(0 32px 38px rgb(0 0 0 / 0.66))
      drop-shadow(0 0 24px rgb(56 189 248 / 0.2));
    transform: translateY(-2px) scale(1.015);
  }

  .europe-card:hover {
    border-color: rgb(56 189 248 / 0.52);
    box-shadow:
      0 30px 76px rgb(0 0 0 / 0.48),
      0 0 46px rgb(56 189 248 / 0.2),
      inset 0 1px 0 rgb(255 255 255 / 0.1);
    transform: translateY(-3px);
  }

  .profile-proof-list li:hover::before {
    border-color: rgb(56 189 248 / 0.16);
    background: rgb(14 165 233 / 0.07);
    opacity: 1;
  }

  .profile-proof-list li:hover .pin-icon {
    color: #7dd3fc;
    filter: drop-shadow(0 0 16px rgb(56 189 248 / 0.62));
    transform: translateX(2px);
  }

  .company-logo:hover {
    transform: translateY(-2px);
  }

  .company-logo:hover::after {
    opacity: 1;
    transform: scale(1);
  }

  .company-logo:hover img {
    opacity: 1;
    transform: translateY(-1px);
  }

  .credibility-stats div:hover {
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .credibility-stats div:hover .stat-icon {
    border-color: rgb(125 211 252 / 0.78);
    background:
      radial-gradient(circle, rgb(56 189 248 / 0.22), transparent 66%),
      rgb(14 165 233 / 0.1);
    box-shadow:
      0 0 28px rgb(56 189 248 / 0.3),
      inset 0 0 24px rgb(56 189 248 / 0.14);
    transform: translateY(-1px) scale(1.05);
  }

  .credibility-stats div:hover .stat-icon svg {
    stroke: #7dd3fc;
  }

  .credibility-stats div:hover dt,
  .credibility-stats div:hover dd {
    color: #fff;
  }

  .credibility-stats div:hover dt strong {
    color: #7dd3fc;
  }
}

/* Final What I Build fit pass: later section padding rules should not recreate an outer card. */
.build-section.build-section {
  border: 0;
  background: transparent;
  box-shadow: none;
}

@media (max-width: 720px) {
  .build-section.build-section {
    padding-right: 0;
    padding-left: 0;
  }

  .build-grid {
    gap: 12px;
  }
}

@media (max-width: 430px) {
  .build-section.build-section {
    padding: 18px 0;
  }

  .build-card {
    padding: 16px 12px;
  }

  .build-card p {
    font-size: 0.73rem;
  }
}

/* Final My Process fit pass. */
@media (max-width: 430px) {
  .process-section.process-section {
    padding: 22px 16px;
  }

  .process-section .process-list::before {
    left: 31px;
  }

  .process-step {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 14px;
  }

  .process-node {
    width: 62px;
    height: 62px;
  }

  .process-node svg {
    width: 29px;
    height: 29px;
  }

  .process-card h3 {
    font-size: 1rem;
  }
}

/* Final hero portrait composition: globe behind, photo in front, proof card beside. */
@media (min-width: 721px) {
  .hero-card {
    min-height: clamp(500px, 32vw, 600px);
    isolation: isolate;
    overflow: visible;
  }

  .hero-card::before {
    z-index: 0;
    left: clamp(-198px, -10vw, -122px);
    top: clamp(-154px, -7.2vw, -86px);
    width: min(126%, 920px);
    aspect-ratio: 1;
    border: 0;
    border-radius: 0;
    background: url("assets/business-automation-globe-background.webp") center 48% / auto 136% no-repeat;
    box-shadow: none;
    opacity: 0.98;
  }

  .hero-card::after {
    z-index: 1;
    left: clamp(-198px, -10vw, -122px);
    top: clamp(-154px, -7.2vw, -86px);
    width: min(126%, 920px);
    aspect-ratio: 1;
    border-radius: 999px;
    background: none;
    filter: none;
    opacity: 0;
    pointer-events: none;
  }

  .hero-card .photo-card {
    z-index: 3;
    left: clamp(-72px, -4.2vw, -34px);
    top: clamp(148px, 9.3vw, 188px);
    bottom: auto;
    width: min(86%, 660px);
  }

  .hero-card .photo-card::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;
    height: 18%;
    background: radial-gradient(ellipse at 50% 100%, rgb(2 8 23 / 0.94) 0 24%, rgb(2 8 23 / 0.58) 48%, transparent 82%);
    content: "";
    pointer-events: none;
  }

  .hero-card .profile-photo {
    width: 100%;
    -webkit-mask-image: linear-gradient(180deg, #000 0 90%, rgb(0 0 0 / 0.92) 95%, rgb(0 0 0 / 0.46) 99%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0 90%, rgb(0 0 0 / 0.92) 95%, rgb(0 0 0 / 0.46) 99%, transparent 100%);
    filter:
      drop-shadow(0 30px 34px rgb(0 0 0 / 0.66))
      drop-shadow(0 0 18px rgb(56 189 248 / 0.14));
  }

  .europe-card {
    z-index: 5;
    right: clamp(6px, 1.2vw, 22px);
    top: clamp(234px, 15vw, 286px);
    width: min(42%, 315px);
    min-height: auto;
    padding: clamp(18px, 1.45vw, 26px);
  }

  .profile-proof-list {
    gap: clamp(12px, 1vw, 16px);
    padding-bottom: clamp(15px, 1.1vw, 20px);
  }

  .profile-proof-list li {
    grid-template-columns: clamp(24px, 1.8vw, 30px) minmax(0, 1fr);
    gap: 11px;
    font-size: clamp(0.86rem, 0.86vw, 1rem);
    line-height: 1.38;
  }

  .profile-proof-list li:first-child {
    padding-bottom: clamp(12px, 1vw, 16px);
  }

  .profile-proof-list .pin-icon {
    width: clamp(24px, 1.8vw, 30px);
    height: clamp(24px, 1.8vw, 30px);
  }

  .profile-proof-list .pin-icon svg {
    width: clamp(22px, 1.6vw, 27px);
    height: clamp(22px, 1.6vw, 27px);
  }

  .europe-card .profile-proof-list + p {
    margin-top: clamp(14px, 1.15vw, 20px);
    font-size: clamp(0.86rem, 0.85vw, 0.98rem);
    line-height: 1.48;
  }
}

@media (min-width: 1440px) {
  .hero-card {
    min-height: clamp(530px, 31vw, 630px);
  }

  .hero-card::before,
  .hero-card::after {
    left: clamp(-255px, -12vw, -182px);
    top: clamp(-170px, -6.8vw, -112px);
    width: min(128%, 960px);
  }

  .hero-card::before {
    background-size: auto 132%;
    background-position: center 49%;
  }

  .hero-card .photo-card {
    left: clamp(-96px, -5.6vw, -52px);
    top: clamp(116px, 5.2vw, 142px);
    width: min(88%, 700px);
  }

  .europe-card {
    right: clamp(10px, 1.3vw, 28px);
    top: clamp(208px, 10.4vw, 252px);
    width: min(41%, 325px);
  }
}

@media (max-width: 980px) and (min-width: 721px) {
  .europe-card {
    right: clamp(-22px, -1.4vw, -8px);
    width: min(37%, 290px);
  }
}

@media (max-width: 720px) {
  .hero-section {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-section::after {
    inset: -12px -34px -54px;
    background:
      linear-gradient(180deg, rgb(1 5 12 / 0.8) 0%, rgb(1 5 12 / 0.44) 36%, rgb(1 5 12 / 0.64) 100%),
      linear-gradient(90deg, rgb(1 5 12 / 0.58) 0%, rgb(1 5 12 / 0.16) 48%, rgb(1 5 12 / 0.5) 100%),
      radial-gradient(circle at 58% 58%, rgb(56 189 248 / 0.28), transparent 56%),
      url("assets/business-automation-globe-background.webp") center bottom / 185% auto no-repeat;
    opacity: 1;
    -webkit-mask-image: radial-gradient(ellipse at 50% 58%, #000 0 48%, rgb(0 0 0 / 0.68) 62%, transparent 80%);
    mask-image: radial-gradient(ellipse at 50% 58%, #000 0 48%, rgb(0 0 0 / 0.68) 62%, transparent 80%);
  }

  .hero-card {
    display: none;
  }

  .hero-actions.hero-cta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
  }

  .hero-cta .button {
    width: auto;
    min-width: 0;
    min-height: 52px;
    gap: 7px;
    padding: 0 10px;
    font-size: clamp(0.78rem, 3.2vw, 0.9rem);
    white-space: nowrap;
  }

  .hero-cta .button-icon svg {
    width: 16px;
    height: 16px;
  }

  .company-row {
    grid-template-columns: 1.15fr 1.45fr 0.72fr 0.86fr;
    gap: 8px;
  }

  .company-logo {
    min-height: 36px;
  }

  .logo-sony img {
    max-height: 22px;
  }

  .logo-thomson img {
    max-height: 32px;
  }

  .logo-splunk img {
    max-height: 34px;
  }

  .logo-cisco img {
    max-height: 28px;
  }

  .credibility-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .credibility-stats div,
  .credibility-stats div:nth-child(odd),
  .credibility-stats div:first-child {
    grid-template-columns: 38px minmax(0, 1fr);
    column-gap: 9px;
    border-top: 1px solid rgb(56 189 248 / 0.14);
    padding: 14px 0 0;
  }

  .credibility-stats div:nth-child(-n + 2) {
    border-top: 0;
    padding-top: 0;
  }

  .stat-icon {
    width: 38px;
    height: 38px;
  }

  .stat-icon svg {
    width: 20px;
    height: 20px;
  }

  .industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .industry-card {
    min-height: 128px;
    gap: 12px;
    padding: 16px 10px;
  }

  .industry-card h3 {
    font-size: clamp(0.78rem, 3.1vw, 0.94rem);
    line-height: 1.18;
  }

  .contact-section.contact-redesign {
    padding: 18px;
    border-radius: 18px;
    background:
      radial-gradient(circle at 10% 0%, rgb(56 189 248 / 0.13), transparent 11rem),
      linear-gradient(145deg, rgb(15 23 42 / 0.58), rgb(2 8 23 / 0.74));
    box-shadow:
      0 18px 52px rgb(0 0 0 / 0.32),
      inset 0 1px 0 rgb(255 255 255 / 0.06);
  }

  .contact-panel {
    gap: 16px;
  }

  .contact-copy {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .contact-brand-mark img {
    transform: scale(1.8);
  }

  .contact-copy h2 {
    font-size: clamp(1.38rem, 6.2vw, 1.82rem);
    line-height: 1.08;
  }

  #contact-title br {
    display: none;
  }

  .contact-copy p {
    margin-top: 8px;
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .contact-card {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 92px;
    gap: 9px;
    border-radius: 14px;
    padding: 12px 10px;
    text-align: center;
  }

  .contact-card-icon {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }

  .contact-card-icon svg {
    width: 18px;
    height: 18px;
  }

  .contact-card strong {
    font-size: 0.86rem;
  }

  .contact-card span span {
    display: none;
  }

  .contact-response-time {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 2px;
    font-size: 0.82rem;
    text-align: center;
  }

  .hero-card::before {
    border: 0;
    border-radius: 0;
    background: url("assets/business-automation-globe-background.webp") center / auto 132% no-repeat;
    box-shadow: none;
    opacity: 0.98;
  }

  .hero-card::after {
    background: none;
    opacity: 0;
  }
}

@media (max-width: 360px) {
  .company-row {
    grid-template-columns: 1.15fr 1.45fr 0.72fr 0.86fr;
    gap: 6px;
  }

  .logo-sony img {
    max-height: 19px;
  }

  .logo-thomson img {
    max-height: 28px;
  }

  .logo-splunk img {
    max-height: 30px;
  }

  .logo-cisco img {
    max-height: 24px;
  }

  .credibility-stats {
    gap: 12px 10px;
  }

  .credibility-stats div,
  .credibility-stats div:nth-child(odd),
  .credibility-stats div:first-child {
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 8px;
  }

  .stat-icon {
    width: 34px;
    height: 34px;
  }

  .stat-icon svg {
    width: 18px;
    height: 18px;
  }

  .industries-grid {
    gap: 10px;
  }

  .industry-card {
    min-height: 118px;
    padding: 14px 8px;
  }

  .industry-card h3 {
    font-size: 0.78rem;
  }
}

@media (max-width: 680px) {
  .project-card {
    gap: 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .project-card:hover,
  .project-card:focus-within {
    transform: none;
    border-color: transparent;
    box-shadow: none;
  }

  .project-content {
    gap: 10px;
    padding: 0 4px;
  }

  .project-content h3 {
    font-size: clamp(1.2rem, 5.8vw, 1.55rem);
  }

  .project-details[open] {
    gap: 16px;
    padding-bottom: 2px;
  }

  .project-details > summary {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  .project-story {
    gap: 12px;
    margin-top: 2px;
  }

  .story-step {
    min-width: 0;
    padding: 13px;
  }

  .project-capabilities {
    gap: 11px;
    margin-top: 5px;
    margin-bottom: 3px;
  }

  .project-capabilities ul {
    align-items: flex-start;
    gap: 9px 7px;
  }

  .project-capabilities li {
    max-width: 100%;
    padding: 8px 9px;
    font-size: 0.7rem;
    line-height: 1.15;
  }

  .project-highlight {
    width: 100%;
    margin-top: 8px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .hero-card:hover::before {
    border-color: transparent;
    box-shadow: none;
  }
}

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

  .hero-feature,
  .feature-icon,
  .hero-feature::after,
  .hero-feature > span:last-child,
  .hero-cta .button,
  .hero-cta .button .button-icon,
  .hero-card::before,
  .hero-card::after,
  .hero-card .profile-photo,
  .europe-card,
  .profile-proof-list li,
  .profile-proof-list li::before,
  .profile-proof-list .pin-icon,
  .company-logo,
  .company-logo::after,
  .company-logo img,
  .credibility-stats div,
  .credibility-stats dt,
  .credibility-stats dd,
  .stat-icon,
  .stat-icon svg {
    transition: none;
  }
}

/* Mobile overflow containment: sizing first, overflow clipping only as a fallback. */
*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
  }

  body {
    overflow-x: hidden;
  }

  .site-header {
    width: 100%;
    max-width: 100%;
    margin: 0;
    transform: none;
  }

  main,
  .site-footer {
    width: min(100% - clamp(24px, 6vw, 34px), 100%);
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-section,
  .credibility-strip,
  .section-block,
  .contact-section,
  .pre-contact-grid,
  .project-carousel,
  .project-viewport,
  .project-grid,
  .project-card,
  .site-footer {
    max-width: 100%;
  }

  .hero-section,
  .credibility-strip,
  .section-block,
  .contact-section,
  .pre-contact-grid {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-section,
  .section-block,
  .contact-section {
    padding-right: clamp(16px, 5vw, 26px);
    padding-left: clamp(16px, 5vw, 26px);
  }

  .hero-section::before,
  .hero-section::after {
    right: 0;
    left: 0;
    width: auto;
    max-width: 100%;
  }

  .project-carousel {
    width: 100%;
  }

  .project-viewport {
    overflow: hidden;
  }

  .project-grid {
    max-width: 100%;
  }

  .project-card {
    min-width: 100%;
    width: 100%;
  }

  .about-section {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .about-content,
  .contact-panel,
  .contact-copy,
  .project-content,
  .project-details,
  .story-step,
  .next-section,
  .why-section,
  .industry-card,
  .build-card,
  .process-card {
    min-width: 0;
    max-width: 100%;
  }

  .build-card {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .build-card h3,
  .build-card p {
    max-width: 24rem;
  }

  .build-icon {
    margin-right: auto;
    margin-left: auto;
  }

  .brand-mark {
    overflow: hidden;
  }

  .brand-mark img {
    transform: scale(1.78);
  }

  .hero-copy {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-features {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(100%, 344px);
    margin-right: auto;
    margin-left: auto;
    justify-content: center;
    justify-items: center;
    gap: 8px;
  }

  .hero-feature {
    width: 100%;
    justify-items: center;
    text-align: center;
  }

  .hero-feature > span:last-child {
    display: block;
    width: 100%;
    text-align: center;
  }

  .hero-actions.hero-cta {
    width: min(100%, 320px);
    margin-right: auto;
    margin-left: auto;
    justify-content: center;
  }

  .company-row {
    grid-template-columns: 1.16fr 1.62fr 0.54fr 0.78fr;
    align-items: center;
    gap: clamp(7px, 2.1vw, 12px);
  }

  .company-logo {
    min-height: 34px;
  }

  .logo-sony img {
    max-height: clamp(17px, 4.7vw, 23px);
  }

  .logo-thomson img {
    max-height: clamp(21px, 5.4vw, 28px);
  }

  .logo-splunk img {
    max-height: clamp(24px, 6.4vw, 34px);
  }

  .logo-cisco img {
    max-height: clamp(20px, 5.2vw, 28px);
  }

  .scroll-nav {
    right: max(10px, env(safe-area-inset-right, 0px));
    max-width: calc(100% - 20px);
  }

  img,
  picture,
  svg {
    max-width: 100%;
  }
}

@media (max-width: 620px) {
  .about-section {
    width: 100vw;
    max-width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    border-radius: 0;
  }
}

@media (max-width: 520px) {
  .build-grid,
  .service-list,
  .process-list,
  .next-list,
  .why-list,
  .project-story {
    grid-template-columns: 1fr;
  }

  .project-story,
  .story-step {
    gap: 12px;
  }

  .story-step {
    grid-template-columns: 1fr;
  }

  .industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-actions.hero-cta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-cta .button {
    min-height: 50px;
    padding-right: 8px;
    padding-left: 8px;
    font-size: clamp(0.72rem, 3.15vw, 0.86rem);
  }

  .hero-cta .button-icon svg {
    width: 14px;
    height: 14px;
  }

  .contact-section.contact-redesign {
    padding: 16px;
  }

  .contact-panel {
    gap: 14px;
  }

  .contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .contact-card {
    min-height: 78px;
    gap: 7px;
    padding: 10px 8px;
  }

  .contact-card-icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }

  .contact-card-icon svg {
    width: 16px;
    height: 16px;
  }

  .contact-card strong {
    font-size: 0.82rem;
  }

  .contact-response-time {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .credibility-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .credibility-stats div,
  .credibility-stats div:nth-child(odd),
  .credibility-stats div:first-child {
    grid-template-columns: 38px minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "icon detail";
    align-content: center;
    align-items: center;
    column-gap: 8px;
    row-gap: 3px;
    justify-items: start;
    min-height: 86px;
    border: 1px solid rgb(56 189 248 / 0.18);
    border-radius: 18px;
    background: rgb(2 8 23 / 0.34);
    padding: 11px 9px;
    text-align: left;
  }

  .stat-icon {
    width: 38px;
    height: 38px;
  }

  .stat-icon svg {
    width: 19px;
    height: 19px;
  }

  .credibility-stats dt {
    font-size: clamp(0.76rem, 3.2vw, 0.86rem);
    line-height: 1.12;
    text-align: left;
  }

  .credibility-stats dt strong {
    font-size: clamp(1.42rem, 6.2vw, 1.72rem);
  }

  .credibility-stats dd {
    font-size: clamp(0.64rem, 2.8vw, 0.74rem);
    line-height: 1.18;
    text-align: left;
  }

  .company-row {
    grid-template-columns: 1.08fr 1.58fr 0.54fr 0.74fr;
    gap: 8px;
  }

  .company-logo {
    min-height: 32px;
  }

  .logo-sony img {
    max-height: clamp(15px, 4.3vw, 18px);
  }

  .logo-thomson img {
    max-height: clamp(18px, 5vw, 22px);
  }

  .logo-splunk img {
    max-height: clamp(20px, 6vw, 25px);
  }

  .logo-cisco img {
    max-height: clamp(17px, 4.8vw, 22px);
  }

  .industry-card {
    min-width: 0;
    padding-right: 8px;
    padding-left: 8px;
  }
}

@media (max-width: 520px) {
  .build-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .build-card {
    min-height: 206px;
    border-radius: 14px;
    padding: 14px 10px;
  }

  .build-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .build-icon svg {
    width: 21px;
    height: 21px;
  }

  .build-card h3 {
    margin-top: 13px;
    font-size: clamp(0.78rem, 3.55vw, 0.92rem);
    line-height: 1.18;
  }

  .build-card p {
    margin-top: 8px;
    font-size: clamp(0.66rem, 2.8vw, 0.74rem);
    line-height: 1.4;
  }
}

@media (max-width: 680px) {
  .projects-section {
    width: 100vw;
    max-width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding-right: 0;
    padding-left: 0;
  }

  .projects-heading {
    padding-right: clamp(16px, 5vw, 24px);
    padding-left: clamp(16px, 5vw, 24px);
  }

  .project-carousel {
    width: 100%;
    max-width: 100%;
  }

  .project-viewport {
    margin: 0;
    border-radius: 0;
    padding: 0 clamp(8px, 2.5vw, 12px);
  }

  .project-card {
    width: 100%;
    min-width: 100%;
  }

  .project-visual {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    border-radius: 16px;
  }
}

@media (max-width: 720px) {
  .industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .industry-card {
    min-height: 168px;
    gap: 10px;
    padding: 16px 12px;
  }

  .industry-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .industry-icon svg {
    width: 23px;
    height: 23px;
  }

  .industry-card h3 {
    font-size: clamp(0.82rem, 3.35vw, 0.98rem);
  }

  .industry-card p {
    font-size: clamp(0.68rem, 2.85vw, 0.78rem);
  }
}

@media (max-width: 380px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .industry-card {
    min-height: 152px;
  }
}

.meaning-section {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding-right: 0;
  padding-left: 0;
}

.meaning-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(20px, 3vw, 42px);
  align-items: center;
  border: 1px solid rgb(56 189 248 / 0.2);
  border-radius: 22px;
  background:
    radial-gradient(circle at 14% 18%, rgb(56 189 248 / 0.16), transparent 34%),
    linear-gradient(145deg, rgb(15 23 42 / 0.82), rgb(2 8 23 / 0.72)),
    rgb(2 8 23 / 0.78);
  box-shadow:
    0 24px 64px rgb(0 0 0 / 0.26),
    inset 0 1px 0 rgb(255 255 255 / 0.06);
  padding: clamp(22px, 3.4vw, 44px);
}

.meaning-copy .section-kicker {
  color: #38bdf8;
  letter-spacing: 0.06em;
}

.meaning-copy h2 {
  max-width: 720px;
  font-size: clamp(1.55rem, 2.8vw, 3rem);
  line-height: 1.08;
}

.meaning-copy p:not(.section-kicker) {
  max-width: 760px;
  margin-top: 18px;
  color: rgb(226 232 240 / 0.82);
  font-size: clamp(1rem, 1.18vw, 1.16rem);
  line-height: 1.72;
}

.meaning-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.meaning-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 66px;
  border: 1px solid rgb(56 189 248 / 0.16);
  border-radius: 16px;
  background: rgb(2 8 23 / 0.42);
  padding: 12px;
  color: #f8fbff;
  font-weight: 850;
  line-height: 1.18;
}

.meaning-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgb(56 189 248 / 0.28);
  border-radius: 14px;
  background: rgb(14 165 233 / 0.1);
  color: #38bdf8;
}

.meaning-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

@media (max-width: 980px) {
  .meaning-panel {
    grid-template-columns: 1fr;
  }

  .meaning-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .meaning-panel {
    border-radius: 20px;
    padding: 22px 18px;
  }

  .meaning-copy {
    text-align: center;
  }

  .meaning-copy h2,
  .meaning-copy p:not(.section-kicker) {
    margin-right: auto;
    margin-left: auto;
  }

  .meaning-copy p:not(.section-kicker) {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .meaning-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .meaning-list li {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 104px;
    padding: 13px 10px;
    text-align: center;
    font-size: clamp(0.78rem, 3.2vw, 0.9rem);
  }

  .meaning-icon {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .meaning-icon svg {
    width: 20px;
    height: 20px;
  }
}

@media (min-width: 981px) and (max-height: 760px) {
  .hero-section {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .hero-typewriter.hero-typewriter {
    margin-bottom: 16px;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 3.85vw, 4.4rem);
    line-height: 1.04;
  }

  .hero-text {
    margin-top: 14px;
    line-height: 1.5;
  }

  .hero-features {
    gap: clamp(14px, 1.7vw, 24px);
    margin-top: 18px;
  }

  .feature-icon {
    width: 46px;
    height: 46px;
  }

  .feature-icon svg {
    width: 39px;
    height: 39px;
  }

  .hero-actions.hero-cta {
    margin-top: 18px;
  }

  .hero-cta .button {
    min-height: 48px;
  }
}
