:root {
  --ink: #0b0d0f;
  --graphite: #171b1f;
  --paper: #f5efe4;
  --porcelain: #fffdf7;
  --teal: #0c7276;
  --aqua: #b7f3ef;
  --copper: #c78d55;
  --acid: #d7f266;
  --muted: #68727b;
  --line: rgba(11, 13, 15, 0.12);
  --line-dark: rgba(255, 255, 255, 0.16);
  --white: #ffffff;
  --display: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", system-ui, sans-serif;
  --body: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-padding-top: 104px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
  font-kerning: normal;
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

section {
  scroll-margin-top: 104px;
}

#top {
  scroll-margin-top: 0;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  width: 100%;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 38px;
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 253, 247, 0.94);
  border-bottom: 1px solid rgba(11, 13, 15, 0.09);
  box-shadow: 0 18px 44px rgba(11, 13, 15, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--white);
}

.brand span {
  display: grid;
  gap: 2px;
  line-height: 1.04;
}

.brand strong {
  font-size: 0.98rem;
  font-weight: 870;
}

.brand small {
  font-size: 0.74rem;
  font-weight: 760;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  font-size: 0.78rem;
  font-weight: 850;
}

.site-nav a {
  padding: 8px 0;
}

.nav-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 9px 15px !important;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled .language-switch,
.site-header.is-open .language-switch {
  border-color: rgba(11, 13, 15, 0.13);
  background: rgba(255, 255, 255, 0.76);
}

.language-switch a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 999px;
}

.language-switch a.is-active {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 9px 18px rgba(11, 13, 15, 0.12);
}

.flag-icon {
  width: 18px;
  height: 13px;
  border-radius: 2px;
  object-fit: cover;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.08);
}

.hero-media picture,
.service-card picture,
.work-card picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(11, 13, 15, 0.96), rgba(11, 13, 15, 0.78) 48%, rgba(11, 13, 15, 0.28)),
    linear-gradient(180deg, rgba(11, 13, 15, 0.12), rgba(11, 13, 15, 0.7));
}

.hero::after {
  content: "IDERA";
  position: absolute;
  left: clamp(24px, 5vw, 76px);
  bottom: clamp(18px, 3.5vw, 58px);
  z-index: 1;
  color: rgba(255, 255, 255, 0.055);
  font-size: clamp(4.6rem, 10vw, 12rem);
  font-weight: 930;
  line-height: 0.8;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(260px, 0.32fr);
  align-items: center;
  gap: clamp(28px, 4.2vw, 64px);
  padding: clamp(112px, 12vh, 140px) 42px clamp(48px, 7vh, 68px);
}

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

.eyebrow {
  margin-bottom: 0;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 920;
  letter-spacing: 0.04em;
  line-height: 1.24;
  text-transform: uppercase;
}

.hero .eyebrow,
.proof .eyebrow,
.work .eyebrow,
.contact .eyebrow {
  color: var(--aqua);
}

.hero h1 {
  max-width: 900px;
  margin: 16px 0 20px;
  font-family: var(--display);
  font-size: clamp(3.2rem, 4.9vw, 5.9rem);
  font-weight: 420;
  line-height: 1;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.05vw, 1.16rem);
  line-height: 1.66;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 860;
  line-height: 1.1;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--acid);
  border-color: var(--acid);
  color: #111407;
}

.button-ghost {
  color: inherit;
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.contact .button-ghost {
  color: var(--white);
}

.hero-card {
  width: min(360px, 100%);
  align-self: end;
  justify-self: end;
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(183, 243, 239, 0.28);
  border-radius: 8px;
  background: rgba(11, 13, 15, 0.64);
  backdrop-filter: blur(16px);
}

.hero-card span {
  color: var(--aqua);
  font-size: 0.76rem;
  font-weight: 920;
  text-transform: uppercase;
}

.hero-card strong {
  font-family: var(--display);
  font-size: clamp(2rem, 2.55vw, 3.15rem);
  font-weight: 430;
  line-height: 1;
  transition: opacity 420ms ease, transform 420ms ease;
  will-change: opacity, transform;
}

.hero-card strong.is-changing {
  opacity: 0;
  transform: translateY(6px);
}

.hero-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.intent-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--ink);
  color: var(--white);
}

.intent-strip div {
  min-height: 142px;
  display: grid;
  align-content: end;
  gap: 14px;
  padding: 30px 42px;
  background:
    linear-gradient(135deg, rgba(215, 242, 102, 0.09), transparent 42%),
    var(--graphite);
}

.intent-strip span {
  color: rgba(183, 243, 239, 0.68);
  font-size: 0.8rem;
  font-weight: 920;
}

.intent-strip strong {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.34;
}

.section-pad {
  padding: 80px 42px;
}

.section-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.split,
.section-heading,
.proof-grid,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.5fr) minmax(0, 0.5fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: start;
}

.section-heading {
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.58fr);
  margin-bottom: 34px;
  align-items: end;
}

.section-heading.compact {
  max-width: 980px;
  grid-template-columns: 180px minmax(0, 1fr);
}

.section-heading .eyebrow,
.split .eyebrow,
.proof-grid .eyebrow,
.contact-panel .eyebrow {
  padding-top: 8px;
  border-top: 2px solid currentColor;
}

.section-heading h2,
.split h2,
.proof h2,
.contact h2 {
  max-width: 880px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.9rem, 2.45vw, 3.05rem);
  font-weight: 430;
  line-height: 1.12;
}

.rich-copy {
  display: grid;
  gap: 24px;
}

.rich-copy p,
.contact-panel > div > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(0.99rem, 0.96vw, 1.06rem);
  line-height: 1.74;
}

.positioning,
.services,
.process {
  background: var(--porcelain);
}

.credential-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(12, 114, 118, 0.22);
  border-radius: 8px;
  background: #edf6f3;
}

.credential-card span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 920;
  text-transform: uppercase;
}

.credential-card strong {
  font-size: 1.02rem;
  line-height: 1.42;
}

.credential-card p {
  font-size: 0.96rem;
}

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

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

.audience-grid article {
  min-height: 250px;
  display: grid;
  align-content: end;
  gap: 16px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.48);
}

.audience-grid span {
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.audience-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.service-card {
  min-height: 500px;
  display: grid;
  grid-template-rows: 255px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.service-card.service-large {
  grid-column: auto;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card div {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
}

.service-card span {
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 920;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.22rem, 1.38vw, 1.7rem);
  font-weight: 500;
  line-height: 1.16;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-dark {
  background: var(--ink);
  color: var(--white);
}

.service-dark p {
  color: rgba(255, 255, 255, 0.73);
}

.service-dark span {
  color: var(--aqua);
}

.proof,
.work,
.contact {
  background: var(--ink);
  color: var(--white);
}

.proof-list {
  display: grid;
  gap: 1px;
  background: var(--line-dark);
}

.proof-list article {
  display: grid;
  grid-template-columns: 56px minmax(0, 0.36fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 25px 0;
  background: var(--ink);
}

.proof-list span {
  color: var(--aqua);
  font-weight: 920;
}

.proof-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 510;
  line-height: 1.22;
}

.proof-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 280px;
  gap: 16px;
}

.work-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--graphite);
}

.work-card.tall {
  grid-row: span 2;
  grid-column: span 2;
}

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

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(11, 13, 15, 0.84));
}

.work-card div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
}

.work-card span {
  color: var(--aqua);
  font-size: 0.74rem;
  font-weight: 920;
  text-transform: uppercase;
}

.work-card h3 {
  max-width: 560px;
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: clamp(1.18rem, 1.58vw, 1.82rem);
  font-weight: 500;
  line-height: 1.16;
}

.work-card p {
  max-width: 440px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.38;
}

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

.retail-gallery figure {
  position: relative;
  min-height: 170px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: var(--graphite);
}

.retail-gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 8, 9, 0.02), rgba(7, 8, 9, 0.72));
}

.retail-gallery img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  display: block;
  object-fit: cover;
  opacity: 0.9;
}

.retail-gallery figcaption {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  z-index: 1;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 880;
  line-height: 1.2;
}

.visual-note {
  max-width: 820px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
}

.technical-fields {
  background: var(--ink);
  color: var(--white);
}

.technical-fields.section-pad {
  padding-top: 30px;
}

.technical-fields-head {
  max-width: 860px;
  margin-bottom: 28px;
}

.technical-fields-head h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.72rem, 2.8vw, 3rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

.technical-fields-head p {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(247, 244, 239, 0.72);
  font-size: 1rem;
}

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

.technical-field-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: var(--graphite);
}

.technical-field-card picture,
.technical-field-card img {
  display: block;
  width: 100%;
}

.technical-field-card picture {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.technical-field-card img {
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.technical-field-card div {
  padding: 20px 20px 22px;
}

.technical-field-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.2vw, 1.28rem);
  font-weight: 540;
  line-height: 1.18;
  letter-spacing: 0;
}

.technical-field-card p {
  margin: 10px 0 0;
  color: rgba(247, 244, 239, 0.68);
  font-size: 0.94rem;
  line-height: 1.48;
}

.process-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  display: grid;
  grid-template-columns: 80px minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.process-list span {
  color: var(--teal);
  font-weight: 920;
}

.process-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 520;
  line-height: 1.24;
}

.process-list p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
}

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

.process-card {
  min-height: 430px;
  display: grid;
  grid-template-rows: 205px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.76);
}

.process-card picture,
.process-card img {
  width: 100%;
  height: 100%;
  min-height: 205px;
  display: block;
}

.process-card img {
  object-fit: cover;
}

.process-card div {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.process-card span {
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 920;
  text-transform: uppercase;
}

.process-card h3 {
  max-width: 520px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.18rem, 1.22vw, 1.48rem);
  font-weight: 500;
  line-height: 1.18;
}

.process-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

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

.process-exchange article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.process-exchange h3 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: 1.24rem;
  font-weight: 520;
}

.process-exchange ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-exchange li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.45;
}

.process-exchange li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--teal);
}

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

.operations-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
  gap: 34px;
  align-items: start;
}

.operations-copy {
  display: grid;
  gap: 18px;
}

.operations-copy p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.72;
}

.flow-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--porcelain);
}

.flow-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
}

.flow-steps span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(12, 114, 118, 0.22);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.72);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.1;
}

.flow-steps span:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -18px;
  color: var(--teal);
  font-weight: 900;
}

.flow-visuals {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.flow-visuals figure {
  position: relative;
  min-height: 150px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(12, 114, 118, 0.18);
  border-radius: 8px;
  background: var(--graphite);
}

.flow-visuals figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 22, 26, 0.12), rgba(16, 22, 26, 0.78));
  z-index: 1;
}

.flow-visuals img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
}

.flow-visuals figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 13px;
  z-index: 2;
  color: var(--white);
}

.flow-visuals strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.82rem;
  line-height: 1.16;
}

.flow-visuals span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  line-height: 1.25;
}

.flow-visual-note {
  margin: -2px 0 0;
  color: rgba(84, 94, 104, 0.78);
  font-size: 0.84rem;
  line-height: 1.46;
}

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

.flow-lists h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 520;
}

.flow-lists ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-lists li {
  position: relative;
  padding-left: 17px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.42;
}

.flow-lists li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--teal);
}

.flow-note {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: rgba(84, 94, 104, 0.84);
  font-size: 0.86rem;
  line-height: 1.48;
}

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

.contact-panel {
  grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(183, 243, 239, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(183, 243, 239, 0.12), transparent 38%),
    var(--graphite);
}

.contact-panel h2 {
  color: var(--white);
}

.contact-panel > div > p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
}

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

.contact-actions .button {
  width: 100%;
}

.contact-meta {
  display: grid;
  gap: 6px;
  margin-top: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.contact-meta span {
  color: var(--aqua);
  font-size: 0.74rem;
  font-weight: 920;
  text-transform: uppercase;
}

.contact-meta strong {
  overflow-wrap: anywhere;
}

.contact-meta a {
  color: inherit;
}

.contact-meta small {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.45;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 42px;
  background: #060708;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.site-footer p {
  margin-bottom: 0;
}

.footer-location {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
  line-height: 1.45;
}

.site-footer a {
  color: var(--white);
  font-weight: 840;
}

@media (min-width: 921px) and (max-width: 1560px) {
  .site-header {
    padding: 12px 32px;
  }

  .site-nav {
    gap: 13px;
    font-size: 0.74rem;
  }

  .hero-grid {
    min-height: 94svh;
    padding: 104px 32px 50px;
    grid-template-columns: minmax(0, 0.66fr) minmax(250px, 0.34fr);
    gap: clamp(24px, 3.4vw, 48px);
  }

  .hero h1 {
    max-width: 680px;
    font-size: clamp(3rem, 4.8vw, 4.95rem);
    line-height: 1.02;
  }

  .hero-lead {
    max-width: 610px;
    font-size: 0.98rem;
  }

  .hero-card {
    width: min(320px, 100%);
    padding: 20px;
  }

  .hero-card strong {
    font-size: clamp(1.92rem, 2.2vw, 2.55rem);
  }

  .section-pad {
    padding: 72px 32px;
  }

  .section-heading h2,
  .split h2,
  .proof h2,
  .contact h2 {
    font-size: clamp(1.85rem, 2.55vw, 3rem);
    line-height: 1.11;
  }

  .service-card {
    min-height: 480px;
    grid-template-rows: 238px 1fr;
  }
}

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

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

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

  section {
    scroll-margin-top: 92px;
  }

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

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    padding: 22px 24px 28px;
    color: var(--ink);
    background: rgba(255, 253, 247, 0.98);
    box-shadow: 0 24px 54px rgba(11, 13, 15, 0.18);
  }

  body.nav-open .site-nav {
    display: grid;
    gap: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(11, 13, 15, 0.94), rgba(11, 13, 15, 0.74)),
      linear-gradient(90deg, rgba(11, 13, 15, 0.9), rgba(11, 13, 15, 0.32));
  }

  .hero-grid {
    min-height: 92svh;
    grid-template-columns: 1fr;
    align-content: end;
    padding: 110px 24px 44px;
  }

  .hero-card {
    justify-self: start;
    align-self: auto;
  }

  .intent-strip,
  .split,
  .section-heading,
  .section-heading.compact,
  .proof-grid,
  .operations-panel,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .section-pad {
    padding: 68px 24px;
  }

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

  .process-flow,
  .process-exchange,
  .technical-fields-grid,
  .flow-lists {
    grid-template-columns: 1fr;
  }

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

  .proof-list article,
  .process-list li {
    grid-template-columns: 56px 1fr;
    gap: 14px;
  }

  .proof-list p,
  .process-list p {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 0.88rem;
  }

  .brand small {
    font-size: 0.67rem;
  }

  .hero-grid {
    padding: 98px 18px 38px;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(2.48rem, 12.2vw, 2.88rem);
    line-height: 1.04;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-card {
    padding: 18px;
  }

  .hero-card strong {
    font-size: 2.08rem;
  }

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

  .intent-strip div {
    min-height: auto;
    padding: 24px 18px;
  }

  .section-pad {
    padding: 56px 18px;
  }

  .section-heading h2,
  .split h2,
  .proof h2,
  .contact h2 {
    font-size: clamp(1.72rem, 7.6vw, 2rem);
    line-height: 1.14;
  }

  .service-card h3,
  .work-card h3 {
    font-size: 1.28rem;
    line-height: 1.18;
  }

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

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

  .service-card,
  .service-card.service-large {
    grid-column: auto;
    min-height: auto;
  }

  .service-card {
    grid-template-rows: 230px 1fr;
  }

  .process-card {
    min-height: auto;
    grid-template-rows: 210px 1fr;
  }

  .process-card div,
  .process-exchange article,
  .flow-card {
    padding: 20px;
  }

  .flow-steps {
    gap: 8px 18px;
  }

  .flow-steps span {
    font-size: 0.78rem;
  }

  .flow-visuals {
    grid-template-columns: 1fr;
  }

  .flow-visuals figure,
  .flow-visuals img {
    min-height: 190px;
  }

  .work-grid {
    grid-auto-rows: 300px;
  }

  .work-card.tall,
  .work-card.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .audience-grid article {
    min-height: auto;
    padding: 24px;
  }

  .contact-panel {
    padding: 22px;
  }

  .site-footer {
    display: grid;
    padding: 26px 18px;
  }
}
