@font-face {
  font-family: "Commissioner";
  src: url("/assets/fonts/commissioner-0.ttf") format("truetype");
  font-style: normal;
  font-weight: 100;
  font-display: swap;
}
@font-face {
  font-family: "Commissioner";
  src: url("/assets/fonts/commissioner-2.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Commissioner";
  src: url("/assets/fonts/commissioner-3.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --bg: #e9ecec;
  --paper: #f8fbfb;
  --ink: #071a3a;
  --muted: #657283;
  --line: #ccd7da;
  --aqua: #2fc8c4;
  --green: #8fe49b;
  --blue: #7188dc;
  --soft-blue: rgba(47, 200, 196, .22);
  --soft-green: rgba(143, 228, 155, .22);
  --parallax-x: 0px;
  --parallax-y: 0px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 400;
}
body.is-loading {
  overflow: hidden;
}
html.has-seen-intro body.is-loading {
  overflow: auto;
}
body.is-loading .site-header,
body.is-loading main,
body.is-loading .footer {
  opacity: 0;
}
body.is-loaded main,
body.is-loaded .footer {
  animation: pageContentIn .58s cubic-bezier(.22, 1, .36, 1) both;
}
body.is-loading .site-header {
  transform: translateX(-50%);
}
body.is-loaded .site-header {
  opacity: 1;
  transform: translateX(-50%);
  animation: headerIn .62s cubic-bezier(.22, 1, .36, 1) both;
}
html.has-seen-intro .page-loader {
  display: none;
}
html.has-seen-intro body.is-loading .site-header,
html.has-seen-intro body.is-loading main,
html.has-seen-intro body.is-loading .footer {
  opacity: 0;
}
html.has-seen-intro body.is-loading .site-header {
  transform: translateX(-50%);
}
html.has-seen-intro body.is-loading main,
html.has-seen-intro body.is-loading .footer {
  transform: none;
}
body.is-page-entering main,
body.is-page-entering .footer {
  animation: pageContentIn .46s cubic-bezier(.22, 1, .36, 1) both;
}
body.is-page-entering .site-header {
  animation: headerFadeIn .38s ease both;
}
body.is-page-leaving .site-header,
body.is-page-leaving main,
body.is-page-leaving .footer {
  opacity: 0;
  transition: opacity .18s ease;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; color: inherit; }
em { color: var(--aqua); font-style: normal; }
.netlify-honeypot { display: none; }

/* Back-office */
.admin-body {
  --admin-bg: #f3f5f5;
  --admin-surface: #fff;
  --admin-ink: #10213a;
  --admin-muted: #718094;
  --admin-line: #e1e7e8;
  --admin-accent: #21bdb8;
  min-height: 100vh;
  background: var(--admin-bg);
  color: var(--admin-ink);
}
.admin-body .admin-loader { display: none; }
.admin-body.is-loading { overflow: auto; }
.admin-body.is-loading main { opacity: 1; }
.admin-body.is-loaded main { animation: none; }
.admin-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 100;
  width: 276px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 20px 22px;
  color: #eaf3f5;
  background:
    radial-gradient(circle at 20% 0, rgba(47,200,196,.16), transparent 32%),
    #0b1d32;
  border-right: 1px solid rgba(255,255,255,.07);
}
.admin-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 52px;
  padding: 0 10px;
}
.admin-brand img { width: 106px; }
.admin-brand > span {
  padding-left: 13px;
  border-left: 1px solid rgba(255,255,255,.2);
  color: #9fb0bf;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.admin-nav {
  display: grid;
  gap: 6px;
  margin-top: 54px;
}
.admin-nav a {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #a9b7c4;
  transition: .2s ease;
}
.admin-nav a:hover { color: #fff; background: rgba(255,255,255,.045); }
.admin-nav a.is-active {
  color: #fff;
  background: rgba(47,200,196,.11);
  border-color: rgba(47,200,196,.23);
}
.admin-nav a.is-active::before {
  content: "";
  position: absolute;
  left: -21px;
  width: 3px;
  height: 24px;
  border-radius: 0 3px 3px 0;
  background: var(--admin-accent);
}
.admin-nav-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  color: #d8e4e8;
  font-family: Commissioner, sans-serif;
  font-size: 14px;
}
.admin-nav strong, .admin-nav small { display: block; }
.admin-nav strong { font-size: 14px; font-weight: 600; }
.admin-nav small { margin-top: 3px; color: #72869a; font-size: 11px; }
.admin-sidebar-bottom {
  display: grid;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.09);
}
.admin-site-link, .admin-logout {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 12px;
  color: #9fb0bf;
  background: none;
  border: 0;
  border-radius: 9px;
  font-size: 12px;
  cursor: pointer;
}
.admin-site-link:hover, .admin-logout:hover { color: #fff; background: rgba(255,255,255,.05); }
.admin-mobile-header { display: none; }
.admin-main {
  width: min(1380px, calc(100% - 276px));
  min-height: 100vh;
  margin-left: 276px;
  padding: 54px clamp(34px, 4vw, 72px) 90px;
}
.admin-page-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 38px;
}
.admin-page-head h1 {
  margin: 4px 0 9px;
  font-family: Commissioner, sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  letter-spacing: -.045em;
}
.admin-page-head p:not(.admin-eyebrow) {
  max-width: 650px;
  margin: 0;
  color: var(--admin-muted);
  font-size: 14px;
  line-height: 1.65;
}
.admin-eyebrow {
  margin: 0;
  color: var(--admin-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.admin-primary-button {
  min-height: 46px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 0 20px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: #10213a;
  box-shadow: 0 8px 22px rgba(16,33,58,.12);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s, background .2s;
}
.admin-primary-button:hover { transform: translateY(-2px); background: #183554; }
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}
.admin-stat-card {
  position: relative;
  min-height: 178px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--admin-line);
  border-radius: 18px;
  background: var(--admin-surface);
  box-shadow: 0 8px 30px rgba(22,41,58,.045);
}
.admin-stat-card::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  opacity: .17;
  background: var(--card-color);
}
.admin-stat-card.is-aqua { --card-color: #2fc8c4; }
.admin-stat-card.is-blue { --card-color: #7188dc; }
.admin-stat-card.is-green { --card-color: #8fe49b; }
.admin-stat-card.is-purple { --card-color: #ac93e8; }
.admin-stat-label {
  color: var(--admin-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.admin-stat-card strong {
  margin-top: 25px;
  font-family: Commissioner, sans-serif;
  font-size: 38px;
  font-weight: 300;
  letter-spacing: -.04em;
}
.admin-stat-card small { margin-top: 5px; color: var(--admin-muted); font-size: 12px; }
.admin-stat-card > i {
  position: absolute;
  right: 22px;
  bottom: 22px;
  font-style: normal;
  color: var(--admin-accent);
}
.admin-panel, .admin-form-section, .admin-save-card {
  border: 1px solid var(--admin-line);
  border-radius: 18px;
  background: var(--admin-surface);
  box-shadow: 0 8px 30px rgba(22,41,58,.04);
}
.admin-panel { padding: 28px; }
.admin-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--admin-line);
}
.admin-panel-head h2 { margin: 5px 0 0; font: 300 25px Commissioner, sans-serif; }
.admin-count {
  padding: 7px 11px;
  color: var(--admin-muted);
  background: #f3f6f6;
  border-radius: 30px;
  font-size: 10px;
}
.admin-empty { display: grid; justify-items: center; padding: 70px 20px; text-align: center; }
.admin-empty > span { font-size: 28px; color: var(--admin-accent); }
.admin-empty strong { margin-top: 12px; }
.admin-empty p { margin: 8px 0 0; color: var(--admin-muted); font-size: 12px; }
.admin-message {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 15px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--admin-line);
}
.admin-message:last-child { border-bottom: 0; }
.admin-message-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #087d79;
  background: rgba(47,200,196,.14);
  font-weight: 700;
}
.admin-message strong, .admin-message a { display: block; font-size: 12px; }
.admin-message a { margin-top: 3px; color: var(--admin-accent); }
.admin-message p { margin: 10px 0 0; color: #506075; font-size: 12px; line-height: 1.55; }
.admin-message time { color: var(--admin-muted); font-size: 10px; }
.admin-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.admin-project-card {
  overflow: hidden;
  border: 1px solid var(--admin-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(22,41,58,.04);
}
.admin-project-cover {
  position: relative;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--admin-muted);
  background: #e9eeee;
  font-size: 11px;
}
.admin-project-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s, filter .35s; }
.admin-project-edit {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 9px 12px;
  border-radius: 8px;
  color: #fff;
  background: rgba(11,29,50,.9);
  font-size: 10px;
  opacity: 0;
  transform: translateY(5px);
  transition: .25s;
}
.admin-project-cover:hover img { transform: scale(1.035); filter: brightness(.83); }
.admin-project-cover:hover .admin-project-edit { opacity: 1; transform: none; }
.admin-project-info { display: flex; justify-content: space-between; gap: 12px; padding: 17px; }
.admin-project-info strong, .admin-project-info span { display: block; }
.admin-project-info strong { font-size: 13px; }
.admin-project-info span { margin-top: 4px; color: var(--admin-muted); font-size: 9px; }
.admin-project-actions { display: flex; gap: 5px; }
.admin-project-actions a, .admin-project-actions button {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--admin-line);
  border-radius: 8px;
  color: var(--admin-muted);
  background: #fff;
  cursor: pointer;
}
.admin-project-actions button:hover { color: #c94242; border-color: #efbcbc; }
.admin-back-link { display: inline-block; margin-bottom: 28px; color: var(--admin-muted); font-size: 11px; }
.admin-page-head-form { margin-bottom: 26px; }
.admin-editor { display: grid; grid-template-columns: minmax(0, 1fr) 286px; gap: 24px; align-items: start; }
.admin-editor-main { display: grid; gap: 18px; }
.admin-form-section { min-width: 0; padding: 28px; }
.admin-form-section-head { display: flex; gap: 15px; margin-bottom: 25px; }
.admin-form-section-head > span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 9px;
  color: #087d79;
  background: rgba(47,200,196,.13);
  font-size: 10px;
  font-weight: 700;
}
.admin-form-section h2 { margin: 0; font: 400 18px Commissioner, sans-serif; }
.admin-form-section-head p { margin: 5px 0 0; color: var(--admin-muted); font-size: 11px; }
.admin-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.admin-field { display: grid; gap: 8px; min-width: 0; }
.admin-field-wide { grid-column: 1 / -1; }
.admin-field > span { color: #39495f; font-size: 10px; font-weight: 700; letter-spacing: .035em; }
.admin-field > span b { color: #e25e5e; }
.admin-field input, .admin-field textarea {
  width: 100%;
  padding: 13px 14px;
  outline: 0;
  border: 1px solid #dce4e6;
  border-radius: 9px;
  color: var(--admin-ink);
  background: #fafcfc;
  font-size: 12px;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.admin-field textarea { resize: vertical; line-height: 1.55; }
.admin-field input:focus, .admin-field textarea:focus {
  border-color: var(--admin-accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(47,200,196,.1);
}
.admin-field small { color: var(--admin-muted); font-size: 9px; }
.admin-current-cover {
  position: relative;
  aspect-ratio: 16 / 7;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 11px;
  background: #e8eeee;
}
.admin-current-cover img { width: 100%; height: 100%; object-fit: cover; }
.admin-current-cover span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 9px;
  border-radius: 7px;
  color: #fff;
  background: rgba(11,29,50,.83);
  font-size: 9px;
}
.admin-save-card { position: sticky; top: 30px; padding: 22px; }
.admin-save-card h3 { margin: 19px 0 8px; font: 400 18px Commissioner, sans-serif; }
.admin-save-card p { margin: 0 0 22px; color: var(--admin-muted); font-size: 11px; line-height: 1.55; }
.admin-save-card .admin-primary-button { width: 100%; }
.admin-save-card > a { display: block; margin-top: 16px; color: var(--admin-muted); font-size: 10px; text-align: center; }
.admin-status { display: flex; align-items: center; gap: 7px; color: #4a8763; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.admin-status i { width: 7px; height: 7px; border-radius: 50%; background: #69c78c; box-shadow: 0 0 0 4px rgba(105,199,140,.13); }
.admin-content-editor { display: grid; gap: 18px; }
.admin-content-editor fieldset { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; margin: 0; }
.admin-content-editor legend {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--admin-line);
}
.admin-content-editor legend span { font: 400 19px Commissioner, sans-serif; text-transform: capitalize; }
.admin-content-editor legend small { color: var(--admin-muted); font-size: 9px; }
.admin-sticky-actions {
  position: sticky;
  bottom: 18px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 14px 16px 14px 22px;
  border: 1px solid var(--admin-line);
  border-radius: 14px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 15px 40px rgba(16,33,58,.12);
  backdrop-filter: blur(12px);
}
.admin-sticky-actions > span { color: var(--admin-muted); font-size: 10px; }
.admin-login {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr minmax(380px, 520px);
  gap: 10vw;
  align-items: center;
  padding: clamp(35px, 7vw, 100px);
  background:
    radial-gradient(circle at 20% 20%, rgba(47,200,196,.15), transparent 27%),
    #0b1d32;
}
.admin-login-brand { max-width: 500px; color: #fff; }
.admin-login-brand img { width: min(320px, 70%); }
.admin-login-brand p { max-width: 400px; margin: 34px 0 0; color: #91a6b6; font: 300 clamp(21px, 2.2vw, 34px)/1.35 Commissioner, sans-serif; }
.admin-login-card { padding: clamp(34px, 4vw, 58px); border-radius: 22px; background: #fff; box-shadow: 0 30px 80px rgba(0,0,0,.22); }
.admin-login-card h1 { margin: 9px 0; font: 300 45px Commissioner, sans-serif; letter-spacing: -.04em; }
.admin-login-card > p:not(.admin-eyebrow):not(.notice) { margin: 0 0 32px; color: var(--admin-muted); font-size: 12px; }
.admin-login-card .admin-primary-button { width: 100%; margin-top: 22px; }
.admin-login-card > a { display: block; margin-top: 23px; color: var(--admin-muted); font-size: 10px; text-align: center; }
.analytics-periods {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--admin-line);
  border-radius: 11px;
  background: #fff;
}
.analytics-periods a {
  padding: 10px 13px;
  border-radius: 8px;
  color: var(--admin-muted);
  font-size: 10px;
  font-weight: 600;
}
.analytics-periods a.is-active { color: #fff; background: #10213a; }
.analytics-setup { padding: clamp(35px, 5vw, 68px); text-align: center; }
.analytics-setup-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border-radius: 18px;
  color: #087d79;
  background: rgba(47,200,196,.13);
  font-size: 26px;
}
.analytics-setup h2 { margin: 8px 0 10px; font: 300 32px Commissioner, sans-serif; }
.analytics-setup > p:not(.admin-eyebrow) { max-width: 630px; margin: 0 auto; color: var(--admin-muted); font-size: 12px; line-height: 1.65; }
.analytics-setup-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 38px;
  text-align: left;
}
.analytics-setup-steps > div { padding: 20px; border: 1px solid var(--admin-line); border-radius: 13px; background: #fafcfc; }
.analytics-setup-steps span, .analytics-setup-steps strong, .analytics-setup-steps small { display: block; }
.analytics-setup-steps span { color: var(--admin-accent); font-size: 9px; font-weight: 700; }
.analytics-setup-steps strong { margin: 12px 0 6px; font-size: 12px; }
.analytics-setup-steps small { color: var(--admin-muted); font-size: 10px; line-height: 1.5; }
.analytics-alert { display: grid; gap: 7px; padding: 20px; border: 1px solid #edc8c8; border-radius: 13px; color: #963d3d; background: #fff5f5; }
.analytics-alert strong { font-size: 13px; }
.analytics-alert span { font-size: 11px; }
.analytics-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}
.analytics-kpis article {
  display: flex;
  flex-direction: column;
  padding: 21px;
  border: 1px solid var(--admin-line);
  border-radius: 15px;
  background: #fff;
}
.analytics-kpis article > span { color: var(--admin-muted); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.analytics-kpis article strong { margin: 18px 0 5px; font: 300 34px Commissioner, sans-serif; }
.analytics-kpis article small { color: var(--admin-muted); font-size: 9px; }
.analytics-chart { margin-bottom: 18px; }
.analytics-bars {
  height: 270px;
  display: flex;
  align-items: end;
  gap: clamp(3px, .7vw, 10px);
  padding: 34px 4px 0;
}
.analytics-bar-wrap { position: relative; height: 100%; flex: 1; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; gap: 8px; }
.analytics-bar-wrap i { width: min(100%, 24px); min-height: 4px; border-radius: 5px 5px 2px 2px; background: linear-gradient(#2fc8c4, #8fe49b); }
.analytics-bar-wrap small { color: var(--admin-muted); font-size: 7px; }
.analytics-bar-value {
  position: absolute;
  top: -23px;
  display: none;
  padding: 5px 7px;
  border-radius: 5px;
  color: #fff;
  background: #10213a;
  font-size: 8px;
}
.analytics-bar-wrap:hover .analytics-bar-value { display: block; }
.analytics-details { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; }
.analytics-list > div {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 15px 2px;
  border-bottom: 1px solid var(--admin-line);
}
.analytics-list > div:last-child { border-bottom: 0; }
.analytics-list strong, .analytics-list small { display: block; }
.analytics-list strong { overflow: hidden; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.analytics-list small { margin-top: 4px; color: var(--admin-muted); font-size: 8px; }
.analytics-list > div > span:last-child { text-align: right; }
.analytics-rank { color: var(--admin-accent); font: 600 10px Commissioner, sans-serif; }
.analytics-sources > div { grid-template-columns: 1fr auto; }
.analytics-sources i { width: 100%; height: 3px; display: block; margin-top: 8px; overflow: hidden; border-radius: 3px; background: #edf1f1; }
.analytics-sources i b { height: 100%; display: block; border-radius: inherit; background: var(--admin-accent); }
@media (max-width: 1050px) {
  .admin-sidebar { width: 230px; }
  .admin-main { width: calc(100% - 230px); margin-left: 230px; padding-inline: 30px; }
  .admin-project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-editor { grid-template-columns: 1fr; }
  .admin-editor-aside { order: -1; }
  .admin-save-card { position: static; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 8px 20px; }
  .admin-save-card h3, .admin-save-card p { grid-column: 1; }
  .admin-save-card .admin-primary-button { grid-column: 2; grid-row: 1 / 4; }
  .admin-save-card > a { display: none; }
  .admin-stats, .analytics-kpis { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .admin-sidebar { display: none; }
  .admin-mobile-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    color: #fff;
    background: #0b1d32;
  }
  .admin-mobile-header .admin-brand { padding: 0; }
  .admin-mobile-header .admin-brand img { width: 78px; }
  .admin-mobile-header nav { display: flex; gap: 12px; font-size: 9px; }
  .admin-main { width: 100%; margin: 0; padding: 34px 18px 80px; }
  .admin-page-head { align-items: flex-start; flex-direction: column; }
  .admin-page-head h1 { font-size: 38px; }
  .admin-stats, .admin-project-grid, .admin-form-grid, .admin-content-editor fieldset, .analytics-kpis, .analytics-setup-steps, .analytics-details { grid-template-columns: 1fr; }
  .admin-field-wide { grid-column: auto; }
  .admin-stat-card { min-height: 150px; }
  .admin-panel, .admin-form-section { padding: 20px; }
  .admin-message { grid-template-columns: 38px 1fr; }
  .admin-message time { grid-column: 2; }
  .admin-save-card { display: block; }
  .admin-save-card .admin-primary-button { margin-top: 18px; }
  .admin-sticky-actions > span { display: none; }
  .admin-sticky-actions .admin-primary-button { width: 100%; }
  .admin-login { grid-template-columns: 1fr; padding: 24px; }
  .admin-login-brand { display: none; }
  .analytics-periods { width: 100%; }
  .analytics-periods a { flex: 1; text-align: center; }
  .analytics-bars { height: 220px; }
  .analytics-bar-wrap small { display: none; }
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f8fbfb;
  pointer-events: none;
  will-change: transform;
}
.loader-logo-wrap {
  position: relative;
  z-index: 1;
  width: clamp(160px, 18vw, 250px);
}
.loader-logo-wrap img {
  width: 100%;
  height: auto;
}
body.is-loader-exiting .page-loader {
  animation: loaderLift .62s cubic-bezier(.76, 0, .24, 1) both;
}

.container { width: min(100% - 56px, 1180px); margin-inline: auto; }
.section { padding: 96px 0; }
.page { position: relative; min-height: 100vh; overflow: hidden; }
.soft-glow {
  position: relative;
  isolation: isolate;
}
.soft-glow::before,
.soft-glow::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(96px);
  opacity: .68;
  pointer-events: none;
  will-change: transform;
  transition: opacity .3s ease;
}
.soft-glow::before {
  left: -170px;
  top: 60px;
  background:
    radial-gradient(circle at 40% 38%, rgba(255,255,255,.18), transparent 24%),
    radial-gradient(circle, rgba(47, 200, 196, .26) 0%, rgba(47, 200, 196, .16) 42%, transparent 72%);
  transform: translate(calc(var(--parallax-x) * -0.8), calc(var(--parallax-y) * -0.55));
}
.soft-glow::after {
  right: -140px;
  top: 78px;
  background:
    radial-gradient(circle at 58% 36%, rgba(255,255,255,.16), transparent 23%),
    radial-gradient(circle, rgba(143, 228, 155, .26) 0%, rgba(143, 228, 155, .15) 44%, transparent 74%);
  transform: translate(calc(var(--parallax-x) * 0.9), calc(var(--parallax-y) * 0.62));
}
.old-glow::before,
.old-glow::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .5;
  pointer-events: none;
}
.old-glow::before { left: -160px; top: 80px; background: var(--soft-blue); }
.old-glow::after { right: -120px; top: 80px; background: var(--soft-green); }

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  width: min(calc(100% - 40px), 1180px);
  min-height: 86px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 14px 16px 14px 28px;
  border: 1px solid rgba(7, 26, 58, .08);
  border-radius: 16px;
  background: rgba(248, 251, 251, .9);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(7, 26, 58, .08);
}
.brand {
  width: 172px;
  flex: 0 0 auto;
}
.brand img { width: 100%; height: auto; }
.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 15px;
  font-weight: 750;
  color: rgba(7, 26, 58, .78);
}
.nav a { transition: color .2s, transform .2s; }
.nav a:hover { color: var(--ink); transform: translateY(-1px); }
.phone {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  padding: 0 24px;
  border-radius: 12px;
  background: #cedbdf;
  color: var(--ink);
  font-weight: 800;
}
.menu-toggle { display: none; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 10px;
  border: 1px solid var(--ink);
  font-weight: 800;
}
.button.primary { background: var(--ink); color: white; }
.button.secondary { background: rgba(255,255,255,.55); color: var(--ink); }
.tag,
.eyebrow,
.mini-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 6px 12px;
  border: 1px solid rgba(47, 200, 196, .35);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
}
.tag.teal { background: var(--aqua); color: white; }
.tilted { transform: rotate(-5deg); }
.text-link {
  color: var(--aqua);
  font-weight: 800;
}
.featured-link {
  position: relative;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  padding: 0 18px 0 20px;
  border: 1px solid rgba(47, 200, 196, .42);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,.78), rgba(255,255,255,.48));
  color: var(--ink);
  box-shadow: 0 16px 42px rgba(47, 200, 196, .12);
  isolation: isolate;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.featured-link::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 14px;
  right: 46px;
  bottom: 10px;
  height: 7px;
  border-radius: 999px;
  background: rgba(47, 200, 196, .18);
  transform: scaleX(.42);
  transform-origin: left;
  transition: transform .32s ease, background .32s ease;
}
.featured-link::after {
  content: "";
  width: 28px;
  height: 1px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 8px -5px 0 -3px var(--ink), 8px 5px 0 -3px var(--ink);
  transform-origin: right;
  transition: transform .24s ease, box-shadow .24s ease;
}
.featured-link:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 200, 196, .78);
  box-shadow: 0 20px 54px rgba(47, 200, 196, .18);
}
.featured-link:hover::before {
  transform: scaleX(1);
  background: rgba(47, 200, 196, .28);
}
.featured-link:hover::after {
  transform: translateX(4px);
  box-shadow: 9px -5px 0 -3px var(--ink), 9px 5px 0 -3px var(--ink);
}

.intro-section,
.featured-section,
.contact-teaser,
.case-intro,
.case-gallery,
.contact-form-section,
.google-reviews-card,
.client-logos-heading {
  position: relative;
}
.intro-section > .tag,
.section-heading > .tag,
.section-heading > .mini-label,
.contact-teaser > .tag,
.case-intro .tag,
.case-gallery > .tag,
.contact-form-section > .tag,
.google-reviews-score > .mini-label,
.client-logos-heading > .tag,
.service-hero-new .mini-label,
.service-manifesto > .mini-label,
.service-process > .mini-label,
.agency-team-section .section-heading > .mini-label,
.agency-intro-copy > .mini-label,
.agency-projects-section .section-heading > .mini-label,
.contact-hero-copy > .tag,
.contact-direct > .mini-label,
.contact-brief > .mini-label,
.scene-copy > .scene-kicker {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
  transform: rotate(-6deg);
  box-shadow: 0 12px 30px rgba(7, 26, 58, .08);
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  text-align: center;
}
.hero-inner {
  position: relative;
  min-height: calc(100svh - 220px);
  display: grid;
  justify-items: center;
  align-content: center;
}
.hero-inner::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(78vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(47, 200, 196, .22) 0%, rgba(47, 200, 196, .12) 42%, transparent 72%);
  filter: blur(26px);
  opacity: 0;
  transform: scale(.72);
  pointer-events: none;
}
.hero-symbol {
  width: 132px;
  height: 76px;
  margin-bottom: 22px;
  animation: floatLoop 6s ease-in-out infinite;
}
.hero-symbol-loop {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(115deg, #a3e49a 0%, #5bd8ac 34%, #1ebec0 64%, #a3e49a 100%);
  background-size: 220% 100%;
  mask: url("/assets/logo-shape.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/logo-shape.svg") center / contain no-repeat;
  animation: floatLoop 6s ease-in-out infinite, loopGradient 5.8s ease-in-out infinite;
}
.hero-symbol-loop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0 38%, rgba(255,255,255,.82) 48%, transparent 58% 100%);
  transform: translateX(-120%);
  animation: loopShine 4.8s ease-in-out infinite;
}
.hero-symbol-loop::before {
  content: "";
  position: absolute;
  inset: 9% 6%;
  border-radius: 50%;
  background: rgba(255,255,255,.26);
  filter: blur(16px);
  opacity: .6;
}
.hero h1 {
  max-width: 940px;
  margin: 18px 0 0;
  font-family: "Commissioner", Montserrat, Arial, sans-serif;
  font-size: clamp(64px, 8vw, 116px);
  line-height: .86;
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 0;
}
.hero h1 span,
.hero h1 strong {
  display: block;
  will-change: transform, opacity, filter, clip-path;
}
.hero h1 span:first-child { color: var(--blue); }
.hero h1 strong { color: #60d9ad; font-size: 1.04em; font-weight: 400; }
.hero h1 span:last-child { color: var(--aqua); }
.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 38px;
  height: 58px;
  display: grid;
  place-items: start center;
  transform: translateX(-50%);
  border: 1px solid rgba(7, 26, 58, .22);
  border-radius: 999px;
  background: rgba(255,255,255,.32);
}
.scroll-cue span {
  width: 7px;
  height: 7px;
  margin-top: 12px;
  border-radius: 50%;
  background: var(--aqua);
  animation: scrollCue 1.55s ease-in-out infinite;
}

.intro-section h2,
.contact-teaser h2,
.section-heading h2 {
  max-width: 980px;
  margin: 18px 0 34px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.04;
  font-weight: 500;
  text-transform: uppercase;
}
.intro-section h2,
.featured-section .section-heading h2 {
  margin-top: 8px;
}
.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.intro-grid p,
.contact-line p,
.service-copy p,
.agency-copy p,
.team-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.services-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.services-preview article,
.about-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.42);
}
.services-preview h3 {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.05;
}
.services-preview p { color: var(--muted); line-height: 1.55; }

.google-reviews-section {
  padding-top: 0;
  padding-bottom: 54px;
}
.google-reviews-card {
  display: grid;
  grid-template-columns: minmax(250px, 330px) 1fr;
  gap: 38px;
  align-items: stretch;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.google-reviews-score {
  display: grid;
  align-content: start;
  justify-items: start;
  min-height: 0;
  padding: 0 38px 0 0;
  border-right: 1px solid var(--line);
}
.google-reviews-score .mini-label {
  margin-bottom: 18px;
}
.google-reviews-score p {
  max-width: 310px;
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02;
}
.google-reviews-score p strong {
  color: var(--aqua);
  font-weight: 500;
}
.google-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}
.google-stars i {
  width: 15px;
  height: 15px;
  clip-path: polygon(50% 0, 62% 34%, 98% 35%, 69% 56%, 79% 91%, 50% 70%, 21% 91%, 31% 56%, 2% 35%, 38% 34%);
  background: #f3bf3d;
}
.google-reviews-score a {
  width: fit-content;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(7, 26, 58, .32);
  color: var(--ink);
  font-weight: 850;
}
.google-review-quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.google-review-quotes article {
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 0;
}
.google-review-quotes span {
  color: var(--aqua);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.google-review-quotes p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
  font-weight: 400;
}

.client-logos-section {
  padding: 32px 0 26px;
  overflow: hidden;
}
.client-logos-heading {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  column-gap: 36px;
  row-gap: 0;
  align-items: end;
  margin-bottom: 24px;
}
.client-logos-heading .tag,
.client-logos-heading h2 {
  grid-column: 1;
}
.client-logos-heading h2 {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(34px, 4.3vw, 58px);
  font-weight: 500;
  line-height: 1.04;
  text-transform: uppercase;
}
.client-logos-heading p {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}
.client-logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(7, 26, 58, .04), rgba(47, 200, 196, .08), rgba(7, 26, 58, .04));
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.client-logo-marquee-rows {
  display: grid;
  gap: 10px;
  padding: 14px 0;
  min-height: 272px;
}
.client-logo-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding: 0 14px;
  min-height: 74px;
  animation: clientLogoScroll 78s linear infinite;
  will-change: transform;
}
.client-logo-marquee:hover .client-logo-track {
  animation-play-state: paused;
}
.client-logo-track-row-2 {
  animation-duration: 86s;
  animation-direction: reverse;
}
.client-logo-track-row-3 {
  animation-duration: 94s;
}
.client-logo-item {
  flex: 0 0 152px;
  width: 152px;
  min-width: 152px;
  height: 74px;
  min-height: 74px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  background: rgba(7, 26, 58, .92);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.client-logo-item img {
  display: block;
  width: 112px;
  height: 38px;
  max-width: 100%;
  max-height: 38px;
  object-fit: contain;
  opacity: .96;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 30px;
  row-gap: 0;
  align-items: end;
  margin-bottom: 28px;
}
.featured-section {
  padding-top: 70px;
}
.featured-section .section-heading {
  row-gap: 0;
}
.section-heading .tag,
.section-heading .mini-label,
.section-heading h2 { grid-column: 1; }
.section-heading .text-link { grid-column: 2; grid-row: 2; white-space: nowrap; }
.section-heading p {
  grid-column: 2;
  grid-row: 2;
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}
.featured-project {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 14px;
  background: #111;
  color: white;
}
.featured-project img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .76;
  transition: transform .65s ease, opacity .65s ease;
}
.featured-project:hover img { transform: scale(1.035); opacity: .9; }
.featured-project::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(7, 26, 58, .78));
}
.featured-project div {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 36px;
}
.featured-project span {
  color: #b8f0eb;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}
.featured-project strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}
.featured-project p {
  max-width: 520px;
  color: #edf7f7;
  line-height: 1.5;
}

.numbers {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.18);
}
.numbers-title {
  padding: 13px;
  background: #ccd8d9;
  text-align: center;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.numbers-grid div {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border-left: 1px solid var(--line);
}
.numbers-grid div:first-child { border-left: 0; }
.numbers-grid strong {
  min-width: 92px;
  display: inline-block;
  text-align: right;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  transition: color .25s ease, transform .25s ease;
}
.numbers-grid strong[data-done="true"] {
  color: var(--aqua);
  transform: translateY(-2px);
}
.numbers-grid span {
  max-width: 120px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.15;
}

.service-callout {
  min-height: 380px;
  display: flex;
  align-items: center;
  text-align: center;
}
.service-callout .container {
  display: grid;
  justify-items: center;
}
.service-callout p {
  max-width: 720px;
  margin: 0 0 26px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.14;
}
.contact-line {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  text-align: right;
  font-size: 14px;
}
.contact-line a { color: var(--aqua); font-weight: 900; }

.projects-hero,
.services-hero,
.agency-hero {
  min-height: 360px;
  display: grid;
  place-items: center;
  align-content: end;
  padding: 140px 20px 54px;
  text-align: center;
}
.projects-hero h1,
.services-hero h1,
.agency-hero h1 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 66px);
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 400;
}
.projects-hero p { margin: 12px 0 0; color: var(--muted); font-size: 16px; }
.services-hero i,
.agency-hero i {
  width: 1px;
  height: 43px;
  margin-top: 28px;
  background: var(--line);
}
.service-hero-new {
  min-height: 560px;
  align-content: center;
  padding-bottom: 76px;
  text-align: left;
}
.service-hero-new .container {
  display: grid;
  justify-items: start;
}
.service-hero-new h1 {
  max-width: 980px;
  margin: 8px 0 22px;
  font-size: clamp(42px, 6vw, 86px);
  line-height: .98;
}
[data-scramble-text] {
  display: inline;
}
.scramble-word {
  display: inline-block;
  white-space: nowrap;
}
.scramble-letter {
  display: inline-block;
  opacity: 0;
  filter: blur(12px);
  text-shadow:
    0 0 24px rgba(47, 200, 196, .42),
    0 0 72px rgba(47, 200, 196, .22);
  transform: translateY(.12em) scale(1.025);
}
[data-scramble-text].is-letter-waiting .scramble-letter {
  opacity: 0;
}
[data-scramble-text].is-letter-reveal .scramble-letter {
  animation: letterMistReveal 1.55s cubic-bezier(.19, 1, .22, 1) forwards;
  animation-delay: var(--letter-delay);
}
[data-scramble-text].is-settled .scramble-letter {
  filter: blur(0);
  opacity: 1;
  text-shadow: none;
  transform: none;
}
.service-hero-new p {
  max-width: 620px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}
.service-manifesto {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  column-gap: 70px;
  row-gap: 0;
  align-items: end;
  padding: 34px 0 120px;
}
.service-manifesto .mini-label {
  grid-column: 1 / -1;
}
.service-manifesto h2 {
  max-width: 860px;
  margin: 8px 0 0;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.03;
  font-weight: 400;
}
.service-manifesto p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.7;
}
.service-scenes {
  display: grid;
  gap: 0;
}
.service-scene {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(480px, 1.16fr);
  gap: 80px;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 110px;
}
.scene-copy {
  position: relative;
  z-index: 2;
}
.scene-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 6px 12px;
  border: 1px solid rgba(47, 200, 196, .35);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.scene-copy h2 {
  margin: 8px 0 24px;
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 1.02;
  font-weight: 400;
}
.scene-copy > p {
  max-width: 600px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}
.scene-detail {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 13px !important;
}
.web-composition {
  position: relative;
  min-height: 540px;
}
.web-browser {
  position: absolute;
  inset: 26px 76px 62px 0;
  overflow: hidden;
  border: 1px solid rgba(7, 26, 58, .16);
  border-radius: 8px;
  background: #f9fbfb;
  box-shadow: 0 34px 90px rgba(7, 26, 58, .14);
}
.web-browser-bar {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
}
.web-browser-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}
.web-browser-bar i:nth-child(2) { background: var(--aqua); }
.web-browser-bar i:nth-child(3) { background: var(--green); }
.web-browser-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 330px;
  padding: 46px;
  background:
    radial-gradient(circle at 88% 12%, rgba(143, 228, 155, .34), transparent 34%),
    radial-gradient(circle at 12% 86%, rgba(47, 200, 196, .24), transparent 32%);
}
.web-browser-copy strong {
  max-width: 490px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
  font-weight: 400;
}
.web-browser-copy span {
  width: 64%;
  height: 8px;
  border-radius: 999px;
  background: #cedbdf;
}
.web-browser-copy span:last-child { width: 42%; }
.web-browser-action {
  width: fit-content;
  margin: 0 0 24px 46px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 12px;
  font-weight: 800;
}
.web-mobile {
  position: absolute;
  right: 0;
  bottom: 8px;
  width: 188px;
  min-height: 350px;
  display: grid;
  align-content: center;
  padding: 30px 20px;
  border: 8px solid var(--ink);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 18%, rgba(47, 200, 196, .38), transparent 35%),
    white;
  box-shadow: 0 28px 65px rgba(7, 26, 58, .2);
}
.web-mobile b {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 56px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--ink);
}
.web-mobile strong {
  font-size: 26px;
  line-height: 1.05;
  font-weight: 500;
}
.service-scene-brand {
  min-height: 760px;
  display: block;
  background: #18243a;
  color: white;
}
.brand-scene-inner {
  display: grid;
  grid-template-columns: minmax(480px, 1.15fr) minmax(0, .85fr);
  gap: 90px;
  align-items: center;
}
.service-scene-brand em { color: #9ce7a7; }
.service-scene-brand .scene-kicker {
  border-color: rgba(156, 231, 167, .42);
  background: rgba(255,255,255,.9);
  color: #16894b;
}
.service-scene-brand .scene-copy > p { color: #cbd5df; }
.service-scene-brand .scene-detail { border-color: rgba(255,255,255,.2); }
.brand-composition {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  background: #f1f0ea;
  color: var(--ink);
}
.brand-type {
  position: absolute;
  top: 28px;
  left: 34px;
  font-family: Georgia, serif;
  font-size: 150px;
  line-height: .9;
  color: #ef6b57;
}
.brand-name {
  position: absolute;
  top: 62px;
  right: 34px;
  max-width: 210px;
  font-size: 44px;
  line-height: .95;
  text-align: right;
}
.brand-swatches {
  position: absolute;
  top: 220px;
  left: 34px;
  right: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 80px;
}
.brand-swatches i:nth-child(1) { background: #ef6b57; }
.brand-swatches i:nth-child(2) { background: #2fc8c4; }
.brand-swatches i:nth-child(3) { background: #f4d35e; }
.brand-swatches i:nth-child(4) { background: #7188dc; }
.brand-print {
  position: absolute;
  left: 34px;
  bottom: 34px;
  width: 210px;
  min-height: 170px;
  display: grid;
  place-items: center;
  border: 1px solid #bfc8cb;
  background: white;
  font-size: 38px;
  line-height: .95;
  text-align: center;
  transform: rotate(-3deg);
  box-shadow: 0 20px 45px rgba(7,26,58,.12);
}
.brand-line {
  position: absolute;
  right: 34px;
  bottom: 50px;
  width: 230px;
  font-family: Georgia, serif;
  font-size: 25px;
  line-height: 1.15;
}
.service-scene-speed {
  grid-template-columns: minmax(0, .88fr) minmax(500px, 1.12fr);
}
.speed-composition {
  position: relative;
  min-height: 480px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 34px;
  align-items: center;
  padding: 42px;
  overflow: hidden;
  border: 1px solid rgba(7, 26, 58, .14);
  border-radius: 8px;
  background: rgba(255,255,255,.46);
  box-shadow: 0 32px 80px rgba(7, 26, 58, .1);
}
.speed-composition::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(47, 200, 196, .18);
  border-radius: 50%;
  transform: scale(1.35);
  pointer-events: none;
}
.speed-score {
  position: relative;
  z-index: 1;
  width: 240px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  justify-items: center;
  border: 18px solid #1fbd68;
  border-radius: 50%;
  background: #f8fbf9;
  box-shadow:
    inset 0 0 0 1px rgba(7, 26, 58, .08),
    0 24px 60px rgba(31, 189, 104, .17);
}
.speed-score span,
.speed-score small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.speed-score strong {
  margin: 2px 0;
  color: #16894b;
  font-size: 68px;
  line-height: .95;
  font-weight: 500;
}
.speed-metrics {
  position: relative;
  z-index: 1;
  display: grid;
}
.speed-metrics div {
  min-height: 62px;
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 13px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 800;
}
.speed-metrics div:last-child {
  border-bottom: 0;
}
.speed-metrics i {
  width: 10px;
  height: 10px;
  border: 2px solid #1fbd68;
  border-radius: 50%;
  background: rgba(31, 189, 104, .14);
}
.speed-composition > p {
  position: absolute;
  right: 42px;
  bottom: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.service-process {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 50px;
  row-gap: 0;
  align-items: end;
  padding-top: 110px;
  padding-bottom: 120px;
  border-top: 1px solid var(--line);
}
.service-process .mini-label { grid-column: 1 / -1; }
.service-process p {
  max-width: 900px;
  margin: 14px 0 0;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.16;
}
.service-process p strong { font-weight: 500; }
.project-bands {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 10px;
  grid-auto-flow: dense;
  gap: 18px;
  padding: 70px 0 130px;
}
.project-band {
  position: relative;
  min-height: 0;
  grid-row: span 21;
  display: grid;
  align-content: end;
  overflow: hidden;
  border-radius: 14px;
  background: #111;
  isolation: isolate;
  box-shadow: 0 18px 46px rgba(7, 26, 58, .08);
  transition: transform .28s ease, box-shadow .28s ease;
}
.project-band:nth-child(3n + 1) { grid-row: span 24; }
.project-band:nth-child(4n + 2) { grid-row: span 18; }
.project-band:nth-child(5n + 4) { grid-row: span 22; }
.project-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  transition: transform .6s ease, opacity .6s ease;
}
.project-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(7, 26, 58, .08), rgba(7, 26, 58, .78)),
    radial-gradient(circle at 18% 18%, rgba(47, 200, 196, .18), transparent 42%);
}
.project-band:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 70px rgba(7, 26, 58, .14);
}
.project-band:hover img { transform: scale(1.045); opacity: .9; }
.project-band strong {
  position: relative;
  z-index: 1;
  max-width: 88%;
  margin: 0 24px 24px;
  color: white;
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  text-align: left;
}
.project-band span {
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: calc(100% - 42px);
  margin: 0 24px 10px;
  padding: 7px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.16);
  color: #b8f0eb;
  font-size: clamp(10px, .8vw, 12px);
  line-height: 1.12;
  font-weight: 900;
  text-transform: uppercase;
  text-align: left;
  overflow-wrap: anywhere;
  backdrop-filter: blur(10px);
}
.project-band.is-in-progress {
  outline: 2px solid rgba(241, 181, 79, .8);
  outline-offset: -2px;
}
.project-band.is-in-progress::after {
  background:
    linear-gradient(180deg, rgba(7, 26, 58, .04), rgba(7, 26, 58, .84)),
    radial-gradient(circle at 18% 18%, rgba(241, 181, 79, .28), transparent 46%);
}
.project-band-status {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 999px;
  background: rgba(7, 26, 58, .84);
  color: #ffd47d;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.project-band-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f1b54f;
  box-shadow: 0 0 0 4px rgba(241, 181, 79, .16);
  animation: projectStatusPulse 1.8s ease-in-out infinite;
}
.project-filters {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 26px;
  width: fit-content;
  max-width: min(100%, 980px);
  margin: 34px auto 0;
  padding-bottom: 22px;
  justify-content: center;
  --project-filter-x: 0px;
  --project-filter-y: 0px;
}
.project-filters::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: rgba(7, 26, 58, .16);
}
.project-filter-cursor {
  position: absolute;
  bottom: 2px;
  left: 0;
  z-index: 3;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 5px rgba(47, 200, 196, .14);
  transform: translateX(calc(var(--project-filter-x) - 5px));
  transition: transform .38s cubic-bezier(.22, 1, .36, 1), box-shadow .28s ease;
}
.project-filters button {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s ease;
}
.project-filters button span {
  opacity: .58;
  transition: opacity .2s ease, transform .2s ease;
}
.project-filters button i {
  position: absolute;
  bottom: -18px;
  left: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(7, 26, 58, .24);
  border-radius: 50%;
  background: #f8fbfb;
  transform: translateX(-50%);
  transition: transform .2s ease, border-color .2s ease;
}
.project-filters button:hover,
.project-filters button.active {
  color: var(--ink);
}
.project-filters button:hover span,
.project-filters button.active span {
  opacity: 1;
}
.project-filters button.active i {
  border-color: rgba(47, 200, 196, .58);
  transform: translateX(-50%) scale(.72);
}
.project-band.is-filtered-out {
  display: none;
}
.project-band {
  will-change: transform, opacity;
}
.project-band-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 24px 12px;
}
.project-band-tags em {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  color: #dffaf7;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.service-block { margin-top: 40px; }
.service-block > h2 {
  margin: 0;
  padding: 18px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  text-transform: uppercase;
  font-weight: 400;
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
  margin-top: 18px;
}
.service-visual {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.24);
}
.service-visual .wide { width: 300px; }
.service-visual img {
  position: absolute;
  width: 260px;
  object-fit: cover;
  border-radius: 6px;
}
.service-visual .visual-top { left: 36px; top: 36px; }
.service-visual .visual-bottom { right: 26px; bottom: 34px; }
.service-copy h3 {
  margin: 0 0 34px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.1;
  font-weight: 400;
}
.service-copy p { font-size: 14px; }
.service-copy ol {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: item;
}
.service-copy li {
  counter-increment: item;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  min-height: 50px;
  margin-bottom: 12px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
}
.service-copy li::before {
  content: "0" counter(item);
  color: var(--aqua);
  font-size: 11px;
  font-weight: 900;
}
.faq {
  padding: 70px 0 130px;
}
.faq h2 {
  margin: 0 0 42px;
  text-align: center;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.2;
  font-weight: 400;
}
.faq-item {
  max-width: 760px;
  margin: 10px auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.28);
}
.faq-item summary {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr 28px;
  align-items: center;
  gap: 18px;
  padding: 0 22px;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  line-height: 1.2;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item span { color: var(--aqua); font-size: 11px; font-weight: 900; }
.faq-item b {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 13px;
}
.faq-item p { margin: 0; padding: 0 62px 22px 22px; color: var(--muted); }

.service-profile {
  display: grid;
  grid-template-columns: minmax(260px, 430px) 1fr;
  gap: 70px;
  align-items: center;
}
.service-profile img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(1);
  border-radius: 12px;
}
.service-profile h2 {
  margin: 22px 0 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
  font-weight: 450;
}
.service-profile p {
  max-width: 650px;
  margin: 0 0 28px;
  color: var(--muted);
  line-height: 1.65;
}
.service-page .service-profile img {
  filter: none;
}

.service-lab {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1fr);
  gap: 52px;
  align-items: center;
  padding: 0 0 86px;
}
.service-lab-copy h2 {
  margin: 24px 0 18px;
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 1.04;
  font-weight: 400;
}
.service-lab-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.service-lab-board {
  position: relative;
  min-height: 470px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-content: center;
  padding: 46px;
  overflow: hidden;
  border: 1px solid rgba(7, 26, 58, .12);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(7,26,58,.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7,26,58,.06) 1px, transparent 1px),
    rgba(255,255,255,.32);
  background-size: 42px 42px;
  box-shadow: 0 22px 58px rgba(7, 26, 58, .09);
}
.service-lab-board::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(7, 26, 58, .12);
  border-radius: 10px;
}
.lab-window {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(7, 26, 58, .13);
  border-radius: 10px;
  background: rgba(248, 251, 251, .86);
  box-shadow: 0 18px 44px rgba(7, 26, 58, .1);
}
.lab-window span {
  color: var(--aqua);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.lab-window strong {
  max-width: 320px;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.05;
  font-weight: 500;
}
.lab-window-main {
  grid-column: 1 / -1;
  width: auto;
}
.lab-window-brand {
  width: auto;
}
.lab-window-seo {
  width: auto;
}
.lab-chip {
  position: absolute;
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 12px;
  font-weight: 800;
}
.lab-chip:nth-of-type(4) { right: 28px; bottom: 28px; }
.lab-chip:nth-of-type(5) { right: 152px; bottom: 28px; background: var(--aqua); color: var(--ink); }
.lab-chip:nth-of-type(6) { left: 28px; bottom: 28px; background: #cedbdf; color: var(--ink); }

.service-delivery {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1fr);
  gap: 64px;
  align-items: center;
}
.service-delivery h2 {
  margin: 24px 0 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
  font-weight: 450;
}
.service-delivery p {
  max-width: 620px;
  margin: 0 0 28px;
  color: var(--muted);
  line-height: 1.65;
}
.delivery-list {
  display: grid;
  gap: 14px;
}
.delivery-list article {
  display: grid;
  gap: 8px;
  min-height: 126px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.3);
}
.delivery-list strong {
  font-size: 24px;
  font-weight: 500;
}
.delivery-list span {
  color: var(--muted);
  line-height: 1.5;
}

.service-offers {
  padding-top: 86px;
}
.service-offers .section-heading {
  margin-bottom: 34px;
}
.service-offers .section-heading p {
  max-width: 430px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.6;
}
.service-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.service-offer-grid article {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px;
  background: rgba(255,255,255,.3);
}
.service-offer-grid h3 {
  margin: 0 0 16px;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.05;
  font-weight: 500;
}
.service-offer-grid p {
  margin: 0 0 26px;
  color: var(--muted);
  line-height: 1.6;
}
.service-offer-grid ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}
.service-offer-grid li {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
}

.agency-project-constellation {
  position: relative;
  min-height: 680px;
  margin-top: 10px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 28%, rgba(47, 200, 196, .12), rgba(47, 200, 196, 0) 28%),
    radial-gradient(circle at 78% 62%, rgba(156, 231, 167, .16), rgba(156, 231, 167, 0) 32%);
}
.agency-project-constellation::before {
  content: "";
  position: absolute;
  inset: 48px 8%;
  border: 1px solid rgba(7, 26, 58, .08);
  border-radius: 50%;
  transform: rotate(-8deg);
  pointer-events: none;
}
.agency-project-constellation::after {
  content: "";
  position: absolute;
  inset: 18% 16%;
  border: 1px solid rgba(47, 200, 196, .16);
  border-radius: 50%;
  transform: rotate(13deg);
  pointer-events: none;
}
.project-bubble {
  position: absolute;
  left: var(--left);
  top: var(--top);
  z-index: 1;
  width: 210px;
  aspect-ratio: 1;
  color: white;
  transform: translate3d(var(--bubble-x, 0), var(--bubble-y, 0), 0);
  transition: transform .26s ease;
}
.project-bubble.is-xl { width: 330px; z-index: 3; }
.project-bubble.is-lg { width: 280px; z-index: 2; }
.project-bubble.is-md { width: 220px; }
.project-bubble.is-sm { width: 184px; }
.project-bubble.is-xs { width: 156px; }
.project-bubble-inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  background: #071a3a;
  box-shadow: 0 26px 70px rgba(7, 26, 58, .2);
  animation: projectBubbleFloat 7.5s ease-in-out infinite;
  animation-delay: var(--delay);
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s ease;
}
.project-bubble:hover .project-bubble-inner,
.project-bubble:focus-visible .project-bubble-inner {
  transform: scale(1.045);
  box-shadow: 0 34px 90px rgba(7, 26, 58, .26);
}
.project-bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .78;
  transition: opacity .3s ease, transform .6s cubic-bezier(.22, 1, .36, 1);
}
.project-bubble:hover img,
.project-bubble:focus-visible img {
  opacity: .92;
  transform: scale(1.08);
}
.project-bubble-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 26, 58, .08), rgba(7, 26, 58, .68)),
    radial-gradient(circle at 50% 28%, rgba(255,255,255,.18), rgba(255,255,255,0) 45%);
}
.project-bubble-copy {
  position: absolute;
  left: 50%;
  bottom: 13%;
  z-index: 2;
  display: grid;
  gap: 7px;
  width: min(76%, 220px);
  transform: translateX(-50%);
  text-align: center;
}
.project-bubble-copy small {
  justify-self: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(248, 251, 251, .9);
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}
.project-bubble-copy strong {
  color: white;
  font-size: clamp(17px, 1.8vw, 27px);
  line-height: .95;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 10px 26px rgba(7, 26, 58, .4);
}
.project-bubble.is-sm .project-bubble-copy,
.project-bubble.is-xs .project-bubble-copy {
  bottom: 17%;
  width: 84%;
}
.project-bubble.is-sm .project-bubble-copy strong {
  font-size: 18px;
  line-height: .98;
}
.project-bubble.is-xs .project-bubble-copy strong {
  font-size: 16px;
  line-height: .98;
}
.agency-project-slashes {
  position: relative;
  height: min(43vw, 560px);
  min-height: 460px;
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 8px;
  overflow: hidden;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #071a3a;
}
.agency-project-slashes::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: repeating-linear-gradient(
    105deg,
    rgba(248, 251, 251, .16) 0 1px,
    transparent 1px 120px
  );
  mix-blend-mode: screen;
  opacity: .35;
  pointer-events: none;
}
.project-slash {
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  color: white;
  isolation: isolate;
  border: 0;
  background: transparent;
  transform: none;
  transform-origin: center;
  transition: flex-grow .46s cubic-bezier(.22, 1, .36, 1), filter .28s ease;
}
.project-slash:first-child {
  margin-left: 0;
}
.project-slash:last-child {
  margin-right: 0;
}
.project-slash.is-featured { flex-grow: 1.45; }
.project-slash.is-large { flex-grow: 1.22; }
.project-slash.is-small { flex-grow: .82; }
.agency-project-slashes:hover .project-slash {
  filter: saturate(.78) brightness(.78);
}
.agency-project-slashes .project-slash:hover,
.agency-project-slashes .project-slash:focus-visible {
  z-index: 4;
  flex-grow: 1.95;
  filter: saturate(1.08) brightness(1);
}
.project-slash img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform .72s cubic-bezier(.22, 1, .36, 1), opacity .3s ease;
}
.project-slash::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 26, 58, .08), rgba(7, 26, 58, .76)),
    linear-gradient(105deg, rgba(7, 26, 58, .52), rgba(7, 26, 58, 0) 54%);
}
.project-slash::before {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  z-index: 2;
  width: 1px;
  background: rgba(248, 251, 251, .18);
  transform: skewX(-10deg);
  transform-origin: bottom;
  pointer-events: none;
}
.project-slash:hover img,
.project-slash:focus-visible img {
  transform: scale(1.12);
}
.project-slash-copy {
  position: absolute;
  left: 32px;
  right: auto;
  bottom: 38px;
  display: grid;
  gap: 11px;
  width: min(300px, calc(100% - 56px));
  transform: none;
  text-align: left;
}
.project-slash-copy small {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(248, 251, 251, .92);
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}
.project-slash-copy strong {
  max-width: 230px;
  color: white;
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: .92;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 12px 26px rgba(7, 26, 58, .38);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .24s ease, transform .24s ease;
}
.project-slash-copy em {
  max-width: 280px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-style: normal;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .24s ease, transform .24s ease;
}
.project-slash:hover .project-slash-copy em,
.project-slash:focus-visible .project-slash-copy em,
.project-slash:hover .project-slash-copy strong,
.project-slash:focus-visible .project-slash-copy strong {
  opacity: 1;
  transform: translateY(0);
}
.agency-project-montage {
  display: grid;
  grid-template-columns: 1.2fr .86fr .86fr;
  grid-auto-rows: 150px;
  gap: 16px;
  padding: 0;
}
.montage-card {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid rgba(7, 26, 58, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .28);
  box-shadow: 0 20px 54px rgba(7, 26, 58, .08);
  transform: rotate(-.35deg);
  transition: transform .28s ease, box-shadow .28s ease;
}
.montage-card:nth-child(even) {
  transform: rotate(.45deg);
}
.montage-card:hover {
  transform: translateY(-5px) rotate(0);
  box-shadow: 0 28px 70px rgba(7, 26, 58, .16);
}
.montage-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease, opacity .65s ease;
}
.montage-card:hover img {
  transform: scale(1.045);
  opacity: .92;
}
.montage-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 26, 58, 0) 25%, rgba(7, 26, 58, .72));
}
.montage-card span {
  position: relative;
  z-index: 1;
  max-width: calc(100% - 32px);
  margin: 0 16px 16px;
  color: white;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
}
.montage-large {
  grid-row: span 2;
}
.montage-tall {
  grid-row: span 2;
}
.montage-wide {
  grid-column: span 2;
}
.agency-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 72px;
  align-items: end;
  padding: 80px 0 90px;
}
.agency-intro-full {
  grid-template-columns: minmax(0, 980px);
}
.agency-intro-copy h2 {
  max-width: 880px;
  margin: 8px 0 22px;
  font-size: clamp(38px, 4.8vw, 68px);
  line-height: 1.04;
  font-weight: 400;
}
.agency-intro-copy p,
.agency-team-section .section-heading p,
.agency-profile-card p {
  color: var(--muted);
  line-height: 1.65;
}
.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.agency-cta {
  margin-top: 20px;
}
.agency-photo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 26, 58, .13);
  border-radius: 14px;
  background: rgba(255, 255, 255, .42);
  box-shadow: 0 28px 80px rgba(7, 26, 58, .12);
}
.agency-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.agency-photo-card figcaption {
  display: grid;
  gap: 5px;
  padding: 20px;
  border-top: 1px solid var(--line);
}
.agency-photo-card strong,
.agency-profile-card h3 {
  font-weight: 500;
}
.agency-photo-card span,
.agency-profile-card span {
  color: var(--muted);
  font-size: 13px;
}
.agency-team-section {
  padding-top: 110px;
}
.agency-team-first {
  padding-top: 64px;
  padding-bottom: 110px;
}
.agency-team-section .section-heading {
  align-items: start;
  margin-bottom: 38px;
}
.page-agency .section-heading h2 {
  margin-top: 8px;
}
.agency-team-section .section-heading h2 {
  margin-top: 3px;
}
.agency-team-section .section-heading p {
  max-width: 390px;
  margin: 24px 0 0;
}
.agency-team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.agency-profile-card {
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(170px, 230px) 1fr;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(7, 26, 58, .13);
  border-radius: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, .3);
}
.agency-profile-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: 9px;
}
.agency-profile-card.is-muted img {
  filter: grayscale(1);
}
.agency-profile-card h3 {
  margin: 12px 0 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}
.agency-profile-card p {
  margin: 0;
}
.agency-projects-section .section-heading {
  margin-bottom: 38px;
}
.agency-projects-section {
  padding-top: 110px;
  padding-bottom: 130px;
}

.contact-hero {
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 90px;
  align-items: end;
  padding-top: 190px;
  padding-bottom: 100px;
}
.contact-hero-copy h1 {
  max-width: 850px;
  margin: 8px 0 30px;
  font-size: clamp(54px, 6.8vw, 98px);
  line-height: .96;
  font-weight: 400;
}
.contact-hero-copy > p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.contact-direct {
  display: grid;
  align-content: end;
  border-top: 1px solid var(--line);
}
.contact-direct .mini-label {
  margin: 24px 0 18px;
}
.contact-direct a {
  display: grid;
  gap: 5px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition: color .2s ease, padding-left .2s ease;
}
.contact-direct a:hover {
  padding-left: 8px;
  color: var(--aqua);
}
.contact-direct small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.contact-direct strong {
  font-size: 21px;
  font-weight: 500;
}
.contact-direct .contact-whatsapp {
  position: relative;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  overflow: hidden;
  margin-top: 20px;
  padding: 14px 14px 14px 16px;
  border: 1px solid rgba(7, 26, 58, .14);
  border-radius: 7px;
  background: rgba(255, 255, 255, .54);
  color: var(--ink);
  box-shadow: 0 12px 35px rgba(7, 26, 58, .06);
}
.contact-direct .contact-whatsapp:hover {
  padding-left: 16px;
  border-color: rgba(24, 173, 91, .55);
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(7, 26, 58, .11);
  transform: translateY(-2px);
}
.contact-whatsapp-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #1fbd68;
  color: white;
}
.contact-whatsapp-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.contact-whatsapp > span {
  display: grid;
  gap: 2px;
}
.contact-whatsapp small {
  color: #178d50;
  font-size: 10px;
}
.contact-whatsapp strong {
  font-size: 14px;
  font-weight: 700;
}
.contact-direct > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.contact-workspace {
  padding: 110px 0 130px;
  background: #18243a;
  color: white;
}
.contact-workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(560px, 1.28fr);
  gap: 100px;
  align-items: start;
}
.contact-brief {
  position: sticky;
  top: 130px;
}
.contact-brief .mini-label {
  border-color: #9ce7a7;
  background: #9ce7a7;
  color: #071a3a;
  box-shadow: 0 8px 24px rgba(156, 231, 167, .16);
}
.contact-brief h2 {
  margin: 8px 0 28px;
  font-size: clamp(40px, 4.3vw, 64px);
  line-height: 1.02;
  font-weight: 400;
}
.contact-brief h2 em {
  color: #9ce7a7;
}
.contact-brief > p {
  max-width: 510px;
  color: #cbd5df;
  line-height: 1.7;
}
.contact-scope {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 38px;
}
.contact-scope span {
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: #e3e9ed;
  font-size: 12px;
}
.contact-signature {
  display: grid;
  gap: 5px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.contact-signature strong {
  font-size: 18px;
  font-weight: 500;
}
.contact-signature span {
  color: #aebbc5;
  font-size: 13px;
}
.contact-form-panel {
  padding: 46px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  background: #f4f6f5;
  color: var(--ink);
}
.contact-form {
  display: grid;
  gap: 24px;
}
.contact-form label {
  display: grid;
  gap: 9px;
}
.contact-form label > span {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.contact-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
input, textarea, select {
  width: 100%;
  border: 1px solid #c8d0d3;
  border-radius: 6px;
  outline: none;
  background: white;
  padding: 16px 17px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 3px rgba(47, 200, 196, .14);
}
textarea {
  min-height: 210px;
  resize: vertical;
  line-height: 1.55;
}
select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 15px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.contact-form-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding-top: 4px;
}
.contact-form-footer p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}
.submit-button {
  min-width: 210px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 7px 8px 7px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}
.submit-button b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--aqua);
  color: var(--ink);
  font-size: 20px;
  font-weight: 400;
  transition: transform .25s ease;
}
.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(7,26,58,.18);
}
.submit-button:hover b {
  transform: rotate(90deg);
}
.notice {
  display: grid;
  gap: 4px;
  margin-bottom: 28px;
  padding: 18px;
  border-radius: 6px;
}
.notice.success { background: #d8f4de; }
.notice.error { background: #f7d7d7; }

.project-page {
  padding-top: 120px;
}
.case-hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 70px;
  align-items: end;
  padding: 76px 0 64px;
}
.case-hero-copy h1 {
  max-width: 860px;
  margin: 18px 0 18px;
  font-size: clamp(58px, 8vw, 116px);
  line-height: .9;
  font-weight: 380;
  text-transform: uppercase;
}
.project-status {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(208, 131, 23, .36);
  border-radius: 999px;
  background: rgba(241, 181, 79, .14);
  color: #9a5c08;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.project-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d08317;
  box-shadow: 0 0 0 5px rgba(208, 131, 23, .13);
  animation: projectStatusPulse 1.8s ease-in-out infinite;
}
@keyframes projectStatusPulse {
  50% { box-shadow: 0 0 0 8px rgba(208, 131, 23, 0); }
}
.case-hero-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}
.case-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.case-meta {
  display: grid;
  gap: 12px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.42);
}
.case-meta span {
  color: var(--aqua);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.case-meta strong {
  margin-bottom: 14px;
  color: var(--ink);
  line-height: 1.35;
}
.case-cover {
  overflow: hidden;
  border-radius: 16px;
  background: #111;
}
.case-cover img {
  width: 100%;
  height: min(62vw, 640px);
  object-fit: cover;
  opacity: .9;
}
.case-section-nav {
  position: fixed;
  top: 50%;
  right: 18px;
  left: auto;
  z-index: 60;
  display: grid;
  gap: 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: translateY(-50%);
  backdrop-filter: none;
  --case-cursor-y: 14px;
  --case-axis-x: 5px;
}
.case-section-nav::after {
  content: "";
  position: absolute;
  inset: -24px -14px -24px -32px;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(closest-side at 70% 50%, rgba(248,251,251,.72), rgba(248,251,251,.34) 58%, rgba(248,251,251,0));
  filter: blur(10px);
  pointer-events: none;
}
.case-section-nav::before {
  content: "";
  position: absolute;
  top: 7px;
  bottom: 7px;
  right: var(--case-axis-x);
  width: 1px;
  background: rgba(7, 26, 58, .16);
}
.case-section-cursor {
  position: absolute;
  top: 0;
  right: calc(var(--case-axis-x) - 5px);
  z-index: 3;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 5px rgba(47, 200, 196, .14);
  transform: translateY(calc(var(--case-cursor-y) - 5px));
  transition: transform .38s cubic-bezier(.22, 1, .36, 1), box-shadow .28s ease;
}
.case-section-nav:hover .case-section-cursor {
  box-shadow: 0 0 0 8px rgba(47, 200, 196, .1);
}
.case-section-nav a {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: max-content 11px;
  align-items: center;
  justify-content: end;
  gap: 12px;
  min-height: 28px;
  padding: 0;
  border-radius: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  transition: color .2s ease, opacity .2s ease;
}
.case-section-nav a i {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  width: 7px;
  height: 7px;
  margin: 0;
  border: 1px solid rgba(7, 26, 58, .24);
  border-radius: 50%;
  background: #f8fbfb;
  box-shadow: none;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.case-section-nav a span {
  grid-column: 1;
  grid-row: 1;
  opacity: .58;
  transition: opacity .2s ease;
}
.case-section-nav a:hover,
.case-section-nav a.active {
  color: var(--ink);
}
.case-section-nav a:hover span,
.case-section-nav a.active span {
  opacity: 1;
}
.case-section-nav a.active i {
  border-color: rgba(47, 200, 196, .58);
  background: transparent;
  transform: scale(.72);
}
.home-section-nav::after {
  inset: -18px -10px -18px -22px;
  background: radial-gradient(closest-side at 74% 50%, rgba(248,251,251,.82), rgba(248,251,251,.28) 62%, rgba(248,251,251,0));
}
.home-section-nav a span {
  transition: opacity .2s ease, transform .2s ease;
}
.home-section-nav a:not(.active) span {
  opacity: 0;
  transform: translateX(5px);
}
.home-section-nav:hover a span,
.home-section-nav:focus-within a span {
  opacity: .58;
  transform: translateX(0);
}
.home-section-nav:hover a.active span,
.home-section-nav:focus-within a.active span,
.home-section-nav a.active span {
  opacity: 1;
  transform: translateX(0);
}
.case-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 70px;
  align-items: start;
}
.case-intro h2 {
  max-width: 780px;
  margin: 18px 0 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.16;
  font-weight: 430;
}
.case-gallery h2,
.next-project p {
  margin: 18px 0 0;
  font-size: clamp(34px, 4.4vw, 66px);
  line-height: 1.06;
  font-weight: 430;
}
.case-highlights {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.case-highlights li {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.34);
  color: var(--muted);
  font-weight: 750;
}
.case-identity {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
  border-top: 1px solid var(--line);
}
.case-module-copy h2,
.case-print-heading h2 {
  max-width: 780px;
  margin: 18px 0 18px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1;
  font-weight: 410;
}
.case-module-copy p,
.case-print-heading p {
  max-width: 660px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.case-module-copy ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.case-module-copy li {
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid rgba(7, 26, 58, .12);
  border-radius: 999px;
  background: rgba(255,255,255,.44);
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
}
.case-identity-board {
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: 16px;
  align-items: end;
}
.case-identity-board figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 26, 58, .1);
  border-radius: 16px;
  background: white;
  box-shadow: 0 24px 70px rgba(7, 26, 58, .1);
}
.case-identity-board figure.is-large {
  min-height: 520px;
}
.case-identity-board img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.case-print {
  overflow: hidden;
  padding-top: 118px;
  padding-bottom: 124px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.38), rgba(220, 237, 232, .72)),
    #eef5f3;
}
.case-print-heading {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(300px, .58fr);
  gap: 70px;
  align-items: start;
  margin-bottom: 48px;
}
.case-print-heading > div:last-child {
  align-self: end;
  padding-top: 34px;
}
.case-print-heading ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.case-print-heading li {
  padding: 9px 12px;
  border: 1px solid rgba(7, 26, 58, .12);
  border-radius: 999px;
  background: rgba(255,255,255,.5);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.case-print-layout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
  align-items: stretch;
}
.case-print-layout figure {
  position: relative;
  min-height: 310px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(7, 26, 58, .08);
  box-shadow: 0 22px 70px rgba(7, 26, 58, .12);
  transition: transform .24s ease, box-shadow .24s ease;
}
.case-print-layout figure:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 84px rgba(7, 26, 58, .16);
}
.case-print-layout figure.is-hero {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 638px;
}
.case-print-layout figure.is-wide {
  grid-column: span 2;
}
.case-print-layout img {
  width: 100%;
  height: 100%;
  padding: 14px;
  object-fit: contain;
  object-position: center;
}
.case-print-layout figure.is-hero img,
.case-print-layout figure.is-wide img {
  padding: 0;
  object-fit: cover;
}
.case-print-layout figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}
.case-print-zoom {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 0;
  background: transparent;
  color: transparent;
  cursor: zoom-in;
}
.case-print-zoom:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: -8px;
  border-radius: 18px;
}
.print-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 18px;
  padding: 24px;
  background: rgba(7, 26, 58, .86);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.print-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.print-lightbox-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: white;
}
.print-lightbox-title {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.print-lightbox-controls {
  display: flex;
  gap: 8px;
}
.print-lightbox button {
  min-width: 40px;
  min-height: 40px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(248,251,251,.08);
  color: white;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.print-lightbox button:hover {
  border-color: rgba(255,255,255,.5);
  background: rgba(248,251,251,.18);
  transform: translateY(-1px);
}
.lightbox-icon-button {
  position: relative;
  display: grid;
  place-items: center;
}
.lightbox-icon-button i,
.lightbox-icon-button i::before,
.lightbox-icon-button i::after {
  content: "";
  display: block;
}
.lightbox-icon-button.is-prev i,
.lightbox-icon-button.is-next i {
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}
.lightbox-icon-button.is-prev i { transform: translateX(2px) rotate(-45deg); }
.lightbox-icon-button.is-next i { transform: translateX(-2px) rotate(135deg); }
.lightbox-icon-button.is-close i {
  position: relative;
  width: 14px;
  height: 14px;
}
.lightbox-icon-button.is-close i::before,
.lightbox-icon-button.is-close i::after {
  position: absolute;
  top: 6px;
  left: 0;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.lightbox-icon-button.is-close i::before { transform: rotate(45deg); }
.lightbox-icon-button.is-close i::after { transform: rotate(-45deg); }
.lightbox-icon-button.is-zoom i {
  position: relative;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
}
.lightbox-icon-button.is-zoom i::before,
.lightbox-icon-button.is-zoom i::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
}
.lightbox-icon-button.is-zoom i::after {
  width: 2px;
  height: 8px;
}
.lightbox-icon-button.is-zoom.is-active i::after {
  opacity: 0;
}
.print-lightbox-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(248,251,251,.08);
  cursor: zoom-in;
}
.print-lightbox-stage.is-zoomed {
  cursor: zoom-out;
}
.print-lightbox-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  --zoom-x: 50%;
  --zoom-y: 50%;
  transform-origin: var(--zoom-x) var(--zoom-y);
  transition: transform .24s cubic-bezier(.22, 1, .36, 1);
}
.print-lightbox-stage.is-zoomed .print-lightbox-image {
  transform: scale(1.85);
}
.print-lightbox-bottom {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.print-lightbox-dot {
  width: 9px;
  height: 9px;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0;
  border-radius: 50%;
  opacity: .45;
}
.print-lightbox-dot.active {
  background: var(--aqua);
  opacity: 1;
}
.case-showcase {
  background: rgba(255,255,255,.18);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.device-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 28px;
  align-items: end;
}
.browser-frame,
.phone-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 26, 58, .12);
  background: #f8fbfb;
  box-shadow: 0 24px 70px rgba(7, 26, 58, .12);
}
.browser-frame {
  border-radius: 14px;
  padding-top: 34px;
  position: relative;
}
.browser-frame span {
  position: absolute;
  top: 13px;
  left: 16px;
  width: 44px;
  height: 10px;
  border-radius: 99px;
  background: linear-gradient(90deg, #ff6b62 0 10px, #ffd35d 10px 24px, #6de29a 24px 38px);
}
.browser-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}
.browser-frame.is-scroll-preview {
  padding-top: 34px;
}
.browser-frame.is-scroll-preview > img {
  display: none;
}
.web-scroll-frame {
  width: 100%;
  height: min(52vw, 620px);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(47, 200, 196, .55) rgba(7, 26, 58, .08);
}
.web-scroll-frame::-webkit-scrollbar {
  width: 7px;
}
.web-scroll-frame::-webkit-scrollbar-track {
  background: rgba(7, 26, 58, .08);
}
.web-scroll-frame::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(47, 200, 196, .55);
}
.web-scroll-frame img {
  width: 100%;
  height: auto;
  max-width: none;
  aspect-ratio: auto;
  object-fit: contain;
}
.phone-frame {
  width: min(100%, 250px);
  justify-self: end;
  padding: 12px;
  border-radius: 28px;
}
.phone-frame img {
  width: 100%;
  aspect-ratio: 390 / 844;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
}
.phone-frame.is-scroll-preview {
  height: min(72vh, 560px);
}
.phone-frame.is-scroll-preview .web-scroll-frame {
  height: 100%;
  border-radius: 20px;
}
.phone-frame.is-scroll-preview .web-scroll-frame img {
  width: 100%;
  height: auto;
  max-width: none;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 20px;
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.case-grid article {
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.38);
}
.case-grid h3 {
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1.08;
}
.case-grid p {
  color: var(--muted);
  line-height: 1.62;
}
.project-speed {
  padding-top: 110px;
  padding-bottom: 120px;
}
.project-speed-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 70px;
  align-items: end;
  margin-bottom: 62px;
}
.project-speed-heading h2 {
  max-width: 820px;
  margin: 20px 0 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
  font-weight: 400;
}
.project-speed-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.project-speed-device {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.project-speed-device-label {
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 34px 28px 34px 0;
  border-right: 1px solid var(--line);
}
.project-speed-device-label span {
  font-size: 20px;
  font-weight: 600;
}
.project-speed-device-label small,
.project-speed-mobile small {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}
.project-speed-scores {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.project-speed-score {
  min-height: 260px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 16px;
  padding: 24px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.project-speed-score:last-child {
  border-right: 0;
}
.project-speed-score strong {
  width: 128px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 11px solid currentColor;
  border-radius: 50%;
  font-size: 42px;
  line-height: 1;
  font-weight: 500;
}
.project-speed-score span {
  max-width: 130px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.project-speed-score.is-good {
  color: #16894b;
}
.project-speed-score.is-medium {
  color: #d08317;
}
.project-speed-score.is-low {
  color: #d64242;
}
.project-speed-score.is-improving {
  color: #7f8d98;
}
.project-speed-progress {
  border-color: #cbd3d8 !important;
  border-style: dashed !important;
}
.project-speed-progress i {
  width: 32px;
  height: 3px;
  border-radius: 999px;
  background: #9aa7b0;
}
.project-speed-score > small {
  margin-top: -8px;
  color: #7f8d98;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}
.project-speed-score.is-pending {
  color: #7f8d98;
}
.project-speed-score.is-pending strong {
  border-style: dashed;
  font-size: 34px;
}
.project-speed-mobile {
  display: grid;
  grid-template-columns: 1.1fr repeat(4, 1fr) auto;
  align-items: center;
  margin-top: 22px;
  padding: 20px 24px;
  border-radius: 7px;
  background: #18243a;
  color: white;
}
.project-speed-mobile > div {
  display: grid;
  gap: 4px;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,.18);
}
.project-speed-mobile > div:first-child {
  padding-left: 0;
}
.project-speed-mobile > div span {
  color: #b9c5ce;
  font-size: 11px;
}
.project-speed-mobile > div strong,
.project-speed-mobile > div:first-child > span {
  font-size: 19px;
  font-weight: 600;
}
.project-speed-mobile > div.is-good strong {
  color: #9ce7a7;
}
.project-speed-mobile > div.is-improving small {
  color: #b9c5ce;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.project-speed-mobile small b {
  color: #f1b54f;
  font-size: 13px;
}
.project-speed-mobile > a {
  margin-left: 24px;
  padding: 11px 15px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  transition: background .2s ease, color .2s ease;
}
.project-speed-mobile > a:hover {
  background: white;
  color: var(--ink);
}
.project-speed-pending-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 22px;
  padding: 22px 24px;
  border-radius: 7px;
  background: #18243a;
  color: white;
}
.project-speed-pending-action p {
  max-width: 650px;
  margin: 0;
  color: #c4ced5;
  font-size: 13px;
  line-height: 1.55;
}
.project-speed-pending-action a {
  flex: 0 0 auto;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  transition: background .2s ease, color .2s ease;
}
.project-speed-pending-action a:hover {
  background: white;
  color: var(--ink);
}
.case-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 18px;
  margin-top: 28px;
  align-items: stretch;
}
.case-gallery-item {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 26, 58, .1);
  border-radius: 16px;
  background: #071a3a;
  box-shadow: 0 20px 60px rgba(7, 26, 58, .1);
}
.case-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.case-gallery-item.is-art {
  grid-row: span 2;
  min-height: 650px;
}
.case-gallery-item.is-art img {
  object-position: center;
}
.case-gallery-item.is-screen {
  height: 360px;
  min-height: 316px;
  padding-top: 28px;
  background: #f8fbfb;
}
.case-gallery-item.is-screen:first-child {
  height: 520px;
}
.case-gallery-item.is-screen::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 14px;
  width: 42px;
  height: 9px;
  border-radius: 99px;
  background: linear-gradient(90deg, #ff6b62 0 10px, #ffd35d 10px 24px, #6de29a 24px 38px);
}
.case-gallery-item.is-screen img {
  height: 100%;
  object-position: center 24%;
}
.case-gallery-item.is-mobile {
  width: min(100%, 250px);
  min-height: 0;
  aspect-ratio: 390 / 844;
  justify-self: center;
  padding: 12px;
  border-radius: 30px;
  background: linear-gradient(145deg, #071a3a, #101f38);
}
.case-gallery-item.is-mobile::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 9px;
  left: 50%;
  width: 72px;
  height: 14px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #071a3a;
}
.case-gallery-item.is-mobile img {
  border-radius: 21px;
  object-fit: cover;
  object-position: center 42%;
}
.next-project {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.next-project p {
  max-width: 820px;
}

.footer {
  padding: 72px 0;
  background: white;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .85fr .8fr .85fr;
  gap: 52px;
}
.footer-cta p {
  margin: 12px 0 18px;
  font-size: 24px;
  line-height: 1.18;
}
.small-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: #cedbdf;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}
.magnetic-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  padding: 0 10px 0 24px;
  border: 1px solid rgba(7, 26, 58, .2);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  box-shadow: 0 18px 42px rgba(7, 26, 58, .18);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.magnetic-button span {
  font-size: 14px;
  font-weight: 700;
}
.magnetic-button small {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--aqua);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
}
.magnetic-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(7, 26, 58, .24);
}
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}
.footer-column strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 12px;
  text-transform: uppercase;
}
.copyright { text-transform: uppercase; }

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

@keyframes floatLoop {
  0%,100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-8px) rotate(2deg); }
}
@keyframes loaderLift {
  from { transform: translateY(0); }
  to { transform: translateY(-100%); }
}
@keyframes pageContentIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes headerFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes headerIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-34px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
@keyframes loopGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes loopShine {
  0%, 24% { transform: translateX(-120%); opacity: 0; }
  38% { opacity: .75; }
  58%, 100% { transform: translateX(120%); opacity: 0; }
}
@keyframes scrollCue {
  0% { transform: translateY(0); opacity: .35; }
  45% { opacity: 1; }
  100% { transform: translateY(24px); opacity: .15; }
}
@keyframes clientLogoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes letterMistReveal {
  0% {
    filter: blur(14px);
    opacity: 0;
    text-shadow:
      0 0 30px rgba(47, 200, 196, .46),
      0 0 84px rgba(47, 200, 196, .22);
    transform: translateY(.16em) scale(1.035);
  }
  58% {
    filter: blur(2.4px);
    opacity: .96;
    text-shadow:
      0 0 16px rgba(47, 200, 196, .26),
      0 0 44px rgba(47, 200, 196, .12);
    transform: translateY(0) scale(1.006);
  }
  100% {
    filter: blur(0);
    opacity: 1;
    text-shadow: none;
    transform: translateY(0) scale(1);
  }
}
@keyframes projectBubbleFloat {
  0%, 100% { transform: translateY(0) rotate(-.6deg); }
  50% { transform: translateY(-12px) rotate(.8deg); }
}

@media (prefers-reduced-motion: reduce) {
  .client-logo-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .container { width: min(100% - 32px, 1180px); }
  .section { padding: 70px 0; }
  .site-header {
    position: relative;
    top: auto;
    left: auto;
    z-index: 200;
    width: min(calc(100% - 20px), 1120px);
    min-height: 72px;
    margin: max(10px, env(safe-area-inset-top)) auto 0;
    padding: 10px 12px 10px 20px;
    background: rgba(248, 251, 251, .96);
    transform: none;
  }
  body.is-loading .site-header,
  body.is-loaded .site-header,
  body.is-page-entering .site-header {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .brand { width: 134px; }
  .menu-toggle {
    display: grid;
    grid-template-columns: repeat(2, 8px);
    gap: 4px;
    padding: 12px;
    border: 0;
    background: transparent;
  }
  .menu-toggle span {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--ink);
  }
  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: none;
    padding: 10px;
    border: 1px solid rgba(7, 26, 58, .08);
    border-radius: 12px;
    background: rgba(248,251,251,.98);
    box-shadow: 0 18px 60px rgba(7, 26, 58, .1);
  }
  .nav.open { display: grid; gap: 0; }
  .nav a {
    padding: 15px;
    border-bottom: 1px solid var(--line);
  }
  .nav a:last-child { border-bottom: 0; }
  .phone { justify-content: center; }
  .hero {
    min-height: 100svh;
    padding: 108px 0 62px;
  }
  .hero-inner { min-height: calc(100svh - 170px); }
  .hero-symbol { width: 110px; }
  .hero h1 { font-size: clamp(46px, 13vw, 76px); }
  .hero-copy { font-size: 17px; }
  .hero-actions { display: grid; width: 100%; }
  .scroll-cue {
    width: 34px;
    height: 50px;
    bottom: -2px;
  }
  .intro-section h2,
  .contact-teaser h2,
  .section-heading h2 {
    font-size: 36px;
  }
  .intro-grid,
  .google-reviews-card,
  .services-preview,
  .service-grid,
  .service-profile,
  .service-lab,
  .service-delivery,
  .service-offer-grid,
  .agency-project-montage,
  .agency-intro,
  .agency-team-grid,
  .two-cols,
  .contact-line,
  .case-hero,
  .case-intro,
  .case-identity,
  .case-print-heading,
  .device-grid,
  .case-grid,
  .next-project,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section-heading {
    grid-template-columns: 1fr;
  }
  .client-logos-section {
    padding: 12px 0 64px;
  }
  .client-logos-heading {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 22px;
  }
  .client-logos-heading h2,
  .client-logos-heading p {
    grid-column: 1;
    grid-row: auto;
  }
  .client-logos-heading h2 {
    margin-top: 4px;
    font-size: 34px;
  }
  .client-logos-heading > .tag {
    margin-bottom: 2px;
  }
  .client-logo-track {
    gap: 10px;
    padding: 0 10px;
    animation-duration: 64s;
  }
  .client-logo-marquee-rows {
    gap: 8px;
    padding: 12px 0;
    min-height: 224px;
  }
  .client-logo-track-row-2 {
    animation-duration: 72s;
  }
  .client-logo-track-row-3 {
    animation-duration: 80s;
  }
  .client-logo-item {
    flex: 0 0 124px;
    width: 124px;
    min-width: 124px;
    height: 64px;
    min-height: 64px;
    padding: 12px 16px;
    border-radius: 10px;
  }
  .client-logo-item img {
    width: 92px;
    height: 32px;
    max-height: 32px;
  }
  .section-heading .text-link {
    grid-column: 1;
    grid-row: auto;
  }
  .section-heading p {
    grid-column: 1;
    grid-row: auto;
    max-width: 100%;
  }
  .services-preview article { min-height: 210px; }
  .google-reviews-section {
    padding-top: 0;
  }
  .google-reviews-score {
    min-height: 0;
    padding: 0 0 28px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .google-review-quotes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
  .google-review-quotes article {
    min-height: 0;
  }
  .featured-project { min-height: 420px; }
  .featured-project div { padding: 24px; }
  .agency-project-montage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 150px;
    padding-bottom: 28px;
  }
  .agency-project-constellation {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 22px 0;
  }
  .agency-project-constellation::before,
  .agency-project-constellation::after {
    display: none;
  }
  .project-bubble,
  .project-bubble.is-xl,
  .project-bubble.is-lg,
  .project-bubble.is-md,
  .project-bubble.is-sm,
  .project-bubble.is-xs {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    min-height: 210px;
    aspect-ratio: auto;
    transform: none !important;
  }
  .project-bubble.is-xl,
  .project-bubble.is-lg {
    grid-column: span 2;
    min-height: 270px;
  }
  .project-bubble-inner {
    border-radius: 16px;
    animation: none;
  }
  .project-bubble-copy {
    width: min(84%, 280px);
  }
  .agency-project-slashes {
    height: auto;
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 22px 0;
    background: transparent;
  }
  .agency-project-slashes::before {
    display: none;
  }
  .project-slash,
  .project-slash:first-child,
  .project-slash:last-child {
    min-height: 280px;
    margin-left: 0;
    border-radius: 14px;
    transform: none;
  }
  .project-slash img {
    left: 0;
    width: 100%;
    transform: scale(1.04);
  }
  .project-slash:hover img,
  .project-slash:focus-visible img {
    transform: scale(1.1);
  }
  .project-slash::after {
    inset: 0;
  }
  .project-slash.is-featured,
  .project-slash.is-large {
    grid-column: span 2;
    min-height: 340px;
  }
  .agency-project-slashes:hover .project-slash,
  .agency-project-slashes .project-slash:hover,
  .agency-project-slashes .project-slash:focus-visible {
    filter: none;
    transform: none;
  }
  .project-slash-copy {
    left: 24px;
    right: 24px;
    bottom: 24px;
    width: auto;
    transform: none;
  }
  .project-slash-copy em {
    opacity: 1;
    transform: none;
  }
  .project-slash-copy strong {
    opacity: 1;
    transform: none;
  }
  .montage-large,
  .montage-tall,
  .montage-wide {
    grid-column: auto;
    grid-row: span 1;
  }
  .montage-large {
    grid-column: span 2;
    grid-row: span 2;
  }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid div {
    min-height: 126px;
    border-bottom: 1px solid var(--line);
  }
  .service-callout { min-height: 330px; }
  .contact-line { text-align: left; }
  .projects-hero,
  .services-hero,
  .agency-hero {
    min-height: 300px;
    padding-top: 120px;
  }
  .agency-hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 34px;
  }
  .agency-hero i {
    display: none;
  }
  .service-hero-new {
    min-height: auto;
    padding: 136px 0 54px;
  }
  .service-hero-new h1 {
    font-size: clamp(38px, 8vw, 62px);
  }
  .service-manifesto,
  .service-scene,
  .brand-scene-inner,
  .service-process {
    grid-template-columns: 1fr;
  }
  .service-manifesto {
    gap: 28px;
    padding-bottom: 70px;
  }
  .service-scene {
    min-height: auto;
    gap: 42px;
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .web-composition {
    min-height: 500px;
  }
  .brand-scene-inner {
    gap: 48px;
  }
  .service-scene-brand {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .brand-composition {
    min-height: 520px;
  }
  .service-scene-brand .scene-copy {
    grid-row: 1;
  }
  .service-scene-brand .brand-composition {
    grid-row: 2;
  }
  .speed-composition {
    min-height: 420px;
    grid-template-columns: 210px 1fr;
    padding: 34px;
  }
  .speed-score {
    width: 210px;
  }
  .speed-score strong {
    font-size: 58px;
  }
  .service-process {
    gap: 28px;
    align-items: start;
  }
  .service-lab {
    gap: 14px;
    padding-bottom: 48px;
  }
  .service-lab-board {
    min-height: 430px;
  }
  .service-offers {
    padding-top: 58px;
  }
  .service-offer-grid article {
    min-height: 0;
  }
  .project-bands {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 14px;
    gap: 14px;
    padding: 45px 0 90px;
  }
  .project-filters {
    grid-auto-flow: row;
    grid-auto-columns: unset;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px 10px;
    width: min(100%, 520px);
    justify-content: center;
    overflow: visible;
    margin-top: 28px;
    padding: 0 22px 4px;
    --filter-gap: 10px;
    --filter-row-height: 56px;
    --filter-row-gap: 18px;
    --filter-dot-offset: 5px;
    --filter-line-1: calc(var(--filter-row-height) - var(--filter-dot-offset));
    --filter-line-2: calc(var(--filter-row-height) * 2 + var(--filter-row-gap) - var(--filter-dot-offset));
    background: none;
  }
  .project-filters::before {
    content: "";
    position: absolute;
    top: var(--filter-line-1);
    left: 50%;
    width: 1px;
    height: calc(var(--filter-line-2) - var(--filter-line-1));
    background: rgba(7, 26, 58, .14);
    transform: translateX(-50%);
  }
  .project-filters::after {
    display: none;
  }
  .project-filter-cursor {
    top: 0;
    bottom: auto;
    transform: translate(calc(var(--project-filter-x) - 5px), calc(var(--project-filter-y) - 5px));
  }
  .project-filters button {
    grid-column: span 2;
    min-width: 0;
    min-height: var(--filter-row-height);
    align-content: start;
    padding-bottom: 18px;
  }
  .project-filters button::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: calc(100% + var(--filter-gap));
    height: 1px;
    background: rgba(7, 26, 58, .14);
    pointer-events: none;
  }
  .project-filters button:nth-of-type(3)::after,
  .project-filters button:nth-of-type(5)::after {
    display: none;
  }
  .project-filters button:nth-of-type(4) { grid-column: 2 / span 2; }
  .project-filters button:nth-of-type(5) { grid-column: 4 / span 2; }
  .project-filters button span {
    max-width: 100%;
    text-align: center;
    line-height: 1.15;
  }
  .project-filters button i {
    bottom: 2px;
    z-index: 2;
  }
  .project-band,
  .project-band:nth-child(3n + 1),
  .project-band:nth-child(4n + 2),
  .project-band:nth-child(5n + 4) {
    grid-row: span 18;
  }
  .project-band strong {
    max-width: calc(100% - 36px);
    margin: 0 18px 20px;
    font-size: clamp(22px, 4vw, 32px);
    line-height: .96;
  }
  .project-band span {
    max-width: calc(100% - 36px);
    margin: 0 18px 10px;
    padding: 7px 11px;
    font-size: 10px;
    line-height: 1.08;
    hyphens: auto;
  }
  .project-band-tags {
    margin: 0 18px 10px;
  }
  .project-band-tags em {
    min-height: 22px;
    padding: 0 8px;
    font-size: 8px;
  }
  .project-page { padding-top: 92px; }
  .case-hero {
    min-height: auto;
    gap: 28px;
    padding: 62px 0 42px;
  }
  .case-hero-copy h1 {
    font-size: 48px;
  }
  .case-hero-copy p {
    font-size: 16px;
  }
  .case-actions {
    display: grid;
  }
  .case-meta {
    padding: 20px;
  }
  .case-section-nav {
    position: fixed;
    top: auto;
    right: max(12px, env(safe-area-inset-right));
    bottom: calc(76px + env(safe-area-inset-bottom));
    left: auto;
    display: grid;
    gap: 9px;
    width: auto;
    max-width: min(180px, calc(100vw - 28px));
    margin: 0;
    padding: 9px 4px 9px 10px;
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    border-radius: 0;
    transform: none;
    backdrop-filter: none;
    --case-axis-x: 4px;
  }
  .case-section-nav::before {
    display: block;
    top: 7px;
    bottom: 7px;
    right: var(--case-axis-x);
  }
  .case-section-nav::after {
    display: block;
    inset: -16px -10px -16px -24px;
    background: radial-gradient(closest-side at 75% 50%, rgba(248,251,251,.78), rgba(248,251,251,.34) 64%, rgba(248,251,251,0));
    filter: blur(8px);
  }
  .case-section-cursor {
    display: block;
  }
  .case-section-nav a {
    grid-template-columns: minmax(0, max-content) 11px;
    justify-content: end;
    gap: 9px;
    min-height: 28px;
    padding: 0;
    font-size: 9px;
  }
  .case-section-nav a i {
    grid-column: 2;
    width: 7px;
    height: 7px;
    margin: 0;
  }
  .case-section-nav a span {
    grid-column: 1;
    max-width: 116px;
    overflow: hidden;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .home-section-nav {
    display: none;
  }
  .case-intro {
    gap: 28px;
  }
  .case-identity {
    gap: 32px;
  }
  .case-module-copy h2,
  .case-print-heading h2 {
    font-size: 36px;
  }
  .case-identity-board {
    grid-template-columns: 1fr;
  }
  .case-identity-board figure.is-large,
  .case-identity-board img {
    min-height: 300px;
  }
  .case-print {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .case-print-heading {
    gap: 18px;
  }
  .case-print-heading > div:last-child {
    padding-top: 0;
  }
  .case-print-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .case-print-layout figure,
  .case-print-layout figure.is-hero,
  .case-print-layout figure.is-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 360px;
  }
  .case-gallery h2,
  .next-project p {
    font-size: 32px;
  }
  .case-intro h2 {
    font-size: 30px;
  }
  .device-grid {
    align-items: center;
  }
  .web-scroll-frame {
    height: 420px;
  }
  .phone-frame {
    justify-self: center;
    width: min(74vw, 250px);
  }
  .phone-frame.is-scroll-preview {
    height: 520px;
  }
  .case-grid article {
    min-height: 230px;
  }
  .case-grid h3 {
    margin-top: 34px;
  }
  .project-speed-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .project-speed-heading > p {
    max-width: 620px;
  }
  .project-speed-device {
    grid-template-columns: 1fr;
  }
  .project-speed-device-label {
    grid-template-columns: auto 1fr;
    align-items: baseline;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .project-speed-scores {
    grid-template-columns: repeat(2, 1fr);
  }
  .project-speed-score:nth-child(2) {
    border-right: 0;
  }
  .project-speed-score:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
  .project-speed-mobile {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
  }
  .project-speed-mobile > div:nth-child(2) {
    border-right: 0;
  }
  .project-speed-mobile > a {
    width: fit-content;
    margin: 0;
  }
  .project-speed-pending-action {
    align-items: flex-start;
    flex-direction: column;
  }
  .case-gallery-grid {
    grid-template-columns: 1fr;
  }
  .case-gallery-item,
  .case-gallery-item.is-art,
  .case-gallery-item.is-screen {
    height: 300px;
    min-height: 300px;
    grid-row: auto;
  }
  .case-gallery-item.is-screen:first-child {
    height: 360px;
  }
  .case-gallery-item.is-mobile {
    width: min(72vw, 240px);
  }
  .service-visual {
    min-height: 360px;
  }
  .service-visual img { width: 145px; }
  .service-visual .wide { width: 165px; }
  .service-visual .visual-top { left: 18px; top: 18px; }
  .service-visual .visual-bottom { right: 18px; bottom: 18px; }
  .agency-intro {
    gap: 34px;
    padding: 55px 0 70px;
  }
  .agency-photo-card {
    max-width: 460px;
  }
  .agency-team-section .section-heading p {
    max-width: 100%;
  }
  .agency-profile-card {
    grid-template-columns: minmax(160px, 220px) 1fr;
  }
  .faq-item summary {
    grid-template-columns: 1fr 26px;
    font-size: 14px;
  }
  .faq-item p {
    padding-right: 48px;
  }
  .contact-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 58px;
    padding-top: 150px;
    padding-bottom: 76px;
  }
  .contact-hero-copy h1 {
    max-width: 760px;
  }
  .contact-direct {
    max-width: 560px;
  }
  .contact-workspace {
    padding-top: 80px;
    padding-bottom: 90px;
  }
  .contact-workspace-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .contact-brief {
    position: static;
  }
  .contact-brief > p {
    max-width: 640px;
  }
  .contact-form-panel {
    padding: 38px;
  }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 46px; }
  .hero-copy { font-size: 15px; }
  .site-header {
    width: calc(100% - 22px);
    min-height: 70px;
    padding-left: 18px;
    border-radius: 14px;
  }
  .brand { width: 128px; }
  .intro-section h2,
  .contact-teaser h2,
  .section-heading h2 {
    font-size: 30px;
  }
  .google-reviews-card {
    gap: 24px;
    padding: 26px 0;
  }
  .google-reviews-score {
    padding-bottom: 24px;
  }
  .google-reviews-score p {
    font-size: 31px;
  }
  .google-review-quotes {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .google-review-quotes article {
    gap: 8px;
  }
  .google-review-quotes p {
    font-size: 15px;
  }
  .numbers-grid { grid-template-columns: 1fr; }
  .service-manifesto h2,
  .scene-copy h2 {
    font-size: 34px;
  }
  .contact-hero {
    gap: 46px;
    padding-top: 128px;
    padding-bottom: 60px;
  }
  .contact-hero-copy h1 {
    margin-top: 18px;
    font-size: 48px;
  }
  .contact-hero-copy > p {
    font-size: 16px;
  }
  .contact-direct strong {
    font-size: 18px;
  }
  .contact-workspace {
    padding-top: 66px;
    padding-bottom: 70px;
  }
  .contact-workspace-grid {
    gap: 46px;
  }
  .contact-brief h2 {
    font-size: 38px;
  }
  .contact-signature {
    margin-top: 38px;
  }
  .contact-form-panel {
    margin: 0 -4px;
    padding: 24px 18px;
  }
  .contact-field-row,
  .contact-form-footer {
    grid-template-columns: 1fr;
  }
  .contact-form-footer {
    gap: 18px;
  }
  .contact-form-footer p {
    order: 2;
  }
  .submit-button {
    width: 100%;
  }
  .web-composition {
    min-height: 430px;
  }
  .web-browser {
    inset: 0 32px 44px 0;
  }
  .web-browser-copy {
    min-height: 270px;
    padding: 28px;
  }
  .web-browser-copy strong {
    font-size: 30px;
  }
  .web-browser-action {
    margin-left: 28px;
  }
  .web-mobile {
    width: 132px;
    min-height: 260px;
    border-width: 6px;
    border-radius: 24px;
  }
  .web-mobile strong {
    font-size: 19px;
  }
  .brand-composition {
    min-height: 480px;
  }
  .brand-type {
    font-size: 100px;
  }
  .brand-name {
    top: 52px;
    font-size: 30px;
  }
  .brand-swatches {
    top: 170px;
    height: 60px;
  }
  .brand-print {
    width: 150px;
    min-height: 140px;
    font-size: 28px;
  }
  .brand-line {
    width: 150px;
    font-size: 19px;
  }
  .speed-composition {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 28px;
    min-height: auto;
    padding: 32px 22px 58px;
  }
  .speed-score {
    width: 190px;
    border-width: 15px;
  }
  .speed-metrics {
    width: 100%;
  }
  .speed-composition > p {
    right: 22px;
    bottom: 20px;
  }
  .service-process p {
    font-size: 28px;
  }
  .service-process .magnetic-button {
    width: 100%;
    justify-content: space-between;
  }
  .project-bands {
    grid-template-columns: 1fr;
  }
  .project-band,
  .project-band:nth-child(3n + 1),
  .project-band:nth-child(4n + 2),
  .project-band:nth-child(5n + 4) {
    grid-row: span 19;
  }
  .project-filters {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    gap: 18px 8px;
    padding-inline: 8px;
    --filter-gap: 8px;
  }
  .project-filters button {
    font-size: 10px;
  }
  .agency-project-constellation {
    grid-template-columns: 1fr;
  }
  .project-bubble,
  .project-bubble.is-xl,
  .project-bubble.is-lg,
  .project-bubble.is-md,
  .project-bubble.is-sm,
  .project-bubble.is-xs {
    grid-column: auto;
    min-height: 245px;
  }
  .agency-project-slashes {
    grid-template-columns: 1fr;
  }
  .project-slash,
  .project-slash:first-child,
  .project-slash:last-child,
  .project-slash.is-featured,
  .project-slash.is-large {
    grid-column: auto;
    min-height: 285px;
    border-radius: 14px;
  }
  .case-section-nav {
    right: max(10px, env(safe-area-inset-right));
    bottom: calc(78px + env(safe-area-inset-bottom));
    max-width: min(156px, calc(100vw - 24px));
    padding-left: 10px;
  }
  .case-section-nav a span {
    max-width: 112px;
  }
  .home-section-nav {
    display: none;
  }
  .case-print-layout figure {
    min-height: 310px;
  }
  .case-print-layout {
    grid-template-columns: 1fr;
  }
  .case-print-layout figure.is-hero,
  .case-print-layout figure.is-wide {
    grid-column: auto;
  }
  .print-lightbox {
    padding: max(14px, env(safe-area-inset-top)) 12px 14px;
    gap: 12px;
  }
  .print-lightbox-top {
    align-items: flex-start;
    flex-direction: column;
  }
  .print-lightbox-controls {
    width: 100%;
    overflow-x: auto;
  }
  .print-lightbox button {
    flex: 0 0 auto;
    min-width: 40px;
    min-height: 40px;
    padding: 0;
  }
  .print-lightbox-stage.is-zoomed .print-lightbox-image {
    transform: scale(1.55);
  }
  .project-speed {
    padding-top: 76px;
    padding-bottom: 86px;
  }
  .project-speed-heading {
    margin-bottom: 40px;
  }
  .project-speed-heading h2 {
    font-size: 38px;
  }
  .project-speed-score {
    min-height: 190px;
    padding: 20px 10px;
  }
  .project-speed-score strong {
    width: 94px;
    border-width: 8px;
    font-size: 32px;
  }
  .project-speed-score span {
    font-size: 10px;
  }
  .project-speed-mobile {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }
  .project-speed-mobile > div,
  .project-speed-mobile > div:first-child {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 0 0 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
  }
  .project-speed-mobile > a {
    margin-top: 4px;
  }
  .project-speed-pending-action {
    padding: 22px 20px;
  }
  .project-speed-pending-action a {
    width: 100%;
    text-align: center;
  }
  .service-lab-board {
    min-height: 560px;
  }
  .lab-window,
  .lab-window-main,
  .lab-window-brand,
  .lab-window-seo {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    margin: 16px;
  }
  .service-lab-board::before,
  .lab-chip {
    display: none;
  }
  .service-offer-grid article {
    padding: 22px;
  }
  .service-profile {
    gap: 28px;
  }
  .agency-project-montage {
    grid-template-columns: 1fr;
    grid-auto-rows: 170px;
    gap: 12px;
    padding-top: 0;
  }
  .montage-large,
  .montage-tall,
  .montage-wide {
    grid-column: auto;
    grid-row: span 1;
  }
  .montage-card {
    transform: none;
  }
  .montage-card:nth-child(even) {
    transform: none;
  }
  .project-bands {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 30px;
  }
  .project-band,
  .project-band:nth-child(3n + 1),
  .project-band:nth-child(4n + 2),
  .project-band:nth-child(5n + 4) {
    grid-row: span 17;
    min-height: 238px;
    border-radius: 12px;
  }
  .project-band strong {
    max-width: calc(100% - 40px);
    margin: 0 20px 18px;
    font-size: 28px;
    line-height: .98;
  }
  .project-band span {
    max-width: calc(100% - 40px);
    margin: 0 20px 9px;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
  }
  .agency-intro-copy h2 {
    font-size: 34px;
  }
  .agency-team-first {
    padding-top: 28px;
    padding-bottom: 70px;
  }
  .page-agency .section-heading {
    gap: 18px;
  }
  .page-agency .section-heading h2 {
    margin-bottom: 18px;
    line-height: 1.02;
  }
  .agency-profile-card {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    gap: 18px;
    min-height: 0;
    padding: 16px;
    align-items: stretch;
    overflow: hidden;
  }
  .agency-profile-card img {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: 430px;
    aspect-ratio: 4 / 3.25;
    object-fit: cover;
    object-position: center 28%;
  }
  .agency-profile-card h3 {
    font-size: 30px;
  }
  .agency-profile-card p {
    font-size: 15px;
    line-height: 1.55;
  }
  .magnetic-button {
    width: 100%;
    justify-content: space-between;
  }
  .footer { padding: 48px 0; }
}
