:root {
  --bg: #f5f7f4;
  --surface: #ffffff;
  --surface-soft: #f0f5f1;
  --line: #dfe7e1;
  --line-strong: #cdd9d1;
  --text: #122018;
  --muted: #607066;
  --accent: #1f8b6d;
  --accent-deep: #16654f;
  --accent-soft: #dff2ea;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-bg-strong: rgba(255, 255, 255, 0.84);
  --glass-line: rgba(255, 255, 255, 0.48);
  --glass-shadow: 0 18px 44px rgba(17, 34, 27, 0.1);
  --shadow: 0 18px 48px rgba(23, 44, 35, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --max-width: 1180px;
  --font-ui: "Inter", "Avenir Next", "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Noto Sans CJK SC", sans-serif;
  --font-display: "Inter Tight", "Inter", "Avenir Next", "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Noto Sans CJK SC", sans-serif;
}

body.home-page {
  --surface-soft: #f3f6fb;
  --line: #d9e2f1;
  --line-strong: #bfcee6;
  --text: #0f2853;
  --muted: #5d6f8e;
  --accent: #ff6a00;
  --accent-deep: #173b78;
  --accent-soft: #fff0e2;
  --font-ui: "Inter", "Helvetica Neue", "Avenir Next", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --font-display: "Inter Tight", "Inter", "Helvetica Neue", "Avenir Next", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(223, 242, 234, 0.92), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(198, 231, 216, 0.38), transparent 24%),
    linear-gradient(180deg, #f9fbf9 0%, #f4f7f4 48%, #eef3ef 100%);
  font-family: var(--font-ui);
}

body.home-page {
  background:
    radial-gradient(circle at top left, rgba(255, 121, 26, 0.14), transparent 28%),
    radial-gradient(circle at 84% 16%, rgba(23, 59, 120, 0.14), transparent 26%),
    linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 52%, #edf2f8 100%);
}

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

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(31, 139, 109, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 139, 109, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.32), transparent 90%);
}

body.home-page::before {
  background-image:
    linear-gradient(rgba(23, 59, 120, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 106, 0, 0.024) 1px, transparent 1px);
}

.announcement-bar {
  border-bottom: 1px solid rgba(31, 139, 109, 0.14);
  background:
    linear-gradient(90deg, rgba(223, 242, 234, 0.94), rgba(244, 249, 246, 0.98)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0));
}

body.home-page .announcement-bar {
  border-bottom-color: rgba(23, 59, 120, 0.12);
  background:
    linear-gradient(90deg, rgba(255, 241, 229, 0.96), rgba(246, 249, 253, 0.98)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
}

.announcement-inner {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--accent-deep);
  font-size: 0.95rem;
}

.announcement-note {
  color: var(--muted);
  font-family: var(--font-ui);
  font-weight: 600;
}

.announcement-inner a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(31, 139, 109, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(12px);
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.announcement-inner a:hover,
.announcement-inner a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(31, 139, 109, 0.22);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 28px rgba(18, 33, 25, 0.08);
}

.site-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 20px 0 40px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(205, 217, 209, 0.72);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 249, 246, 0.78)),
    rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  box-shadow:
    0 18px 44px rgba(17, 34, 27, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.topbar:hover {
  transform: translateY(-1px);
  border-color: rgba(31, 139, 109, 0.16);
  box-shadow:
    0 24px 52px rgba(17, 34, 27, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  transition: transform 180ms ease;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(135deg, #daf0e6, #c5eadb);
  color: var(--accent-deep);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 12px 24px rgba(31, 139, 109, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.34);
  pointer-events: none;
}

.brand:hover .brand-mark {
  transform: translateY(-1px) scale(1.02);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 16px 28px rgba(31, 139, 109, 0.16);
  filter: saturate(1.04);
}

.brand-mark img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body.home-page .brand {
  gap: 16px;
}

body.home-page .brand-mark {
  width: 156px;
  height: 66px;
  padding: 0;
  flex: 0 0 auto;
  border-radius: 14px;
  background: transparent;
  box-shadow: none;
}

body.home-page .brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
}

body.home-page .brand:hover .brand-mark img {
  transform: scale(1.02);
}

body.home-page .value-row {
  margin-top: 24px;
}

body.home-page .value-row article {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  padding: 24px;
  overflow: hidden;
  border-color: rgba(23, 59, 120, 0.12);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(10, 25, 49, 0.08), rgba(10, 25, 49, 0.78));
  backdrop-filter: blur(16px);
  box-shadow:
    0 24px 52px rgba(12, 31, 66, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

body.home-page .value-row article::before {
  content: none;
}

.value-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transition: transform 320ms ease, opacity 220ms ease, filter 220ms ease;
}

body.home-page .value-row article::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 20, 40, 0.04), rgba(8, 20, 40, 0.14)),
    linear-gradient(180deg, transparent 28%, rgba(8, 20, 40, 0.88) 100%);
  pointer-events: none;
}

body.home-page .value-row article:hover .value-card-image {
  opacity: 0.5;
  transform: scale(1.06);
  filter: saturate(1.05);
}

body.home-page .value-row article > * {
  position: relative;
  z-index: 1;
}

.value-card-copy {
  position: relative;
  z-index: 1;
}

body.home-page .value-row article h3 {
  margin: 0 0 12px;
  max-width: 14ch;
  color: #ffffff;
  font-size: 1.18rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

body.home-page .value-row article p {
  max-width: 28ch;
  margin: 0;
  color: rgba(236, 242, 249, 0.84);
  font-family: var(--font-ui);
  font-weight: 500;
  line-height: 1.8;
}

body.home-page .value-row article:nth-child(1) h3::before,
body.home-page .value-row article:nth-child(2) h3::before,
body.home-page .value-row article:nth-child(3) h3::before {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 191, 143, 0.94);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.home-page .value-row article:nth-child(1) h3::before {
  content: "01 / Routing";
}

body.home-page .value-row article:nth-child(2) h3::before {
  content: "02 / Clearance";
}

body.home-page .value-row article:nth-child(3) h3::before {
  content: "03 / Delivery";
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  font-size: 0.98rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.76rem;
  font-family: var(--font-ui);
  font-weight: 500;
  letter-spacing: 0.01em;
}

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

.nav a {
  padding: 11px 16px;
  color: var(--muted);
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(31, 139, 109, 0.12);
  box-shadow: 0 12px 24px rgba(18, 33, 25, 0.06);
  transform: translateY(-2px);
}

.nav a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(31, 139, 109, 0.14);
}

.nav-cta {
  background:
    linear-gradient(135deg, rgba(31, 139, 109, 0.94), rgba(22, 101, 79, 0.94));
  color: #ffffff !important;
  box-shadow: 0 16px 30px rgba(31, 139, 109, 0.22);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background:
    linear-gradient(135deg, rgba(31, 139, 109, 1), rgba(22, 101, 79, 1));
  border-color: rgba(255, 255, 255, 0.22) !important;
  box-shadow: 0 20px 36px rgba(31, 139, 109, 0.28) !important;
}

body.home-page .nav-cta {
  background:
    linear-gradient(135deg, rgba(23, 59, 120, 0.98), rgba(31, 87, 170, 0.96) 62%, rgba(255, 106, 0, 0.96));
  border-color: rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
  box-shadow:
    0 18px 34px rgba(23, 59, 120, 0.22),
    0 8px 18px rgba(255, 106, 0, 0.14);
}

body.home-page .nav-cta:hover,
body.home-page .nav-cta:focus-visible {
  background:
    linear-gradient(135deg, rgba(20, 52, 108, 1), rgba(27, 78, 157, 0.98) 60%, rgba(255, 120, 26, 0.98));
  box-shadow:
    0 22px 40px rgba(23, 59, 120, 0.28),
    0 10px 22px rgba(255, 106, 0, 0.18) !important;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: var(--surface-soft);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 38px;
  align-items: center;
  padding: 44px 0 28px;
}

.eyebrow,
.kicker {
  margin: 0 0 14px;
  color: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-family: var(--font-ui);
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.story-copy h3,
.cta-strip h2 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.035em;
  font-weight: 700;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.6rem, 4.7vw, 4.55rem);
  line-height: 1.04;
}

.hero-text,
.story-copy p,
.service-card span,
.network-card p,
.branding-card p,
.footer p,
.copyright {
  color: var(--muted);
  line-height: 1.8;
}

.hero-text {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: 1rem;
  font-family: var(--font-ui);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-weight: 700;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.24);
  pointer-events: none;
}

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

.button-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(31, 139, 109, 0.24);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(18, 33, 25, 0.06);
}

body.home-page .button-primary {
  box-shadow: 0 18px 34px rgba(255, 106, 0, 0.24);
}

body.home-page .button-secondary {
  color: var(--accent-deep);
}

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

.hero-tags span,
.floating-card,
.stats-strip article,
.story-panel,
.value-row article,
.service-card,
.process-list article,
.network-card,
.branding-card,
.cta-strip {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 250, 248, 0.82));
  backdrop-filter: blur(16px);
  box-shadow:
    0 22px 48px rgba(18, 33, 25, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.hero-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 248, 245, 0.72));
  backdrop-filter: blur(12px);
}

.hero-tags span:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 139, 109, 0.18);
  box-shadow:
    0 20px 36px rgba(18, 33, 25, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.hero-tags span,
.floating-card,
.stats-strip article,
.story-panel,
.value-row article,
.service-card,
.process-list article,
.network-card,
.branding-card,
.cta-strip,
.detail-card,
.info-card,
.stack-card,
.process-step,
.inquiry-form,
.contact-side {
  position: relative;
  overflow: hidden;
}

.hero-tags span::before,
.floating-card::before,
.stats-strip article::before,
.story-panel::before,
.value-row article::before,
.service-card::before,
.process-list article::before,
.network-card::before,
.branding-card::before,
.cta-strip::before,
.detail-card::before,
.info-card::before,
.stack-card::before,
.process-step::before,
.inquiry-form::before,
.contact-side::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(31, 139, 109, 0.28), transparent);
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-canvas {
  position: relative;
  width: 100%;
  min-height: 620px;
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(241, 247, 243, 0.95)),
    linear-gradient(135deg, rgba(31, 139, 109, 0.06), transparent 55%);
  border: 1px solid rgba(205, 217, 209, 0.9);
  overflow: hidden;
  box-shadow:
    0 28px 70px rgba(21, 44, 35, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

body.home-page .hero-canvas {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(243, 246, 251, 0.95)),
    linear-gradient(135deg, rgba(255, 106, 0, 0.08), rgba(23, 59, 120, 0.08) 72%);
}

.hero-canvas:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 139, 109, 0.22);
  box-shadow:
    0 34px 82px rgba(21, 44, 35, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 139, 109, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 139, 109, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.68), transparent 92%);
}

body.home-page .hero-canvas::before {
  background-image:
    linear-gradient(rgba(23, 59, 120, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 106, 0, 0.06) 1px, transparent 1px);
}

.hero-canvas::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 30px;
  border: 1px solid rgba(31, 139, 109, 0.08);
  pointer-events: none;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.96) contrast(1.02) brightness(1.02);
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 720ms ease, transform 4600ms ease;
}

.hero-photo.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-canvas > *:not(.hero-slides) {
  position: relative;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(12, 22, 18, 0.08)),
    linear-gradient(180deg, rgba(4, 12, 8, 0.02), rgba(4, 12, 8, 0.2));
}

.service-card h3,
.value-row h3,
.branding-line strong {
  display: block;
  font-size: 1.08rem;
}

.service-card p,
.process-list span,
.branding-line span,
.footer span {
  color: var(--muted);
}

.hero-caption {
  position: absolute;
  top: 22px;
  left: 22px;
  max-width: 360px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(18, 39, 31, 0.48), rgba(11, 28, 22, 0.38));
  backdrop-filter: blur(16px);
  color: #ffffff;
  box-shadow:
    0 18px 40px rgba(16, 28, 22, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

body.home-page .hero-caption {
  background:
    linear-gradient(180deg, rgba(20, 43, 88, 0.58), rgba(14, 31, 64, 0.42));
}

.hero-caption span {
  display: block;
  margin-bottom: 6px;
  color: rgba(232, 247, 240, 0.86);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.hero-caption strong {
  display: block;
  line-height: 1.5;
  font-size: 0.98rem;
}

.hero-controls {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.carousel-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 248, 246, 0.82));
  backdrop-filter: blur(16px);
  color: #153425;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(18, 33, 25, 0.18);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(18, 33, 25, 0.22);
}

body.home-page .carousel-arrow {
  color: var(--accent-deep);
  box-shadow: 0 18px 36px rgba(23, 59, 120, 0.18);
}

.carousel-arrow span {
  display: inline-block;
  font-size: 2rem;
  line-height: 1;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.stats-strip article,
.value-row article,
.service-card,
.process-list article,
.branding-card {
  border-radius: var(--radius-lg);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.stats-strip article {
  position: relative;
  display: block;
  padding: 0;
  min-height: 260px;
  overflow: hidden;
}

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

.stats-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 19, 14, 0.06), rgba(8, 19, 14, 0.2)),
    linear-gradient(180deg, transparent 34%, rgba(8, 19, 14, 0.76) 100%);
  pointer-events: none;
}

.stats-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 220ms ease;
}

.stats-copy {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
    rgba(9, 23, 17, 0.42);
  backdrop-filter: blur(16px);
  box-shadow:
    0 18px 34px rgba(10, 22, 17, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

body.home-page .stats-copy {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    linear-gradient(135deg, rgba(13, 34, 72, 0.7), rgba(255, 106, 0, 0.34));
  box-shadow:
    0 20px 38px rgba(12, 31, 66, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.stats-strip article:hover,
.value-row article:hover,
.service-card:hover,
.process-list article:hover,
.story-panel:hover,
.network-card:hover,
.branding-card:hover,
.detail-card:hover,
.info-card:hover,
.stack-card:hover,
.process-step:hover,
.contact-side:hover,
.inquiry-form:hover,
.cta-strip:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 139, 109, 0.24);
  box-shadow:
    0 28px 56px rgba(18, 33, 25, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.stats-strip article:hover .stats-media img {
  transform: scale(1.04);
  filter: saturate(1.03);
}

.stats-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.stats-strip span {
  color: rgba(240, 248, 244, 0.84);
  font-family: var(--font-ui);
  font-weight: 500;
  line-height: 1.7;
}

.story-section,
.services-section,
.network-section,
.branding-section {
  padding-top: 76px;
}

.photo-strip {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 16px;
  margin-bottom: 18px;
}

.photo-card,
.feature-media {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 249, 247, 0.82));
  backdrop-filter: blur(14px);
  box-shadow:
    0 24px 52px rgba(18, 33, 25, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.photo-card {
  min-height: 260px;
}

.photo-card.wide {
  min-height: 300px;
}

.photo-card img,
.feature-media img,
.detail-photo,
.network-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 280ms ease;
}

.photo-card:hover,
.feature-media:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 139, 109, 0.2);
  box-shadow:
    0 30px 62px rgba(18, 33, 25, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.photo-card:hover img,
.feature-media:hover img {
  transform: scale(1.04);
  filter: saturate(1.04);
}

.photo-card::after,
.feature-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(10, 23, 18, 0.44));
  pointer-events: none;
}

.photo-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.06;
}

.story-layout,
.network-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 22px;
  align-items: stretch;
}

.story-copy,
.network-card {
  padding: 14px 2px;
}

.story-copy h3 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.08;
  max-width: 13ch;
}

.story-panel {
  height: 100%;
  min-height: 420px;
  padding: 0;
  display: flex;
  align-items: flex-end;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 245, 240, 0.98)),
    radial-gradient(circle at top right, rgba(31, 139, 109, 0.12), transparent 30%);
  box-shadow:
    0 24px 56px rgba(18, 33, 25, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.story-panel-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 260ms ease;
}

.story-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 20, 40, 0.06), rgba(8, 20, 40, 0.14)),
    linear-gradient(180deg, transparent 34%, rgba(8, 20, 40, 0.82) 100%);
  pointer-events: none;
}

.story-panel-copy {
  position: relative;
  z-index: 1;
  margin: auto 28px 28px;
  padding: 18px 20px;
  max-width: 320px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(12, 29, 59, 0.4);
  backdrop-filter: blur(14px);
  box-shadow:
    0 18px 36px rgba(10, 24, 50, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.story-panel-copy span {
  color: rgba(255, 196, 154, 0.92);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-family: var(--font-ui);
  font-weight: 700;
}

.story-panel-copy strong {
  display: block;
  margin-top: 12px;
  font-size: 1.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.story-panel:hover .story-panel-image {
  transform: scale(1.04);
  filter: saturate(1.04);
}

.service-showcase {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 18px;
  align-items: stretch;
}

.service-lead,
.workflow-summary,
.identity-card,
.identity-lockup,
.workflow-stage {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 248, 246, 0.84));
  backdrop-filter: blur(14px);
  box-shadow:
    0 24px 52px rgba(18, 33, 25, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.service-lead {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-radius: 34px;
}

.service-lead::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 23, 48, 0.06), rgba(9, 23, 48, 0.2)),
    linear-gradient(180deg, transparent 34%, rgba(9, 23, 48, 0.84) 100%);
  pointer-events: none;
}

.service-lead-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 240ms ease;
}

.service-lead:hover .service-lead-image {
  transform: scale(1.04);
  filter: saturate(1.04);
}

.service-lead-copy {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  display: grid;
  gap: 14px;
  padding: 22px 24px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(13, 34, 72, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 22px 44px rgba(10, 24, 50, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.service-lead-copy span {
  color: rgba(255, 196, 154, 0.94);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-ui);
  font-weight: 700;
}

.service-lead-copy strong {
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.08;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.service-lead-copy p {
  margin: 0;
  color: rgba(235, 243, 252, 0.86);
  line-height: 1.8;
  font-family: var(--font-ui);
  font-weight: 500;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.service-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border-top: 1px solid rgba(23, 59, 120, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(248, 250, 253, 0.78));
  border-radius: 24px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-item:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 59, 120, 0.2);
  box-shadow: 0 18px 34px rgba(12, 31, 66, 0.08);
}

.service-item small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.12), rgba(23, 59, 120, 0.1));
  color: var(--accent-deep);
  font-size: 0.88rem;
  font-family: var(--font-ui);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-item-copy h3 {
  margin: 0;
  font-size: 1.16rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.service-item-copy p {
  margin: 6px 0 10px;
  color: var(--accent);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-ui);
  font-weight: 700;
}

.service-item-copy span {
  color: var(--muted);
  line-height: 1.75;
  font-family: var(--font-ui);
  font-weight: 500;
}

.workflow-board {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 18px;
  align-items: stretch;
}

.workflow-timeline {
  position: relative;
  display: grid;
  gap: 14px;
  padding-left: 22px;
}

.workflow-timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(23, 59, 120, 0.16), rgba(255, 106, 0, 0.18));
}

.workflow-stage {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 24px;
  border-radius: 24px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.workflow-stage::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 30px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 106, 0, 0.12);
}

.workflow-stage:hover,
.workflow-summary:hover,
.identity-card:hover,
.identity-lockup:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 59, 120, 0.18);
  box-shadow:
    0 28px 56px rgba(12, 31, 66, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.workflow-stage strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(23, 59, 120, 0.06);
  color: var(--accent-deep);
  font-family: var(--font-ui);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.workflow-stage h3 {
  margin: 0;
  font-size: 1.08rem;
  font-family: var(--font-display);
  font-weight: 700;
}

.workflow-stage span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-ui);
  font-weight: 700;
}

.workflow-summary {
  position: relative;
  padding: 24px;
  border-radius: 34px;
  overflow: hidden;
}

.workflow-photo {
  margin: -24px -24px 20px;
  width: calc(100% + 48px);
  height: 220px;
  object-fit: cover;
}

.workflow-map {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.workflow-map span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(23, 59, 120, 0.06);
  color: var(--accent-deep);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-ui);
  font-weight: 700;
}

.workflow-summary p {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
  font-family: var(--font-ui);
  font-weight: 500;
}

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

.identity-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 26px;
}

.identity-card span {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-ui);
  font-weight: 700;
}

.identity-card strong {
  font-size: 1.22rem;
  line-height: 1.45;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.identity-lockup {
  margin-top: 18px;
  display: grid;
  gap: 8px;
  padding: 28px;
  border-radius: 30px;
}

.identity-lockup p {
  margin: 0;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  line-height: 1.45;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.letterhead-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.48fr);
  gap: 20px;
  margin-top: 20px;
  align-items: stretch;
}

.letterhead-copy,
.letterhead-frame {
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(23, 59, 120, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 248, 252, 0.84)),
    rgba(255, 255, 255, 0.74);
  box-shadow:
    0 24px 52px rgba(12, 31, 66, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.letterhead-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.letterhead-copy h3 {
  margin: 0;
  font-size: clamp(1.38rem, 2vw, 1.96rem);
  line-height: 1.42;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.letterhead-copy p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
  font-weight: 500;
}

.letterhead-frame {
  overflow: hidden;
}

.letterhead-frame img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(16, 43, 87, 0.08);
}

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

.value-row p {
  color: var(--muted);
  line-height: 1.75;
}

.service-card small {
  color: var(--accent);
  letter-spacing: 0.12em;
}

.service-card p {
  margin: 12px 0;
  font-weight: 600;
}

.service-card h3,
.network-card h3,
.process-list strong,
.branding-line strong {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.service-card span,
.network-card p,
.process-list p,
.branding-card p,
.footer p,
.copyright {
  font-family: var(--font-ui);
  font-weight: 500;
}

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

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article {
  display: grid;
  gap: 8px;
}

.process-list strong {
  font-size: 1rem;
}

.network-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 248, 246, 0.82));
  backdrop-filter: blur(16px);
  box-shadow:
    0 26px 60px rgba(18, 33, 25, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.network-photo {
  margin: -24px -24px 18px;
  width: calc(100% + 48px);
  height: 190px;
}

.network-map {
  position: relative;
  min-height: 300px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 24% 30%, rgba(31, 139, 109, 0.16), transparent 18%),
    radial-gradient(circle at 62% 38%, rgba(31, 139, 109, 0.12), transparent 18%),
    radial-gradient(circle at 76% 70%, rgba(31, 139, 109, 0.12), transparent 18%),
    linear-gradient(180deg, #f4faf7, #edf5f0);
  border: 1px solid var(--line);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 16px 32px rgba(18, 33, 25, 0.06);
  overflow: hidden;
}

.network-map::before,
.network-map::after {
  content: "";
  position: absolute;
  inset: 0;
}

.network-map::before {
  background:
    linear-gradient(120deg, transparent 21%, rgba(31, 139, 109, 0.2) 22%, transparent 23%),
    linear-gradient(160deg, transparent 45%, rgba(31, 139, 109, 0.18) 46%, transparent 47%);
}

.map-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 249, 247, 0.82));
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow:
    0 12px 28px rgba(16, 35, 27, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  font-weight: 700;
  color: var(--accent-deep);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.map-node:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 139, 109, 0.2);
  box-shadow:
    0 18px 32px rgba(16, 35, 27, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.node-a {
  top: 20%;
  left: 14%;
}

.node-b {
  top: 44%;
  left: 40%;
}

.node-c {
  top: 22%;
  right: 14%;
}

.node-d {
  bottom: 18%;
  right: 18%;
}

.network-card p {
  margin: 20px 0 0;
}

.branding-card {
  display: grid;
  gap: 18px;
}

.photo-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: center;
  padding-top: 34px;
}

.feature-media {
  min-height: 360px;
}

.feature-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.feature-copy p:last-child {
  color: var(--muted);
  line-height: 1.8;
}

.branding-line span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.branding-line strong {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
}

.branding-card p {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 76px;
  padding: 28px;
  border-radius: var(--radius-xl);
}

.cta-strip h2 {
  max-width: 14ch;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
}

.footer {
  display: grid;
  gap: 10px;
  padding: 28px 0 14px;
}

body.modal-open {
  overflow: hidden;
}

.site-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.site-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.site-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 36, 0.46);
  backdrop-filter: blur(10px);
}

.site-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  padding: 30px;
  border: 1px solid rgba(217, 226, 241, 0.72);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 253, 0.92)),
    rgba(255, 255, 255, 0.9);
  box-shadow:
    0 34px 82px rgba(12, 31, 66, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.site-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(23, 59, 120, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--accent-deep);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-modal-close:hover,
.site-modal-close:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(23, 59, 120, 0.24);
  box-shadow: 0 18px 34px rgba(12, 31, 66, 0.12);
}

.site-modal-card h2 {
  margin: 0;
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.site-modal-subtitle,
.site-modal-copy {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.8;
  font-family: var(--font-ui);
  font-weight: 500;
}

.site-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.site-modal-item {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(217, 226, 241, 0.72);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 253, 0.86));
  box-shadow:
    0 18px 36px rgba(12, 31, 66, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.site-modal-item span {
  color: var(--accent);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-ui);
  font-weight: 700;
}

.site-modal-item strong {
  font-family: var(--font-display);
  font-size: 1.04rem;
  line-height: 1.6;
  font-weight: 700;
}

.site-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.site-modal-form {
  margin-top: 22px;
}

.site-modal-form .form-grid {
  grid-template-columns: 1fr 1fr;
}

.site-modal-form .button {
  margin-top: 18px;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  font-family: var(--font-ui);
  font-weight: 600;
}

.form-status[data-state="success"] {
  color: #167253;
}

.form-status[data-state="error"] {
  color: #c44a2a;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none !important;
  filter: none !important;
}

.footer strong {
  display: block;
  margin-bottom: 4px;
}

.page-main {
  padding-top: 20px;
}

.page-hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 22px;
  align-items: start;
}

.page-intro h1 {
  margin: 0;
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 700;
}

.detail-card,
.info-card,
.stack-card,
.process-step,
.inquiry-form,
.contact-side {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 249, 247, 0.84));
  backdrop-filter: blur(16px);
  box-shadow:
    0 22px 48px rgba(18, 33, 25, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.detail-card,
.contact-side {
  padding: 24px;
  border-radius: var(--radius-lg);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.detail-photo {
  margin: -24px -24px 18px;
  width: calc(100% + 48px);
  height: 220px;
}

.card-label {
  margin: 0 0 12px;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.detail-card h2,
.split-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.detail-card p,
.info-card p,
.stack-card span,
.process-step span,
.inquiry-form label span,
.contact-side p {
  color: var(--muted);
  line-height: 1.75;
}

.bullet-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.info-grid,
.service-detail-grid,
.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.info-card,
.stack-card,
.process-step {
  padding: 22px;
  border-radius: var(--radius-lg);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.info-card h3,
.stack-card strong {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
  padding-top: 76px;
}

.split-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.stack-grid {
  display: grid;
  gap: 14px;
}

.service-detail-grid .detail-card h3 {
  margin: 0;
  font-size: 1.12rem;
}

.process-board {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.process-step strong {
  display: block;
  margin-bottom: 8px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  margin-top: 24px;
}

.inquiry-form {
  padding: 24px;
  border-radius: 30px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.section-heading.compact {
  margin-bottom: 22px;
}

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

.form-grid label {
  display: grid;
  gap: 8px;
}

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

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(251, 253, 252, 0.78));
  backdrop-filter: blur(10px);
  padding: 14px 16px;
  color: var(--text);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.form-grid input:hover,
.form-grid select:hover,
.form-grid textarea:hover {
  border-color: rgba(31, 139, 109, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 252, 250, 0.84));
}

.form-grid textarea {
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: rgba(31, 139, 109, 0.52);
  box-shadow:
    0 0 0 4px rgba(31, 139, 109, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.contact-side {
  display: grid;
  gap: 16px;
  align-content: start;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1080px) {
  .hero,
  .story-layout,
  .network-layout,
  .service-showcase,
  .workflow-board,
  .value-row,
  .service-grid,
  .page-hero,
  .split-section,
  .contact-layout,
  .photo-feature {
    grid-template-columns: 1fr 1fr;
  }

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

  .service-list,
  .identity-grid {
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    max-width: none;
  }

  .value-row article:last-child,
  .service-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .announcement-inner,
  .site-shell {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .topbar {
    top: 12px;
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .menu-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 8px;
  }

  .topbar[data-open="true"] .nav {
    display: flex;
  }

  .nav a {
    width: 100%;
  }

  .hero,
  .story-layout,
  .network-layout,
  .service-showcase,
  .workflow-board,
  .value-row,
  .service-grid,
  .page-hero,
  .split-section,
  .contact-layout,
  .info-grid,
  .service-detail-grid,
  .route-grid,
  .process-board,
  .form-grid,
  .photo-strip,
  .photo-feature {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 24px;
    padding-top: 28px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-canvas {
    min-height: 460px;
  }

  .hero-caption {
    top: 14px;
    left: 14px;
    right: 14px;
    max-width: none;
  }

  .hero-controls {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-lead {
    min-height: 480px;
  }

  .workflow-timeline {
    padding-left: 18px;
  }

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

  .letterhead-copy,
  .letterhead-frame {
    padding: 22px;
    border-radius: 24px;
  }

  .site-modal-card,
  .site-modal-grid {
    grid-template-columns: 1fr;
  }

  .site-modal-card {
    padding: 24px;
  }

  .site-modal-form .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .announcement-inner {
    min-height: 58px;
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
    text-align: center;
  }

  .brand {
    width: calc(100% - 64px);
  }

  body.home-page .brand-mark {
    width: 128px;
    height: 54px;
  }

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

  .brand-copy span {
    font-size: 0.7rem;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .hero-visual,
  .hero-canvas {
    min-height: 360px;
  }

  .story-panel,
  .network-card {
    border-radius: 24px;
  }

  .service-item,
  .workflow-stage {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-item small,
  .workflow-stage strong {
    width: 48px;
    height: 48px;
  }

  .service-lead-copy,
  .identity-lockup {
    padding: 20px;
  }

  .hero-caption {
    padding: 12px 14px;
  }

  .hero-controls {
    gap: 10px;
  }

  .carousel-arrow {
    width: 54px;
    height: 54px;
  }

  .hero-tags,
  .hero-actions {
    gap: 10px;
  }

  .stats-strip article,
  .value-row article,
  .service-card,
  .process-list article,
  .branding-card,
  .cta-strip {
    padding: 20px;
  }

  .stats-strip article {
    padding: 0;
  }

  .stats-copy {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 15px 16px;
  }
}
