@charset "UTF-8";

@font-face {
  font-family: "FiraGO";
  src: url("../fonts/firago-web/FiraGO-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FiraGO";
  src: url("../fonts/firago-web/FiraGO-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FiraGO";
  src: url("../fonts/firago-web/FiraGO-ExtraBold.woff2") format("woff2");
  font-weight: 800 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MarkGEO";
  src: url("../fonts/mark-geo/mark-geo-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MarkGEO";
  src: url("../fonts/mark-geo/mark-geo-semibold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MarkGEO Caps";
  src: url("../fonts/mark-geo/mark-geo-caps-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MarkGEO Caps";
  src: url("../fonts/mark-geo/mark-geo-caps-semibold.woff2") format("woff2");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-2: #edf3f8;
  --ink: #171a20;
  --muted: #5d6877;
  --line: #d9e0e8;
  --dark: #11151b;
  --dark-2: #1d242e;
  --blue: #168fd6;
  --blue-2: #72c6ee;
  --green: #33b77a;
  --warm: #ffb84d;
  --shadow: 0 24px 80px rgba(17, 21, 27, 0.12);
  --radius: 8px;
  --max: 1440px;
  --font-heading: "FiraGO", "MarkGEO", "Noto Sans Georgian", "Segoe UI", system-ui, sans-serif;
  --font-menu: "MarkGEO Caps", "FiraGO", "Noto Sans Georgian", "Segoe UI", system-ui, sans-serif;
  --font-body: "MarkGEO", "FiraGO", "Noto Sans Georgian", "Segoe UI", system-ui, sans-serif;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img,
picture,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button {
  font: inherit;
}

svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  min-height: 76px;
  padding: 0 clamp(18px, 4vw, 54px);
  color: #fff;
  transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 48px);
  width: min(var(--max), 100%);
  min-height: inherit;
  margin: 0 auto;
}

.site-header.is-scrolled,
.page-sub .site-header,
.site-header:has(.nav.is-open) {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 14px 40px rgba(17, 21, 27, 0.08);
  backdrop-filter: blur(16px);
}

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

.brand-link strong,
.brand-link small {
  display: block;
}

.brand-link strong {
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand-link small {
  color: currentColor;
  opacity: 0.72;
  font-size: 0.75rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(17, 21, 27, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled .nav,
.page-sub .site-header .nav,
.site-header:has(.nav.is-open) .nav {
  border-color: var(--line);
  background: #fff;
}

.nav a {
  padding: 9px 12px;
  border-radius: 6px;
  color: currentColor;
  font-family: var(--font-heading);
  font-feature-settings: "case" 1;
  font-size: 0.92rem;
}

.nav a:hover,
.nav a.is-active {
  background: rgba(22, 143, 214, 0.14);
}

.menu-btn {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  background: transparent;
  color: currentColor;
  border-radius: 8px;
  cursor: pointer;
}

.menu-close {
  display: none;
}

.menu-btn[aria-expanded="true"] .menu-open {
  display: none;
}

.menu-btn[aria-expanded="true"] .menu-close {
  display: block;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 86vh;
  padding: 132px clamp(24px, 5vw, 96px) 36px;
  overflow: hidden;
  color: #fff;
}

.hero picture,
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 12, 17, 0.88), rgba(8, 12, 17, 0.5) 45%, rgba(8, 12, 17, 0.15)),
    linear-gradient(0deg, rgba(8, 12, 17, 0.74), rgba(8, 12, 17, 0.05) 55%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(520px, 0.95fr) minmax(320px, 0.45fr);
  align-items: center;
  gap: clamp(40px, 7vw, 120px);
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.hero__content {
  position: relative;
  width: min(720px, 100%);
  padding-bottom: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.12;
  letter-spacing: 0;
}

.btn,
.eyebrow,
.brand-text,
.menu-btn,
.breadcrumbs,
.footer-links,
.service-card__top,
.pill-cloud span,
.contact-panel span,
.contact-panel strong,
.hero__metrics strong,
.hero__metrics span {
  font-family: var(--font-menu);
}

h1 {
  max-width: 900px;
  font-size: clamp(3.1rem, 7vw, 6.8rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(1.62rem, 2.9vw, 2.75rem);
}

h3 {
  font-size: 1.05rem;
}

.hero__lead {
  width: min(720px, 100%);
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 16px 38px rgba(22, 143, 214, 0.35);
}

.btn--primary:hover {
  background: #0c7fbe;
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn--ghost-dark {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}

.hero__metrics {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(9, 13, 18, 0.58);
  backdrop-filter: blur(16px);
  border-radius: 8px;
  overflow: hidden;
}

.hero__metrics div {
  padding: clamp(18px, 2.6vw, 28px);
}

.hero__metrics div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero__metrics strong,
.hero__metrics span {
  display: block;
}

.hero__metrics strong {
  font-size: clamp(2rem, 4vw, 3.05rem);
  line-height: 1;
}

.hero__metrics span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.section {
  padding: clamp(70px, 9vw, 122px) clamp(24px, 5vw, 96px);
}

.section__inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.intro-band {
  padding-top: 56px;
  padding-bottom: 56px;
  background: var(--surface);
}

.intro-grid,
.about-grid,
.contact-grid,
.detail-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.intro-grid p,
.about-copy p,
.section-heading p,
.detail-grid p,
.contact-grid p {
  color: var(--muted);
  font-size: 1.02rem;
}

.intro-process {
  position: relative;
  overflow: hidden;
  width: min(620px, 100%);
  margin-left: auto;
  padding: clamp(10px, 1.4vw, 18px) 0 clamp(10px, 1.4vw, 18px) clamp(34px, 3.4vw, 52px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(139, 92, 246, 0.055), transparent 52%),
    transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.intro-process::before {
  content: "";
  position: absolute;
  inset: 10px auto 10px 0;
  width: 1px;
  background: linear-gradient(180deg, var(--magenta), var(--violet), var(--cyan));
  opacity: 0.76;
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.22);
}

.intro-process::after {
  content: "";
  position: absolute;
  inset: auto -20% -44% 42%;
  height: 150px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.09), transparent 68%);
  pointer-events: none;
}

.intro-process__head,
.intro-process__list {
  position: relative;
  z-index: 1;
}

.intro-process__head {
  padding-left: 0;
  margin-bottom: 20px;
}

.intro-process__head span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--cyan);
  font-family: var(--font-menu);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.intro-process__head p,
.intro-process__list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  line-height: 1.62;
}

.intro-process__list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.intro-process__list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.intro-process__num {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(0, 240, 255, 0.42);
  border-radius: 50%;
  background: rgba(4, 5, 10, 0.82);
  color: var(--cyan);
  font-family: var(--font-menu);
  font-size: 0.54rem;
  font-weight: 800;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.16);
}

.intro-process__list h4 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 0.98rem;
}

.section-heading {
  width: min(900px, 100%);
  margin-bottom: 36px;
}

.section-heading--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.section-heading--split > p,
.section-heading--split > .text-link {
  width: min(520px, 100%);
}

.section-heading--services {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.42fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  width: 100%;
}

.section-heading--services h2 {
  max-width: 900px;
  font-size: clamp(1.75rem, 3.2vw, 3.05rem);
}

.section-heading--services > div > p:not(.eyebrow) {
  width: min(760px, 100%);
}

.service-flow {
  position: relative;
  padding: 18px 0 18px 22px;
  border-left: 1px solid rgba(0, 240, 255, 0.32);
}

.service-flow::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -1px;
  width: 1px;
  background: linear-gradient(180deg, var(--magenta), var(--cyan));
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.22);
}

.service-flow span {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-family: var(--font-menu);
  font-size: 0.78rem;
  font-weight: 800;
}

.service-flow p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  line-height: 1.65;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.15vw, 20px);
}

.service-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.service-card {
  position: relative;
  min-height: 235px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(17, 21, 27, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--magenta));
  opacity: 0.55;
  transform: scaleX(0.32);
  transform-origin: left;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 143, 214, 0.4);
  box-shadow: var(--shadow);
}

.service-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.service-card a {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px 20px 18px;
}

.service-card__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--blue);
  font-weight: 800;
  font-size: 0.86rem;
}

.service-card__num {
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--font-menu);
  font-size: 0.72rem;
  font-weight: 800;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.pill-cloud span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.section--dark {
  background: var(--dark);
  color: #fff;
}

.section--dark .section-heading p,
.section--dark .portfolio-item span {
  color: rgba(255, 255, 255, 0.68);
}

.portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -10px 0 24px;
}

.portfolio-filter span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-menu);
  font-size: 0.74rem;
  font-weight: 800;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.3vw, 20px);
}

.portfolio-item {
  position: relative;
  min-height: 320px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: var(--dark-2);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
}

.portfolio-item--featured,
.portfolio-item--wide {
  min-height: 320px;
  aspect-ratio: 16 / 10;
}

.portfolio-item--featured {
  min-height: 320px;
}

.portfolio-item picture,
.portfolio-item__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.portfolio-item__image {
  object-fit: cover;
  opacity: 0.78;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.portfolio-item:hover .portfolio-item__image {
  transform: scale(1.03);
  opacity: 0.92;
}

.portfolio-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 21, 27, 0.05), rgba(17, 21, 27, 0.72));
}

.portfolio-item__content {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 1;
}

.portfolio-item span {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.portfolio-item h3 {
  max-width: 520px;
  color: #fff;
  font-size: clamp(0.98rem, 1.15vw, 1.22rem);
  line-height: 1.22;
}

.portfolio-item small {
  position: absolute;
  top: -2px;
  right: 0;
  color: rgba(255, 255, 255, 0.36);
  font-family: var(--font-menu);
  font-weight: 800;
}

.portfolio-item[data-tone="cyan"] {
  border-color: rgba(0, 240, 255, 0.18);
}

.portfolio-item[data-tone="magenta"] {
  border-color: rgba(232, 67, 147, 0.2);
}

.portfolio-item[data-tone="violet"] {
  border-color: rgba(139, 92, 246, 0.22);
}

.about-copy {
  display: grid;
  gap: 16px;
}

.about-lead {
  width: min(520px, 100%);
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.about-copy--glass {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(7, 9, 19, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    -16px 0 48px rgba(232, 67, 147, 0.08),
    18px 0 50px rgba(0, 240, 255, 0.08),
    0 24px 68px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.about-copy--glass::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -30px;
  width: 150px;
  height: 150px;
  border: 22px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  opacity: 0.8;
}

.about-copy p {
  margin: 0;
}

.about-copy--glass p {
  position: relative;
  z-index: 1;
  padding-left: 16px;
  border-left: 1px solid rgba(0, 240, 255, 0.18);
}

.about-copy--glass p span {
  display: block;
  margin-bottom: 7px;
  color: var(--cyan);
  font-family: var(--font-menu);
  font-size: 0.72rem;
  font-weight: 800;
}

.about-tags {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 8px;
}

.about-tags span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-family: var(--font-menu);
  font-size: 0.74rem;
  font-weight: 800;
}

.process-section {
  background: var(--surface);
}

.process-grid,
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 245px), 1fr));
  gap: clamp(14px, 1.4vw, 24px);
}

.process-step,
.outcome-card {
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 8px;
}

.outcome-card {
  position: relative;
  min-height: 190px;
  padding: 28px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.outcome-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--magenta));
  opacity: 0.82;
}

.outcome-card::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -58px;
  width: 150px;
  aspect-ratio: 1;
  border: 24px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
  pointer-events: none;
}

.outcome-card__mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  border: 1px solid rgba(0, 240, 255, 0.42);
  background: rgba(0, 240, 255, 0.08);
  color: var(--cyan);
  font-family: var(--font-menu);
  font-size: 0.78rem;
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.14);
}

.outcome-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 18rem;
}

.outcome-card p {
  position: relative;
  z-index: 1;
}

.outcome-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 240, 255, 0.34);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28), 0 0 24px rgba(0, 240, 255, 0.08);
}

.process-step span {
  display: block;
  margin-bottom: 38px;
  color: var(--blue);
  font-weight: 900;
}

.process-step p,
.outcome-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.faq-section {
  background: var(--surface-2);
}

.faq-lead {
  width: min(460px, 100%);
  margin: 18px 0 22px;
  color: var(--muted);
  font-size: 1rem;
}

.faq-link {
  color: var(--cyan);
}

.faq-item {
  overflow: hidden;
  margin-bottom: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    rgba(7, 9, 19, 0.66);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(0, 240, 255, 0.22);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

.faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 16px;
  align-items: center;
  cursor: pointer;
  padding: 17px 18px;
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(0, 240, 255, 0.28);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(4, 5, 10, 0.58);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.12);
  transition: transform 0.28s ease, border-color 0.28s ease, color 0.28s ease;
}

.faq-mark svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.faq-item[open] .faq-mark {
  transform: rotate(-18deg) scale(1.06);
  border-color: rgba(232, 67, 147, 0.44);
  color: var(--magenta);
}

.faq-item p {
  margin: 0 18px 18px;
  padding: 0 0 0 16px;
  border-left: 1px solid rgba(0, 240, 255, 0.24);
  color: var(--muted);
}

.contact-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark), #1a2f3f);
  color: #fff;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 14% auto auto -8%;
  width: 34vw;
  max-width: 520px;
  aspect-ratio: 1;
  border: 1px solid rgba(232, 67, 147, 0.22);
  border-radius: 50%;
  opacity: 0.42;
  filter: blur(1px);
  pointer-events: none;
}

.contact-section .section__inner {
  position: relative;
  z-index: 1;
}

.contact-section .eyebrow,
.contact-section p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-points {
  display: grid;
  gap: 10px;
  max-width: 620px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.contact-points li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 6px 14px;
  align-items: center;
  min-height: 70px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(12px);
}

.contact-points li span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(0, 240, 255, 0.46);
  color: var(--cyan);
  font-family: var(--font-menu);
  font-size: 0.74rem;
}

.contact-points strong {
  font-family: var(--font-menu);
  color: #fff;
}

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

.contact-panel {
  display: grid;
  gap: 10px;
}

.contact-panel > div:not(.contact-card__head):not(.contact-methods) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 62px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
}

.contact-panel span {
  color: rgba(255, 255, 255, 0.66);
}

.contact-panel--card {
  position: relative;
  gap: 18px;
  padding: clamp(18px, 2.4vw, 30px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 0 0, rgba(232, 67, 147, 0.18), transparent 36%),
    radial-gradient(circle at 100% 100%, rgba(0, 240, 255, 0.14), transparent 38%);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.contact-panel--card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -88px;
  width: 220px;
  aspect-ratio: 1;
  border: 36px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  pointer-events: none;
}

.contact-card__head,
.contact-method {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.contact-card__head {
  position: relative;
  z-index: 1;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-card__head strong {
  font-size: clamp(1rem, 1.25vw, 1.2rem);
}

.contact-methods {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.contact-method {
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(5, 7, 14, 0.3);
}

.contact-map {
  position: relative;
  z-index: 1;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(5, 7, 14, 0.42);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
  filter: saturate(0.85) contrast(1.06) brightness(0.82);
}

.contact-map__link {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(0, 240, 255, 0.28);
  border-radius: 8px;
  background: rgba(4, 5, 10, 0.72);
  color: #fff;
  font-family: var(--font-menu);
  font-size: 0.82rem;
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.contact-map__link svg {
  width: 16px;
  height: 16px;
}

.subhero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  min-height: 720px;
  padding: 128px clamp(18px, 5vw, 64px) 70px;
  background: var(--surface);
}

.subhero__content {
  max-width: 760px;
}

.subhero h1 {
  color: var(--ink);
  font-size: clamp(2rem, 4.2vw, 3.85rem);
}

.subhero p {
  color: var(--muted);
  font-size: 1.08rem;
}

.subhero__media {
  position: relative;
  height: clamp(360px, 42vw, 520px);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.subhero__media picture,
.subhero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.subhero__image {
  object-fit: cover;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--blue);
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
}

.check-list svg,
.outcome-card svg {
  flex: 0 0 auto;
  color: var(--green);
}

.section--soft {
  background: var(--surface-2);
}

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

.outcome-card {
  background: var(--surface);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 900;
}

.site-footer {
  padding: 24px clamp(18px, 5vw, 64px);
  background: #0c1117;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(28px, 4vw, 56px);
  width: min(var(--max), 100%);
  margin: 0 auto 36px;
}

.site-footer h2 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.site-footer p,
.footer-links a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.68);
}

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

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max), 100%);
  margin: 0 auto;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

@media (max-width: 980px) {
  .menu-btn {
    display: grid;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    color: var(--ink);
    background: #fff;
    border-color: var(--line);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 12px;
  }

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

  .section-heading--services {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-flow {
    width: min(520px, 100%);
  }

  .intro-grid,
  .about-grid,
  .contact-grid,
  .detail-grid,
  .faq-grid,
  .subhero {
    grid-template-columns: 1fr;
  }

  .intro-process {
    width: 100%;
    margin-left: 0;
    padding: 6px 0 6px 34px;
  }

  .subhero {
    min-height: auto;
  }

  .subhero__media {
    height: 380px;
  }

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

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand-link small {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding: 104px 16px 24px;
  }

  .hero__content {
    padding-bottom: 28px;
  }

  h1 {
    font-size: 3rem;
  }

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

  .hero__metrics div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .section {
    padding: 64px 16px;
  }

  .section-heading--split {
    display: grid;
  }

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

  .portfolio-item,
  .portfolio-item--wide {
    min-height: 340px;
  }

  .subhero {
    padding: 104px 16px 56px;
  }

  .subhero__media {
    height: 300px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* Brand refresh based on the provided LokoBrand/LokoKina reference. */
:root {
  --bg: #070913;
  --surface: rgba(13, 17, 30, 0.72);
  --surface-2: rgba(20, 26, 46, 0.84);
  --ink: #f8fafc;
  --muted: #94a3b8;
  --line: rgba(255, 255, 255, 0.08);
  --dark: #04050a;
  --dark-2: #0d111e;
  --blue: #00f0ff;
  --blue-2: #00f0ff;
  --green: #33d6a6;
  --warm: #e84393;
  --magenta: #e84393;
  --violet: #8b5cf6;
  --cyan: #00f0ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --glow: 0 0 28px rgba(139, 92, 246, 0.22);
  --glow-cyan: 0 0 24px rgba(0, 240, 255, 0.18);
  --radius: 16px;
}

body {
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 10% 18%, rgba(139, 92, 246, 0.12) 0%, transparent 34%),
    radial-gradient(circle at 86% 28%, rgba(0, 240, 255, 0.08) 0%, transparent 36%),
    radial-gradient(circle at 52% 78%, rgba(232, 67, 147, 0.08) 0%, transparent 42%);
  background-attachment: fixed;
  color: var(--ink);
}

.gradient-text {
  display: block;
  background: linear-gradient(135deg, var(--magenta) 0%, var(--violet) 50%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-header,
.site-header.is-scrolled,
.page-sub .site-header,
.site-header:has(.nav.is-open) {
  min-height: 80px;
  background: rgba(7, 9, 19, 0.78);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.brand-link {
  gap: 12px;
}

.site-header .brand-link {
  align-self: flex-start;
  padding-top: 10px;
}

.brand-mark {
  width: clamp(78px, 6.2vw, 96px);
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.18));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text strong {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.nav,
.site-header.is-scrolled .nav,
.page-sub .site-header .nav,
.site-header:has(.nav.is-open) .nav {
  border-color: transparent;
  background: transparent;
  gap: clamp(14px, 2.4vw, 32px);
  padding: 0;
  backdrop-filter: none;
  flex: 0 1 auto;
}

.nav a {
  padding: 8px 0;
  color: var(--muted);
  font-size: clamp(0.82rem, 0.74vw, 0.94rem);
  font-weight: 700;
  text-shadow: none;
}

.nav a:hover,
.nav a.is-active {
  color: var(--cyan);
  background: transparent;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.32);
}

.menu-btn {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.hero {
  min-height: 100vh;
  padding-top: 132px;
  padding-bottom: 72px;
  background: #04050a;
}

.hero__image {
  opacity: 0.2;
  filter: saturate(1.15) contrast(1.08);
  object-position: 76% center;
}

.hero__overlay {
  background:
    radial-gradient(circle at 78% 20%, rgba(0, 240, 255, 0.12) 0%, transparent 36%),
    radial-gradient(circle at 16% 78%, rgba(232, 67, 147, 0.14) 0%, transparent 40%),
    linear-gradient(90deg, rgba(4, 5, 10, 0.98), rgba(4, 5, 10, 0.9) 48%, rgba(4, 5, 10, 0.72));
}

.hero__content {
  width: min(700px, 100%);
  padding-bottom: 0;
}

.eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 16px 8px 12px;
  border: 1px solid rgba(0, 240, 255, 0.24);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(0, 240, 255, 0.12), rgba(139, 92, 246, 0.08) 52%, rgba(232, 67, 147, 0.08)),
    radial-gradient(circle at 0 50%, rgba(0, 240, 255, 0.22), transparent 58%);
  color: var(--cyan) !important;
  text-shadow: 0 0 12px rgba(0, 240, 255, 0.34);
  box-shadow: inset 0 0 0 1px rgba(0, 240, 255, 0.08), 0 12px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.eyebrow::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  box-shadow: 0 0 14px rgba(0, 240, 255, 0.5);
}

.contact-section .eyebrow {
  color: var(--cyan) !important;
}

.hero h1 {
  display: grid;
  gap: 6px;
  color: #fff;
  font-size: clamp(2.65rem, 5.8vw, 5.05rem);
  font-feature-settings: "case" 1;
  line-height: 1.02;
  letter-spacing: 0;
}

h2,
h3 {
  color: #fff;
}

.hero__lead {
  color: var(--muted);
  max-width: 690px;
}

.btn {
  border-radius: 999px;
  min-height: 50px;
  padding: 13px 26px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--magenta), var(--violet));
  color: #fff;
  box-shadow: 0 10px 28px rgba(232, 67, 147, 0.32), var(--glow);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #f052a0, #9868ff);
}

.btn--ghost,
.btn--ghost-dark {
  border-color: var(--line);
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(8px);
}

.hero__metrics,
.service-card,
.process-step,
.outcome-card,
.contact-panel > div:not(.contact-card__head):not(.contact-methods),
.portfolio-item,
.subhero__media,
.check-list div,
.faq-item,
.pill-cloud span {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.hero__metrics {
  position: relative;
  transform: none;
  isolation: isolate;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025) 42%, rgba(0, 240, 255, 0.055)),
    rgba(8, 10, 18, 0.86);
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow:
    -18px 0 48px rgba(232, 67, 147, 0.2),
    20px 0 48px rgba(0, 240, 255, 0.18),
    0 30px 88px rgba(0, 0, 0, 0.42);
}

.hero__metrics::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 18%, rgba(232, 67, 147, 0.22), transparent 34%),
    radial-gradient(circle at 88% 78%, rgba(0, 240, 255, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
  opacity: 0.74;
  animation: metricsGlowDrift 7s ease-in-out infinite alternate;
  z-index: 0;
}

.hero__metrics::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  padding: 2px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--metrics-edge-angle, 0deg) at 50% 50%,
    rgba(255, 118, 118, 0.82) 0deg,
    rgba(232, 67, 147, 0.9) 42deg,
    rgba(139, 92, 246, 0.36) 96deg,
    rgba(0, 240, 255, 0.88) 150deg,
    rgba(0, 240, 255, 0.22) 206deg,
    rgba(139, 92, 246, 0.24) 260deg,
    rgba(255, 123, 216, 0.82) 318deg,
    rgba(255, 118, 118, 0.82) 360deg
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: metricsEdgeSweep 7.2s linear infinite;
  filter: drop-shadow(0 0 10px rgba(232, 67, 147, 0.34)) drop-shadow(0 0 14px rgba(0, 240, 255, 0.28));
  opacity: 0.82;
  z-index: 2;
}

.hero__metrics div {
  position: relative;
  z-index: 1;
  min-height: 116px;
  display: grid;
  align-content: center;
}

.hero__metrics div + div {
  border-top-color: rgba(255, 255, 255, 0.09);
}

.hero__metrics strong,
.statNum {
  color: transparent;
  background: linear-gradient(135deg, var(--magenta), var(--violet), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
}

@property --metrics-edge-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes metricsEdgeSweep {
  to {
    --metrics-edge-angle: 360deg;
  }
}

@keyframes metricsGlowDrift {
  0% {
    transform: translate3d(-1%, -1%, 0) scale(1);
    opacity: 0.68;
  }

  100% {
    transform: translate3d(1%, 1%, 0) scale(1.05);
    opacity: 0.95;
  }
}

.intro-band,
.process-section,
.faq-section,
.section--soft,
.subhero {
  background: rgba(4, 5, 10, 0.62);
}

.section {
  position: relative;
}

.section-heading {
  color: var(--ink);
}

.intro-grid p,
.about-copy p,
.section-heading p,
.detail-grid p,
.contact-grid p,
.service-card p,
.process-step p,
.outcome-card p,
.faq-item p,
.subhero p {
  color: var(--muted);
}

.intro-process__head p,
.intro-process__list p {
  color: rgba(255, 255, 255, 0.68);
}

#about h2 {
  font-size: clamp(1.75rem, 3.25vw, 3.1rem);
}

.about-lead {
  color: rgba(255, 255, 255, 0.62);
}

.about-copy--glass p {
  color: rgba(255, 255, 255, 0.7);
}

.service-grid {
  gap: clamp(12px, 1.15vw, 20px);
}

.service-card {
  min-height: 235px;
  background:
    radial-gradient(circle at 12% 0%, rgba(232, 67, 147, 0.08), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    var(--surface);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.32);
  box-shadow: var(--glow), 0 14px 46px rgba(0, 0, 0, 0.28);
}

.service-card__top {
  color: var(--cyan);
}

.service-card h3 {
  font-size: clamp(0.98rem, 1vw, 1.12rem);
  line-height: 1.28;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.65;
}

.service-flow p {
  color: rgba(255, 255, 255, 0.72);
}

.pill-cloud span {
  color: var(--muted);
}

.section--dark,
.site-footer,
.contact-section {
  background: #04050a;
}

.portfolio-item__image {
  opacity: 0.68;
}

.portfolio-item::after {
  background: linear-gradient(180deg, rgba(4, 5, 10, 0.08), rgba(4, 5, 10, 0.9));
}

.subhero {
  color: var(--ink);
}

.subhero h1 {
  color: #fff;
}

.breadcrumbs {
  color: var(--muted);
}

.contact-section {
  background-image:
    radial-gradient(circle at 18% 20%, rgba(232, 67, 147, 0.16), transparent 38%),
    radial-gradient(circle at 82% 70%, rgba(0, 240, 255, 0.1), transparent 36%);
}

.footer-bottom,
.site-footer p,
.footer-links a {
  color: var(--muted);
}

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

  .hero__metrics {
    max-width: 520px;
  }

  .nav,
  .site-header.is-scrolled .nav,
  .page-sub .site-header .nav,
  .site-header:has(.nav.is-open) .nav {
    background: rgba(7, 9, 19, 0.98);
    border-color: var(--line);
    padding: 14px;
  }
}

@media (max-width: 640px) {
  .intro-process::before {
    left: 0;
  }

  .intro-process__head {
    padding-left: 0;
  }

  .intro-process__list li {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
  }

  .intro-process__num {
    width: 20px;
    height: 20px;
    font-size: 0.52rem;
  }

  .site-header {
    min-height: 68px;
    padding: 0 16px;
  }

  .brand-text small {
    display: none;
  }

  .brand-mark {
    width: 78px;
    height: 28px;
  }

  .hero {
    padding: 104px 16px 42px;
  }

  .hero__inner {
    gap: 24px;
  }

  .hero__content {
    padding-bottom: 0;
  }

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

  .hero__metrics {
    max-width: none;
  }

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

  .portfolio-item,
  .portfolio-item--featured,
  .portfolio-item--wide {
    min-height: 235px;
  }

  .hero__metrics div {
    min-height: 96px;
    padding: 18px;
  }

  .hero__metrics strong {
    font-size: 2rem;
  }
}

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

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