:root {
  color-scheme: light dark;
  --bg: #f6f7f9;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-solid: #ffffff;
  --surface-muted: #eceff3;
  --text: #111827;
  --muted: #667085;
  --line: rgba(17, 24, 39, 0.11);
  --accent: #0f766e;
  --danger: #c2410c;
  --shadow: 0 18px 54px rgba(17, 24, 39, 0.1);
  --radius: 22px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b0d10;
    --surface: rgba(22, 25, 30, 0.78);
    --surface-solid: #15191f;
    --surface-muted: #1d232b;
    --text: #f8fafc;
    --muted: #a1a8b3;
    --line: rgba(255, 255, 255, 0.12);
    --accent: #9bbdb4;
    --danger: #fb923c;
    --shadow: 0 18px 54px rgba(0, 0, 0, 0.35);
  }
}

[data-theme="light"] {
  color-scheme: light;
  --bg: #f6f7f9;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-solid: #ffffff;
  --surface-muted: #eceff3;
  --text: #111827;
  --muted: #667085;
  --line: rgba(17, 24, 39, 0.11);
  --accent: #0f766e;
  --danger: #c2410c;
  --shadow: 0 18px 54px rgba(17, 24, 39, 0.1);
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0b0d10;
  --surface: rgba(22, 25, 30, 0.78);
  --surface-solid: #15191f;
  --surface-muted: #1d232b;
  --text: #f8fafc;
  --muted: #a1a8b3;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #9bbdb4;
  --danger: #fb923c;
  --shadow: 0 18px 54px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  letter-spacing: 0;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1120px, calc(100% - 28px));
  min-height: 68px;
  padding: 8px 10px 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 12px 36px rgba(17, 24, 39, 0.08);
  transform: translateX(-50%);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg);
  font-size: 0.82rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-actions,
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lang-switch {
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(128, 128, 128, 0.08);
}

.lang-btn,
.icon-btn,
.modal-close {
  border: 0;
  cursor: pointer;
}

.lang-btn {
  min-width: 38px;
  height: 32px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.lang-btn.active {
  background: var(--text);
  color: var(--bg);
}

.icon-btn {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(128, 128, 128, 0.08);
  color: var(--text);
}

.theme-dot {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 7px 0 0 currentColor;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: center;
  min-height: 92vh;
  padding-top: 118px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin: 0;
  font-size: 3.25rem;
  line-height: 1.08;
  font-weight: 760;
}

h2 {
  margin: 0;
  font-size: 2.2rem;
  line-height: 1.08;
  font-weight: 740;
}

h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.25;
}

p {
  line-height: 1.65;
}

.lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.btn.primary {
  border-color: var(--text);
  background: var(--text);
  color: var(--bg);
}

.btn.secondary {
  background: var(--surface);
  color: var(--text);
}

.glass {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
}

.profile-panel {
  display: grid;
  gap: 20px;
  padding: 20px;
  border-radius: 30px;
}

.profile-panel img {
  width: 100%;
  aspect-ratio: 4 / 4.35;
  object-fit: cover;
  object-position: center top;
  border-radius: 22px;
  background: var(--surface-muted);
}

.profile-copy {
  display: grid;
  gap: 6px;
}

.profile-copy p,
.profile-copy a,
.metric-grid em,
.project-meta {
  color: var(--muted);
}

.profile-copy p {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 780;
  text-transform: uppercase;
}

.profile-copy h2 {
  font-size: 1.55rem;
}

.profile-copy a {
  width: fit-content;
  text-decoration: none;
  font-weight: 720;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.metric-grid span {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(128, 128, 128, 0.06);
}

.metric-grid strong,
.metric-grid em {
  display: block;
}

.metric-grid strong {
  margin-bottom: 4px;
  font-size: 1.2rem;
}

.metric-grid em {
  font-size: 0.75rem;
  font-style: normal;
  line-height: 1.25;
}

.focus-band {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  padding: 20px 0 56px;
}

.focus-band span {
  min-height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 760;
}

.section.scanner {
  padding-top: 24px;
}

.scanner-panel {
  display: grid;
  gap: 18px;
  padding: 18px;
  border-radius: 30px;
  box-shadow: none;
}

.scanner-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(128, 128, 128, 0.06);
}

.scanner-tab {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 850;
}

.scanner-tab.active {
  background: var(--text);
  color: var(--bg);
}

.scanner-cases {
  position: relative;
}

.scanner-case {
  display: none;
}

.scanner-case.active {
  display: grid;
  gap: 18px;
  animation: scanner-in 260ms ease both;
}

.scanner-case-head {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 10px 8px 0;
}

.scanner-case-head span,
.scanner-kicker {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.scanner-case-head h3 {
  font-size: 1.6rem;
  line-height: 1.18;
}

.scanner-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 0.8fr;
  gap: 12px;
}

.scanner-body > div {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(128, 128, 128, 0.045);
}

.scanner-kicker {
  margin: 0 0 12px;
}

.scanner-body p:not(.scanner-kicker),
.scanner-result strong {
  color: var(--muted);
  line-height: 1.55;
}

.scanner-body p:not(.scanner-kicker) {
  margin: 0;
}

.scanner-result {
  display: grid;
  align-content: center;
}

.scanner-result strong {
  display: block;
  color: var(--text);
  font-size: 1.05rem;
}

@keyframes scanner-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section.comparison {
  padding-top: 24px;
}

.comparison .section-head {
  max-width: 840px;
}

.comparison-board {
  display: grid;
  gap: 14px;
}

.ai-layer {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 14px;
  padding: 24px 28px;
  border-radius: 28px;
  box-shadow: none;
}

.ai-layer-copy h3 {
  max-width: 520px;
  font-size: 1.28rem;
  line-height: 1.35;
}

.ai-layer-flow {
  display: grid;
  grid-template-columns: auto minmax(34px, 1fr) auto minmax(34px, 1fr) auto minmax(34px, 1fr) auto;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.ai-layer-flow span:not(.flow-arrow) {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(128, 128, 128, 0.06);
  white-space: nowrap;
}

.ai-layer-flow span:nth-child(3) {
  border-color: var(--text);
  background: var(--text);
  color: var(--bg);
}

.flow-arrow {
  position: relative;
  display: block;
  height: 1px;
  min-width: 34px;
  overflow: hidden;
  background: var(--line);
}

.flow-arrow::after {
  position: absolute;
  top: -3px;
  left: -10px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
  content: "";
  transform: rotate(45deg);
  animation: arrow-travel 1.85s ease-in-out infinite;
}

.flow-arrow.delay::after {
  animation-delay: 0.24s;
}

.flow-arrow.late::after {
  animation-delay: 0.48s;
}

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

.compare-side {
  padding: 28px;
  border-radius: 28px;
  box-shadow: none;
}

.compare-side.strong {
  border-color: color-mix(in srgb, var(--accent) 36%, var(--line));
}

.compare-label {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.compare-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-list li {
  position: relative;
  min-height: 52px;
  padding: 13px 0 13px 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.45;
}

.compare-list li:first-child {
  border-top: 0;
}

.compare-list li::before {
  position: absolute;
  top: 21px;
  left: 0;
  width: 8px;
  height: 8px;
  border: 1px solid var(--muted);
  border-radius: 50%;
  content: "";
}

.compare-list.positive li::before {
  border-color: var(--accent);
  background: var(--accent);
}

@keyframes arrow-travel {
  0% {
    left: -10px;
    opacity: 0;
  }

  18%,
  72% {
    opacity: 1;
  }

  100% {
    left: calc(100% + 4px);
    opacity: 0;
  }
}

@keyframes arrow-travel-down {
  0% {
    top: -8px;
    opacity: 0;
  }

  18%,
  72% {
    opacity: 1;
  }

  100% {
    top: calc(100% + 2px);
    opacity: 0;
  }
}

.section {
  padding: 78px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 42px;
  align-items: start;
  margin-bottom: 32px;
}

.section-head.compact {
  display: block;
  max-width: 860px;
  margin-bottom: 22px;
}

.section-head.compact h2 {
  max-width: 860px;
}

#services .section-head {
  display: block;
  max-width: 760px;
}

#services .section-head h2 {
  max-width: 760px;
}

.service-map {
  overflow: hidden;
  border-radius: 28px;
}

.service-line {
  display: grid;
  grid-template-columns: 64px 0.72fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 26px 30px;
  border-top: 1px solid var(--line);
  transition: background 180ms ease;
}

.service-line:first-child {
  border-top: 0;
}

.service-line:hover {
  background: rgba(128, 128, 128, 0.07);
}

.service-index {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 850;
}

.service-kicker {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-line > p,
.method-row p,
.project-row p,
.contact-panel p:not(.eyebrow),
.modal p {
  color: var(--muted);
}

.service-line > p {
  margin: 0;
}

.method {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 44px;
}

.method .section-head {
  display: block;
  margin: 0;
}

.method-list,
.project-list {
  display: grid;
}

.method-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.method-row:last-child {
  border-bottom: 1px solid var(--line);
}

.method-row strong {
  color: var(--accent);
}

.method-row p,
.project-row p {
  margin: 8px 0 0;
}

.project-list {
  border-top: 1px solid var(--line);
}

.project-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.project-meta {
  font-size: 0.78rem;
  font-weight: 830;
  text-transform: uppercase;
}

.project-row a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-weight: 780;
  text-decoration: none;
}

.experience {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 44px;
}

.experience .section-head {
  display: block;
  margin: 0;
}

.experience-map {
  display: grid;
  gap: 16px;
}

.experience-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: none;
}

.experience-stats span {
  min-width: 0;
  padding: 22px;
  background: rgba(128, 128, 128, 0.055);
}

.experience-stats strong,
.experience-stats em {
  display: block;
}

.experience-stats strong {
  margin-bottom: 8px;
  font-size: 2rem;
  line-height: 1;
}

.experience-stats em {
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 760;
  line-height: 1.35;
}

.operation-timeline {
  position: relative;
  display: grid;
  gap: 12px;
  padding-left: 24px;
}

.operation-timeline::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 6px;
  width: 1px;
  background: var(--line);
  content: "";
}

.op-map-item {
  position: relative;
  padding: 22px;
  border-radius: 22px;
  box-shadow: none;
}

.op-map-item::before {
  position: absolute;
  top: 26px;
  left: -23px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--bg);
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.op-map-item:nth-child(2) {
  transition-delay: 80ms;
}

.op-map-item:nth-child(3) {
  transition-delay: 160ms;
}

.op-map-item:nth-child(4) {
  transition-delay: 240ms;
}

.op-map-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 820;
}

.op-map-item p {
  margin: 8px 0 0;
  color: var(--muted);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 36px;
  align-items: stretch;
  padding: 22px;
  border-radius: 30px;
}

.contact-copy {
  display: grid;
  align-content: center;
  padding: 24px 20px;
}

.contact-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.contact-points span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 780;
}

.contact-card {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(128, 128, 128, 0.06);
}

.contact-action {
  width: 100%;
  min-height: 52px;
  justify-content: center;
}

.contact-phone {
  min-height: 56px;
  font-size: 1.06rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.social-row a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-weight: 750;
  text-decoration: none;
}

.social-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.youtube {
  background-image: url("https://cdn.jsdelivr.net/gh/glincker/thesvg@main/public/icons/youtube/default.svg");
}

.tiktok {
  background-image: url("https://cdn.jsdelivr.net/gh/glincker/thesvg@main/public/icons/tiktok/default.svg");
}

.instagram {
  background-image: url("https://cdn.jsdelivr.net/gh/glincker/thesvg@main/public/icons/instagram/default.svg");
}

.threads {
  background-image: url("https://cdn.jsdelivr.net/gh/glincker/thesvg@main/public/icons/threads/default.svg");
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  padding: 24px 20px 40px;
  color: var(--muted);
  font-size: 0.9rem;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(2, 6, 23, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  backdrop-filter: blur(12px);
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  position: relative;
  width: min(520px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: 32px;
  border-radius: 28px;
}

.modal h2 {
  font-size: 2.2rem;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(128, 128, 128, 0.14);
  color: var(--text);
  font-size: 1.45rem;
}

form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(128, 128, 128, 0.1);
  color: var(--text);
  outline: none;
  padding: 0 15px;
}

input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.14);
}

.form-submit {
  width: 100%;
}

.success-state,
.form-error {
  display: none;
}

.success-state.visible {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-top: 20px;
  text-align: center;
}

.checkmark {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg);
  font-size: 1.9rem;
  font-weight: 900;
}

.form-error.visible {
  display: block;
  margin: 14px 0 0;
  color: var(--danger);
  font-weight: 750;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

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

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr auto;
    border-radius: 26px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .method,
  .experience,
  .contact-panel,
  .section-head {
    grid-template-columns: 1fr;
  }

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

  .profile-panel {
    max-width: 460px;
  }

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

  .scanner-case-head,
  .scanner-body {
    grid-template-columns: 1fr;
  }

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

  .ai-layer {
    grid-template-columns: 1fr;
  }

  .service-line {
    grid-template-columns: 48px 1fr;
    gap: 14px 18px;
  }

  .service-line > p {
    grid-column: 2;
  }

  .project-row {
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 24px, 1120px);
  }

  .topbar {
    top: 10px;
    width: calc(100% - 18px);
  }

  .brand span:last-child {
    display: none;
  }

  h1 {
    font-size: 2.05rem;
    line-height: 1.08;
  }

  h2,
  .modal h2 {
    font-size: 1.72rem;
  }

  .lead {
    font-size: 1.02rem;
  }

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

  .btn,
  .contact-card .btn {
    width: 100%;
  }

  .profile-panel,
  .contact-panel,
  .modal {
    padding: 20px;
    border-radius: 22px;
  }

  .contact-copy,
  .contact-card {
    padding: 0;
  }

  .contact-card {
    border: 0;
    background: transparent;
  }

  .profile-panel {
    max-width: none;
  }

  .metric-grid,
  .focus-band {
    grid-template-columns: 1fr;
  }

  .section.scanner {
    padding-top: 12px;
  }

  .scanner-panel {
    padding: 12px;
    border-radius: 22px;
  }

  .scanner-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 20px;
  }

  .scanner-tab {
    border-radius: 16px;
  }

  .scanner-case-head {
    gap: 10px;
    padding: 8px 4px 0;
  }

  .scanner-case-head h3 {
    font-size: 1.28rem;
  }

  .scanner-body > div {
    padding: 18px;
    border-radius: 18px;
  }

  .experience-stats {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .experience-stats span,
  .op-map-item {
    padding: 20px;
  }

  .operation-timeline {
    padding-left: 20px;
  }

  .op-map-item::before {
    left: -21px;
  }

  .section.comparison {
    padding-top: 12px;
  }

  .compare-side {
    padding: 22px;
    border-radius: 22px;
  }

  .ai-layer {
    padding: 22px;
    border-radius: 22px;
  }

  .ai-layer-flow {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .ai-layer-flow span:not(.flow-arrow) {
    width: 100%;
  }

  .flow-arrow {
    width: 1px;
    height: 22px;
    min-width: 0;
    justify-self: center;
  }

  .flow-arrow::after {
    top: -8px;
    left: -3px;
    transform: rotate(135deg);
    animation-name: arrow-travel-down;
  }

  .service-map {
    border-radius: 22px;
  }

  .service-line {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .service-line > p {
    grid-column: auto;
  }

  .section {
    padding: 62px 0;
  }

  .social-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .social-row a {
    justify-content: center;
  }
}
