:root {
  --paper: #f5f7f6;
  --surface: #ffffff;
  --surface-soft: #eef2f5;
  --ink: #071a2b;
  --text: #2b3c4d;
  --muted: #63717f;
  --line: #dce3e7;
  --line-dark: rgba(255, 255, 255, 0.14);
  --blue: #245fe0;
  --blue-bright: #4b83ff;
  --blue-hover: #194fc8;
  --blue-soft: #e8efff;
  --navy: #091c2e;
  --navy-raised: #102b44;
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --shadow: 0 1px 2px rgba(7, 26, 43, 0.04), 0 18px 48px rgba(7, 26, 43, 0.07);
  --container: min(1320px, calc(100vw - clamp(40px, 8vw, 144px)));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button,
select {
  cursor: pointer;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

::selection {
  color: #fff;
  background: var(--blue);
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 9999;
  padding: 12px 18px;
  color: #fff;
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(245, 247, 246, 0);
  border-bottom: 1px solid transparent;
  transition: padding 280ms ease, background 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(7, 26, 43, 0.08);
  box-shadow: 0 8px 30px rgba(7, 26, 43, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-shell {
  position: relative;
  width: min(1440px, calc(100vw - 40px));
  min-height: 62px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  color: var(--ink);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 17px;
  letter-spacing: -0.035em;
}

.brand-copy small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 8.5px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.primary-nav {
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.8vw, 30px);
}

.primary-nav a {
  position: relative;
  padding: 12px 0;
  color: #314151;
  font-size: 13px;
  font-weight: 550;
  white-space: nowrap;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 1.5px;
  background: var(--blue);
  transition: right 220ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="true"]::after {
  right: 0;
}

.nav-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-control {
  min-width: 118px;
  height: 42px;
  padding: 0 9px 0 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(7, 26, 43, 0.12);
  border-radius: 11px;
  transition: border-color 180ms ease, background 180ms ease;
}

.language-control:hover {
  background: #fff;
  border-color: rgba(7, 26, 43, 0.25);
}

.language-control:focus-within {
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(36, 95, 224, 0.2);
}

.language-control svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.language-control select {
  width: 78px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.nav-quote {
  height: 42px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 11px;
  font-size: 12px;
  font-weight: 600;
  transition: background 180ms ease, transform 180ms ease;
}

.nav-quote:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-1px);
}

.menu-toggle {
  width: 44px;
  height: 42px;
  padding: 0;
  display: none;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(7, 26, 43, 0.14);
  border-radius: 11px;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform 220ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 920px;
  padding: 170px 0 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 46vw;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(219, 229, 238, 0.32));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(400px, 0.84fr);
  align-items: center;
  gap: clamp(40px, 4.5vw, 80px);
}

.hero-copy,
.hero-visual,
.section-intro > *,
.process-heading > *,
.testimonial-heading > *,
.project-card > *,
.about-grid > *,
.contact-shell > * {
  min-width: 0;
}

h1,
h2,
h3,
blockquote,
.button span,
.contact-steps b {
  overflow-wrap: break-word;
  word-break: normal;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span:first-child {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 880px;
  margin-top: 27px;
  font-size: clamp(3.45rem, 5.6vw, 6.15rem);
  font-weight: 650;
  letter-spacing: -0.062em;
  line-height: 0.94;
  text-wrap: balance;
}

.hero-lead {
  max-width: 690px;
  margin-top: 32px;
  color: var(--text);
  font-size: clamp(1.04rem, 1.35vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.button svg,
.text-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 200ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover svg,
.text-link:hover svg {
  transform: translateX(3px);
}

.button-primary {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.button-primary:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: rgba(7, 26, 43, 0.18);
}

.button-secondary:hover {
  background: #fff;
  border-color: rgba(7, 26, 43, 0.3);
}

.hero-proof {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
}

.hero-proof li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 550;
  letter-spacing: 0.02em;
}

.hero-proof li > span:first-child {
  width: 5px;
  height: 5px;
  background: var(--blue);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  width: calc(100% + 5vw);
  margin-right: -5vw;
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  background: #eaf0f7;
  border: 1px solid rgba(7, 26, 43, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: inherit;
  pointer-events: none;
}

.hero-image-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
  object-position: 57% center;
}

.visual-caption {
  position: absolute;
  right: 28px;
  bottom: 24px;
  max-width: 245px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #eaf2ff;
  background: rgba(7, 26, 43, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.pulse-dot {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  background: #6dffbe;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(109, 255, 190, 0.13);
}

.visual-chip {
  position: absolute;
  min-width: 138px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(7, 26, 43, 0.11);
  border-radius: 11px;
  box-shadow: 0 12px 35px rgba(7, 26, 43, 0.08);
  backdrop-filter: blur(10px);
}

.visual-chip span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
}

.visual-chip b {
  font-size: 11px;
  font-weight: 650;
}

.chip-web {
  top: 17%;
  left: -25px;
}

.chip-ai {
  right: -15px;
  top: 47%;
}

.hero-rule {
  position: relative;
  z-index: 1;
  margin-top: 80px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.16em;
}

.hero-rule i {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.trust-section {
  padding: 0 0 clamp(78px, 8vw, 116px);
  background: var(--paper);
}

.trust-shell {
  position: relative;
  padding: clamp(34px, 5vw, 66px);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(7, 26, 43, 0.09);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(7, 26, 43, 0.055);
}

.trust-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(34px, 5vw, 66px);
  width: 82px;
  height: 2px;
  background: var(--blue);
}

.trust-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: end;
}

.trust-heading h2 {
  max-width: 780px;
  margin-top: 20px;
  font-size: clamp(2.4rem, 4.5vw, 4.4rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1;
  text-wrap: balance;
}

.trust-heading > p {
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.trust-capabilities {
  margin-top: clamp(38px, 5vw, 68px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-capabilities li {
  min-height: 92px;
  padding: 22px clamp(14px, 2vw, 26px);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  border-right: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease;
}

.trust-capabilities li:first-child {
  padding-left: 0;
}

.trust-capabilities li:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-capabilities li:hover {
  color: var(--ink);
  background: #f9fbff;
}

.trust-capabilities svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  padding: 4px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: var(--blue);
  border-radius: 50%;
}

.trust-clients {
  margin-top: 42px;
  display: grid;
  grid-template-columns: minmax(165px, 0.8fr) minmax(0, 3.2fr);
  gap: 30px;
  align-items: center;
}

.trust-clients > h3 {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.trust-client-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-client-grid > div {
  min-width: 0;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: 12px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.trust-client-grid > div:hover {
  background: #fff;
  border-color: var(--line);
  transform: translateY(-2px);
}

.client-monogram {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 9px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.product-monogram {
  background: var(--blue);
}

.trust-client-grid p {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.trust-client-grid strong {
  overflow: hidden;
  font-size: 10px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trust-client-grid small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 7px;
  line-height: 1.35;
}

.section {
  padding: clamp(100px, 11vw, 164px) 0;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(60px, 1fr) minmax(0, 5.6fr) minmax(280px, 3fr);
  gap: clamp(20px, 3vw, 52px);
  align-items: end;
  margin-bottom: clamp(55px, 6.8vw, 96px);
}

.section-index {
  padding-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.13em;
}

.section-intro h2,
.process-heading h2,
.about-copy h2,
.testimonial-heading h2 {
  margin-top: 22px;
  font-size: clamp(2.55rem, 4.8vw, 4.75rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.99;
  text-wrap: balance;
}

.section-summary {
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.services {
  background: var(--surface);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 275px;
  padding: 34px clamp(28px, 3.5vw, 52px) 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.service-card:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 320ms var(--ease);
}

.service-card:hover {
  z-index: 1;
  background: #fbfcff;
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card:hover::before {
  width: 100%;
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.card-top span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.13em;
}

.card-top svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-bottom: 11px;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.service-email {
  width: fit-content;
  margin-top: 12px;
  display: inline-block;
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.service-email:hover {
  color: var(--blue-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-card p {
  max-width: 440px;
  color: var(--muted);
  font-size: 14px;
}

.why-section {
  padding-block: clamp(80px, 9vw, 128px);
  background: var(--paper);
}

.why-shell {
  padding: clamp(46px, 7vw, 100px);
  color: #fff;
  background: var(--navy);
  border-radius: 40px;
  overflow: hidden;
}

.why-heading {
  display: grid;
  grid-template-columns: 1.55fr 0.45fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 70px;
}

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

.eyebrow-light {
  color: #79a1ff;
}

.why-heading h2 {
  max-width: 820px;
  font-size: clamp(2.7rem, 5.2vw, 5.35rem);
  font-weight: 600;
  letter-spacing: -0.058em;
  line-height: 0.98;
  text-wrap: balance;
}

.why-heading > p:last-child {
  max-width: 330px;
  color: #9db0c2;
  font-size: 14px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.why-card {
  min-height: 180px;
  padding: 30px;
  display: grid;
  grid-template-columns: 55px 1fr;
  align-items: start;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: background 220ms ease;
}

.why-card:hover {
  background: var(--navy-raised);
}

.why-card > span {
  color: #79a1ff;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.1em;
}

.why-card h3 {
  margin-bottom: 9px;
  font-size: 21px;
  font-weight: 550;
  letter-spacing: -0.025em;
}

.why-card p {
  color: #9db0c2;
  font-size: 13px;
}

.why-card-wide {
  grid-column: 1 / -1;
  min-height: 150px;
}

.portfolio {
  background: var(--surface);
}

.portfolio-group + .portfolio-group {
  margin-top: clamp(120px, 13vw, 190px);
  padding-top: clamp(75px, 8vw, 112px);
  border-top: 1px solid var(--line);
}

.portfolio-group-heading {
  margin-bottom: clamp(46px, 6vw, 80px);
  display: grid;
  grid-template-columns: minmax(130px, 0.8fr) auto minmax(40px, 3.2fr);
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
}

.portfolio-group-heading > span {
  color: var(--blue);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.portfolio-group-heading h3 {
  font-size: clamp(1.65rem, 2.7vw, 2.7rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
  white-space: nowrap;
}

.portfolio-group-heading i {
  height: 1px;
  background: var(--line);
}

.project-list {
  display: grid;
  gap: 70px;
}

.project-card {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.55fr);
  gap: clamp(30px, 4.8vw, 74px);
  align-items: center;
}

.project-card-reverse {
  grid-template-columns: minmax(360px, 0.55fr) minmax(0, 1.45fr);
}

.project-card-reverse .project-visual {
  order: 2;
}

.project-card-reverse .project-body {
  order: 1;
}

.project-visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 30px;
  transition: transform 450ms var(--ease);
}

.project-card:hover .project-visual {
  transform: translateY(-5px);
}

.project-body {
  padding: 18px 0;
}

.project-meta {
  margin-bottom: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-badge {
  padding: 6px 8px;
  color: #315269;
  background: #edf4f7;
  border-radius: 5px;
}

.project-badge.product-badge {
  color: var(--blue);
  background: var(--blue-soft);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.status i {
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
}

.status b {
  font: inherit;
}

.status-complete {
  color: #1d8057;
}

.status-progress {
  color: var(--blue);
}

.project-body h3,
.project-body h4 {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 4.1rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
}

.project-body > p {
  max-width: 480px;
  margin-top: 20px;
  color: var(--text);
  font-size: 16px;
}

.project-foot {
  margin-top: 48px;
  padding-top: 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
}

.project-foot > p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-foot > p i {
  width: 2px;
  height: 2px;
  background: var(--muted);
  border-radius: 50%;
}

.text-link {
  padding: 7px 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
}

/* Project artwork — built in CSS to stay crisp at every size. */
.mockup-inu {
  padding: clamp(30px, 5vw, 72px);
  display: grid;
  place-items: center;
  background: #e9e4da;
}

.mock-browser {
  width: 100%;
  max-width: 800px;
  overflow: hidden;
  background: #fcfaf5;
  border: 1px solid rgba(35, 43, 48, 0.17);
  border-radius: 14px;
  box-shadow: 0 28px 70px rgba(41, 36, 28, 0.15);
  transform: rotate(-1.6deg);
}

.mock-browser-bar {
  height: 42px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #777268;
  background: #f4f0e7;
  border-bottom: 1px solid rgba(35, 43, 48, 0.12);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.mock-browser-bar i {
  width: 6px;
  height: 6px;
  background: #c6bfb0;
  border-radius: 50%;
}

.mock-browser-bar span {
  margin-left: auto;
}

.inu-layout {
  min-height: 350px;
  padding: clamp(30px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 30px;
  align-items: center;
}

.inu-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.inu-copy small {
  color: #847b6d;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.inu-copy b {
  margin-top: 18px;
  color: #1e312f;
  font-size: clamp(19px, 2.3vw, 34px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.inu-copy span {
  width: 70px;
  height: 24px;
  margin-top: 27px;
  background: #214b45;
  border-radius: 4px;
}

.inu-ledger {
  min-height: 230px;
  padding: 18px;
  background: #fff;
  border: 1px solid #ddd6c7;
  border-radius: 9px;
  box-shadow: 0 15px 30px rgba(60, 51, 37, 0.1);
}

.ledger-top {
  width: 36%;
  height: 7px;
  background: #d6ddd8;
}

.ledger-value {
  margin-top: 20px;
  color: #1e312f;
  font-size: 24px;
  font-weight: 600;
}

.ledger-chart {
  height: 72px;
  margin-top: 18px;
  display: flex;
  align-items: end;
  gap: 6px;
  border-bottom: 1px solid #e8e2d7;
}

.ledger-chart i {
  flex: 1;
  background: #a9beb4;
  border-radius: 2px 2px 0 0;
}

.ledger-chart i:nth-child(1) { height: 30%; }
.ledger-chart i:nth-child(2) { height: 48%; }
.ledger-chart i:nth-child(3) { height: 44%; }
.ledger-chart i:nth-child(4) { height: 72%; }
.ledger-chart i:nth-child(5) { height: 92%; background: #214b45; }

.ledger-lines {
  height: 39px;
  margin-top: 16px;
  background: repeating-linear-gradient(to bottom, #e8e3da 0 1px, transparent 1px 13px);
}

.mockup-inventory {
  padding: clamp(28px, 4vw, 58px);
  display: grid;
  place-items: center;
  background: #153149;
}

.inventory-app {
  width: 100%;
  max-width: 820px;
  min-height: 405px;
  display: grid;
  grid-template-columns: 65px 1fr;
  overflow: hidden;
  background: #0d2032;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}

.inventory-app aside {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background: #091927;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.inventory-app aside b {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 7px;
  font-size: 9px;
}

.inventory-app aside i {
  width: 15px;
  height: 15px;
  border: 1px solid #70879c;
  border-radius: 4px;
}

.inventory-main {
  position: relative;
  padding: 30px;
  overflow: hidden;
}

.inventory-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.inventory-head div {
  display: flex;
  flex-direction: column;
}

.inventory-head small,
.inventory-stats small {
  color: #7890a5;
  font-size: 6px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.inventory-head b {
  color: #fff;
  font-size: 20px;
  font-weight: 550;
}

.inventory-head > span {
  padding: 7px 10px;
  color: #fff;
  background: var(--blue);
  border-radius: 5px;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.inventory-stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.inventory-stats i {
  padding: 15px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
}

.inventory-stats b {
  margin-bottom: 4px;
  color: #fff;
  font-size: 17px;
  font-style: normal;
  font-weight: 550;
}

.inventory-table {
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.inventory-table span {
  position: relative;
  height: 41px;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.inventory-table span::before,
.inventory-table span::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 5px;
  background: #61798e;
  border-radius: 3px;
  transform: translateY(-50%);
}

.inventory-table span::before { left: 4px; width: 28%; }
.inventory-table span::after { right: 4px; width: 13%; background: #2c9b73; }

.scan-corners {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 55px;
  height: 55px;
  border: 2px solid transparent;
  border-right-color: #4b83ff;
  border-bottom-color: #4b83ff;
}

.mockup-kala {
  background: #dbeaf7;
}

.kala-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: linear-gradient(rgba(36, 95, 224, 0.11) 1px, transparent 1px), linear-gradient(90deg, rgba(36, 95, 224, 0.11) 1px, transparent 1px);
  background-size: 42px 42px;
}

.kala-word {
  position: absolute;
  z-index: 2;
  padding: 22px;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(36, 95, 224, 0.18);
  border-radius: 13px;
  box-shadow: 0 22px 50px rgba(30, 74, 118, 0.11);
  backdrop-filter: blur(8px);
}

.kala-word small {
  color: var(--blue);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.kala-word b {
  margin-top: 11px;
  font-size: clamp(18px, 2.4vw, 34px);
  font-weight: 550;
  letter-spacing: -0.04em;
}

.kala-word span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 8px;
}

.word-one { top: 14%; left: 9%; width: 43%; }
.word-two { top: 51%; left: 37%; width: 38%; }
.word-three { top: 18%; right: 4%; width: 34%; }

.kala-lines {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: #fff;
  stroke: var(--blue);
  stroke-width: 2;
}

.mockup-arctic {
  padding: clamp(34px, 5vw, 75px);
  display: grid;
  place-items: center;
  background: #251517;
}

.mockup-arctic::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background: radial-gradient(circle at 75% 15%, #ca8f3f, transparent 30%), repeating-linear-gradient(100deg, transparent 0 3px, rgba(255,255,255,.03) 3px 4px);
}

.arctic-frame {
  position: relative;
  width: 100%;
  max-width: 760px;
  min-height: 390px;
  padding: clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #e9d9bd;
  border: 1px solid rgba(212, 169, 94, 0.44);
}

.arctic-frame::before,
.arctic-frame::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
}

.arctic-frame::before { top: -1px; left: -1px; border-top: 3px solid #c99442; border-left: 3px solid #c99442; }
.arctic-frame::after { right: -1px; bottom: -1px; border-right: 3px solid #c99442; border-bottom: 3px solid #c99442; }

.arctic-frame small,
.arctic-frame > span {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.arctic-frame > b {
  font-family: Georgia, serif;
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.78;
}

.arctic-frame > b em {
  color: #c99442;
  font-size: 0.58em;
  font-weight: 400;
}

.cigar {
  position: absolute;
  right: 13%;
  top: 50%;
  width: 44%;
  height: 25px;
  background: linear-gradient(180deg, #8e542f, #3f1d16 52%, #743c25);
  border-radius: 18px 5px 5px 18px;
  box-shadow: 0 18px 20px rgba(0, 0, 0, 0.28);
  transform: rotate(-12deg);
}

.cigar i {
  position: absolute;
  left: 30%;
  top: -2px;
  width: 27px;
  height: 29px;
  background: #b8863b;
  border: 2px solid #e0b76f;
}

.process {
  background: var(--paper);
}

.process-heading {
  display: grid;
  grid-template-columns: 1fr 4.2fr 2.1fr;
  gap: clamp(25px, 4vw, 70px);
  align-items: end;
}

.process-heading .eyebrow {
  margin-top: 22px;
}

.process-heading h2 {
  margin: 0;
}

.process-heading > p {
  padding-bottom: 7px;
  color: var(--muted);
  font-size: 14px;
}

.process-list {
  position: relative;
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 7px;
  right: 7px;
  height: 1px;
  background: var(--line);
}

.process-list::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 7px;
  width: 42%;
  height: 5px;
  background: var(--blue);
  border-radius: 4px;
}

.process-list li {
  position: relative;
  z-index: 1;
  padding-right: 28px;
}

.process-list li > span {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 6px var(--paper);
  font-size: 6px;
  font-weight: 700;
}

.process-list li:nth-child(-n+3) > span {
  background: var(--blue);
}

.process-list li div {
  margin-top: 37px;
}

.process-list h3 {
  margin-bottom: 9px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.process-list p {
  max-width: 180px;
  color: var(--muted);
  font-size: 12px;
}

.about {
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(55px, 8vw, 130px);
  align-items: stretch;
}

.about-statement {
  position: relative;
  min-height: 640px;
  padding: clamp(36px, 5vw, 66px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  background: var(--navy);
  border-radius: 32px;
  overflow: hidden;
}

.about-statement::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(75, 131, 255, 0.36);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(75, 131, 255, 0.04), 0 0 0 140px rgba(75, 131, 255, 0.025);
}

.about-statement .section-index {
  color: #7f94a8;
}

.statement-mark {
  position: absolute;
  top: 44px;
  right: 45px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
}

.statement-mark svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: #79a1ff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-statement blockquote {
  position: relative;
  z-index: 1;
  max-width: 470px;
  font-size: clamp(2rem, 3.6vw, 3.65rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.about-statement > p:last-child {
  position: relative;
  z-index: 1;
  color: #7f94a8;
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.15em;
}

.about-copy {
  padding: clamp(20px, 3vw, 45px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-copy h2 {
  margin-bottom: 36px;
}

.about-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.about-copy .about-lead {
  margin-bottom: 20px;
  color: var(--text) !important;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem) !important;
  line-height: 1.6 !important;
}

.about-principles {
  margin-top: 58px;
  border-top: 1px solid var(--line);
}

.about-principles div {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 50px 1fr;
  border-bottom: 1px solid var(--line);
}

.about-principles span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 650;
}

.about-principles p {
  color: var(--ink) !important;
  font-size: 13px !important;
  font-weight: 550;
}

.founder {
  position: relative;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.founder::before {
  content: "";
  position: absolute;
  left: 0;
  top: clamp(100px, 11vw, 164px);
  width: 5px;
  height: 120px;
  background: var(--blue);
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(55px, 8vw, 128px);
  align-items: center;
}

.founder-portrait {
  min-width: 0;
}

.founder-photo-frame {
  position: relative;
  overflow: hidden;
  background: #e8eef4;
  border: 1px solid rgba(7, 26, 43, 0.1);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.founder-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: inherit;
}

.founder-photo-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 28%;
}

.founder-photo-placeholder img {
  filter: saturate(0.72);
}

.founder-photo-placeholder > span {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 1;
  width: max-content;
  max-width: calc(100% - 32px);
  padding: 9px 12px;
  color: #dce9ff;
  background: rgba(7, 26, 43, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
}

.founder-portrait figcaption {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.founder-copy h2 {
  margin-top: 22px;
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  font-weight: 650;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.founder-identity {
  margin-top: 38px;
  padding: 20px 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.founder-identity h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.founder-identity p {
  color: var(--blue);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.founder-story {
  margin-top: 33px;
}

.founder-story p {
  max-width: 680px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.founder-story p + p {
  margin-top: 15px;
}

.founder-story .founder-lead {
  color: var(--text);
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  font-weight: 500;
  line-height: 1.65;
}

.founder-signature {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 17px;
}

.founder-signature > i {
  width: 48px;
  height: 1px;
  background: var(--blue);
}

.founder-signature p {
  display: flex;
  flex-direction: column;
}

.founder-signature strong {
  font-size: 17px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.founder-signature span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-signature a {
  width: fit-content;
  margin-top: 8px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 600;
}

.founder-signature a:hover {
  color: var(--blue-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.testimonials {
  background: var(--paper);
}

.testimonial-heading {
  display: grid;
  grid-template-columns: 1fr 4.2fr 2.1fr;
  gap: clamp(25px, 4vw, 70px);
  align-items: end;
  margin-bottom: 75px;
}

.testimonial-heading .eyebrow {
  margin-top: 22px;
}

.testimonial-heading h2 {
  margin: 0;
}

.testimonial-heading > p {
  color: var(--muted);
  font-size: 14px;
}

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

.testimonial-card {
  position: relative;
  min-height: 370px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.sample-label,
.client-label {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 5px 8px;
  color: var(--muted);
  background: var(--surface-soft);
  border-radius: 5px;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.client-label {
  color: #176b49;
  background: #e9f6f0;
}

.stars {
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.testimonial-card blockquote {
  margin-top: 48px;
  color: var(--text);
  font-size: clamp(1.15rem, 1.55vw, 1.42rem);
  letter-spacing: -0.025em;
  line-height: 1.5;
}

.testimonial-card footer {
  margin-top: auto;
  padding-top: 35px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-placeholder {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 50%;
  font-size: 8px;
  font-weight: 700;
}

.testimonial-card footer div:last-child {
  display: flex;
  flex-direction: column;
}

.testimonial-card footer strong {
  font-size: 12px;
  font-weight: 600;
}

.testimonial-card footer span {
  color: var(--muted);
  font-size: 10px;
}

.testimonial-coming {
  justify-content: space-between;
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
  overflow: hidden;
}

.testimonial-coming::before {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(75, 131, 255, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(75, 131, 255, 0.045), 0 0 0 110px rgba(75, 131, 255, 0.025);
}

.coming-mark {
  position: relative;
  z-index: 1;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.coming-mark span {
  position: absolute;
  width: 15px;
  height: 1px;
  background: #79a1ff;
}

.coming-mark span:last-child {
  transform: rotate(90deg);
}

.testimonial-coming > div:nth-child(2) {
  position: relative;
  z-index: 1;
}

.testimonial-coming h3 {
  max-width: 330px;
  font-size: clamp(1.7rem, 2.6vw, 2.55rem);
  font-weight: 550;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.testimonial-coming p {
  max-width: 310px;
  margin-top: 15px;
  color: #9db0c2;
  font-size: 12px;
}

.coming-index {
  position: relative;
  z-index: 1;
  color: #71879a;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.contact {
  padding: clamp(85px, 10vw, 145px) 0;
  color: #fff;
  background: var(--navy);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(55px, 8vw, 125px);
  align-items: start;
}

.contact-copy h2 {
  max-width: 680px;
  margin-top: 27px;
  font-size: clamp(3rem, 5.5vw, 5.7rem);
  font-weight: 600;
  letter-spacing: -0.062em;
  line-height: 0.95;
  text-wrap: balance;
}

.contact-lead {
  max-width: 540px;
  margin-top: 28px;
  color: #a9bac9;
  font-size: 15px;
}

.contact-steps {
  margin-top: 58px;
  border-top: 1px solid var(--line-dark);
}

.contact-steps li {
  min-height: 51px;
  display: grid;
  grid-template-columns: 44px 1fr 20px;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
}

.contact-steps span {
  color: #79a1ff;
  font-size: 8px;
  font-weight: 700;
}

.contact-steps b {
  font-size: 12px;
  font-weight: 500;
}

.contact-steps i {
  color: #6e8294;
  font-size: 12px;
  font-style: normal;
}

.contact-details {
  margin-top: 50px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

.contact-details a,
.contact-details div {
  display: flex;
  flex-direction: column;
}

.contact-details span {
  margin-bottom: 6px;
  color: #74899c;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-details strong {
  font-size: 13px;
  font-weight: 500;
}

.contact-details a:hover strong {
  color: #79a1ff;
}

.contact-form {
  padding: clamp(32px, 5vw, 62px);
  color: var(--ink);
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.18);
}

.form-heading > span {
  color: var(--blue);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.form-heading h3 {
  margin-top: 15px;
  font-size: clamp(2rem, 3.3vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.form-heading p {
  margin-top: 13px;
  color: var(--muted);
  font-size: 13px;
}

.form-row {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  margin-top: 19px;
}

.form-row .field {
  margin-top: 0;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 10px;
  font-weight: 650;
}

.field input,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: #f7f9fa;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: 0;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.field input {
  height: 51px;
  padding: 0 15px;
}

.field textarea {
  min-height: 150px;
  padding: 14px 15px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #94a0aa;
  opacity: 1;
}

.field input:focus,
.field textarea:focus {
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(36, 95, 224, 0.12);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #bb3c3c;
}

.field-error {
  min-height: 18px;
  margin-top: 5px;
  color: #a72929;
  font-size: 9px;
}

.form-submit {
  width: 100%;
  margin-top: 13px;
  justify-content: space-between;
}

.form-note {
  margin-top: 13px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.form-status {
  min-height: 22px;
  margin-top: 8px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 550;
  text-align: center;
}

.site-footer {
  padding: 75px 0 24px;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 2fr) repeat(3, minmax(140px, 1fr));
  gap: clamp(35px, 6vw, 90px);
}

.footer-grid-expanded {
  grid-template-columns: minmax(240px, 1.7fr) repeat(4, minmax(115px, 1fr));
  gap: clamp(28px, 4vw, 65px);
}

.footer-brand > p {
  max-width: 280px;
  margin-top: 25px;
  color: var(--muted);
  font-size: 12px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-col h2 {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col a,
.social-placeholder {
  color: var(--text);
  font-size: 11px;
}

.footer-col a {
  overflow-wrap: anywhere;
}

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

.social-placeholder {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-placeholder small {
  padding: 2px 4px;
  color: #5c6874;
  background: var(--surface-soft);
  border-radius: 3px;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom {
  margin-top: 70px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 9px;
}

.footer-bottom > p:nth-child(2) {
  color: var(--ink);
  font-weight: 550;
}

.footer-bottom a:hover {
  color: var(--ink);
}

.project-dialog {
  width: min(640px, calc(100vw - 32px));
  padding: 0;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-radius: 26px;
  box-shadow: 0 40px 120px rgba(7, 26, 43, 0.32);
}

.project-dialog::backdrop {
  background: rgba(7, 26, 43, 0.7);
  backdrop-filter: blur(8px);
}

.dialog-inner {
  position: relative;
  padding: clamp(35px, 6vw, 65px);
}

.dialog-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  padding: 0;
  background: var(--surface-soft);
  border: 0;
  border-radius: 50%;
}

.dialog-close span {
  position: absolute;
  left: 13px;
  top: 20px;
  width: 16px;
  height: 1px;
  background: var(--ink);
  transform: rotate(45deg);
}

.dialog-close span:last-child {
  transform: rotate(-45deg);
}

.dialog-meta {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dialog-inner h2 {
  margin-top: 23px;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1;
}

.dialog-inner > p:not(.eyebrow):not(.dialog-note) {
  margin-top: 20px;
  color: var(--text);
  font-size: 16px;
}

.dialog-tech {
  margin-top: 35px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dialog-tech span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dialog-tech p {
  margin-top: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}

.dialog-note {
  margin-top: 25px;
  color: var(--muted);
  font-size: 10px;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveals-ready .reveal {
  opacity: 0;
  transform: translateY(20px);
}

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

.reveal-delay-1 { transition-delay: 70ms; }
.reveal-delay-2 { transition-delay: 140ms; }
.reveal-delay-3 { transition-delay: 210ms; }
.reveal-delay-4 { transition-delay: 280ms; }

html.is-translating main,
html.is-translating footer {
  opacity: 0.72;
  transition: opacity 100ms ease;
}

.legal-main {
  background: var(--paper);
}

.legal-hero {
  padding: 190px 0 clamp(90px, 10vw, 145px);
}

.legal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  gap: clamp(50px, 9vw, 145px);
  align-items: end;
}

.legal-hero h1 {
  max-width: 850px;
  margin-top: 26px;
  font-size: clamp(3.8rem, 7.5vw, 7.4rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.legal-intro {
  max-width: 720px;
  margin-top: 32px;
  color: var(--text);
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  line-height: 1.7;
}

.legal-updated {
  margin-top: 27px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-toc {
  padding: 28px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.legal-toc > span {
  margin-bottom: 13px;
  color: var(--blue);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-toc a {
  position: relative;
  padding: 11px 26px 11px 0;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 550;
  transition: color 180ms ease, padding-left 180ms ease;
}

.legal-toc a:last-child {
  border-bottom: 0;
}

.legal-toc a::after {
  content: "↘";
  position: absolute;
  right: 0;
  color: var(--muted);
}

.legal-toc a:hover {
  padding-left: 4px;
  color: var(--blue);
}

.legal-content {
  padding: clamp(90px, 10vw, 145px) 0;
  background: #fff;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(65px, 0.65fr) minmax(0, 6.35fr);
  gap: clamp(30px, 5vw, 80px);
}

.legal-rail {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
}

.legal-rail i {
  width: 1px;
  height: 160px;
  background: var(--line);
}

.legal-articles {
  max-width: 940px;
}

.legal-article {
  scroll-margin-top: 120px;
  padding: 0 0 clamp(70px, 8vw, 110px);
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.legal-article + .legal-article {
  padding-top: clamp(70px, 8vw, 110px);
}

.legal-article > span {
  padding-top: 8px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.legal-article h2 {
  max-width: 720px;
  font-size: clamp(2.2rem, 4vw, 3.85rem);
  font-weight: 600;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.legal-article h3 {
  margin-top: 38px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.legal-article p {
  max-width: 760px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.legal-article h3 + p {
  margin-top: 12px;
}

.legal-contact-card a {
  max-width: 520px;
  margin-top: 30px;
  padding: 17px 0;
  display: grid;
  grid-template-columns: 80px 1fr 22px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease, padding-left 180ms ease;
}

.legal-contact-card a:hover {
  padding-left: 6px;
  color: var(--blue);
}

.legal-contact-card small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-contact-card strong {
  font-size: 13px;
  font-weight: 600;
}

.legal-contact-card svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.legal-terms {
  border-bottom: 0;
  padding-bottom: 0;
}

.legal-cta {
  padding: 75px 0;
  background: var(--paper);
}

.legal-cta .container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.legal-cta p {
  margin-right: auto;
  color: var(--text);
  font-size: clamp(1.4rem, 2.4vw, 2.25rem);
  font-weight: 550;
  letter-spacing: -0.04em;
}

@media (max-width: 1180px) {
  .primary-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(7, 26, 43, 0.1);
    border-radius: 18px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .primary-nav[data-open="true"] {
    display: flex;
  }

  .primary-nav a {
    padding: 13px 10px;
    font-size: 14px;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .primary-nav a::after {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: grid;
  }

  .nav-actions {
    margin-left: auto;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 35px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 6vw, 5.2rem);
  }

  .project-card,
  .project-card-reverse {
    grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
  }

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

  .contact-shell {
    grid-template-columns: minmax(320px, 0.8fr) minmax(480px, 1.2fr);
    gap: 55px;
  }
}

@media (max-width: 980px) {
  :root {
    --container: min(100% - 48px, 920px);
  }

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

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

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

  .hero h1 {
    font-size: clamp(3.8rem, 10vw, 6.6rem);
  }

  .hero-visual {
    width: 90%;
    margin-top: 20px;
    margin-left: auto;
    margin-right: 0;
  }

  .hero-image-frame img {
    aspect-ratio: 1.55 / 1;
  }

  .section-intro,
  .process-heading,
  .testimonial-heading {
    grid-template-columns: 60px 1fr;
  }

  .section-intro .section-summary,
  .process-heading > p,
  .testimonial-heading > p {
    grid-column: 2;
    max-width: 620px;
    padding-top: 10px;
  }

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

  .why-heading > p:last-child {
    max-width: 540px;
  }

  .project-list {
    gap: 100px;
  }

  .project-card,
  .project-card-reverse {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .project-card-reverse .project-visual,
  .project-card-reverse .project-body {
    order: initial;
  }

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

  .project-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 35px;
  }

  .project-meta,
  .project-body h3,
  .project-body h4,
  .project-body > p,
  .project-foot {
    grid-column: 1 / -1;
  }

  .project-meta {
    margin-bottom: 5px;
  }

  .project-foot {
    margin-top: 15px;
  }

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

  .about-statement {
    min-height: 560px;
  }

  .about-copy {
    padding-top: 20px;
  }

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

  .testimonial-card:last-child {
    grid-column: 1 / -1;
    min-height: 320px;
  }

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

  .contact-copy {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0 60px;
  }

  .contact-copy .eyebrow,
  .contact-copy h2,
  .contact-copy .contact-lead {
    grid-column: 1 / -1;
  }

  .contact-steps {
    grid-column: 1;
  }

  .contact-details {
    grid-column: 2;
    grid-template-columns: 1fr;
    align-content: end;
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 720px) {
  :root {
    --container: calc(100vw - 36px);
  }

  html {
    scroll-padding-top: 90px;
  }

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

  .nav-shell {
    width: calc(100vw - 24px);
    min-height: 54px;
    gap: 8px;
  }

  .brand-mark,
  .footer-brand .brand img {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy small {
    margin-top: 5px;
    font-size: 7px;
  }

  .language-control {
    min-width: 83px;
    padding-left: 8px;
  }

  .language-control svg {
    display: none;
  }

  .language-control select {
    width: 64px;
    font-size: 10px;
  }

  .nav-quote {
    display: none;
  }

  .hero {
    padding: 133px 0 36px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(3rem, 15vw, 4.6rem);
    letter-spacing: -0.065em;
  }

  html[lang="kl"] .hero h1 {
    font-size: clamp(2.65rem, 12.6vw, 3.45rem);
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    flex: 1 1 100%;
    justify-content: space-between;
  }

  .hero-proof {
    margin-top: 30px;
  }

  .hero-visual {
    width: 100%;
    margin-top: 36px;
  }

  .hero-image-frame {
    border-radius: 22px;
  }

  .hero-image-frame img {
    aspect-ratio: 1.05 / 1;
  }

  .visual-caption {
    right: 12px;
    bottom: 12px;
    max-width: 210px;
  }

  .visual-chip {
    display: none;
  }

  .hero-rule {
    margin-top: 45px;
  }

  .section {
    padding: 90px 0;
  }

  .section-intro,
  .process-heading,
  .testimonial-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-intro > div,
  .section-intro .section-summary,
  .process-heading > p,
  .testimonial-heading > p {
    grid-column: 1;
  }

  .section-intro h2,
  .process-heading h2,
  .about-copy h2,
  .testimonial-heading h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .section-summary {
    margin-top: 0;
  }

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

  .service-card,
  .service-card:nth-child(odd) {
    min-height: 240px;
    padding: 28px 24px;
    border-right: 0;
  }

  .why-shell {
    width: calc(100vw - 24px);
    padding: 45px 23px 25px;
    border-radius: 28px;
  }

  .why-heading {
    margin-bottom: 50px;
  }

  .why-heading h2 {
    font-size: clamp(2.55rem, 12.5vw, 4.3rem);
  }

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

  .why-card,
  .why-card-wide {
    grid-column: auto;
    min-height: 145px;
    padding: 23px 20px;
  }

  .project-list {
    gap: 86px;
  }

  .project-visual {
    min-height: 410px;
    border-radius: 22px;
  }

  .mockup-inu,
  .mockup-inventory,
  .mockup-arctic {
    padding: 22px;
  }

  .inu-layout {
    min-height: 315px;
    padding: 25px;
    grid-template-columns: 1fr;
  }

  .inu-ledger {
    display: none;
  }

  .inventory-app {
    min-height: 355px;
    grid-template-columns: 50px 1fr;
  }

  .inventory-main {
    padding: 22px 17px;
  }

  .inventory-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .inventory-stats i:last-child {
    display: none;
  }

  .word-one { left: 5%; width: 63%; }
  .word-two { top: 56%; left: 17%; width: 68%; }
  .word-three { top: 31%; right: 4%; width: 48%; }

  .arctic-frame {
    min-height: 355px;
  }

  .cigar {
    right: 7%;
    width: 52%;
  }

  .project-body {
    display: block;
  }

  .project-meta {
    margin-top: 10px;
  }

  .project-body h3,
  .project-body h4 {
    font-size: clamp(2.5rem, 12vw, 3.7rem);
  }

  .project-foot {
    align-items: flex-end;
  }

  .process-list {
    margin-top: 65px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-list::before {
    top: 7px;
    bottom: 7px;
    left: 10px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .process-list::after {
    top: 7px;
    left: 8px;
    width: 5px;
    height: 47%;
  }

  .process-list li {
    min-height: 130px;
    padding: 0 0 30px;
    display: grid;
    grid-template-columns: 50px 1fr;
  }

  .process-list li div {
    margin-top: 0;
  }

  .process-list li > span {
    margin-top: 0;
  }

  .process-list p {
    max-width: 300px;
  }

  .about-statement {
    min-height: 490px;
    padding: 32px 25px;
    border-radius: 24px;
  }

  .about-statement blockquote {
    font-size: clamp(2rem, 10.5vw, 3.1rem);
  }

  .statement-mark {
    top: 26px;
    right: 24px;
  }

  .about-principles {
    margin-top: 40px;
  }

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

  .testimonial-card,
  .testimonial-card:last-child {
    grid-column: auto;
    min-height: 330px;
  }

  .contact-copy {
    display: block;
  }

  .contact-copy h2 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  html[lang="kl"] .contact-copy h2 {
    font-size: clamp(2.2rem, 10.2vw, 3.35rem);
  }

  .contact-details {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-form {
    padding: 34px 20px;
    border-radius: 23px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-row .field + .field {
    margin-top: 19px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 25px;
  }

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

  .footer-bottom {
    gap: 20px;
  }
}

@media (max-width: 420px) {
  .brand-copy small {
    display: none;
  }

  .language-control {
    min-width: 82px;
  }

  .language-control select {
    width: 64px;
  }

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

  .mock-browser-bar span {
    display: none;
  }

  .project-foot {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .footer-brand {
    grid-column: 1;
  }
}

@media (max-width: 1180px) {
  .footer-grid-expanded {
    grid-template-columns: minmax(220px, 1.5fr) repeat(4, minmax(105px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 980px) {
  .trust-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .trust-heading > p {
    max-width: 650px;
  }

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

  .trust-capabilities li:nth-child(2) {
    border-right: 0;
  }

  .trust-capabilities li:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .trust-capabilities li:first-child,
  .trust-capabilities li:last-child {
    padding-inline: clamp(14px, 2vw, 26px);
  }

  .trust-clients {
    grid-template-columns: 1fr;
  }

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

  .founder-grid {
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
    gap: 50px;
  }

  .founder-copy h2 {
    font-size: clamp(2.7rem, 7vw, 4.5rem);
  }

  .founder-identity {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

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

  .footer-grid-expanded .footer-brand {
    grid-column: 1 / -1;
  }

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

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

  .legal-toc > span {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .trust-section {
    padding-bottom: 76px;
  }

  .trust-shell {
    width: calc(100vw - 24px);
    padding: 38px 20px 26px;
    border-radius: 23px;
  }

  .trust-shell::before {
    left: 20px;
  }

  .trust-heading h2 {
    font-size: clamp(2.45rem, 12vw, 3.8rem);
  }

  .trust-capabilities {
    grid-template-columns: 1fr;
  }

  .trust-capabilities li,
  .trust-capabilities li:nth-child(2) {
    min-height: 68px;
    padding: 16px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-capabilities li:last-child {
    border-bottom: 0;
  }

  .trust-client-grid {
    grid-template-columns: 1fr;
  }

  .trust-client-grid strong {
    white-space: normal;
  }

  .portfolio-group-heading {
    grid-template-columns: 1fr auto;
    gap: 10px 20px;
  }

  .portfolio-group-heading > span {
    grid-column: 1 / -1;
  }

  .portfolio-group-heading i {
    width: 45px;
  }

  .portfolio-group-heading h3 {
    white-space: normal;
  }

  .project-body h4 {
    font-size: clamp(2.5rem, 12vw, 3.7rem);
  }

  .founder::before {
    display: none;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .founder-photo-frame {
    border-radius: 23px;
  }

  .founder-copy h2 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .founder-identity {
    margin-top: 28px;
  }

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

  .footer-bottom {
    flex-wrap: wrap;
  }

  .footer-bottom > p:nth-child(2) {
    order: 3;
    width: 100%;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }

  .legal-hero {
    padding: 140px 0 80px;
  }

  .legal-hero h1 {
    font-size: clamp(3.3rem, 15vw, 5.2rem);
  }

  .legal-toc {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-rail {
    display: none;
  }

  .legal-article {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
  }

  .legal-article h2 {
    font-size: clamp(2.05rem, 10.5vw, 3.2rem);
  }

  .legal-contact-card a {
    grid-template-columns: 1fr 22px;
  }

  .legal-contact-card small {
    grid-column: 1 / -1;
    margin-bottom: 5px;
  }

  .legal-cta .container {
    align-items: stretch;
    flex-direction: column;
  }

  .legal-cta p {
    margin: 0 0 12px;
  }
}

@media (max-width: 420px) {
  .footer-grid-expanded {
    grid-template-columns: 1fr;
  }
}

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

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

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