:root {
  --ink: #090a12;
  --ink-soft: #111326;
  --navy: #071127;
  --paper: #f6f7fb;
  --paper-bright: #ffffff;
  --paper-soft: #edf0f7;
  --text: #101220;
  --text-inverse: #ffffff;
  --muted: #697083;
  --muted-inverse: #aeb5ca;
  --cyan: #00cfff;
  --cyan-bright: #00fff0;
  --pink: #ff28a9;
  --violet: #8f4dff;
  --blue: #226cff;
  --line: rgba(16, 18, 32, 0.12);
  --line-inverse: rgba(255, 255, 255, 0.14);
  --gradient: linear-gradient(105deg, var(--pink), var(--violet) 50%, var(--cyan));
  --shadow-soft: 0 24px 80px rgba(19, 24, 52, 0.1);
  --shadow-dark: 0 30px 90px rgba(0, 0, 0, 0.42);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --max-width: 1240px;
  --header-height: 88px;
}

/* Base */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 32px), var(--max-width));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 82px 0;
  scroll-margin-top: var(--header-height);
}

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

.eyebrow {
  color: var(--pink);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h1,
h2 {
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1 {
  margin-top: 16px;
  font-size: clamp(2.55rem, 11vw, 4.8rem);
}

h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 8.4vw, 4.15rem);
}

h3 {
  font-size: clamp(1.2rem, 4.8vw, 1.6rem);
  font-weight: 820;
  letter-spacing: -0.028em;
  line-height: 1.12;
}

.lead,
.hero-text,
.section-intro {
  color: var(--muted);
  font-size: clamp(1rem, 2.4vw, 1.15rem);
}

/* Floating header */
.site-header {
  position: fixed;
  top: 12px;
  right: 0;
  left: 0;
  z-index: 50;
  pointer-events: none;
}

.header-inner {
  position: relative;
  display: flex;
  width: min(calc(100% - 24px), 1264px);
  min-width: 0;
  min-height: 58px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 6px 8px 6px 14px;
  background: rgba(5, 7, 17, 0.72);
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px);
  pointer-events: auto;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled .header-inner {
  border-color: rgba(0, 207, 255, 0.22);
  background: rgba(5, 7, 17, 0.92);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.36);
}

.logo {
  display: inline-flex;
  min-width: 0;
  flex: 0 0 auto;
  align-items: center;
}

.site-header .logo {
  overflow: visible;
  padding-block: 1px;
}

.header-brand-logo {
  display: block;
  width: 180px;
  height: auto;
  flex: 0 1 auto;
  object-fit: contain;
  object-position: left center;
}

.brand-logo {
  width: 142px;
  height: auto;
  object-fit: contain;
}

.nav-actions {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
}

.site-nav {
  position: fixed;
  inset: 78px 12px auto;
  display: grid;
  max-height: calc(100dvh - 94px);
  gap: 16px;
  overflow-y: auto;
  border: 1px solid rgba(0, 207, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 18px;
  background: rgba(7, 9, 22, 0.98);
  box-shadow: var(--shadow-dark);
  transform: translateY(-125%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 220ms ease, visibility 220ms ease;
}

.site-nav.is-open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.nav-links {
  display: grid;
  gap: 5px;
}

.site-nav a:not(.btn) {
  display: flex;
  min-height: 46px;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0 13px;
  color: #d7dbea;
  font-size: 0.9rem;
  font-weight: 720;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.site-nav a:not(.btn):hover,
.site-nav a:not(.btn):focus-visible,
.site-nav a:not(.btn).is-active {
  border-color: rgba(0, 207, 255, 0.2);
  background: rgba(0, 207, 255, 0.09);
  color: var(--cyan-bright);
}

.header-cta {
  display: none;
}

.nav-mobile-cta {
  width: 100%;
}

.nav-toggle {
  z-index: 40;
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-content: center;
  gap: 6px;
  border: 1px solid rgba(0, 207, 255, 0.38);
  border-radius: 12px;
  background: rgba(0, 207, 255, 0.08);
  color: var(--cyan-bright);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--cyan);
  background: rgba(0, 207, 255, 0.15);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Buttons and links */
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 9px;
  padding: 0 20px;
  background: var(--gradient);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 850;
  box-shadow: 0 12px 32px rgba(143, 77, 255, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  box-shadow: 0 16px 40px rgba(0, 207, 255, 0.25);
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--cyan);
  background: rgba(0, 207, 255, 0.1);
}

.btn-small {
  min-height: 42px;
  padding-inline: 15px;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

.text-link span {
  color: var(--cyan);
  font-size: 1.15rem;
}

/* Hero */
.hero {
  display: grid;
  min-height: 760px;
  overflow: hidden;
  align-items: center;
  padding-top: 112px;
  padding-bottom: 0;
  background:
    radial-gradient(circle at 82% 35%, rgba(34, 108, 255, 0.2), transparent 27rem),
    radial-gradient(circle at 62% 64%, rgba(255, 40, 169, 0.12), transparent 30rem),
    linear-gradient(150deg, #060711 0%, #080a19 55%, #071126 100%);
  color: var(--text-inverse);
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent 5%, #000 45%, transparent 96%);
  pointer-events: none;
}

.hero-atmosphere::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: 8%;
  left: 25%;
  height: 170px;
  background: repeating-radial-gradient(ellipse at center, rgba(0, 207, 255, 0.16) 0 1px, transparent 1px 16px);
  opacity: 0.32;
  transform: perspective(420px) rotateX(65deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  gap: 42px;
}

.hero-copy {
  min-width: 0;
  max-width: 620px;
  align-self: center;
}

.hero .eyebrow {
  color: #ff76cb;
}

.hero h1 {
  max-width: 620px;
  line-height: 1.025;
}

.hero-line {
  display: block;
}

.hero-accent {
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 590px;
  margin-top: 18px;
  color: #c2c8d9;
  font-size: clamp(0.94rem, 1.5vw, 1.03rem);
  line-height: 1.62;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-value-grid {
  display: grid;
  max-width: 590px;
  min-width: 0;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: 18px;
}

.hero-value-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 52px;
  overflow: hidden;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(143, 77, 255, 0.32);
  border-radius: 11px;
  padding: 10px;
  background:
    radial-gradient(circle at 24px 50%, rgba(255, 40, 169, 0.16), transparent 38px),
    linear-gradient(135deg, rgba(22, 18, 48, 0.82), rgba(9, 15, 34, 0.7));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 8px 24px rgba(0, 0, 0, 0.14);
}

.hero-value-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), var(--cyan), transparent);
  opacity: 0.55;
}

.hero-value-icon {
  position: relative;
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  overflow: hidden;
  place-items: center;
  border: 1px solid color-mix(in srgb, currentColor 62%, transparent);
  border-radius: 10px;
  background:
    linear-gradient(145deg, color-mix(in srgb, currentColor 13%, transparent), rgba(255, 255, 255, 0.025));
  color: var(--pink);
  box-shadow: 0 0 17px rgba(255, 40, 169, 0.22), inset 0 0 14px rgba(255, 40, 169, 0.1);
  isolation: isolate;
}

.hero-value-icon::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 7px;
  border-radius: 50%;
  background: currentColor;
  filter: blur(9px);
  opacity: 0.26;
}

.hero-value-card:nth-child(2) .hero-value-icon {
  color: #b477ff;
  box-shadow: 0 0 14px rgba(143, 77, 255, 0.2), inset 0 0 12px rgba(143, 77, 255, 0.08);
}

.hero-value-card:nth-child(3) .hero-value-icon {
  color: var(--cyan);
  box-shadow: 0 0 14px rgba(0, 207, 255, 0.2), inset 0 0 12px rgba(0, 207, 255, 0.08);
}

.hero-value-icon svg {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.hero-value-icon .hero-icon-main {
  stroke: url("#hero-icon-signal");
}

.hero-value-card:nth-child(2) .hero-icon-main {
  stroke: url("#hero-icon-network");
}

.hero-value-card:nth-child(3) .hero-icon-main {
  stroke: url("#hero-icon-system");
}

.hero-icon-orbit {
  opacity: 0.55;
  stroke-dasharray: 2.2 2.2;
}

.hero-icon-core {
  fill: currentColor;
  stroke: none;
  filter: drop-shadow(0 0 3px currentColor);
}

.hero-icon-pulse {
  fill: var(--cyan-bright);
  stroke: none;
  filter: drop-shadow(0 0 3px var(--cyan));
}

.hero-icon-spark {
  fill: color-mix(in srgb, currentColor 28%, transparent);
  stroke: currentColor;
}

.hero-value-card strong {
  min-width: 0;
  color: #e7eaf4;
  font-size: 0.7rem;
  font-weight: 780;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.credibility-line {
  margin-top: 15px;
  color: #8f98b0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.hero-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 207, 255, 0.22);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 48%, rgba(143, 77, 255, 0.28), transparent 22rem),
    radial-gradient(circle at 80% 12%, rgba(34, 108, 255, 0.22), transparent 18rem),
    linear-gradient(145deg, rgba(18, 21, 44, 0.98), rgba(6, 8, 21, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 54px rgba(34, 108, 255, 0.14),
    0 0 86px rgba(255, 40, 169, 0.08),
    var(--shadow-dark);
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), var(--cyan), transparent);
  opacity: 0.85;
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: auto;
  border-radius: inherit;
  object-fit: contain;
  object-position: center;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 40, 169, 0.42);
  border-radius: 16px;
  background:
    radial-gradient(circle at 86% 12%, rgba(34, 108, 255, 0.15), transparent 20rem),
    linear-gradient(110deg, rgba(20, 16, 42, 0.96), rgba(7, 11, 28, 0.94));
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 14px 38px rgba(0, 0, 0, 0.22),
    0 0 28px rgba(0, 207, 255, 0.07);
}

.hero-proof-item {
  display: flex;
  min-width: 0;
  min-height: 76px;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-proof-item:nth-child(even) {
  border-right: 0;
}

.hero-proof-item:last-child {
  grid-column: 1 / -1;
  border-right: 0;
  border-bottom: 0;
}

.hero-proof-icon {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border: 1px solid rgba(255, 40, 169, 0.34);
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(255, 40, 169, 0.1), rgba(0, 207, 255, 0.06));
  color: #ff72c7;
  box-shadow: inset 0 0 12px rgba(143, 77, 255, 0.08), 0 0 12px rgba(255, 40, 169, 0.1);
}

.hero-proof-item:nth-child(2n) .hero-proof-icon {
  border-color: rgba(0, 207, 255, 0.28);
  color: #6fe8ff;
}

.hero-proof-item:nth-child(3) .hero-proof-icon {
  border-color: rgba(143, 77, 255, 0.32);
  color: #bd8cff;
}

.hero-proof-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.hero-proof-copy {
  display: block;
  min-width: 0;
}

.hero-proof-copy strong {
  display: block;
  color: #ffffff;
  font-size: clamp(0.96rem, 3.6vw, 1.14rem);
  font-weight: 850;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.hero-proof-copy small {
  display: block;
  margin-top: 4px;
  color: #9fa8bf;
  font-size: 0.62rem;
  font-weight: 720;
  letter-spacing: 0.045em;
  line-height: 1.25;
}

.platform-strip {
  display: grid;
  grid-column: 1 / -1;
  min-width: 0;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 16px 0 20px;
}

.platform-strip p {
  color: #8790a8;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.platform-logos {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 22px;
}

.platform-logo-item {
  display: flex;
  min-width: 0;
  height: 58px;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.platform-logo-image {
  display: block;
  width: auto;
  max-width: none;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(91, 214, 255, 0.12));
  opacity: 0.94;
}

.platform-logo-image-meta {
  width: 155px;
}

.platform-logo-image-shopify {
  width: 132px;
}

.platform-logo-image-google {
  width: 132px;
  filter: drop-shadow(0 0 10px rgba(66, 133, 244, 0.14));
}

.platform-logo-image-tiktok {
  width: 135px;
}

.platform-service-labels {
  display: flex;
  grid-column: 1 / -1;
  min-width: 0;
  min-height: 30px;
  align-items: center;
  gap: 10px;
  color: #aab3c9;
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Services system */
#services {
  padding-block: 48px;
  background: var(--paper);
}

.services-shell {
  display: grid;
  min-width: 0;
  align-items: start;
  gap: 20px;
}

.section-heading-inverse {
  margin: 0;
  padding: 0;
  color: var(--text);
}

.section-heading-inverse h2 {
  max-width: 440px;
  margin-top: 8px;
  font-size: clamp(1.9rem, 6vw, 2.6rem);
  line-height: 1.07;
}

.services-experience {
  max-width: 510px;
  margin-top: 8px;
  color: #373d50;
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.5;
}

.experience-chips {
  display: flex;
  max-width: 520px;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.experience-chips span {
  border: 1px solid rgba(143, 77, 255, 0.16);
  border-radius: 999px;
  padding: 6px 9px;
  background: linear-gradient(135deg, rgba(255, 40, 169, 0.06), rgba(34, 108, 255, 0.06));
  color: #4a3f71;
  font-size: 0.61rem;
  font-weight: 820;
  letter-spacing: 0.045em;
}

.section-heading-inverse .section-intro {
  max-width: 500px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.section-heading-inverse .text-link {
  margin-top: 10px;
  color: var(--text);
}

.services-grid {
  display: grid;
  min-width: 0;
  grid-auto-rows: auto;
  align-items: start;
  gap: 16px;
}

.service-card {
  height: auto;
  min-height: 0;
  align-self: start;
}

.card {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  border: 1px solid rgba(16, 18, 32, 0.085);
  border-radius: 13px;
  padding: 14px;
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 8px 22px rgba(24, 30, 60, 0.04);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.card:hover {
  z-index: 1;
  border-color: rgba(143, 77, 255, 0.2);
  box-shadow: 0 12px 28px rgba(24, 30, 60, 0.07);
  transform: translateY(-1px);
}

.card-index {
  color: #ff68c4;
  font-size: 0.57rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-icon {
  display: grid;
  width: 46px;
  height: 46px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(143, 77, 255, 0.14);
  border-radius: 11px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 40, 169, 0.12), transparent 70%),
    linear-gradient(145deg, rgba(255, 40, 169, 0.07), rgba(34, 108, 255, 0.08));
  color: var(--pink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 8px 20px rgba(80, 54, 150, 0.08);
}

.service-card:nth-child(2n) .service-icon {
  color: var(--violet);
}

.service-card:nth-child(3n) .service-icon {
  color: var(--blue);
}

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

.service-card-copy {
  min-width: 0;
}

.card h3 {
  margin-top: 3px;
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  line-height: 1.14;
}

.card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.card .service-description {
  color: #666e80;
}

/* Process */
.section-surface {
  background: #eff2f8;
}

.process-heading {
  display: grid;
  max-width: none;
  gap: 4px;
  margin-bottom: 28px;
}

.process-heading h2 {
  max-width: 680px;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
}

.process-heading .section-intro {
  max-width: 650px;
  margin-top: 12px;
}

.process-list {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  align-items: start;
  gap: 14px;
  list-style: none;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 39px;
  width: 1px;
  background: linear-gradient(180deg, var(--cyan), var(--violet), var(--pink));
  opacity: 0.3;
}

.process-list > li {
  --process-accent: var(--cyan);
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  min-height: 0;
  align-self: start;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: start;
  gap: 5px 14px;
  border: 1px solid rgba(16, 18, 32, 0.1);
  border-radius: 16px;
  padding: 17px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 9px 26px rgba(27, 32, 59, 0.045);
}

.process-list > li:nth-child(2) {
  --process-accent: var(--violet);
}

.process-list > li:nth-child(3) {
  --process-accent: var(--pink);
}

.process-list > li:nth-child(4) {
  --process-accent: var(--blue);
}

.process-stage-label {
  display: block;
  grid-column: 1 / -1;
  margin-bottom: 6px;
  color: var(--process-accent);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.process-icon {
  display: grid;
  width: 44px;
  height: 44px;
  grid-row: 2 / span 2;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--process-accent) 32%, transparent);
  border-radius: 13px;
  background: color-mix(in srgb, var(--process-accent) 10%, white);
  color: var(--process-accent);
}

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

.process-list h3 {
  font-size: 1.08rem;
  line-height: 1.15;
}

.process-list p {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

/* Marketplace proof */
.proof-section {
  overflow: hidden;
  padding-block: 72px;
  background:
    radial-gradient(circle at 88% 32%, rgba(34, 108, 255, 0.2), transparent 30rem),
    radial-gradient(circle at 12% 88%, rgba(255, 40, 169, 0.1), transparent 25rem),
    #090b1b;
  color: #fff;
}

.proof-layout {
  display: grid;
  min-width: 0;
  gap: 22px;
}

.proof-intro h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4.4vw, 3rem);
}

.proof-intro .lead {
  max-width: 720px;
  margin-top: 16px;
  color: var(--muted-inverse);
  font-size: 0.96rem;
  line-height: 1.6;
}

.proof-support {
  max-width: 720px;
  margin-top: 12px;
  color: #929bb3;
  font-size: 0.83rem;
  line-height: 1.55;
}

.experience-card-grid {
  display: grid;
  min-width: 0;
  gap: 12px;
}

.experience-card {
  --experience-accent: var(--cyan);
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  align-content: start;
  border: 1px solid color-mix(in srgb, var(--experience-accent) 28%, transparent);
  border-radius: 16px;
  padding: 20px;
  background:
    radial-gradient(circle at 92% 12%, color-mix(in srgb, var(--experience-accent) 15%, transparent), transparent 42%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.experience-card:nth-child(2) {
  --experience-accent: var(--pink);
}

.experience-value {
  width: fit-content;
  color: var(--experience-accent);
  font-size: clamp(1.65rem, 4vw, 2.3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.experience-card h3 {
  margin-top: 10px;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.2;
}

.experience-card p {
  margin-top: 8px;
  color: #9da6bd;
  font-size: 0.78rem;
  line-height: 1.5;
}

.proof-credential-layer {
  display: grid;
  min-width: 0;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
}

.upwork-proof-cluster {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 8px;
}

.upwork-proof-cluster span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 207, 255, 0.18);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(0, 207, 255, 0.055);
  color: #e7f8ff;
  font-size: 0.7rem;
  font-weight: 780;
  line-height: 1.2;
}

.upwork-proof-cluster span::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 9px rgba(0, 207, 255, 0.58);
}

.proof-boundary {
  max-width: 780px;
  color: #7f899f;
  font-size: 0.72rem;
  line-height: 1.5;
}

.proof-capabilities {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-capabilities li {
  border: 1px solid rgba(143, 77, 255, 0.2);
  border-radius: 9px;
  padding: 8px 10px;
  background: rgba(143, 77, 255, 0.06);
  color: #b6bed2;
  font-size: 0.68rem;
  font-weight: 720;
  line-height: 1.2;
}

/* Verified client reviews */
.reviews-section {
  overflow: hidden;
  padding-block: 72px;
  background:
    radial-gradient(circle at 15% 15%, rgba(143, 77, 255, 0.14), transparent 26rem),
    radial-gradient(circle at 88% 82%, rgba(0, 207, 255, 0.1), transparent 24rem),
    #111326;
  color: #fff;
}

.reviews-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.reviews-heading h2 {
  margin-top: 10px;
  font-size: clamp(2rem, 4.4vw, 3rem);
}

.reviews-heading > p:last-child {
  margin-top: 12px;
  color: #9ba5bc;
  font-size: 0.92rem;
}

.reviews-grid {
  display: grid;
  min-width: 0;
  align-items: start;
  gap: 14px;
}

.review-card {
  --review-accent: var(--cyan);
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 0;
  align-self: start;
  align-content: start;
  gap: 17px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--review-accent) 24%, transparent);
  border-radius: 17px;
  padding: 20px;
  background:
    radial-gradient(circle at 100% 0, color-mix(in srgb, var(--review-accent) 10%, transparent), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.review-card:nth-child(2),
.review-card:nth-child(5) {
  --review-accent: var(--pink);
}

.review-card:nth-child(3) {
  --review-accent: var(--violet);
}

.review-card:nth-child(4) {
  --review-accent: var(--blue);
}

.review-card-top {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 12px;
}

.review-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.review-rating span {
  color: #ffc94a;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.review-rating strong {
  color: #fff;
  font-size: 0.7rem;
}

.review-verified {
  color: var(--review-accent);
  font-size: 0.55rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.review-card blockquote {
  margin: 0;
}

.review-card blockquote p {
  color: #f1f3fa;
  font-size: 0.91rem;
  line-height: 1.58;
}

.review-card blockquote p::before {
  content: "“";
  color: var(--review-accent);
  font-size: 1.3em;
  font-weight: 900;
}

.review-card blockquote p::after {
  content: "”";
  color: var(--review-accent);
  font-size: 1.3em;
  font-weight: 900;
}

.review-card footer {
  display: grid;
  gap: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 13px;
}

.review-card footer strong {
  color: #fff;
  font-size: 0.76rem;
}

.review-card footer span {
  color: #8993aa;
  font-size: 0.66rem;
}

.reviews-evidence-note {
  max-width: 780px;
  margin-top: 18px;
  color: #7f899f;
  font-size: 0.7rem;
  line-height: 1.5;
}

/* Work frameworks */
#work {
  padding-block: 64px;
  background: var(--paper-bright);
}

.work-intro {
  max-width: 960px;
  margin-bottom: 28px;
}

.work-intro h2 {
  max-width: 760px;
  margin-top: 10px;
  font-size: clamp(2rem, 5vw, 2.8rem);
}

.work-intro .section-intro {
  max-width: 800px;
  margin-top: 14px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.work-cta {
  margin-top: 16px;
  color: var(--text);
}

.card-grid {
  display: grid;
  min-width: 0;
  gap: 16px;
}

.work-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  align-content: start;
  border: 1px solid rgba(16, 18, 32, 0.1);
  border-radius: 15px;
  padding: 10px 10px 15px;
  background: #f7f8fc;
  box-shadow: 0 10px 30px rgba(23, 28, 55, 0.055);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.work-card:hover {
  border-color: rgba(143, 77, 255, 0.22);
  box-shadow: 0 15px 38px rgba(23, 28, 55, 0.09);
  transform: translateY(-2px);
}

.work-card-meta {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px 10px;
  margin-top: 11px;
}

.work-category,
.work-status {
  font-size: 0.57rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.work-category {
  color: var(--pink);
}

.work-status {
  color: #777f94;
}

.work-card h3,
.work-card p {
  position: relative;
  z-index: 1;
}

.work-card h3 {
  margin-top: 9px;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  line-height: 1.15;
}

.work-card p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.framework-visual {
  position: relative;
  aspect-ratio: 5 / 2;
  overflow: hidden;
  border: 1px solid rgba(143, 77, 255, 0.16);
  border-radius: 11px;
  background: #090b1d;
  box-shadow: inset 0 0 0 1px rgba(0, 207, 255, 0.04);
}

.framework-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Contact */
.contact-section {
  padding-top: 40px;
  padding-bottom: 40px;
  background: var(--paper-bright);
}

.contact-inner {
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  align-items: center;
  gap: 26px;
  border: 1px solid rgba(0, 207, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 30px;
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 40, 169, 0.18), transparent 18rem),
    radial-gradient(circle at 82% 20%, rgba(0, 207, 255, 0.16), transparent 24rem),
    #080a18;
  color: #fff;
  box-shadow: var(--shadow-dark);
}

.contact-mark {
  position: relative;
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border: 1px solid rgba(0, 207, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.contact-mark span {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 40, 169, 0.24);
  border-radius: 50%;
}

.contact-mark img {
  width: 48px;
}

.contact-copy h2 {
  max-width: 660px;
  font-size: clamp(2rem, 7vw, 3.3rem);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 15px;
  color: var(--muted-inverse);
}

.contact-action {
  display: grid;
  min-width: 0;
  gap: 10px;
}

.contact-action .btn {
  width: 100%;
}

.contact-action .credibility-line {
  margin-top: 3px;
  overflow-wrap: anywhere;
  color: #aab3c8;
  font-size: 0.72rem;
  line-height: 1.5;
  text-align: center;
}

.contact-action .credibility-line a {
  color: var(--cyan-bright);
  font-weight: 750;
}

.contact-action .credibility-line a:hover,
.contact-action .credibility-line a:focus-visible {
  color: #fff;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 38px 0 28px;
  background: #070812;
  color: #8f96a9;
}

.footer-inner {
  display: grid;
  min-width: 0;
  gap: 32px;
  font-size: 0.82rem;
}

.footer-logo {
  display: inline-flex;
  max-width: 100%;
  overflow: visible;
}

.footer-brand-logo {
  display: block;
  width: min(210px, 100%);
  height: auto;
  object-fit: contain;
}

.footer-brand-block p {
  max-width: 390px;
  margin-top: 18px;
  color: #9aa2b7;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  gap: 28px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-links strong {
  margin-bottom: 3px;
  color: #ffffff;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  color: #939bae;
  overflow-wrap: anywhere;
}

.footer-links .footer-project-link {
  width: fit-content;
  margin-top: 4px;
  color: var(--cyan-bright);
  font-weight: 750;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--cyan-bright);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(0, 207, 255, 0.38);
  border-radius: 50%;
  background: rgba(8, 10, 24, 0.9);
  color: var(--cyan-bright);
  font-size: 1rem;
  font-weight: 850;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

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

.back-to-top:hover,
.back-to-top:focus-visible {
  background: rgba(0, 207, 255, 0.16);
}

/* Reveal states retained for main.js */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (scripting: none) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Tablet */
@media (min-width: 760px) {
  .container {
    width: min(calc(100% - 64px), var(--max-width));
  }

  .section {
    padding: 104px 0;
  }

  .hero {
    min-height: 880px;
    padding-top: 130px;
    padding-bottom: 40px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
    align-items: center;
    gap: 38px;
  }

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

  .hero-proof-grid {
    grid-column: 1 / -1;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .hero-proof-item {
    min-height: 82px;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 0;
  }

  .hero-proof-item:nth-child(even) {
    border-right: 1px solid rgba(255, 255, 255, 0.09);
  }

  .hero-proof-item:last-child {
    grid-column: auto;
    border-right: 0;
  }

  .platform-strip {
    padding-bottom: 8px;
  }

  .platform-logos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px 18px;
  }

  .platform-logo-item {
    height: 62px;
    justify-content: center;
  }

  .platform-logo-image-meta {
    width: 176px;
  }

  .platform-logo-image-shopify {
    width: 148px;
  }

  .platform-logo-image-google {
    width: 148px;
  }

  .platform-logo-image-tiktok {
    width: 148px;
  }

  .platform-service-labels {
    grid-column: 1 / -1;
    justify-content: center;
  }

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

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

  #services {
    padding-block: 56px;
  }

  #work {
    padding-block: 72px;
  }

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

  .section-heading-inverse {
    padding: 0;
  }

  .experience-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-capabilities {
    gap: 9px;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .review-card {
    display: flex;
    height: 100%;
    align-self: stretch;
    flex-direction: column;
  }

  .review-card footer {
    margin-top: auto;
  }

  .review-card:last-child {
    grid-column: 1 / -1;
  }

  .contact-inner {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 42px;
  }

  .contact-action {
    grid-column: 2;
  }

  .footer-inner {
    grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
    align-items: start;
  }

  .footer-bottom {
    grid-column: 1 / -1;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .site-header {
    top: 16px;
  }

  .header-inner {
    min-height: 64px;
    border-radius: 999px;
    padding: 6px 7px 6px 20px;
  }

  .brand-logo {
    width: 162px;
  }

  .header-brand-logo {
    width: 204px;
  }

  .header-cta {
    display: inline-flex;
    border-radius: 999px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    max-height: none;
    overflow: visible;
    align-items: center;
    gap: 0;
    margin-left: auto;
    border: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
  }

  .site-nav a:not(.btn) {
    min-height: 38px;
    border-radius: 999px;
    padding: 0 11px;
    font-size: 0.8rem;
  }

  .nav-mobile-cta {
    display: none;
  }

  .hero {
    min-height: 900px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(450px, 1.14fr);
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 3.65vw, 3.5rem);
  }

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

  .hero-value-card {
    min-height: 64px;
  }

  .platform-strip {
    grid-template-columns: minmax(150px, 0.26fr) minmax(0, 1.74fr);
    align-items: center;
    gap: 26px;
  }

  .platform-strip p {
    max-width: 170px;
  }

  .platform-logos {
    grid-template-columns: repeat(4, minmax(130px, 1fr)) auto;
    align-items: center;
    gap: 0 18px;
  }

  .platform-logo-item {
    height: 62px;
    justify-content: center;
  }

  .platform-logo-image-meta {
    width: 186px;
  }

  .platform-logo-image-shopify {
    width: 150px;
  }

  .platform-logo-image-google {
    width: 154px;
  }

  .platform-logo-image-tiktok {
    width: 150px;
  }

  .platform-service-labels {
    grid-column: auto;
    min-height: 44px;
    justify-content: flex-end;
    border-left: 1px solid rgba(255, 255, 255, 0.075);
    padding-left: 20px;
  }

  .services-shell {
    grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1.7fr);
    align-items: start;
    gap: 40px;
  }

  .section-heading-inverse h2 {
    font-size: 2.45rem;
  }

  .section-heading-inverse {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

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

  .process-heading {
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    align-items: end;
    gap: 6px 40px;
  }

  .process-heading .eyebrow {
    grid-column: 1 / -1;
  }

  .process-heading .section-intro {
    margin: 0 0 4px;
  }

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

  .process-list > li:not(:last-child)::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 64px;
    right: -17px;
    width: 17px;
    height: 1px;
    background: linear-gradient(90deg, var(--process-accent), var(--violet));
    opacity: 0.55;
  }

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

  .work-intro {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr) auto;
    align-items: end;
    gap: 12px 28px;
  }

  .work-intro .eyebrow {
    grid-column: 1 / -1;
  }

  .work-intro h2,
  .work-intro .section-intro,
  .work-cta {
    margin-top: 0;
  }

  .work-cta {
    margin-bottom: 2px;
    white-space: nowrap;
  }

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

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

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

  .review-card:nth-child(4) {
    grid-column: 1 / span 3;
  }

  .review-card:nth-child(5) {
    grid-column: 4 / span 3;
  }

  .contact-inner {
    grid-template-columns: auto minmax(0, 1fr) minmax(230px, 0.34fr);
    gap: 34px;
    padding: 38px 44px;
  }

  .contact-action {
    grid-column: auto;
  }

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

  .footer-contact {
    grid-column: auto;
  }
}

/* Wide desktop */
@media (min-width: 1180px) {
  .site-nav a:not(.btn) {
    padding-inline: 14px;
  }

  .hero h1 { font-size: 3.5rem; }

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

  .proof-layout {
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: 24px 46px;
  }

  .proof-credential-layer,
  .proof-capabilities {
    grid-column: 1 / -1;
  }
}

/* Narrow mobile safeguards */
@media (max-width: 479px) {
  .hero {
    min-height: auto;
  }

  .hero .button-row .btn {
    width: 100%;
  }

  .header-brand-logo {
    width: 156px;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 10.4vw, 2.65rem);
    line-height: 1.07;
  }

  .contact-inner {
    padding: 26px;
  }

  .contact-mark {
    width: 74px;
    height: 74px;
  }

  .contact-action .credibility-line {
    text-align: left;
  }

  .footer-brand-logo {
    width: 184px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
