@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap");

:root {
  color-scheme: light;
  --font-primary: "Montserrat", "Segoe UI", Arial, sans-serif;
  --font-secondary: Calibri, "Segoe UI", Arial, sans-serif;
  --ink: #24113b;
  --ink-soft: rgba(36, 17, 59, 0.72);
  --purple: #320064;
  --itnova-footer-purple: #3b0066;
  --purple-bright: #7131b5;
  --cyan: #38f5ff;
  --green: #25d366;
  --line: rgba(50, 0, 100, 0.14);
  --surface: rgba(255, 255, 255, 0.86);
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #f8f5ff;
  line-height: 1.5;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 42%, rgba(56, 245, 255, 0.22), transparent 30%),
    radial-gradient(circle at 16% 20%, rgba(113, 49, 181, 0.28), transparent 34%),
    radial-gradient(circle at 82% 68%, rgba(59, 0, 102, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.90), rgba(242, 234, 255, 0.94) 52%, rgba(247, 253, 255, 0.92)),
    #f8f5ff;
  overflow-x: hidden;
}

body.has-intro-gate {
  overflow: hidden;
}

body,
button,
input,
textarea,
select {
  font: inherit;
}

p,
small,
li,
label,
legend,
input,
textarea,
select,
.brand small,
.hero-content p,
.page-hero p,
.section-heading p,
.rich-copy,
.side-panel,
.contact-form,
.contact-panel,
.site-footer,
.message,
.empty-state,
.image-caption {
  font-family: var(--font-secondary);
}

h1,
h2,
h3,
.brand,
.main-nav,
.button,
.eyebrow,
.language-link,
.text-link,
.service-icon,
.service-meta,
.post-category,
.tag-row,
.whatsapp-float {
  font-family: var(--font-primary);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.itnova-wave-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: multiply;
  opacity: 1;
}

.itnova-wave-background canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.58;
}

.site-header,
main,
.site-footer,
.message-stack,
.whatsapp-float {
  position: relative;
}

main,
.site-footer {
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr);
  align-items: center;
  gap: 20px;
  padding: 12px max(24px, calc((100vw - 1220px) / 2));
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 34px rgba(50, 0, 100, 0.06);
  backdrop-filter: blur(18px);
  transition: padding 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 8px;
  padding-bottom: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(50, 0, 100, 0.12);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 0;
}

.brand-logo {
  width: 164px;
  height: 54px;
  object-fit: contain;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.22));
}

.brand-logo-default {
  object-position: center;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(50, 0, 100, 0.44);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(50, 0, 100, 0.28), rgba(37, 211, 102, 0.12));
  color: #fff;
  font-weight: 800;
}

.brand small {
  display: block;
}

.brand small {
  color: rgba(36, 17, 59, 0.64);
  font-size: 0.78rem;
}

.main-nav,
.header-actions,
.footer-links,
.hero-actions,
.tag-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.main-nav {
  justify-content: center;
  flex-wrap: nowrap;
}

.main-nav a {
  padding: 8px 11px;
  color: rgba(36, 17, 59, 0.72);
  border-radius: 6px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.main-nav a:hover,
.language-link:hover,
.text-link:hover {
  color: #320064;
  background: rgba(50, 0, 100, 0.10);
}

.main-nav a:hover {
  transform: translateY(-1px);
}

.language-link {
  padding: 8px 10px;
  border: 1px solid rgba(36, 17, 59, 0.18);
  border-radius: 6px;
  color: rgba(36, 17, 59, 0.82);
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  box-shadow: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.service-card:hover,
.project-card:hover,
.post-card:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--purple), var(--purple-bright));
  box-shadow: 0 14px 30px rgba(50, 0, 100, 0.20);
}

.intro-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: block;
  overflow: hidden;
  background: #faf7ff;
  opacity: 1;
  visibility: visible;
  transition: opacity 420ms ease, visibility 420ms ease;
  animation: intro-gate-auto-exit 760ms ease 6.65s forwards;
}

.intro-seen .intro-gate,
.intro-gate.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-seen .intro-gate {
  display: none;
}

.intro-gate-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-gate::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.18) 58%, rgba(245, 237, 255, 0.34) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(50, 0, 100, 0.06));
}

@keyframes intro-gate-auto-exit {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.button-secondary {
  border-color: rgba(50, 0, 100, 0.22);
  background: rgba(255, 255, 255, 0.82);
  color: #24113b;
  box-shadow: 0 10px 24px rgba(50, 0, 100, 0.08);
}

.whatsapp-logo {
  display: inline-block;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 4px;
  background-image: url("/static/img/whatsapp-logo.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 6px 14px rgba(37, 211, 102, 0.22);
}

.hero-section {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(50, 0, 100, 0.12);
  background: transparent;
}

.hero-section::after {
  content: "";
  position: absolute;
  right: -12%;
  top: 12%;
  z-index: 1;
  width: 42%;
  height: 64%;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(56, 245, 255, 0.18), rgba(113, 49, 181, 0.12), transparent 70%);
  clip-path: polygon(18% 0, 100% 12%, 78% 100%, 0 84%);
  opacity: 0.72;
  transform: translate3d(0, var(--hero-light-y, 0px), 0);
  will-change: transform;
}

.hero-media {
  position: absolute;
  inset: -34% 0 -6%;
  opacity: 0.74;
  transform: translateZ(0);
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(1.08) contrast(1.04);
  transform: translate3d(var(--hero-parallax-x, 0px), calc(var(--hero-parallax-y, 0px) - 56px), 0) scale(var(--hero-parallax-scale, 1.08));
  transform-origin: center;
  will-change: transform;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(249, 245, 255, 0.64) 43%, rgba(245, 239, 255, 0.12) 77%, rgba(245, 239, 255, 0.02) 100%),
    linear-gradient(180deg, rgba(248, 245, 255, 0.00), rgba(248, 245, 255, 0.28));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100% - 40px));
  margin-left: max(28px, calc((100vw - 1180px) / 2));
  padding: 46px 0 44px;
  transform: translate3d(0, var(--hero-content-y, 0px), 0);
  will-change: transform;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #320064;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: #25d366;
}

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

h1 {
  margin-bottom: 18px;
  max-width: 820px;
  font-size: 3rem;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  font-size: 2.2rem;
  line-height: 1.08;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-content p,
.page-hero p,
.section-heading p,
.rich-copy p {
  color: rgba(36, 17, 59, 0.76);
  font-size: 1.05rem;
}

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

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  gap: 8px;
  padding-right: 14px;
  color: rgba(36, 17, 59, 0.76);
  font-family: var(--font-secondary);
  font-weight: 700;
}

.hero-proof-row span::before {
  content: "";
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

.section,
.page-hero,
.cta-band,
.site-footer {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 58px 0;
}

.page-hero {
  padding: 58px 0 34px;
}

.page-hero h1 {
  max-width: 860px;
}

.page-hero p {
  max-width: 720px;
}

.intro-band,
.process-band,
.blog-band {
  border-top: 1px solid rgba(50, 0, 100, 0.10);
  border-bottom: 1px solid rgba(50, 0, 100, 0.10);
}

.intro-band {
  padding-top: 48px;
  padding-bottom: 48px;
}

.process-band,
.blog-band {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.60), transparent 45%),
    linear-gradient(245deg, rgba(56, 245, 255, 0.08), transparent 40%);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin-bottom: 10px;
}

.section-heading.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.text-link,
.service-card a,
.project-card a,
.post-card a {
  color: #320064;
  font-weight: 800;
}

.service-grid,
.project-grid,
.blog-grid,
.process-grid,
.metric-grid,
.about-grid,
.contact-layout {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-grid,
.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid,
.metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.project-card,
.post-card,
.process-step,
.metric-card,
.side-panel,
.contact-form,
.contact-panel,
.value-list article,
.highlight-panel,
.cta-inline {
  border: 1px solid rgba(50, 0, 100, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84)),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 60px rgba(50, 0, 100, 0.09);
}

.service-card,
.process-step,
.metric-card,
.contact-panel,
.value-list article,
.highlight-panel,
.cta-inline {
  padding: 24px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card::before,
.project-card::before,
.post-card::before,
.process-step::before,
.metric-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--purple-bright));
  opacity: 0.82;
}

.service-card:hover,
.project-card:hover,
.post-card:hover {
  border-color: rgba(50, 0, 100, 0.26);
  box-shadow: 0 28px 70px rgba(50, 0, 100, 0.14);
}

.service-card-large {
  min-height: 280px;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border: 1px solid rgba(37, 211, 102, 0.34);
  border-radius: 8px;
  color: #25d366;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.13), rgba(56, 245, 255, 0.11));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.64);
}

.service-meta,
.post-category,
.tag-row span {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(50, 0, 100, 0.14);
  color: rgba(36, 17, 59, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
}

.project-card,
.post-card {
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.project-card img,
.post-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid rgba(50, 0, 100, 0.16);
}

.project-card > div,
.post-card > div {
  padding: 18px;
}

.process-step strong,
.metric-card strong {
  display: block;
  color: #320064;
  font-size: 2rem;
}

.process-step {
  position: relative;
}

.process-step strong {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid rgba(50, 0, 100, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 28px rgba(50, 0, 100, 0.10);
}

.metric-card span {
  display: block;
  margin: 6px 0;
  font-weight: 800;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 28px;
}

.article-layout-single {
  grid-template-columns: minmax(0, 840px);
  justify-content: center;
}

.rich-copy {
  min-width: 0;
}

.rich-copy h2 {
  margin-top: 30px;
  margin-bottom: 12px;
}

.rich-copy ul {
  color: rgba(36, 17, 59, 0.78);
}

.rich-copy blockquote {
  margin: 28px 0;
  padding: 24px;
  border-left: 4px solid #320064;
  border-radius: 8px;
  background: rgba(50, 0, 100, 0.08);
  font-size: 1.2rem;
}

.feature-image {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(50, 0, 100, 0.16);
  margin-bottom: 28px;
}

.side-panel {
  position: sticky;
  top: 92px;
  padding: 24px;
}

.side-panel ol {
  padding-left: 20px;
  color: rgba(36, 17, 59, 0.74);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px;
  padding: 28px;
  border: 1px solid rgba(50, 0, 100, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(50, 0, 100, 0.13), rgba(113, 49, 181, 0.08) 42%, rgba(37, 211, 102, 0.10)),
    rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 64px rgba(50, 0, 100, 0.10);
}

.cta-band h2 {
  margin-bottom: 0;
}

.about-grid,
.contact-layout {
  grid-template-columns: minmax(0, 1fr) 420px;
}

.value-list {
  display: grid;
  gap: 14px;
}

.contact-form {
  padding: 28px;
}

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

.contact-form label,
.contact-form fieldset {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(36, 17, 59, 0.86);
  font-weight: 700;
}

.form-control {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid rgba(50, 0, 100, 0.20);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.86);
  color: #24113b;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-control:focus {
  border-color: rgba(113, 49, 181, 0.58);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(113, 49, 181, 0.12);
  outline: none;
}

textarea.form-control {
  resize: vertical;
}

fieldset {
  border: 1px solid rgba(50, 0, 100, 0.16);
  border-radius: 8px;
  padding: 18px;
}

legend {
  padding: 0 8px;
}

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

.choice-list label,
.consent-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-weight: 600;
}

.form-errors,
.errorlist,
.message {
  padding: 12px;
  border-radius: 6px;
  background: rgba(255, 88, 88, 0.13);
  color: #ffd9d9;
}

.message-stack {
  position: fixed;
  right: 20px;
  top: 84px;
  z-index: 50;
  width: min(380px, calc(100% - 40px));
}

.message {
  background: rgba(37, 211, 102, 0.16);
  color: #efffdf;
  border: 1px solid rgba(37, 211, 102, 0.28);
}

.empty-state,
.image-caption {
  color: rgba(36, 17, 59, 0.68);
}

.site-footer.ocean-container {
  position: relative;
  width: 100%;
  margin: 52px 0 0;
  padding: 0;
  overflow: hidden;
  color: #ffffff;
  background: transparent;
}

.ocean-svg {
  display: block;
  width: 100%;
  height: 96px;
  margin-bottom: -1px;
}

.ocean-base {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px 28px;
  min-height: 112px;
  padding: 24px max(24px, calc((100vw - 1180px) / 2)) 28px;
  background: linear-gradient(to bottom, var(--itnova-footer-purple) 0%, #4b0080 46%, #270047 100%);
}

.footer-brand strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: 0;
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-links {
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-links a:hover {
  color: #38f5ff;
  transform: translateY(-1px);
}

.footer-copy {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.wave-layer {
  will-change: transform;
}

.wave-back {
  fill: rgba(59, 0, 102, 0.22);
  animation: wave-move-right 16s linear infinite;
}

.wave-mid {
  fill: rgba(59, 0, 102, 0.46);
  animation: wave-move-right 11s linear infinite;
}

.wave-front {
  fill: var(--itnova-footer-purple);
  animation: wave-move-left 7s linear infinite;
}

@keyframes wave-move-right {
  0% {
    transform: translateX(-90px);
  }

  100% {
    transform: translateX(85px);
  }
}

@keyframes wave-move-left {
  0% {
    transform: translateX(85px);
  }

  100% {
    transform: translateX(-90px);
  }
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(50, 0, 100, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: #24113b;
  box-shadow: 0 16px 40px rgba(50, 0, 100, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.whatsapp-float .whatsapp-logo {
  width: 34px;
  height: 34px;
  flex-basis: 34px;
}

.show-floating-cta .whatsapp-float {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .main-nav,
  .header-actions {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .header-actions {
    justify-content: flex-start;
  }

  .brand {
    min-width: 0;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .service-grid,
  .project-grid,
  .blog-grid,
  .process-grid,
  .metric-grid,
  .about-grid,
  .contact-layout,
  .article-layout {
    grid-template-columns: 1fr 1fr;
  }

  .article-layout,
  .about-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 18px;
    gap: 14px;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .itnova-wave-background canvas {
    opacity: 0.46;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 146px;
    height: 48px;
  }

  .brand-copy {
    display: none;
  }

  .main-nav {
    gap: 4px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .main-nav a {
    padding: 7px 8px;
    font-size: 0.9rem;
  }

  .hero-section {
    min-height: 500px;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(248, 245, 255, 0.62));
  }

  .hero-media {
    inset: -20% -24% -2% -28%;
    opacity: 0.78;
  }

  .hero-media img,
  .hero-media video {
    object-position: center 16%;
    transform: translateY(-34px) scale(1.04);
    will-change: auto;
  }

  .hero-content {
    width: calc(100% - 34px);
    margin: 0 auto;
    padding: 38px 0 44px;
  }

  h1 {
    max-width: 18ch;
    font-size: 1.78rem;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .hero-content p {
    max-width: 34ch;
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .hero-proof-row {
    display: none;
  }

  .service-grid,
  .project-grid,
  .blog-grid,
  .process-grid,
  .metric-grid,
  .form-grid,
  .choice-list {
    grid-template-columns: 1fr;
  }

  .section-heading.split,
  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .ocean-svg {
    height: 92px;
  }

  .ocean-base {
    grid-template-columns: 1fr;
    justify-items: flex-start;
    min-height: 142px;
    padding: 24px 22px 28px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-copy {
    font-size: 0.66rem;
    letter-spacing: 1.2px;
  }

  .section {
    padding: 44px 0;
  }

  .page-hero {
    padding-top: 64px;
  }
}

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

  .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-media img,
  .hero-media video,
  .intro-gate-video {
    transform: none;
    will-change: auto;
  }

  .wave-layer {
    animation: none;
  }

  .itnova-wave-background canvas {
    display: none;
  }
}
