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

:root {
  color-scheme: light;
  --ink: #142333;
  --muted: #5b6a72;
  --paper: #f7faf8;
  --panel: #ffffff;
  --line: #dce7e4;
  --teal: #9fd1d2;
  --teal-deep: #153e52;
  --amber: #b8ddde;
  --coral: #486a8c;
  --accent-text: #2f6f73;
  --accent-deep: #1f555a;
  --accent-tint: #edf7f6;
  --navy: #102a3a;
  --shadow: 0 18px 60px rgba(20, 35, 51, 0.13);
  --radius: 8px;
  --font-body: "Syne Mono", ui-monospace, monospace;
  --font-heading: "Syne", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-brand: "Syne", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand {
  font-family: var(--font-heading);
}

.brand,
.hero h1,
.site-footer span {
  font-family: var(--font-brand);
}

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

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

.site-header {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 10px 12px;
  border: 1px solid rgba(159, 209, 210, 0.3);
  border-radius: var(--radius);
  background: rgba(16, 42, 58, 0.78);
  color: #fff;
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.16);
}

.brand,
.nav-links,
.nav-cta {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links {
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-links a,
.nav-cta {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 13px;
  border-radius: 6px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: #fff;
  background: rgba(159, 209, 210, 0.14);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -18px;
  right: -18px;
  height: 22px;
}

.nav-dropdown-trigger {
  gap: 7px;
}

.nav-dropdown-trigger::after {
  content: "";
  width: 0;
  height: 0;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.72;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 190px;
  padding: 6px;
  border: 1px solid rgba(159, 209, 210, 0.28);
  border-radius: var(--radius);
  background: rgba(16, 42, 58, 0.96);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 220ms ease 120ms, transform 220ms ease 120ms;
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition-delay: 0ms;
}

.nav-menu a {
  justify-content: flex-start;
  width: 100%;
  white-space: nowrap;
}

.nav-cta {
  justify-content: center;
  background: #ffffff;
  color: #11211e;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: rgba(255, 255, 255, 0.88);
}

.menu-toggle,
.mobile-nav-cta {
  display: none;
}

.menu-toggle {
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.floating-cta {
  position: fixed;
  top: 18px;
  right: max(20px, calc((100vw - 1180px) / 2));
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 6px;
  background: var(--teal);
  color: #111827;
  font-weight: 800;
  box-shadow: 0 16px 42px rgba(21, 62, 82, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-cta:hover,
.floating-cta:focus-visible {
  background: var(--amber);
}

.hero {
  position: relative;
  min-height: 88svh;
  isolation: isolate;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 140px 20px 72px;
  background: var(--navy);
}

.hero-image,
.hero-trace,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -4;
  object-fit: cover;
}

.hero-trace {
  z-index: -2;
  object-fit: cover;
  mix-blend-mode: screen;
  opacity: 0.88;
}

.hero-shade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(9, 30, 43, 0.9) 0%, rgba(9, 30, 43, 0.58) 44%, rgba(9, 30, 43, 0.18) 100%),
    linear-gradient(0deg, rgba(9, 30, 43, 0.82) 0%, rgba(9, 30, 43, 0.16) 42%, rgba(9, 30, 43, 0.34) 100%);
}

.hero-content {
  width: min(1180px, 100%);
  margin: 0 auto;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-text);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 6.6rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 800;
}

.button-primary {
  background: var(--teal);
  color: #111827;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--amber);
}

.button-outline {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: rgba(47, 111, 115, 0.46);
  color: var(--teal-deep);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.partner-ribbon {
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.partner-ribbon[hidden] {
  display: none;
}

.partner-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0;
}

.partner-inner .eyebrow {
  margin-bottom: 18px;
}

.logo-ribbon {
  position: relative;
  overflow: hidden;
  padding: 3px 0;
}

.logo-ribbon::before,
.logo-ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(12vw, 120px);
  pointer-events: none;
}

.logo-ribbon::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-ribbon::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-track {
  display: flex;
  width: max-content;
  animation: logoTape 28s linear infinite;
}

.logo-ribbon:hover .logo-track {
  animation-play-state: paused;
}

.logo-set {
  display: flex;
  gap: 14px;
  padding-right: 14px;
}

.logo-item {
  flex: 0 0 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 118px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8faf7;
}

.logo-item img {
  width: 100%;
  max-width: 220px;
  max-height: 74px;
  object-fit: contain;
}

.logo-item:first-child img {
  max-width: 260px;
}

.logo-item:nth-child(3) img {
  max-width: 130px;
  max-height: 86px;
}

@keyframes logoTape {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading h2 {
  margin: 0;
  color: var(--teal-deep);
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.products-section {
  display: grid;
  gap: 34px;
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.product-copy h3 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.product-copy p:not(.case-kicker) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

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

.product-point {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 16px;
  border: 1px solid rgba(47, 111, 115, 0.24);
  border-radius: 6px;
  background: var(--accent-tint);
  color: var(--teal-deep);
  font-weight: 800;
}

.point-icon {
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--teal-deep);
  box-shadow:
    inset 0 0 0 1px rgba(47, 111, 115, 0.3),
    0 8px 18px rgba(21, 62, 82, 0.08);
}

.point-icon img {
  display: block;
  width: 19px;
  height: 19px;
  object-fit: contain;
  filter: invert(21%) sepia(55%) saturate(659%) hue-rotate(158deg)
    brightness(89%) contrast(91%);
}

.compact-heading {
  margin: 14px 0 0;
}

.usecase-title {
  margin: 10px 0 -10px;
  color: var(--teal-deep);
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.product-bench {
  margin-top: 18px;
}

.product-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.product-media-single {
  grid-template-columns: 1fr;
}

.product-media {
  display: grid;
  align-content: center;
  min-height: 320px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf5;
}

.product-media img {
  width: 100%;
  height: 250px;
  object-fit: contain;
}

.product-media figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}

.case-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 1px 0 rgba(19, 33, 31, 0.03);
}

.case-copy h3 {
  margin: 0;
  font-size: 1.16rem;
  letter-spacing: 0;
}

.case-copy p {
  margin: 10px 0 0;
  color: var(--muted);
}

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

.case-card {
  display: grid;
  grid-template-rows: minmax(142px, auto) auto;
  overflow: hidden;
}

.case-copy {
  min-height: 142px;
  padding: 22px 22px 18px;
}

.case-kicker {
  margin: 0 0 8px;
  color: var(--accent-text);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compare {
  --split: 50%;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #d5ddd8;
  user-select: none;
}

.compare-square {
  aspect-ratio: 4 / 3;
}

.compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-segmented {
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
}

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 2px;
  transform: translateX(-1px);
  background: #fff;
  box-shadow: 0 0 0 1px rgba(20, 35, 51, 0.22), 0 0 22px rgba(159, 209, 210, 0.68);
  pointer-events: none;
}

.compare-divider::after {
  content: "<>";
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  transform: translate(-50%, -50%);
  border: 2px solid #fff;
  border-radius: 50%;
  background: #ffffff;
  color: var(--teal-deep);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: var(--shadow);
}

.compare-label {
  position: absolute;
  top: 12px;
  z-index: 3;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 6px;
  background: rgba(9, 18, 16, 0.58);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.compare-label-left {
  left: 12px;
}

.compare-label-right {
  right: 12px;
}

.compare-range {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.compare:focus-within .compare-divider::after {
  outline: 3px solid rgba(159, 209, 210, 0.7);
  outline-offset: 3px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer span {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.site-footer a {
  font-weight: 700;
}

.page-shell {
  min-height: 100svh;
}

.page-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 156px 0 64px;
}

.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.page-hero-centered {
  text-align: center;
}

.page-hero-centered h1,
.page-hero-centered p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

.custom-solutions-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 48px;
  align-items: center;
}

.custom-solutions-copy h1 {
  max-width: 650px;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 0.98;
}

.custom-solutions-copy p:not(.eyebrow) {
  max-width: 620px;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

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

.custom-solutions-media {
  min-height: 420px;
  border: 1px solid rgba(47, 111, 115, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(159, 209, 210, 0.2), rgba(72, 106, 140, 0.1)),
    #ffffff;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.info-card h2,
.info-card h3 {
  margin: 0;
  font-size: 1.18rem;
}

.info-card p,
.info-card li {
  color: var(--muted);
}

.info-card p {
  margin: 12px 0 0;
}

.info-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.wide-card {
  grid-column: span 2;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
  align-items: start;
}

.contact-panel-detailed {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

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

.contact-detail,
.contact-form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.contact-detail {
  padding: 20px;
}

.contact-detail-label {
  margin: 0 0 8px;
  color: var(--accent-text);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-detail h2 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.2;
}

.contact-detail p:not(.contact-detail-label) {
  margin: 10px 0 0;
  color: var(--muted);
}

.contact-detail a {
  color: var(--teal-deep);
}

.contact-form-panel {
  padding: 26px;
}

.contact-form-panel h2 {
  margin: 0 0 18px;
  font-size: 1.3rem;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.contact-form-panel .contact-form {
  padding: 0;
  border: 0;
  border-radius: 0;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .button {
  border: 0;
  cursor: pointer;
}

.blog-empty {
  display: grid;
  min-height: 260px;
  place-items: center;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.blog-empty p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.process-section {
  display: grid;
  gap: 22px;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 24px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.process-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--teal-deep);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(47, 111, 115, 0.3);
}

.process-copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
}

.process-copy ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.process-copy li {
  display: grid;
  gap: 4px;
  padding-left: 18px;
  border-left: 3px solid rgba(47, 111, 115, 0.34);
}

.process-copy strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.process-copy span {
  color: var(--muted);
}

.solutions-cta {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-bottom: 52px;
  padding: 56px 24px;
  border: 1px solid rgba(47, 111, 115, 0.24);
  border-radius: var(--radius);
  background: var(--accent-tint);
  text-align: center;
}

.solutions-cta h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.solutions-cta p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: 1fr auto;
    top: 12px;
    gap: 12px;
    width: calc(100% - 24px);
    padding: 10px 14px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 14px;
    left: 14px;
    z-index: 35;
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(159, 209, 210, 0.28);
    border-radius: var(--radius);
    background: rgba(16, 42, 58, 0.96);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    justify-content: flex-start;
    width: 100%;
    color: rgba(255, 255, 255, 0.86);
  }

  .nav-menu {
    position: static;
    min-width: 0;
    margin: 2px 0 2px;
    padding: 0 0 0 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .nav-dropdown:hover .nav-menu,
  .nav-dropdown:focus-within .nav-menu {
    transform: none;
  }

  .nav-dropdown::after {
    display: none;
  }

  .nav-dropdown {
    display: grid;
  }

  .nav-menu a {
    min-height: 34px;
    font-size: 0.84rem;
  }

  .mobile-nav-cta {
    display: flex;
    justify-content: center;
    margin-top: 4px;
    background: var(--teal);
    color: #111827;
    font-weight: 800;
  }

  .mobile-nav-cta:hover,
  .mobile-nav-cta:focus-visible {
    background: var(--amber);
    color: #111827;
  }

  .hero {
    min-height: 86svh;
    padding: 118px 16px 48px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(9, 30, 43, 0.9) 0%, rgba(9, 30, 43, 0.6) 70%, rgba(9, 30, 43, 0.3) 100%),
      linear-gradient(0deg, rgba(9, 30, 43, 0.84) 0%, rgba(9, 30, 43, 0.12) 48%, rgba(9, 30, 43, 0.34) 100%);
  }

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

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

  .logo-ribbon,
  .page-grid,
  .contact-panel,
  .custom-solutions-hero,
  .product-feature,
  .product-media-grid {
    grid-template-columns: 1fr;
  }

  .logo-item {
    flex-basis: 220px;
  }

  .section {
    width: min(100% - 28px, 720px);
    padding: 58px 0;
  }

  .partner-inner,
  .page-hero {
    width: min(100% - 28px, 720px);
  }

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

  .product-media {
    min-height: 250px;
  }

  .product-media img {
    height: 210px;
  }

  .custom-solutions-media {
    min-height: 300px;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 18px;
  }

}

@media (max-width: 560px) {
  .site-header {
    padding: 8px 12px;
  }

  .nav-links {
    right: 12px;
    left: 12px;
  }

  .floating-cta {
    top: 12px;
    right: 12px;
    max-width: calc(100vw - 24px);
  }

  .nav-cta {
    min-height: 34px;
    padding: 8px 10px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .custom-solutions-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .custom-solutions-media {
    min-height: 220px;
  }

  .case-copy {
    padding: 18px;
  }

  .product-feature {
    padding: 18px;
  }

  .product-points {
    grid-template-columns: 1fr;
  }

  .contact-form-panel,
  .process-step {
    padding: 20px;
  }

  .process-number {
    width: 48px;
    height: 48px;
  }

  .compare-label {
    top: 8px;
    font-size: 0.68rem;
  }

  .compare-label-left {
    left: 8px;
  }

  .compare-label-right {
    right: 8px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .back-to-top {
    bottom: 16px;
    right: 16px;
  }
}

/* ── Sticky header ── */

.site-header.is-sticky {
  position: fixed;
  top: 12px;
  animation: stickySlide 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(14, 26, 24, 0.92);
}

.site-header.is-sticky ~ .floating-cta {
  opacity: 0 !important;
  pointer-events: none !important;
}

@keyframes stickySlide {
  from { opacity: 0; transform: translateX(-50%) translateY(-20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── Improved footer ── */

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr repeat(3, auto);
  gap: 64px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 32px;
}

.footer-brand span {
  font-family: var(--font-brand);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
}

.footer-tagline {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-col {
  display: grid;
  gap: 8px;
  align-content: start;
  min-width: 140px;
}

.footer-heading {
  margin: 0 0 4px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.footer-col a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
}

.footer-col a:hover {
  color: var(--teal-deep);
}

.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 32px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

/* ── Back to top button ── */

.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--panel);
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(19, 33, 31, 0.1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s, transform 0.25s, background 0.15s;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* ── Scroll progress bar ── */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  height: 3px;
  width: 0%;
  background: var(--ink);
  transition: width 60ms linear;
  pointer-events: none;
}

/* ── Scroll reveal animations ── */

[data-reveal] {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="left"] {
  transform: translateX(-80px);
}

[data-reveal="right"] {
  transform: translateX(80px);
}

[data-reveal="scale"] {
  transform: scale(0.85);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Stagger children inside grids */
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal-stagger].is-visible > *:nth-child(1) { transition-delay: 0ms; }
[data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: 100ms; }
[data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: 200ms; }
[data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: 300ms; }
[data-reveal-stagger].is-visible > *:nth-child(5) { transition-delay: 400ms; }

[data-reveal-stagger].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Hero content entrance */
.hero-content {
  animation: heroEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

@keyframes heroEntrance {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Page hero entrance for sub-pages */
.page-hero {
  animation: heroEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

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

  .logo-track {
    animation: none;
  }

  [data-reveal],
  [data-reveal-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero-content,
  .page-hero {
    animation: none !important;
  }

  .site-header.is-sticky {
    animation: none;
  }
}
