:root {
  --ink: #071a2d;
  --ink-soft: #17334d;
  --blue: #0b568e;
  --blue-light: #d9edf5;
  --cyan: #77cbd1;
  --gold: #bb8a3d;
  --paper: #f4f2eb;
  --paper-deep: #e9e5da;
  --white: #ffffff;
  --muted: #66727c;
  --line: rgba(7, 26, 45, 0.14);
  --line-light: rgba(255, 255, 255, 0.2);
  --shadow: 0 24px 72px rgba(7, 26, 45, 0.12);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --content: 1180px;
  --display: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

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

.section {
  position: relative;
  padding: 112px 0;
}

.section-sm {
  padding: 76px 0;
}

.section-dark {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.section-white {
  background: var(--white);
}

.section-ruled {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-dark .eyebrow,
.hero .eyebrow {
  color: var(--cyan);
}

.display {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 5.3vw, 70px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.25;
}

.display-md {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.display-sm {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 2;
}

.section-dark .lead,
.hero .lead {
  color: rgba(255, 255, 255, 0.72);
}

.note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 54px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.section-dark .section-head p {
  color: rgba(255, 255, 255, 0.68);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.35;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button::after {
  content: "↗";
  font-size: 16px;
  line-height: 1;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--blue);
}

.button-primary:hover {
  background: #0d67aa;
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-outline {
  border-color: var(--line);
  background: transparent;
}

.section-dark .button-outline,
.hero .button-outline {
  color: var(--white);
  border-color: var(--line-light);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid currentColor;
  color: var(--blue);
  font-weight: 700;
  line-height: 1.6;
}

.text-link::after {
  content: "↗";
}

.site-topline {
  color: rgba(255, 255, 255, 0.7);
  background: #041321;
  font-size: 11px;
  letter-spacing: 0.07em;
  line-height: 1.5;
  text-align: center;
}

.site-topline .container {
  padding: 7px 0;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 242, 235, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: block;
  flex: 0 1 340px;
}

.brand img {
  width: min(100%, 306px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav > a:not(.button) {
  position: relative;
  padding: 26px 0 24px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 1px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .button {
  min-height: 46px;
  padding-inline: 18px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.nav-open .nav-toggle span {
  background: transparent;
}

.nav-open .nav-toggle span::before {
  background: var(--ink);
  transform: rotate(45deg);
}

.nav-open .nav-toggle span::after {
  background: var(--ink);
  transform: translateY(-1px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 30%, rgba(119, 203, 209, 0.22), transparent 28%),
    linear-gradient(128deg, #06182a 0%, #0b2f4d 72%, #0a4770 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  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: 72px 72px;
  content: "";
  mask-image: linear-gradient(to left, #000, transparent 76%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 76px;
  align-items: center;
  padding: 92px 0 106px;
}

.hero-copy {
  max-width: 720px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.hero-kicker span {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(119, 203, 209, 0.48);
  border-radius: 999px;
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 6.4vw, 82px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.28;
}

.hero h1 em {
  color: var(--cyan);
  font-style: normal;
}

.hero .lead {
  max-width: 650px;
}

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

.hero-orbit {
  position: absolute;
  inset: 22px 0 22px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.hero-orbit::before {
  inset: 15%;
}

.hero-orbit::after {
  inset: 31%;
}

.hero-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58%;
  opacity: 0.9;
  filter: drop-shadow(0 26px 44px rgba(0, 0, 0, 0.24));
  transform: translate(-50%, -50%);
}

.orbit-note {
  position: absolute;
  display: grid;
  min-width: 148px;
  gap: 2px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(7, 26, 45, 0.72);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.orbit-note strong {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
}

.orbit-note small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.orbit-note:nth-of-type(1) {
  top: 11%;
  right: -2%;
}

.orbit-note:nth-of-type(2) {
  right: 4%;
  bottom: 8%;
}

.orbit-note:nth-of-type(3) {
  bottom: 16%;
  left: -5%;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
}

.trust-item {
  min-height: 118px;
  padding: 24px 28px;
  border-left: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 1px solid var(--line);
}

.trust-item small {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.trust-item strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(18px, 2.1vw, 25px);
  font-weight: 600;
  line-height: 1.45;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 96px;
  align-items: start;
}

.sticky-title {
  position: sticky;
  top: 130px;
}

.intro-copy > p:first-child {
  margin-top: 0;
  font-family: var(--display);
  font-size: clamp(23px, 2.7vw, 34px);
  line-height: 1.75;
}

.principles {
  display: grid;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.principle {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.principle span {
  color: var(--blue);
  font-family: var(--display);
  font-size: 25px;
}

.principle h3,
.principle p {
  margin: 0;
}

.principle h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.principle p {
  color: var(--muted);
  font-size: 14px;
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 388px;
  flex-direction: column;
  overflow: hidden;
  padding: 38px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  transition: background 200ms ease, transform 200ms ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
}

.service-card::before {
  position: absolute;
  right: -65px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(119, 203, 209, 0.19);
  border-radius: 50%;
  content: "";
}

.service-number {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 22px;
}

.service-card h3 {
  max-width: 420px;
  margin: 54px 0 18px;
  font-family: var(--display);
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.45;
}

.service-card p {
  max-width: 500px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 700;
}

.service-card .card-link::after {
  content: "↗";
}

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

.evidence-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.evidence-card .type {
  align-self: flex-start;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--blue-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.evidence-card h3 {
  margin: 28px 0 16px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.55;
}

.evidence-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.evidence-card .metric {
  margin: 24px 0 8px;
  color: var(--blue);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
}

.evidence-card .source {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.evidence-card .source a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.case-disclosure {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 32px;
  padding: 20px 22px;
  border: 1px solid rgba(11, 86, 142, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(217, 237, 245, 0.52);
}

.case-disclosure strong {
  color: var(--blue);
  font-family: var(--display);
  font-size: 18px;
}

.case-disclosure p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.portal-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 72px;
  align-items: center;
}

.portal-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.35;
}

.portal-copy p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 0;
  margin: 32px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 16px 0 16px 28px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 19px;
  left: 2px;
  width: 12px;
  height: 12px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  content: "";
}

.portal-visual {
  position: relative;
  min-height: 570px;
}

.media-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 10px solid var(--white);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
}

.media-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 26, 45, 0.72), transparent 42%);
  content: "";
  pointer-events: none;
}

.media-frame img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.media-frame figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 24px;
  left: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.portal-shot {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 7px solid var(--white);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.portal-shot img {
  width: 100%;
}

.portal-shot.main {
  z-index: 2;
  top: 38px;
  left: 0;
  width: 86%;
}

.portal-shot.side {
  z-index: 3;
  right: 0;
  bottom: 26px;
  width: 50%;
}

.portal-shot.back {
  z-index: 1;
  top: 0;
  right: 18px;
  width: 42%;
  opacity: 0.88;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.process-step {
  min-height: 310px;
  padding: 30px 26px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.process-step .num {
  display: block;
  margin-bottom: 66px;
  color: var(--cyan);
  font-family: var(--display);
  font-size: 32px;
}

.process-step h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 600;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

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

.article-card {
  display: flex;
  min-height: 380px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.article-card:hover {
  box-shadow: 0 18px 48px rgba(7, 26, 45, 0.1);
  transform: translateY(-4px);
}

.article-card-visual {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 35%, rgba(119, 203, 209, 0.72), transparent 24%),
    linear-gradient(135deg, #0a233a, #0b568e);
}

.article-card-visual::before,
.article-card-visual::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  content: "";
}

.article-card-visual::before {
  width: 170px;
  height: 170px;
  top: -52px;
  right: -22px;
}

.article-card-visual::after {
  width: 90px;
  height: 90px;
  right: 68px;
  bottom: -34px;
}

.article-card-visual span {
  position: absolute;
  bottom: 22px;
  left: 24px;
  color: var(--white);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.1em;
}

.article-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.article-card time,
.article-meta {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.article-card h3 {
  margin: 16px 0 22px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.55;
}

.article-card .card-link {
  margin-top: auto;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.article-card .card-link::after {
  margin-left: 8px;
  content: "↗";
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 74px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: linear-gradient(125deg, #08233b, #0b568e);
}

.cta-panel::before {
  position: absolute;
  top: -190px;
  right: -110px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.cta-panel::after {
  position: absolute;
  right: 42px;
  bottom: -220px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(119, 203, 209, 0.25);
  border-radius: 50%;
  content: "";
}

.cta-panel > * {
  position: relative;
  z-index: 2;
}

.cta-panel h2 {
  max-width: 730px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 600;
  line-height: 1.45;
}

.cta-panel p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.68);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 88px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(119, 203, 209, 0.2), transparent 28%),
    var(--ink);
}

.page-hero::after {
  position: absolute;
  top: -190px;
  right: -70px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.3;
}

.page-hero p {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.breadcrumb span::before {
  margin-right: 8px;
  content: "/";
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 90px;
  align-items: start;
}

.prose {
  max-width: 760px;
}

.prose h2 {
  margin: 72px 0 22px;
  font-family: var(--display);
  font-size: clamp(28px, 3.8vw, 40px);
  font-weight: 600;
  line-height: 1.45;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 42px 0 14px;
  font-size: 20px;
  line-height: 1.55;
}

.prose p,
.prose li {
  color: #354858;
}

.prose a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose blockquote {
  margin: 42px 0;
  padding: 28px 32px;
  border-left: 3px solid var(--blue);
  background: var(--white);
  font-family: var(--display);
  font-size: 21px;
  line-height: 1.8;
}

.prose ul,
.prose ol {
  padding-left: 1.4em;
}

.prose hr {
  margin: 60px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.profile-table {
  width: 100%;
  border-collapse: collapse;
}

.profile-table th,
.profile-table td {
  padding: 22px 16px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.profile-table tr:last-child th,
.profile-table tr:last-child td {
  border-bottom: 1px solid var(--line);
}

.profile-table th {
  width: 30%;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
}

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

.feature-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.feature-card .num {
  color: var(--blue);
  font-family: var(--display);
  font-size: 24px;
}

.feature-card h3 {
  margin: 28px 0 12px;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 600;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.deliverable {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.56);
}

.deliverable strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.deliverable p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.compare-table th:last-child,
.compare-table td:last-child {
  border-right: 0;
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.compare-table th {
  color: var(--white);
  background: var(--ink);
  font-size: 13px;
}

.compare-table td:first-child {
  font-weight: 700;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.faq-list summary {
  position: relative;
  padding: 23px 58px 23px 26px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 26px;
  color: var(--blue);
  content: "+";
  font-size: 24px;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 26px 24px;
  color: var(--muted);
  font-size: 14px;
}

.faq-answer p {
  margin: 0;
}

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

.service-index-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border 180ms ease, transform 180ms ease;
}

.service-index-item:hover {
  border-color: rgba(11, 86, 142, 0.42);
  transform: translateX(4px);
}

.service-index-item .num {
  color: var(--blue);
  font-family: var(--display);
  font-size: 25px;
}

.service-index-item h2 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 600;
}

.service-index-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.service-index-item .arrow {
  color: var(--blue);
  font-size: 24px;
}

.case-list {
  display: grid;
  gap: 18px;
}

.case-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1.58fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.case-row-aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  color: var(--white);
  background: var(--ink);
}

.case-row-aside small {
  color: var(--cyan);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.case-row-aside strong {
  font-family: var(--display);
  font-size: clamp(23px, 2.5vw, 32px);
  font-weight: 600;
  line-height: 1.4;
}

.case-row-body {
  padding: 32px;
}

.case-row-body h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.5;
}

.case-row-body p {
  color: var(--muted);
}

.case-source {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
  font-size: 12px;
}

.case-source a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: start;
}

.contact-aside {
  position: sticky;
  top: 120px;
}

.contact-aside h2 {
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 600;
}

.contact-card {
  margin-top: 30px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.contact-card small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.contact-card a {
  display: block;
  margin-top: 4px;
  color: var(--blue);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 22px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 13px;
  font-weight: 700;
}

.required {
  margin-left: 8px;
  color: var(--blue);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fbfaf7;
}

.field textarea {
  min-height: 180px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  outline: 2px solid rgba(11, 86, 142, 0.14);
}

.form-notice {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 80px;
  align-items: start;
}

.article-body {
  max-width: 780px;
}

.article-body > p:first-of-type {
  font-size: 19px;
  line-height: 2;
}

.article-side {
  position: sticky;
  top: 120px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.62);
}

.article-side strong {
  display: block;
  margin-bottom: 16px;
  font-family: var(--display);
  font-size: 18px;
}

.article-side a {
  display: block;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.source-box {
  margin-top: 54px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.source-box h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 22px;
}

.source-box p,
.source-box li {
  color: var(--muted);
  font-size: 12px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.68);
  background: #041321;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.72fr);
  gap: 52px;
  padding: 72px 0 56px;
}

.footer-brand img {
  width: 300px;
}

.footer-brand p {
  max-width: 420px;
  margin: 22px 0 0;
  font-size: 13px;
}

.footer-column strong {
  display: block;
  margin-bottom: 18px;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.footer-column a {
  display: block;
  margin: 8px 0;
  font-size: 12px;
}

.footer-column a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
  letter-spacing: 0.05em;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

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

@media (max-width: 1040px) {
  .site-nav {
    gap: 15px;
  }

  .site-nav > a:not(.button) {
    font-size: 12px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 30px;
  }

  .section-head {
    gap: 36px;
  }

  .portal-feature,
  .two-column {
    gap: 52px;
  }

  .footer-main {
    grid-template-columns: 1.3fr repeat(3, 0.7fr);
    gap: 30px;
  }
}

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

  .section {
    padding: 82px 0;
  }

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

  .site-nav {
    position: fixed;
    top: 105px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 28px 24px;
    visibility: hidden;
    opacity: 0;
    background: var(--paper);
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav > a:not(.button) {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 22px;
  }

  .site-nav .button {
    margin-top: 22px;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 82px 0 62px;
  }

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

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .intro-grid,
  .portal-feature,
  .two-column,
  .contact-layout,
  .article-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sticky-title,
  .contact-aside,
  .article-side {
    position: static;
  }

  .evidence-grid,
  .feature-grid,
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 28px), var(--content));
  }

  .site-topline {
    font-size: 9px;
  }

  .header-inner {
    min-height: 68px;
  }

  .site-nav {
    top: 95px;
  }

  .brand {
    flex-basis: 235px;
  }

  .brand img {
    width: 230px;
  }

  .hero-inner {
    padding: 62px 0 50px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero .lead {
    font-size: 16px;
  }

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

  .hero-orbit {
    inset: 15px 8px;
  }

  .orbit-note {
    min-width: 126px;
    padding: 10px 12px;
  }

  .orbit-note:nth-of-type(1) {
    right: 0;
  }

  .orbit-note:nth-of-type(3) {
    left: 0;
  }

  .trust-grid,
  .service-grid,
  .evidence-grid,
  .feature-grid,
  .article-grid,
  .deliverable-grid,
  .field-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 92px;
    border-right: 1px solid var(--line);
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    min-height: 340px;
    padding: 28px;
  }

  .service-card h3 {
    margin-top: 42px;
  }

  .evidence-card {
    min-height: 0;
  }

  .portal-visual {
    min-height: 410px;
  }

  .media-frame img {
    min-height: 340px;
  }

  .portal-shot.main {
    width: 94%;
  }

  .portal-shot.side {
    width: 62%;
  }

  .process-step {
    min-height: 240px;
  }

  .process-step .num {
    margin-bottom: 38px;
  }

  .cta-panel {
    padding: 42px 26px;
    border-radius: var(--radius-md);
  }

  .page-hero {
    padding: 76px 0 62px;
  }

  .service-index-item {
    grid-template-columns: 45px 1fr;
    padding: 22px;
  }

  .service-index-item .arrow {
    display: none;
  }

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

  .case-row-aside {
    min-height: 160px;
  }

  .contact-form {
    padding: 26px 18px;
  }

  .profile-table th,
  .profile-table td {
    display: block;
    width: 100%;
    padding: 13px 10px;
  }

  .profile-table th {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .profile-table td {
    padding-top: 5px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

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

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

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

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

/* Reference theme: mirrors the original AIMHIGH white / navy / red design. */
:root {
  --ink: #091e38;
  --ink-soft: #35465a;
  --blue: #0b4f86;
  --blue-light: #eaf2f8;
  --cyan: #0b4f86;
  --gold: #0b4f86;
  --paper: #f5f8fb;
  --paper-deep: #eaf2f8;
  --white: #ffffff;
  --muted: #5b6672;
  --line: #d8e1ea;
  --line-light: #d8e1ea;
  --shadow: 0 18px 54px rgba(9, 30, 56, 0.1);
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --content: 1280px;
}

body {
  background:
    linear-gradient(90deg, rgba(13, 43, 83, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(13, 43, 83, 0.03) 1px, transparent 1px),
    var(--paper);
  background-size: 92px 92px;
}

::selection {
  background: var(--blue);
}

:focus-visible {
  outline-color: var(--blue);
}

.container {
  width: min(1280px, calc(100% - 56px));
}

.section {
  padding: 72px 0;
}

.section-sm {
  padding: 46px 0;
}

.display,
.display-md,
.display-sm,
.page-hero h1,
.cta-panel h2 {
  font-weight: 800;
}

.display-md {
  font-size: clamp(28px, 3.2vw, 42px);
}

.eyebrow {
  color: var(--blue);
}

.section-head {
  display: block;
  margin-bottom: 42px;
  text-align: center;
}

.section-head > p {
  max-width: 760px;
  margin: 18px auto 0;
}

.section-head .eyebrow {
  justify-content: center;
}

.section-head .eyebrow::after {
  width: 32px;
  height: 1px;
  background: currentColor;
  content: "";
}

.button {
  min-height: 48px;
  padding: 10px 20px;
  border-radius: 6px;
}

.button::after {
  content: "→";
}

.button-primary,
.button-light {
  color: var(--white);
  background: var(--blue);
}

.button-primary:hover,
.button-light:hover {
  background: #083d68;
}

.button-outline {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.text-link,
.required,
.article-card .card-link,
.service-index-item .num,
.service-index-item .arrow,
.contact-card a,
.prose a,
.case-source a {
  color: var(--blue);
}

.site-topline {
  display: none;
}

.site-header {
  border-color: rgba(223, 228, 234, 0.78);
  background: rgba(247, 249, 251, 0.9);
}

.header-inner {
  min-height: 68px;
}

.brand {
  flex: 0 1 250px;
}

.brand img {
  width: min(100%, 238px);
}

.site-nav {
  gap: 27px;
}

.site-nav > a:not(.button) {
  padding: 22px 0 20px;
}

.site-nav > a:not(.button)::after {
  bottom: 13px;
  height: 2px;
  background: var(--blue);
}

.page-hero {
  min-height: 450px;
  padding: 96px 0 76px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(115deg, #ffffff 0%, #f5f8fb 58%, #eaf2f8 100%);
}

.page-hero::before {
  position: absolute;
  z-index: 0;
  top: 12px;
  right: -2%;
  bottom: 0;
  width: 58%;
  background: url("/assets/hero-ai-city.png") center right / contain no-repeat;
  content: "";
  opacity: 0.5;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 34%);
  mask-image: linear-gradient(to right, transparent 0%, #000 34%);
}

.page-hero::after {
  z-index: 1;
  top: -230px;
  right: -110px;
  width: 560px;
  height: 560px;
  border-color: rgba(13, 43, 83, 0.11);
}

.page-hero .container {
  z-index: 2;
}

.page-hero h1 {
  max-width: 780px;
  font-size: clamp(36px, 4.4vw, 50px);
  line-height: 1.42;
}

.page-hero p {
  max-width: 700px;
  color: #394454;
  font-size: 16px;
  font-weight: 600;
}

.page-hero .eyebrow {
  color: var(--blue);
}

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

.section-dark {
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #eef3f8;
}

.section-dark .eyebrow,
.section-dark .lead,
.section-dark .section-head p,
.section-dark .button-outline,
.process-step p {
  color: var(--muted);
}

.section-dark .eyebrow {
  color: var(--blue);
}

.section-dark .button-outline {
  border-color: var(--line);
  background: var(--white);
}

.service-grid {
  gap: 14px;
}

.service-card {
  min-height: 340px;
  color: var(--ink);
  border-color: var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(16, 33, 60, 0.055);
}

.service-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card::before {
  border-color: rgba(11, 79, 134, 0.14);
}

.service-number,
.service-card .card-link {
  color: var(--blue);
}

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

.process-grid {
  gap: 12px;
  border: 0;
}

.process-step {
  min-height: 205px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(16, 33, 60, 0.05);
}

.process-step .num {
  margin-bottom: 32px;
  color: var(--blue);
}

.process-step p {
  color: var(--muted);
}

.feature-card,
.evidence-card,
.article-card,
.service-index-item,
.case-row,
.faq-list details,
.contact-form,
.contact-card,
.deliverable,
.source-box,
.article-side,
.compare-table-wrap {
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(16, 33, 60, 0.055);
}

.feature-card .num,
.evidence-card .metric,
.evidence-card .type,
.case-disclosure strong,
.faq-list summary::after {
  color: var(--blue);
}

.evidence-card .type {
  background: var(--blue-light);
}

.case-disclosure {
  border-color: rgba(11, 79, 134, 0.2);
  background: rgba(234, 242, 248, 0.72);
}

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

.service-index-item {
  min-height: 190px;
  grid-template-columns: 56px 1fr auto;
  align-content: center;
}

.service-index-item:hover {
  border-color: rgba(11, 79, 134, 0.42);
}

.case-row-aside {
  position: relative;
  color: var(--ink);
  border-left: 4px solid var(--blue);
  background: #f8fafc;
}

.case-row-aside small {
  color: var(--blue);
}

.compare-table th {
  background: #0d2b53;
}

.article-card-visual {
  background-color: #0d2b53;
  background-position: center;
  background-size: cover;
}

.article-card:nth-child(3n + 1) .article-card-visual {
  background-image: url("/assets/case-retail.png");
}

.article-card:nth-child(3n + 2) .article-card-visual {
  background-image: url("/assets/case-office.png");
}

.article-card:nth-child(3n) .article-card-visual {
  background-image: url("/assets/case-manufacturing.png");
}

.article-card-visual::before {
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: linear-gradient(to top, rgba(13, 43, 83, 0.74), rgba(13, 43, 83, 0.04) 70%);
}

.article-card-visual::after {
  display: none;
}

.article-card-visual span {
  z-index: 2;
}

.portal-shot,
.media-frame {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cta-panel {
  min-height: 250px;
  padding: 42px 46px 42px calc(34% + 44px);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.cta-panel::before {
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
  width: 34%;
  height: auto;
  border: 0;
  border-radius: 0;
  background: url("/assets/cta-consultation.png") center / cover no-repeat;
}

.cta-panel::after {
  display: none;
}

.cta-panel p {
  color: var(--muted);
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer::before {
  position: absolute;
  right: -110px;
  bottom: -230px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(13, 43, 83, 0.1);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.footer-main,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-column strong {
  color: var(--ink);
}

.footer-column a:hover {
  color: var(--blue);
}

.footer-bottom {
  border-color: var(--line);
}

@media (max-width: 1040px) {
  .service-index-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 36px, 1280px);
  }

  .site-nav {
    top: 68px;
  }

  .page-hero {
    min-height: 390px;
    padding: 82px 0 64px;
  }

  .page-hero::before {
    right: -34%;
    width: 108%;
    opacity: 0.18;
  }

  .page-hero h1 {
    font-size: clamp(33px, 7vw, 44px);
  }

  .cta-panel {
    padding: 245px 28px 34px;
  }

  .cta-panel::before {
    width: 100%;
    height: 215px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1280px);
  }

  .section {
    padding: 52px 0;
  }

  .brand {
    flex-basis: 220px;
  }

  .brand img {
    width: 214px;
  }

  .site-nav {
    top: 68px;
  }

  .page-hero {
    min-height: 350px;
    padding: 68px 0 52px;
  }

  .page-hero::before {
    right: -48%;
    width: 128%;
    opacity: 0.13;
  }

  .page-hero h1 {
    font-size: 31px;
  }

  .page-hero p {
    font-size: 14px;
  }

  .service-index-item {
    min-height: 0;
  }

  .cta-panel {
    padding: 218px 20px 28px;
  }

  .cta-panel::before {
    height: 190px;
  }

  .site-footer::before {
    opacity: 0.55;
  }
}
