:root {
  color-scheme: light;
  --bg: #f3eee6;
  --bg-soft: #e8ece9;
  --surface: #ffffff;
  --surface-ink: #0f1720;
  --ink: #15222d;
  --muted: #51606d;
  --line: rgba(21, 34, 45, 0.14);
  --line-soft: rgba(21, 34, 45, 0.09);
  --hero: #0f1720;
  --hero-2: #152231;
  --accent: #e2a15d;
  --accent-strong: #c2762d;
  --teal: #3e8f92;
  --teal-strong: #1f6f73;
  --shadow: 0 24px 64px rgba(15, 23, 32, 0.12);
  --radius: 8px;
  --radius-sm: 6px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: clamp(124px, 12vw, 152px);
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, -apple-system,
    BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

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

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 32, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 30px rgba(7, 12, 18, 0.16);
}

.header-row {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #f6f3ee;
}

.brand-mark {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 250, 0.94));
  box-shadow: 0 10px 20px rgba(7, 12, 18, 0.18);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.brand-copy strong {
  font-size: 0.98rem;
  letter-spacing: 0;
}

.brand-copy small {
  margin-top: 4px;
  font-size: 0.72rem;
  color: rgba(246, 243, 238, 0.72);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 20px;
}

.site-nav a {
  color: rgba(246, 243, 238, 0.84);
  font-size: 0.92rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 42px 0 78px;
  color: #f8f4ee;
  background:
    linear-gradient(180deg, rgba(15, 23, 32, 0.98) 0%, rgba(16, 25, 35, 0.97) 58%, rgba(243, 238, 230, 0) 100%),
    linear-gradient(135deg, var(--hero) 0%, var(--hero-2) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 92%);
  opacity: 0.25;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 72%, rgba(226, 161, 93, 0.12) 72% 74%, transparent 74% 100%),
    linear-gradient(290deg, transparent 0 71%, rgba(62, 143, 146, 0.12) 71% 73%, transparent 73% 100%);
  opacity: 0.75;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 28px;
  align-items: center;
}

.hero-copy {
  padding: 42px 0;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.84rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--teal-strong);
  font-weight: 700;
}

.hero .eyebrow {
  color: rgba(248, 244, 238, 0.82);
}

.hero h1,
.section-head h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.08;
}

.hero h1 {
  font-size: 4rem;
  max-width: 10ch;
}

.hero h1 span {
  display: block;
}

.hero-lede {
  margin: 18px 0 0;
  max-width: 40rem;
  font-size: 1.14rem;
  color: rgba(248, 244, 238, 0.9);
}

.hero-note {
  margin: 14px 0 0;
  max-width: 38rem;
  color: rgba(248, 244, 238, 0.72);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition:
    transform 140ms ease,
    border-color 140ms ease,
    background-color 140ms ease,
    color 140ms ease;
  white-space: nowrap;
}

.btn svg,
.service-icon svg,
.copy-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

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

.btn-primary {
  background: var(--accent);
  color: #101820;
  box-shadow: 0 16px 24px rgba(226, 161, 93, 0.2);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ecb575;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  color: #f8f4ee;
  background: rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-tags li {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(248, 244, 238, 0.84);
  font-size: 0.94rem;
}

.hero-visual {
  margin: 0;
  align-self: stretch;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 34px 60px rgba(0, 0, 0, 0.34));
}

.section {
  padding: 92px 0;
  scroll-margin-top: clamp(124px, 12vw, 152px);
}

.section-paper {
  background: linear-gradient(180deg, #f3eee6 0%, #f5f1ea 100%);
}

.section-soft {
  background: linear-gradient(180deg, #edf1ee 0%, #e9eeea 100%);
}

.section-head {
  margin-bottom: 30px;
}

.section-head.compact {
  margin-bottom: 0;
}

.section-head h2 {
  max-width: 14ch;
  font-size: 2.25rem;
}

.section-copy {
  margin: 14px 0 0;
  max-width: 44rem;
  color: var(--muted);
}

.visual-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(21, 34, 45, 0.12);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(243, 238, 229, 0.8));
  box-shadow: 0 14px 28px rgba(15, 23, 32, 0.06);
}

.visual-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-visual {
  aspect-ratio: 16 / 9.2;
}

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

.service-card {
  min-height: 210px;
  padding: 22px 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 24px rgba(15, 23, 32, 0.04);
}

.service-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  border: 1px solid rgba(21, 34, 45, 0.14);
  background: linear-gradient(180deg, rgba(226, 161, 93, 0.16), rgba(62, 143, 146, 0.12));
  color: var(--surface-ink);
}

.service-card h3 {
  margin: 16px 0 8px;
  font-size: 1.12rem;
  line-height: 1.25;
}

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

.why-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 22px;
}

.why-intro {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(21, 34, 45, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.7));
  box-shadow: 0 12px 24px rgba(15, 23, 32, 0.05);
}

.why-intro h3 {
  margin: 0;
  font-size: 1.48rem;
  line-height: 1.18;
  color: var(--surface-ink);
}

.why-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.why-points span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(21, 34, 45, 0.1);
  background: rgba(255, 255, 255, 0.8);
  color: var(--surface-ink);
}

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

.why-card {
  min-height: 180px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(21, 34, 45, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 24px rgba(15, 23, 32, 0.04);
}

.why-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(226, 161, 93, 0.16);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
}

.why-card h3 {
  margin: 12px 0 8px;
  font-size: 1.06rem;
  line-height: 1.28;
}

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

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
}

.boundary-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-template-areas:
    "intro intro"
    "body summary";
  gap: 26px;
  align-items: start;
}

.boundary-layout > .section-head {
  grid-area: intro;
  margin-bottom: 0;
}

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

.boundary-summary-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  padding: 14px;
  border: 1px solid rgba(21, 34, 45, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(15, 23, 32, 0.04);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.boundary-summary-card:hover,
.boundary-summary-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(62, 143, 146, 0.28);
  box-shadow: 0 18px 34px rgba(15, 23, 32, 0.08);
}

.boundary-doc-preview {
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: calc(var(--radius) - 2px);
  background: linear-gradient(180deg, rgba(244, 241, 234, 0.98), rgba(236, 239, 241, 0.94));
  overflow: hidden;
}

.boundary-doc-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
}

.boundary-doc-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
}

.boundary-summary-label {
  font-size: 0.76rem;
  color: var(--teal-strong);
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 700;
}

.boundary-summary-card strong {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--surface-ink);
  font-size: 1.02rem;
  line-height: 1.32;
}

.boundary-summary-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--muted);
  line-height: 1.6;
}

.boundary-doc-meta {
  font-size: 0.82rem;
  color: var(--muted);
}

.boundary-doc-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-top: auto;
  color: var(--teal-strong);
  font-size: 0.86rem;
  font-weight: 700;
}

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

.definition-list div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 100%;
  padding: 18px 18px 20px;
  border: 1px solid rgba(21, 34, 45, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 22px rgba(15, 23, 32, 0.04);
}

.definition-list dt {
  margin: 0;
  font-weight: 600;
  color: var(--surface-ink);
}

.definition-list dd {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: var(--muted);
}

.definition-list > div:last-child {
  grid-column: 1 / -1;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-item {
  position: relative;
  padding: 20px 18px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.process-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(62, 143, 146, 0.12);
  color: var(--teal-strong);
  font-size: 0.84rem;
  font-weight: 700;
}

.process-item h3 {
  margin: 14px 0 8px;
  font-size: 1.06rem;
}

.process-item p {
  margin: 0;
  color: var(--muted);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(21, 34, 45, 0.12);
  border-radius: calc(var(--radius) + 2px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--surface-ink);
  font-size: 0.94rem;
}

.contact-form label.full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(21, 34, 45, 0.14);
  border-radius: var(--radius-sm);
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(62, 143, 146, 0.7);
  box-shadow: 0 0 0 3px rgba(62, 143, 146, 0.12);
}

.contact-submit {
  grid-column: 1 / -1;
  width: fit-content;
}

.contact-aside {
  display: grid;
  gap: 12px;
  align-content: start;
}

.contact-block {
  padding: 16px 16px 18px;
  border: 1px solid rgba(21, 34, 45, 0.12);
  border-radius: var(--radius);
  background: rgba(245, 242, 236, 0.92);
}

.contact-block.muted {
  background: rgba(233, 238, 234, 0.96);
}

.contact-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.contact-address {
  margin: 0;
  color: var(--surface-ink);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.contact-phone-link {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  color: var(--surface-ink);
  font-size: 1.02rem;
  font-weight: 700;
}

.contact-phone-link:hover,
.contact-phone-link:focus-visible {
  color: var(--teal-strong);
}

.copy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.copy-row strong {
  font-size: 1rem;
  word-break: break-word;
}

.copy-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(21, 34, 45, 0.12);
  border-radius: var(--radius-sm);
  color: var(--surface-ink);
  background: #fff;
}

.contact-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.contact-list li + li {
  margin-top: 6px;
}

.site-footer {
  padding: 26px 0 30px;
  color: rgba(248, 244, 238, 0.84);
  background: var(--hero);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}

.footer-row strong {
  color: #f8f4ee;
}

.footer-row p {
  margin: 6px 0 0;
}

.footer-meta {
  color: rgba(248, 244, 238, 0.66);
  font-size: 0.85rem;
}

.footer-phone {
  color: rgba(248, 244, 238, 0.8);
  font-weight: 600;
}

.footer-note {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
  color: rgba(248, 244, 238, 0.72);
}

.beian-link {
  color: #f8f4ee;
}

.police-beian-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.police-beian-icon {
  width: 18px;
  height: auto;
  display: block;
  flex: 0 0 auto;
}

.beian-link:hover,
.beian-link:focus-visible {
  color: #ffffff;
}

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

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

@media (max-width: 1120px) {
  .hero-grid,
  .split-layout,
  .contact-panel,
  .why-band {
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    max-width: 12ch;
  }

  .hero-visual {
    max-width: 720px;
    justify-self: center;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .header-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0 16px;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 10px 16px;
  }

  .hero {
    padding: 30px 0 60px;
  }

  .hero-copy {
    padding: 24px 0 0;
  }

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

  .hero-lede {
    font-size: 1.03rem;
  }

  .section {
    padding: 72px 0;
  }

  .section-head h2 {
    max-width: none;
    font-size: 1.82rem;
  }

  .service-grid,
  .process-list,
  .contact-form,
  .contact-aside,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .contact-submit {
    width: 100%;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-note {
    text-align: left;
  }
}

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

  .reveal,
  .reveal.is-visible,
  .btn,
  .copy-button {
    transition: none;
    transform: none;
  }
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 2px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.lang-switch-btn {
  min-height: 26px;
  padding: 0 11px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(248, 244, 238, 0.7);
  font-size: 0.78rem;
  letter-spacing: 0;
  white-space: nowrap;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.lang-switch-btn:hover,
.lang-switch-btn:focus-visible {
  color: #fff;
  transform: translateY(-1px);
}

.lang-switch-btn.is-active {
  color: #101820;
  background: linear-gradient(135deg, rgba(226, 161, 93, 0.98), rgba(122, 215, 210, 0.92));
  box-shadow: 0 8px 18px rgba(226, 161, 93, 0.16);
  font-weight: 700;
}

.lang-switch-btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.14),
    0 8px 18px rgba(226, 161, 93, 0.16);
}

html[lang="en"] .hero h1 {
  max-width: 13ch;
}

html[lang="en"] .section-head h2 {
  max-width: 22ch;
}

html[lang="en"] .why-intro h3 {
  max-width: 24ch;
}

html[lang="en"] .matrix-side-copy h3 {
  max-width: 20ch;
}

html[lang="en"] .hero-mini-card strong,
html[lang="en"] .signal-card strong,
html[lang="en"] .why-card h3,
html[lang="en"] .service-card h3,
html[lang="en"] .matrix-card h3,
html[lang="en"] .process-item h3 {
  word-break: normal;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(13, 21, 32, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 26px rgba(8, 12, 18, 0.16);
}

.site-header.is-scrolled {
  background: rgba(13, 21, 32, 0.92);
  box-shadow: 0 16px 34px rgba(8, 12, 18, 0.24);
}

.top-strip {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, rgba(18, 28, 41, 0.96), rgba(12, 19, 29, 0.96));
}

.top-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(226, 161, 93, 0.12) 36%, rgba(122, 215, 210, 0.16) 50%, rgba(226, 161, 93, 0.12) 64%, transparent 100%);
  background-size: 220% 100%;
  animation: stripSweep 16s linear infinite;
  opacity: 0.7;
  pointer-events: none;
}

.top-strip-row {
  position: relative;
  z-index: 1;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(248, 244, 238, 0.72);
}

.top-strip-left,
.top-strip-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.top-strip-right {
  justify-content: flex-end;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #f8f4ee;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7ad7d2;
  box-shadow: 0 0 0 4px rgba(122, 215, 210, 0.12);
}

.top-strip-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f8f4ee;
  background: rgba(255, 255, 255, 0.05);
}

.top-strip-phone svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.top-strip-phone:hover,
.top-strip-phone:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}

.top-strip-copy,
.top-strip-right span {
  color: rgba(248, 244, 238, 0.72);
}

.header-core {
  position: relative;
  isolation: isolate;
}

.header-core::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(226, 161, 93, 0.12), transparent 24%),
    radial-gradient(circle at 84% 8%, rgba(122, 215, 210, 0.12), transparent 22%);
  pointer-events: none;
}

.header-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-height: 78px;
  padding: 12px 0 14px;
}

.header-center {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.nav-shell {
  position: relative;
  display: inline-flex;
  padding: 5px;
  border-radius: 999px;
  border: 1px solid rgba(122, 215, 210, 0.16);
  background: linear-gradient(180deg, rgba(19, 28, 38, 0.92), rgba(11, 17, 25, 0.96));
  box-shadow: 0 14px 30px rgba(6, 10, 16, 0.2);
  overflow: hidden;
}

.nav-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.06) 50%, transparent 82%);
  opacity: 0.5;
  animation: stripSweep 14s linear infinite;
  pointer-events: none;
}

.site-nav {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 15px;
  border-radius: 999px;
  color: rgba(248, 244, 238, 0.76);
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: #ffffff;
  transform: translateY(-1px);
}

.site-nav a.is-active,
.site-nav a[aria-current="page"] {
  color: #101820;
  font-weight: 700;
}

.nav-indicator {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(226, 161, 93, 0.98), rgba(122, 215, 210, 0.92));
  box-shadow: 0 12px 24px rgba(226, 161, 93, 0.16);
  opacity: 0;
  transition:
    transform 240ms ease,
    width 240ms ease,
    opacity 200ms ease;
  pointer-events: none;
}

.header-note {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(248, 244, 238, 0.7);
  text-align: center;
}

.header-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.header-badges span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(122, 215, 210, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(248, 244, 238, 0.72);
  font-size: 0.76rem;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.header-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(248, 244, 238, 0.84);
  background: rgba(255, 255, 255, 0.04);
}

.header-link:hover,
.header-link:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.header-cta {
  min-height: 40px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #f8f4ee;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.mobile-nav-panel {
  display: none;
}

.header-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.header-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, rgba(226, 161, 93, 0.98), rgba(122, 215, 210, 0.96));
  box-shadow: 0 0 16px rgba(122, 215, 210, 0.24);
  transition: transform 120ms linear;
}

.mobile-nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mobile-nav-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f8f4ee;
  background: rgba(255, 255, 255, 0.05);
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:focus-visible,
.mobile-nav-links a.is-active {
  color: #fff;
  background: rgba(122, 215, 210, 0.16);
  transform: translateY(-1px);
}

.mobile-nav-links a.is-active,
.mobile-nav-links a[aria-current="page"] {
  color: #101820;
  background: linear-gradient(135deg, rgba(226, 161, 93, 0.98), rgba(122, 215, 210, 0.92));
  font-weight: 700;
}

.mobile-nav-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.mobile-nav-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  color: rgba(248, 244, 238, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

@keyframes stripSweep {
  from {
    transform: translateX(-18%);
  }

  to {
    transform: translateX(18%);
  }
}

.hero {
  position: relative;
  overflow: clip;
  padding: 40px 0 68px;
  color: #f8f4ee;
  background:
    linear-gradient(180deg, rgba(13, 21, 32, 0.98) 0%, rgba(15, 24, 36, 0.97) 58%, rgba(243, 238, 230, 0) 100%),
    linear-gradient(135deg, var(--hero) 0%, var(--hero-2) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 34px;
  align-items: start;
}

.hero-copy {
  padding: 44px 0 24px;
}

.hero h1 {
  font-size: clamp(3.1rem, 5vw, 5rem);
  max-width: 8ch;
  line-height: 0.94;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(248, 244, 238, 0.8);
  font-size: 0.92rem;
}

.hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
  max-width: 38rem;
}

.hero-kpi {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
}

.hero-kpi strong {
  display: block;
  font-size: 1.28rem;
  color: #fff;
}

.hero-kpi span {
  display: block;
  margin-top: 6px;
  color: rgba(248, 244, 238, 0.7);
  font-size: 0.86rem;
}

.hero-visual {
  margin: 0;
}

.hero-screen {
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(20, 29, 40, 0.96), rgba(13, 21, 32, 0.92));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}

.hero-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.hero-mini-card {
  padding: 14px 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(21, 34, 45, 0.12);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 22px rgba(15, 23, 32, 0.04);
  color: var(--ink);
}

.hero-mini-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.76rem;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-mini-card strong {
  display: block;
  font-size: 1rem;
  color: var(--surface-ink);
}

.hero-mini-card p {
  margin: 6px 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.signal-band {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: 16px 0 28px;
}

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

.signal-card {
  padding: 18px 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(21, 34, 45, 0.1);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 28px rgba(15, 23, 32, 0.05);
}

.signal-card-strong {
  background: linear-gradient(180deg, rgba(13, 21, 32, 0.95), rgba(22, 33, 47, 0.95));
  color: #f8f4ee;
  border-color: rgba(255, 255, 255, 0.06);
}

.signal-label {
  margin: 0 0 10px;
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--muted);
}

.signal-card-strong .signal-label {
  color: rgba(248, 244, 238, 0.62);
}

.signal-card strong {
  display: block;
  font-size: 1.06rem;
  line-height: 1.35;
}

.signal-card span {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  color: inherit;
  opacity: 0.76;
}

.section-paper {
  background: linear-gradient(180deg, #f4efe7 0%, #f5f1eb 100%);
}

.section-soft {
  background: linear-gradient(180deg, #e9efeb 0%, #edf3ef 100%);
}

.section-careers {
  background: linear-gradient(180deg, #edf2f6 0%, #f4f6f8 100%);
}

.section-software {
  background: linear-gradient(180deg, #eef4f7 0%, #f7f9fb 100%);
}

.section-software .software-head h2 {
  max-width: 18ch;
}

.software-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.software-points span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(21, 34, 45, 0.1);
  background: rgba(255, 255, 255, 0.84);
  color: var(--surface-ink);
  box-shadow: 0 8px 18px rgba(15, 23, 32, 0.04);
}

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

.software-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 14px;
  min-height: 100%;
  padding: 16px;
  border: 1px solid rgba(21, 34, 45, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 26px rgba(15, 23, 32, 0.05);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.software-card:hover {
  transform: translateY(-3px);
  border-color: rgba(62, 143, 146, 0.24);
  box-shadow: 0 18px 32px rgba(15, 23, 32, 0.08);
}

.software-card-strong {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 247, 0.98));
}

.software-card-strong::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(226, 161, 93, 0.96), rgba(62, 143, 146, 0.96));
}

.software-visual {
  aspect-ratio: 2048 / 1118;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 250, 0.96));
}

.software-visual img {
  object-fit: cover;
  object-position: center top;
}

.software-copy {
  display: grid;
  gap: 10px;
}

.software-label {
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.software-card h3 {
  margin: 0;
  color: var(--surface-ink);
  font-size: 1.15rem;
  line-height: 1.32;
}

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

.software-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.software-features span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(21, 34, 45, 0.1);
  background: rgba(255, 255, 255, 0.82);
  color: var(--surface-ink);
  font-size: 0.82rem;
}

.software-note {
  margin-top: 18px;
}

.software-note .software-terms-copy {
  margin: 0;
  color: var(--muted);
}

.software-terms {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(21, 34, 45, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 247, 0.94));
  box-shadow: 0 14px 28px rgba(15, 23, 32, 0.05);
}

.software-terms-head {
  display: grid;
  gap: 8px;
}

.software-terms-head h3 {
  margin: 0;
  color: var(--surface-ink);
  font-size: 1.14rem;
  line-height: 1.32;
}

.software-terms-copy {
  margin: 0;
  max-width: 72ch;
  color: var(--muted);
  line-height: 1.65;
}

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

.software-terms-card {
  display: grid;
  gap: 8px;
  min-height: 100%;
  padding: 16px 16px 18px;
  border: 1px solid rgba(21, 34, 45, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
}

.software-terms-label {
  font-size: 0.76rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0;
}

.software-terms-card strong {
  color: var(--surface-ink);
  font-size: 0.98rem;
  line-height: 1.42;
}

.software-terms-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.software-note .software-terms-note {
  margin: 0;
  padding: 14px 16px;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(90deg, rgba(13, 21, 32, 0.98), rgba(25, 39, 54, 0.98));
  color: rgba(255, 255, 255, 0.98);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.section-head h2 {
  max-width: 14ch;
}

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

.service-card {
  min-height: 200px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(62, 143, 146, 0.24);
  box-shadow: 0 18px 30px rgba(15, 23, 32, 0.08);
}

.matrix-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 20px;
  align-items: start;
}

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

.matrix-card {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  padding: 20px 18px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(21, 34, 45, 0.12);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 26px rgba(15, 23, 32, 0.05);
}

.matrix-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(226, 161, 93, 0.88), rgba(122, 215, 210, 0.88));
}

.matrix-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(122, 215, 210, 0.12);
  color: var(--teal-strong);
  font-size: 0.82rem;
  font-weight: 700;
}

.matrix-card h3 {
  margin: 14px 0 8px;
  font-size: 1.05rem;
}

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

.matrix-side {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 18px;
  padding: 20px;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(21, 34, 45, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.66));
  box-shadow: 0 18px 36px rgba(15, 23, 32, 0.05);
}

.matrix-side-copy h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  line-height: 1.2;
}

.matrix-side-copy p {
  margin: 0;
  color: var(--muted);
}

.flow-rail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 12px;
  align-items: center;
}

.flow-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(226, 161, 93, 0.95), rgba(122, 215, 210, 0.95));
  box-shadow: 0 0 0 6px rgba(122, 215, 210, 0.08);
}

.flow-line {
  height: 1px;
  background: linear-gradient(90deg, rgba(21, 34, 45, 0.18), rgba(21, 34, 45, 0));
}

.proof-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(236, 240, 237, 0.92);
  border: 1px solid rgba(21, 34, 45, 0.08);
  color: var(--surface-ink);
}

.principles {
  display: grid;
  gap: 16px;
}

.boundary-principles {
  grid-area: body;
  display: grid;
  gap: 16px;
  align-content: start;
}

.governance-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.governance-tags span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(21, 34, 45, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--surface-ink);
}

.contact-panel {
  align-items: start;
}

.contact-block {
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.contact-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(15, 23, 32, 0.04);
}

.section-profile {
  position: relative;
  overflow: hidden;
}

.section-profile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 40%),
    radial-gradient(circle at 12% 20%, rgba(62, 143, 146, 0.08), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(226, 161, 93, 0.08), transparent 28%);
  pointer-events: none;
}

.section-profile .container {
  position: relative;
  z-index: 1;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: start;
}

.profile-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.profile-points span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(21, 34, 45, 0.1);
  background: rgba(255, 255, 255, 0.76);
  color: var(--surface-ink);
}

.profile-business-lines {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.profile-business-line {
  padding: 16px 16px 18px;
  border-left: 3px solid rgba(62, 143, 146, 0.62);
  border-top: 1px solid rgba(21, 34, 45, 0.1);
  border-right: 1px solid rgba(21, 34, 45, 0.1);
  border-bottom: 1px solid rgba(21, 34, 45, 0.1);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(255, 255, 255, 0.56);
}

.profile-business-line:nth-child(2) {
  border-left-color: rgba(226, 161, 93, 0.86);
}

.profile-business-line .profile-label {
  margin-bottom: 8px;
  color: var(--teal-strong);
}

.profile-business-line:nth-child(2) .profile-label {
  color: var(--accent-strong);
}

.profile-business-line strong {
  display: block;
  color: var(--surface-ink);
  font-size: 1.02rem;
  line-height: 1.35;
}

.profile-business-line p {
  margin: 8px 0 0;
  color: var(--muted);
}

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

.profile-visual {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 8.8;
}

.profile-card {
  min-height: 168px;
  padding: 18px 18px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(21, 34, 45, 0.12);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 28px rgba(15, 23, 32, 0.05);
}

.profile-card-strong {
  grid-column: 1 / -1;
  min-height: 184px;
  border-color: rgba(255, 255, 255, 0.06);
  color: #f8f4ee;
  background: linear-gradient(180deg, rgba(13, 21, 32, 0.96), rgba(24, 35, 49, 0.94));
}

.profile-label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.profile-card-strong .profile-label {
  color: rgba(248, 244, 238, 0.62);
}

.profile-card strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.36;
}

.profile-card p {
  margin: 10px 0 0;
  color: inherit;
  opacity: 0.76;
}

.boundary-visual {
  aspect-ratio: 16 / 9;
  margin-bottom: 0;
}

.boundary-tags {
  margin-top: 2px;
}

.careers-layout {
  align-items: start;
}

.careers-head {
  position: relative;
  padding-bottom: 8px;
}

.careers-head::after {
  content: "";
  display: block;
  width: 96px;
  height: 3px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(226, 161, 93, 0.95), rgba(62, 143, 146, 0.95));
}

.careers-head h2 {
  max-width: 17ch;
}

.careers-panel {
  display: grid;
  gap: 14px;
}

.careers-visual {
  aspect-ratio: 16 / 8.2;
}

.careers-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.careers-points span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(21, 34, 45, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(243, 247, 249, 0.9));
  color: var(--surface-ink);
  box-shadow: 0 8px 18px rgba(15, 23, 32, 0.04);
}

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

.careers-card {
  display: grid;
  gap: 8px;
  min-height: 100%;
  padding: 18px 18px 20px;
  border: 1px solid rgba(21, 34, 45, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 24px rgba(15, 23, 32, 0.04);
}

.careers-card-strong {
  position: relative;
  overflow: hidden;
  grid-column: 1 / -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(241, 244, 247, 0.94));
}

.careers-card-strong::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(226, 161, 93, 0.96), rgba(62, 143, 146, 0.96));
}

.careers-label {
  font-size: 0.76rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0;
}

.careers-card strong {
  display: block;
  color: var(--surface-ink);
  font-size: 1.04rem;
  line-height: 1.34;
}

.careers-card-strong strong {
  font-size: 1.08rem;
}

.careers-card-strong p {
  color: var(--surface-ink);
}

.careers-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.careers-note {
  margin: 2px 0 0;
  color: var(--muted);
}

.process-visual-wrap {
  margin-bottom: 18px;
}

.process-visual {
  aspect-ratio: 16 / 8.2;
}

.contact-visual {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 8.4;
}

@media (max-width: 1180px) {
  .hero-grid,
  .matrix-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .boundary-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "summary"
      "body";
  }

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

  .matrix-side {
    position: static;
  }

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

@media (max-width: 980px) {
  .header-row {
    grid-template-columns: auto 1fr auto;
  }

  .header-center {
    display: none;
  }

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

  .mobile-nav-panel {
    display: block;
    max-height: 0;
    overflow: hidden;
    padding: 0 0 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(13, 21, 32, 0.96);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition:
      max-height 240ms ease,
      opacity 240ms ease,
      transform 240ms ease;
    padding-bottom: 0;
  }

  .mobile-nav-panel.is-open {
    max-height: 220px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .top-strip-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
  }

  .header-row {
    display: flex;
    justify-content: space-between;
    grid-template-columns: none;
    gap: 6px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    padding: 3px;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .brand-copy small {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .header-link {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .top-strip-right {
    gap: 8px;
  }

  .header-badges {
    display: none;
  }

  .hero {
    padding: 30px 0 60px;
  }

  .hero-copy {
    padding: 22px 0 10px;
  }

  .hero-grid {
    gap: 22px;
  }

  .hero h1 {
    max-width: none;
    font-size: 2.9rem;
  }

  .hero-lede {
    font-size: 1.02rem;
  }

  .hero-kpis,
  .hero-visual-grid,
  .signal-grid,
  .service-grid,
  .software-grid,
  .software-terms-grid,
  .matrix-grid,
  .careers-grid,
  .process-list,
  .contact-form,
  .contact-aside,
  .boundary-summary,
  .definition-list {
    grid-template-columns: 1fr;
  }

  .hero-visual-grid {
    gap: 10px;
  }

  .why-visual,
  .profile-visual,
  .boundary-visual,
  .process-visual,
  .contact-visual {
    aspect-ratio: 16 / 9;
  }

  .signal-band {
    margin-top: 0;
    padding-top: 12px;
  }

  .profile-panel {
    grid-template-columns: 1fr;
  }

  .profile-card-strong {
    grid-column: auto;
  }

  .careers-card-strong {
    grid-column: auto;
  }

  .section {
    padding: 72px 0;
  }

  .section-head h2 {
    max-width: none;
    font-size: 1.84rem;
  }

  .software-terms {
    padding: 18px;
  }

  .software-terms-grid {
    grid-template-columns: 1fr;
  }

  .contact-submit {
    width: 100%;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-note {
    text-align: left;
  }
}
