:root {
  --bg-main: #050708;
  --bg-deep: #080d10;
  --bg-card: rgba(255, 255, 255, 0.035);
  --cambridge-blue: #a3c1ad;
  --cambridge-blue-deep: #7fae99;
  --cambridge-blue-soft: #b7d3c0;
  --text-main: #eaf2ee;
  --text-secondary: #b8c2bd;
  --text-muted: #7f8b86;
  --border-soft: rgba(163, 193, 173, 0.18);
  --border-medium: rgba(163, 193, 173, 0.32);
  --bg: #050708;
  --bg-elevated: #080d10;
  --bg-soft: #0b1114;
  --panel: #121419;
  --panel-soft: #171a21;
  --text: #eaf2ee;
  --muted: #b8c2bd;
  --muted-soft: #7f8b86;
  --line: rgba(163, 193, 173, 0.18);
  --line-strong: rgba(163, 193, 173, 0.32);
  --accent: #7fae99;
  --accent-strong: #8fb8a0;
  --accent-soft: rgba(163, 193, 173, 0.12);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  --radius: 20px;
  --radius-sm: 14px;
  --container: min(1120px, calc(100% - 48px));
  --header-h: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg-main) 0%, #0b1114 100%);
}

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

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 7, 8, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  min-width: 0;
}

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

.brand-text strong {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-text span {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
}

.site-nav a.is-active::after,
.site-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  height: 1px;
  background: var(--accent-strong);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

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

.button-primary {
  background: var(--accent);
  color: #06100c;
  border-color: var(--accent);
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(234, 242, 238, 0.28);
}

.button-secondary:hover {
  border-color: var(--accent);
}

.header-cta {
  margin-left: 8px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.hero {
  position: relative;
}

.hero-image {
  position: relative;
  min-height: calc(100vh - 72px);
  background-image: url("../assets/hero-home-cambridge-blue.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 8, 0.08), rgba(5, 7, 8, 0.02)),
    linear-gradient(180deg, rgba(5, 7, 8, 0.02), rgba(5, 7, 8, 0.12));
  pointer-events: none;
  z-index: 1;
}

.hero-actions {
  position: absolute;
  left: clamp(48px, 4.2vw, 88px);
  top: clamp(500px, 56vh, 620px);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 2;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.hero-btn-primary {
  background: #a3c1ad;
  color: #06100c;
  border: 1px solid rgba(163, 193, 173, 0.8);
}

.hero-btn-primary:hover {
  background: #b7d3c0;
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.02);
  color: #eaf2ee;
  border: 1px solid rgba(234, 242, 238, 0.32);
}

.hero-btn-secondary:hover {
  border-color: rgba(163, 193, 173, 0.72);
  background: rgba(163, 193, 173, 0.06);
}

.hero-home {
  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 7, 8, 0.98) 0%, rgba(5, 7, 8, 0.88) 38%, rgba(5, 7, 8, 0.62) 100%),
    radial-gradient(circle at 70% 42%, rgba(163, 193, 173, 0.11), transparent 38%),
    linear-gradient(180deg, var(--bg-main) 0%, var(--bg-deep) 46%, #0b1114 100%);
  overflow: hidden;
}

.hero-inner {
  padding: 100px 0 28px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 70%);
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 8, 0.98) 0%, rgba(5, 7, 8, 0.9) 36%, rgba(5, 7, 8, 0.7) 66%, rgba(5, 7, 8, 0.56) 100%),
    linear-gradient(180deg, rgba(5, 7, 8, 0.14) 0%, rgba(5, 7, 8, 0.78) 100%);
}

.hero-home-media {
  overflow: hidden;
}

.hero-home-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 34%, rgba(163, 193, 173, 0.08), transparent 16%),
    radial-gradient(circle at 84% 54%, rgba(127, 174, 153, 0.06), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, transparent 70%);
}

.hero-building-silhouette {
  position: absolute;
  left: 15%;
  bottom: 6%;
  width: min(32vw, 520px);
  height: 210px;
  opacity: 0.14;
  background:
    radial-gradient(circle at 58% 20%, rgba(234, 242, 238, 0.14) 0 4px, transparent 4px),
    linear-gradient(to top, rgba(234, 242, 238, 0.08) 0 100%, transparent 100%),
    linear-gradient(to top, rgba(234, 242, 238, 0.12) 0 100%, transparent 100%);
  clip-path: polygon(0 100%, 0 72%, 11% 72%, 11% 58%, 18% 58%, 18% 47%, 26% 47%, 26% 65%, 34% 65%, 34% 44%, 47% 44%, 47% 18%, 53% 18%, 53% 44%, 67% 44%, 67% 63%, 78% 63%, 78% 51%, 87% 51%, 87% 69%, 100% 69%, 100% 100%);
}

.hero-data-layer {
  position: absolute;
  right: 5%;
  color: rgba(184, 194, 189, 0.16);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-data-layer-1 {
  top: 19%;
}

.hero-data-layer-2 {
  top: 61%;
}

.hero-data-layer-3 {
  top: 74%;
}

.hero-network-overlay {
  position: absolute;
  right: 0;
  bottom: 2%;
  width: min(38vw, 620px);
  height: 180px;
  opacity: 0.14;
  background:
    radial-gradient(circle at 18% 58%, rgba(163, 193, 173, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 38% 36%, rgba(163, 193, 173, 0.72) 0 2px, transparent 3px),
    radial-gradient(circle at 62% 66%, rgba(163, 193, 173, 0.75) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 28%, rgba(163, 193, 173, 0.65) 0 2px, transparent 3px),
    linear-gradient(155deg, transparent 14%, rgba(163, 193, 173, 0.42) 14.5%, transparent 15.5%),
    linear-gradient(12deg, transparent 34%, rgba(163, 193, 173, 0.36) 34.5%, transparent 35.5%),
    linear-gradient(128deg, transparent 58%, rgba(163, 193, 173, 0.3) 58.5%, transparent 59.5%);
}

.hero-home,
.hero-media,
.hero-main,
.hero-copy,
.hero-visual,
.hero-benefits {
  display: none;
}

.hero-main {
  flex: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 64px 48px;
  display: grid;
  grid-template-columns: minmax(420px, 0.48fr) minmax(520px, 0.52fr);
  align-items: center;
  gap: 72px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 620px;
  justify-self: start;
  align-self: center;
}

.hero-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
}

.methodology-card {
  width: clamp(500px, 42vw, 600px);
  height: clamp(420px, 34vw, 480px);
  border: 1px solid rgba(163, 193, 173, 0.16);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.018);
  position: relative;
  overflow: hidden;
}

.methodology-card svg {
  width: 100%;
  height: 100%;
  display: block;
}

.methodology-card svg text,
.methodology-card svg tspan {
  fill: var(--text);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  white-space: nowrap;
}

.methodology-card .diagram-title {
  fill: rgba(183, 211, 192, 0.72);
  font-size: 14px;
  letter-spacing: 0.18em;
}

.methodology-card .pill-shape {
  fill: rgba(255, 255, 255, 0.02);
  stroke: rgba(163, 193, 173, 0.16);
}

.methodology-card .pill-text {
  fill: rgba(234, 242, 238, 0.88);
  font-size: 14px;
}

.methodology-card .ring,
.methodology-card .ring-link {
  fill: none;
  stroke: rgba(163, 193, 173, 0.22);
  stroke-width: 1.5;
}

.methodology-card .center-disc {
  fill: rgba(255, 255, 255, 0.02);
  stroke: rgba(163, 193, 173, 0.28);
  stroke-width: 1.5;
}

.methodology-card .center-icon-ring {
  fill: none;
  stroke: rgba(163, 193, 173, 0.62);
  stroke-width: 1.5;
}

.methodology-card .center-icon-dot {
  fill: rgba(163, 193, 173, 0.88);
}

.methodology-card .center-title {
  font-size: 20px;
  font-weight: 600;
}

.methodology-card .center-subtitle {
  fill: rgba(183, 211, 192, 0.66);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.methodology-card .node-box {
  fill: rgba(255, 255, 255, 0.018);
  stroke: rgba(163, 193, 173, 0.24);
  stroke-width: 1.5;
}

.methodology-card .node-icon {
  fill: none;
  stroke: rgba(163, 193, 173, 0.76);
  stroke-width: 1.5;
}

.methodology-card .node-label {
  font-size: 15px;
}

.methodology-card .delivery-icon-ring {
  fill: none;
  stroke: rgba(163, 193, 173, 0.42);
  stroke-width: 1.5;
}

.methodology-card .delivery-check {
  fill: none;
  stroke: rgba(163, 193, 173, 0.76);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.methodology-card .delivery-label {
  fill: rgba(183, 211, 192, 0.72);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.methodology-mobile-flow {
  display: none;
}

.hero-benefits {
  width: calc(100% - 128px);
  max-width: 1440px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(163, 193, 173, 0.14);
  border-radius: 20px;
  background: rgba(5, 8, 10, 0.58);
  backdrop-filter: blur(10px);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.benefit-item {
  min-height: 104px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.benefit-item + .benefit-item {
  border-left: 1px solid rgba(163, 193, 173, 0.12);
}

.benefit-item h2 {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 4px;
}

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

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  max-width: 1440px;
  gap: 48px;
  align-items: center;
  padding: 80px 64px 120px;
}

.hero-grid-single {
  grid-template-columns: 1fr;
  padding: 0;
}

.page-hero-grid {
  padding: 0;
  gap: 44px;
  grid-template-columns: minmax(0, 0.48fr) minmax(360px, 0.52fr);
}

.page-hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 0;
}

.page-hero-image {
  position: relative;
  width: min(100%, 640px);
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(163, 193, 173, 0.14);
  background:
    radial-gradient(circle at 70% 24%, rgba(163, 193, 173, 0.08), transparent 40%),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.page-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 8, 0.04), rgba(5, 7, 8, 0.34)),
    radial-gradient(circle at 72% 26%, rgba(163, 193, 173, 0.1), transparent 42%);
  pointer-events: none;
}

.page-hero-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  display: block;
  filter: saturate(0.84) contrast(1.04) brightness(0.8);
}

.page-section-image {
  position: relative;
  width: 100%;
  margin: 0 0 28px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(163, 193, 173, 0.14);
  background:
    radial-gradient(circle at 70% 24%, rgba(163, 193, 173, 0.08), transparent 40%),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.page-section-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 8, 0.04), rgba(5, 7, 8, 0.34)),
    radial-gradient(circle at 72% 26%, rgba(163, 193, 173, 0.1), transparent 42%);
  pointer-events: none;
}

.page-section-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  display: block;
  filter: saturate(0.84) contrast(1.04) brightness(0.8);
}

.intro-media-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(300px, 0.42fr);
  gap: 44px;
  align-items: start;
}

.intro-media-copy {
  min-width: 0;
}

.intro-media-copy .section-heading.align-left {
  margin-bottom: 22px;
}

.intro-media-copy .rich-text p:first-child {
  margin-top: 0;
}

.intro-media-layout .page-section-image {
  width: min(100%, 500px);
  margin: 6px 0 0 auto;
}

.intro-media-layout .page-section-image img {
  aspect-ratio: 5 / 4;
}

.hero-copy {
  max-width: 560px;
  align-self: center;
}

.hero-copy h1 {
  margin-bottom: 28px;
}

body[data-page="home"] .hero-copy h1 {
  font-size: clamp(64px, 6vw, 82px);
  line-height: 1.02;
}

.eyebrow {
  margin: 0 0 14px;
  color: #a3c1ad;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.02em;
  font-weight: 600;
}

h1 {
  font-size: clamp(56px, 5.2vw, 72px);
  line-height: 1.04;
}

h2 {
  font-size: clamp(32px, 3.4vw, 40px);
  line-height: 1.2;
}

h3 {
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.35;
}

.hero-lead,
.hero-note,
.section-heading p,
.rich-text p,
.feature-card p,
.reason-card p,
.timeline-item p,
.info-box p,
.cta-band p,
.advisor-copy p,
.contact-panel p,
.map-card p,
.data-card p,
.mini-profile p,
.advisor-card-body p {
  color: var(--muted);
}

.hero-lead {
  margin: 30px 0 0;
  font-size: 18px;
  line-height: 1.95;
  max-width: 620px;
  color: var(--text);
}

.hero-note {
  margin: 26px 0 0;
  font-size: 16px;
  max-width: 520px;
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.data-card,
.feature-card,
.reason-card,
.info-box,
.mini-profile,
.advisor-card,
.cta-band,
.contact-panel,
.map-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.data-card {
  padding: 22px;
}

.data-card span,
.card-tag {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #a3c1ad;
  text-transform: uppercase;
}

.data-card strong {
  display: block;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.section {
  padding: 88px 0;
}

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

.section-lined {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 80%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading.align-left {
  margin-bottom: 0;
}

.section-heading.align-left h2 {
  margin-bottom: 24px;
}

.section-heading.align-left .button {
  margin-top: 18px;
}

.section-heading p {
  margin: 14px 0 0;
  font-size: 14px;
}

.section-subnote {
  color: var(--muted);
  font-size: 14px;
  margin-top: 20px;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

.feature-card,
.reason-card,
.info-box {
  padding: 28px;
}

.feature-card h3,
.reason-card h3,
.info-box h3 {
  margin-bottom: 18px;
}

.feature-card-strong {
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(163, 193, 173, 0.08), rgba(255, 255, 255, 0.015));
}

.reason-card-emphasis {
  background:
    linear-gradient(180deg, rgba(163, 193, 173, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.018);
}

.reason-card-program {
  background:
    linear-gradient(160deg, rgba(5, 7, 8, 0.98) 10%, rgba(9, 18, 16, 0.96) 48%, rgba(127, 174, 153, 0.18) 100%),
    rgba(255, 255, 255, 0.012);
  border-color: rgba(163, 193, 173, 0.24);
}

.reason-grid-highlight .reason-card {
  min-height: 100%;
}

.reason-key {
  color: #d6e6dd;
  font-weight: 700;
}

.bullet-list,
.footer-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.bullet-list li,
.footer-list li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 14px;
}

.bullet-list li + li,
.footer-list li + li {
  margin-top: 8px;
}

.bullet-list li::before,
.footer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  font-size: 14px;
  color: #c5ddd1;
}

.card-cta {
  margin-top: 24px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: 36px;
  align-items: start;
}

.rich-text p,
.feature-card p,
.reason-card p,
.timeline-item p,
.info-box p,
.cta-band p,
.advisor-copy p,
.contact-panel p,
.map-card p,
.mini-profile p,
.advisor-card-body p {
  margin: 14px 0 0;
  font-size: 16px;
}

.feature-card p + .bullet-list,
.reason-card p,
.info-box p {
  margin-top: 16px;
}

.mini-team-grid,
.stacked-profiles {
  display: grid;
  gap: 18px;
}

.mini-profile {
  padding: 24px;
}

.mini-profile h3 {
  margin-bottom: 14px;
}

body[data-page="home"] .split-layout .section-heading.align-left p {
  margin-top: 18px;
}

body[data-page="home"] .split-layout .section-heading.align-left p + p {
  margin-top: 22px;
}

.mini-profile-role,
.advisor-role {
  margin-top: 14px;
  color: #c5ddd1;
  font-size: 14px;
}

.timeline {
  display: grid;
  gap: 22px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 22px;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--line);
}

.timeline-index {
  color: var(--accent-strong);
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
}

.compact-grid .info-box {
  min-height: 100%;
}

.advisor-card {
  overflow: hidden;
}

.advisor-card img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  object-position: center 18%;
}

.advisor-card-body {
  padding: 22px;
}

.advisor-detail {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0e1014;
}

.advisor-detail img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 16%;
  border-radius: 12px;
}

.advisor-card:nth-child(1) img,
.advisor-detail:nth-child(1) img {
  object-position: center 12%;
}

.advisor-card:nth-child(2) img,
.advisor-detail:nth-child(2) img {
  object-position: center 20%;
}

.advisor-card:nth-child(3) img,
.advisor-detail:nth-child(3) img {
  object-position: center 14%;
}

.advisor-copy p {
  font-size: 16px;
}

.advisor-highlight {
  color: #d9a54a;
  font-weight: 600;
  background: linear-gradient(180deg, rgba(217, 165, 74, 0), rgba(217, 165, 74, 0) 58%, rgba(217, 165, 74, 0.14) 58%, rgba(217, 165, 74, 0.14) 100%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 0.05em;
}

.multiline-copy {
  white-space: normal;
}

.cta-band {
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050708;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
}

.methodology-card {
  position: relative;
  width: min(620px, 100%);
  max-width: 620px;
  height: 500px;
  padding: 28px 30px 34px;
  border-radius: 32px;
  border: 1px solid rgba(163, 193, 173, 0.16);
  background:
    radial-gradient(circle at 50% 42%, rgba(163, 193, 173, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.018);
}

.diagram-subtitle {
  margin: 0;
  text-align: center;
}

.diagram-subtitle {
  color: rgba(183, 211, 192, 0.66);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.impact-tags {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.impact-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(163, 193, 173, 0.16);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(234, 242, 238, 0.88);
  font-size: 14px;
  white-space: nowrap;
}

.methodology-core {
  position: relative;
  width: min(100%, 560px);
  height: 340px;
  margin: 34px auto 0;
}

.methodology-ring,
.methodology-link,
.methodology-center,
.methodology-node,
.delivery-icon,
.methodology-center-icon,
.methodology-node-icon {
  position: absolute;
}

.methodology-ring {
  inset: 50px 108px;
  border-radius: 50%;
  border: 1px solid rgba(163, 193, 173, 0.16);
}

.ring-inner {
  inset: 98px 156px;
  border-color: rgba(163, 193, 173, 0.24);
}

.methodology-link {
  background: rgba(163, 193, 173, 0.16);
}

.link-vertical {
  left: 50%;
  top: 78px;
  width: 1px;
  height: 184px;
  transform: translateX(-50%);
}

.link-horizontal {
  top: 50%;
  left: 122px;
  width: calc(100% - 244px);
  height: 1px;
  transform: translateY(-50%);
}

.methodology-center-icon::before,
.methodology-center-icon::after,
.methodology-node-icon::before,
.methodology-node-icon::after,
.delivery-icon::before,
.delivery-icon::after {
  content: "";
  position: absolute;
}

.methodology-center {
  left: 50%;
  top: 50%;
  width: 162px;
  height: 162px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(163, 193, 173, 0.28);
  background: radial-gradient(circle at 50% 40%, rgba(163, 193, 173, 0.08), rgba(255, 255, 255, 0.02));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  z-index: 2;
}

.methodology-center-icon {
  top: 34px;
  left: 50%;
  width: 30px;
  height: 30px;
  transform: translateX(-50%);
  border: 1px solid rgba(163, 193, 173, 0.62);
  border-radius: 50%;
}

.methodology-center-icon::before {
  inset: 8px;
  border: 1px solid rgba(163, 193, 173, 0.62);
  border-radius: 50%;
}

.methodology-center-icon::after {
  left: 50%;
  top: 50%;
  width: 3px;
  height: 3px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(163, 193, 173, 0.88);
  box-shadow:
    -7px -6px 0 rgba(163, 193, 173, 0.35),
    7px -6px 0 rgba(163, 193, 173, 0.35),
    -7px 6px 0 rgba(163, 193, 173, 0.35),
    7px 6px 0 rgba(163, 193, 173, 0.35);
}

.methodology-center h2 {
  margin-top: 44px;
  font-size: 20px;
  line-height: 1.35;
}

.methodology-center p {
  margin: 10px 0 0;
  color: rgba(183, 211, 192, 0.66);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.45;
}

.methodology-node {
  width: 114px;
  text-align: center;
  z-index: 2;
}

.methodology-node h3 {
  font-size: 15px;
  line-height: 1.4;
  word-break: keep-all;
}

.methodology-node p {
  margin: 5px 0 0;
  color: rgba(184, 194, 189, 0.72);
  font-size: 11px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.methodology-node-icon {
  position: relative;
  display: block;
  width: 36px;
  height: 36px;
  margin: 0 auto 10px;
  border-radius: 12px;
  border: 1px solid rgba(163, 193, 173, 0.28);
  background: rgba(255, 255, 255, 0.018);
}

.methodology-node-icon::before {
  left: 50%;
  top: 50%;
  width: 12px;
  height: 10px;
  transform: translate(-50%, -50%);
  border: 1.5px solid rgba(163, 193, 173, 0.76);
  border-radius: 2px;
}

.node-top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.node-right {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.node-bottom {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.node-left {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.delivery-strip {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 240px;
}

.delivery-icon {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(163, 193, 173, 0.42);
  border-radius: 50%;
}

.delivery-icon::before {
  width: 12px;
  height: 14px;
  border: 1.5px solid rgba(163, 193, 173, 0.76);
  border-radius: 0 0 8px 8px;
}

.delivery-icon::after {
  width: 6px;
  height: 10px;
  border-right: 1.5px solid rgba(163, 193, 173, 0.76);
  border-bottom: 1.5px solid rgba(163, 193, 173, 0.76);
  transform: rotate(45deg) translate(-2px, -1px);
}

.delivery-strip strong,
.delivery-strip span {
  display: block;
}

.delivery-strip span {
  margin-top: 0;
  color: rgba(183, 211, 192, 0.68);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.methodology-mobile-flow {
  display: none;
}

.hero-value-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 4px;
  margin-bottom: 26px;
  background: rgba(5, 8, 10, 0.58);
  border: 1px solid rgba(163, 193, 173, 0.18);
  border-radius: 22px;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.hero-value-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-height: 116px;
  padding: 22px 22px 20px;
}

.hero-value-item + .hero-value-item {
  border-left: 1px solid rgba(163, 193, 173, 0.12);
}

.hero-value-item h2 {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 4px;
}

.hero-value-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-value-icon {
  position: relative;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border: 1px solid rgba(163, 193, 173, 0.72);
}

.hero-value-icon::before,
.hero-value-icon::after {
  content: "";
  position: absolute;
  background: rgba(163, 193, 173, 0.72);
}

.hero-value-icon::before {
  width: 14px;
  height: 1px;
  left: 50%;
  top: 5px;
  transform: translateX(-50%);
}

.hero-value-icon::after {
  width: 1px;
  height: 1px;
  left: 6px;
  top: 6px;
  box-shadow:
    0 6px 0 rgba(163, 193, 173, 0.72),
    0 12px 0 rgba(163, 193, 173, 0.72),
    8px 0 0 rgba(163, 193, 173, 0.72),
    8px 6px 0 rgba(163, 193, 173, 0.72),
    8px 12px 0 rgba(163, 193, 173, 0.72);
}

@keyframes nodeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes heroPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.72; }
}

@keyframes signalPulse {
  0% { box-shadow: 0 0 0 0 rgba(163, 193, 173, 0.22); opacity: 0.7; }
  70% { box-shadow: 0 0 0 16px rgba(163, 193, 173, 0); opacity: 1; }
  100% { box-shadow: 0 0 0 0 rgba(163, 193, 173, 0); opacity: 0.7; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 28px;
  padding: 38px 0;
}

.brand-footer {
  margin-bottom: 14px;
}

.footer-slogan {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer h3 {
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
}

.contact-panel,
.map-card {
  padding: 30px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.contact-list span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted-soft);
  font-size: 14px;
}

.contact-list strong {
  font-size: 16px;
  font-weight: 500;
}

.map-placeholder {
  min-height: 400px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(5, 7, 8, 0.28), rgba(5, 7, 8, 0.82)),
    linear-gradient(135deg, rgba(127, 174, 153, 0.08), transparent 38%),
    #11141b;
  display: flex;
  overflow: hidden;
}

.map-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.office-preview {
  background:
    linear-gradient(180deg, rgba(5, 7, 8, 0.16), rgba(5, 7, 8, 0.84)),
    linear-gradient(120deg, rgba(127, 174, 153, 0.12), transparent 40%),
    url("../assets/office-reference.png") center/cover no-repeat;
}

.office-preview .map-card {
  background: linear-gradient(180deg, rgba(5, 7, 8, 0) 0%, rgba(5, 7, 8, 0.62) 46%, rgba(5, 7, 8, 0.88) 100%);
}

body[data-page="program"] .hero-copy h1 {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    left: 24px;
    right: 24px;
    top: calc(100% + 12px);
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    border-radius: 16px;
    background: rgba(12, 14, 18, 0.98);
    border: 1px solid var(--line);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-header.menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

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

  .header-cta {
    display: none;
  }

  .hero-grid,
  .grid-2,
  .grid-3,
  .split-layout,
  .advisor-detail,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-home {
    min-height: 760px;
  }

  .hero-main {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 72px 32px 40px;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .page-hero-visual {
    justify-content: flex-start;
  }

  .page-hero-image {
    width: min(100%, 720px);
  }

  .page-section-image {
    width: min(100%, 720px);
  }

  .intro-media-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .intro-media-layout .page-section-image {
    width: min(100%, 640px);
    margin: 0;
  }

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

  .hero-visual {
    min-height: auto;
  }

  .methodology-card {
    width: min(100%, 620px);
  }

  .hero-benefits {
    width: calc(100% - 64px);
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-item:nth-child(3),
  .benefit-item:nth-child(4) {
    border-top: 1px solid rgba(163, 193, 173, 0.12);
  }

  .benefit-item:nth-child(3) {
    border-left: none;
  }

  .benefit-item + .benefit-item {
    border-left: 1px solid rgba(163, 193, 173, 0.12);
  }

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

@media (max-width: 640px) {
  :root {
    --container: min(100% - 28px, 100%);
    --header-h: 72px;
  }

  body {
    font-size: 16px;
  }

  .brand-text strong {
    font-size: 17px;
  }

  .brand-text span {
    font-size: 11px;
  }

  h1 {
    font-size: clamp(42px, 9vw, 48px);
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 20px;
  }

  .section {
    padding: 68px 0;
  }

  .feature-card,
  .reason-card,
  .info-box,
  .contact-panel,
  .map-card,
  .data-card,
  .advisor-detail,
  .cta-band,
  .mini-profile {
    padding: 22px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .timeline-index {
    font-size: 30px;
  }

  .hero-building-silhouette {
    left: 10%;
    width: 54vw;
    height: 118px;
    opacity: 0.08;
  }

  .hero-image {
    min-height: 720px;
    background-size: cover;
    background-position: 28% top;
  }

  .hero-actions {
    left: 24px;
    right: 24px;
    top: auto;
    bottom: 72px;
    gap: 12px;
  }

  .hero-btn {
    flex: 1;
    min-width: 0;
    height: 48px;
    padding: 0 18px;
    font-size: 15px;
  }

  .hero-lead {
    font-size: 17px;
    line-height: 1.9;
  }

  .page-hero-image {
    border-radius: 22px;
  }

  .page-hero-image img {
    aspect-ratio: 16 / 9;
  }

  .page-section-image {
    margin-bottom: 22px;
    border-radius: 22px;
  }

  .page-section-image img {
    aspect-ratio: 16 / 9;
  }

  .intro-media-layout {
    gap: 24px;
  }

  .hero-main {
    padding: 56px 24px 32px;
    gap: 32px;
  }

  body[data-page="home"] .button-row {
    width: 100%;
  }

  body[data-page="home"] .button-row .button {
    flex: 1 1 calc(50% - 7px);
  }

  .methodology-card {
    width: 100%;
    height: 360px;
    border-radius: 24px;
  }

  .methodology-card svg .small-en,
  .methodology-card svg .optional-label {
    display: none;
  }

  .methodology-card svg {
    display: none;
  }

  .methodology-mobile-flow {
    display: block;
    color: var(--text);
    text-align: left;
    padding: 24px 22px;
  }

  .methodology-mobile-flow strong,
  .methodology-mobile-flow span {
    display: block;
  }

  .methodology-mobile-flow strong {
    font-size: 18px;
    line-height: 1.5;
  }

  .methodology-mobile-flow span {
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
  }

  body[data-page="program"] .hero-copy h1 {
    white-space: normal;
  }

  .hero-benefits {
    width: calc(100% - 48px);
    grid-template-columns: 1fr;
    margin-bottom: 32px;
  }

  .benefit-item,
  .benefit-item + .benefit-item,
  .benefit-item:nth-child(3) {
    border-left: none;
    border-top: 1px solid rgba(163, 193, 173, 0.12);
  }

  .benefit-item:first-child {
    border-top: none;
  }
}

body[data-page="home"] .hero {
  min-height: calc(100vh - 72px);
  background:
    radial-gradient(circle at 72% 44%, rgba(163, 193, 173, 0.1), transparent 38%),
    linear-gradient(90deg, #050708 0%, #07100d 52%, #050708 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

body[data-page="home"] .hero::before,
body[data-page="home"] .hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

body[data-page="home"] .hero::before {
  left: -6%;
  bottom: -4%;
  width: min(36vw, 420px);
  height: 180px;
  opacity: 0.1;
  background:
    linear-gradient(to top, rgba(234, 242, 238, 0.1), rgba(234, 242, 238, 0.02)),
    linear-gradient(to top, rgba(234, 242, 238, 0.12), rgba(234, 242, 238, 0.03));
  clip-path: polygon(0 100%, 0 74%, 12% 74%, 12% 58%, 20% 58%, 20% 46%, 30% 46%, 30% 70%, 41% 70%, 41% 24%, 50% 24%, 50% 70%, 64% 70%, 64% 48%, 72% 48%, 72% 62%, 82% 62%, 82% 72%, 100% 72%, 100% 100%);
}

body[data-page="home"] .hero::after {
  right: -2%;
  bottom: 4%;
  width: min(34vw, 520px);
  height: 160px;
  opacity: 0.12;
  background:
    radial-gradient(circle at 12% 56%, rgba(163, 193, 173, 0.95) 0 2px, transparent 3px),
    radial-gradient(circle at 32% 34%, rgba(163, 193, 173, 0.72) 0 2px, transparent 3px),
    radial-gradient(circle at 58% 70%, rgba(163, 193, 173, 0.72) 0 2px, transparent 3px),
    radial-gradient(circle at 84% 24%, rgba(163, 193, 173, 0.62) 0 2px, transparent 3px),
    linear-gradient(152deg, transparent 18%, rgba(163, 193, 173, 0.28) 18.4%, transparent 19.2%),
    linear-gradient(16deg, transparent 38%, rgba(163, 193, 173, 0.26) 38.4%, transparent 39.2%),
    linear-gradient(126deg, transparent 56%, rgba(163, 193, 173, 0.24) 56.4%, transparent 57.2%);
}

body[data-page="home"] .hero-main,
body[data-page="home"] .hero-copy,
body[data-page="home"] .hero-visual,
body[data-page="home"] .hero-benefits {
  display: revert;
}

body[data-page="home"] .hero-main {
  flex: 1;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 88px 64px 56px;
  display: grid;
  grid-template-columns: minmax(420px, 0.46fr) minmax(480px, 0.54fr);
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}

body[data-page="home"] .hero-copy {
  max-width: 620px;
  z-index: 2;
}

body[data-page="home"] .hero-kicker {
  color: #a3c1ad;
  letter-spacing: 0.16em;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 24px;
}

body[data-page="home"] .hero-copy h1 {
  color: #eaf2ee;
  font-size: clamp(56px, 5.4vw, 88px);
  line-height: 1.05;
  margin: 0 0 32px;
  font-weight: 800;
}

body[data-page="home"] .hero-copy h2 {
  color: #eaf2ee;
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.45;
  margin: 0 0 28px;
  font-weight: 600;
}

body[data-page="home"] .hero-desc {
  color: #b8c2bd;
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.75;
  margin: 0;
  max-width: 560px;
}

body[data-page="home"] .hero-actions {
  position: static;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  display: flex;
  gap: 20px;
  margin-top: 42px;
  z-index: auto;
}

body[data-page="home"] .btn {
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

body[data-page="home"] .btn:hover {
  transform: translateY(-1px);
}

body[data-page="home"] .btn-primary {
  background: #a3c1ad;
  color: #06100c;
  border: 1px solid rgba(163, 193, 173, 0.8);
}

body[data-page="home"] .btn-primary:hover {
  background: #b7d3c0;
}

body[data-page="home"] .btn-secondary {
  background: rgba(255, 255, 255, 0.02);
  color: #eaf2ee;
  border: 1px solid rgba(234, 242, 238, 0.32);
}

body[data-page="home"] .btn-secondary:hover {
  border-color: rgba(163, 193, 173, 0.72);
  background: rgba(163, 193, 173, 0.06);
}

body[data-page="home"] .hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  min-height: 0;
}

body[data-page="home"] .visual-frame {
  width: clamp(440px, 38vw, 620px);
  max-width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 32px;
  border: 1px solid rgba(163, 193, 173, 0.16);
  background:
    radial-gradient(circle at 50% 45%, rgba(163, 193, 173, 0.1), transparent 45%),
    rgba(255, 255, 255, 0.018);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

body[data-page="home"] .visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  opacity: 0.96;
}

body[data-page="home"] .hero-benefits {
  width: calc(100% - 128px);
  max-width: 1440px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(163, 193, 173, 0.14);
  border-radius: 20px;
  background: rgba(5, 8, 10, 0.58);
  backdrop-filter: blur(10px);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

body[data-page="home"] .benefit-item {
  min-height: 104px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

body[data-page="home"] .benefit-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 14px;
  border: 1px solid rgba(163, 193, 173, 0.18);
  background:
    radial-gradient(circle at 50% 35%, rgba(163, 193, 173, 0.08), transparent 58%),
    rgba(163, 193, 173, 0.045);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

body[data-page="home"] .benefit-icon svg {
  width: 28px;
  height: 28px;
  stroke: #a3c1ad;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="home"] .benefit-item + .benefit-item {
  border-left: 1px solid rgba(163, 193, 173, 0.12);
}

body[data-page="home"] .benefit-item h2 {
  color: #eaf2ee;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 4px;
}

body[data-page="home"] .benefit-item p {
  margin: 0;
  color: #aeb9b3;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 1180px) {
  body[data-page="home"] .hero-main {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 72px 40px 44px;
  }

  body[data-page="home"] .hero-copy {
    max-width: 760px;
  }

  body[data-page="home"] .hero-visual {
    justify-content: flex-start;
  }

  body[data-page="home"] .visual-frame {
    width: min(100%, 560px);
    aspect-ratio: 1 / 1;
  }

  body[data-page="home"] .hero-benefits {
    width: calc(100% - 80px);
    grid-template-columns: repeat(2, 1fr);
  }

  body[data-page="home"] .benefit-item:nth-child(3) {
    border-left: none;
  }
}

@media (max-width: 640px) {
  body[data-page="home"] .hero {
    min-height: auto;
  }

  body[data-page="home"] .hero::before {
    width: 62vw;
    height: 110px;
    opacity: 0.08;
  }

  body[data-page="home"] .hero::after {
    width: 52vw;
    height: 110px;
    opacity: 0.1;
  }

  body[data-page="home"] .hero-main {
    padding: 56px 24px 36px;
    gap: 36px;
  }

  body[data-page="home"] .hero-copy h1 {
    font-size: 46px;
  }

  body[data-page="home"] .hero-copy h2 {
    font-size: 22px;
  }

  body[data-page="home"] .hero-desc {
    font-size: 17px;
  }

  body[data-page="home"] .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  body[data-page="home"] .btn {
    width: 100%;
  }

  body[data-page="home"] .visual-frame {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
  }

  body[data-page="home"] .hero-benefits {
    width: calc(100% - 48px);
    grid-template-columns: 1fr;
    margin-bottom: 32px;
  }

  body[data-page="home"] .benefit-item + .benefit-item,
  body[data-page="home"] .benefit-item:nth-child(3) {
    border-left: none;
    border-top: 1px solid rgba(163, 193, 173, 0.12);
  }
}
:root {
  --bg-main: #050708;
  --bg-deep: #080d10;
  --bg-section: #07100d;
  --card-bg: rgba(255, 255, 255, 0.035);
  --card-bg-soft: rgba(255, 255, 255, 0.022);
  --cambridge-blue: #a3c1ad;
  --cambridge-blue-deep: #7fae99;
  --cambridge-blue-soft: #b7d3c0;
  --text-main: #eaf2ee;
  --text-secondary: #b8c2bd;
  --text-muted: #7f8b86;
  --border-soft: rgba(163, 193, 173, 0.14);
  --border-medium: rgba(163, 193, 173, 0.28);
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.28);
}

html,
body.page-home-v2 {
  overflow-x: clip;
}

body.page-home-v2 {
  background:
    radial-gradient(circle at top, rgba(163, 193, 173, 0.04), transparent 22%),
    linear-gradient(180deg, var(--bg-main) 0%, #08100d 100%);
  color: var(--text-main);
}

body.page-home-v2 a,
body.page-home-v2 button,
body.page-home-v2 .button,
body.page-home-v2 .btn {
  -webkit-tap-highlight-color: transparent;
}

body.page-home-v2 a:focus-visible,
body.page-home-v2 button:focus-visible,
body.page-home-v2 .button:focus-visible,
body.page-home-v2 .btn:focus-visible,
body.page-home-v2 .nav-toggle:focus-visible {
  outline: 2px solid rgba(163, 193, 173, 0.9);
  outline-offset: 3px;
}

.page-home-v2 .site-header {
  background: rgba(5, 7, 8, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(163, 193, 173, 0.1);
}

.page-home-v2 .nav-shell {
  min-height: clamp(68px, 5vw, 74px);
  gap: 20px;
}

.page-home-v2 .brand-text strong {
  font-size: 17px;
  letter-spacing: 0.015em;
}

.page-home-v2 .brand-text span {
  color: var(--text-muted);
  letter-spacing: 0.12em;
}

.page-home-v2 .site-nav {
  gap: 24px;
}

.page-home-v2 .site-nav a {
  color: rgba(184, 194, 189, 0.88);
  transition: color 180ms ease;
}

.page-home-v2 .site-nav a:hover,
.page-home-v2 .site-nav a.is-active {
  color: var(--text-main);
}

.page-home-v2 .site-nav a.is-active::after,
.page-home-v2 .site-nav a:hover::after {
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: var(--cambridge-blue);
}

.page-home-v2 .button,
.page-home-v2 .btn {
  min-height: 46px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.page-home-v2 .button:hover,
.page-home-v2 .btn:hover {
  transform: translateY(-2px);
}

.page-home-v2 .button-primary,
.page-home-v2 .btn-primary {
  background: var(--cambridge-blue);
  color: #06100c;
  border-color: rgba(163, 193, 173, 0.75);
  box-shadow: 0 12px 28px rgba(127, 174, 153, 0.14);
}

.page-home-v2 .button-primary:hover,
.page-home-v2 .btn-primary:hover {
  background: var(--cambridge-blue-soft);
}

.page-home-v2 .button-secondary,
.page-home-v2 .btn-secondary {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-main);
  border-color: rgba(234, 242, 238, 0.24);
}

.page-home-v2 .button-secondary:hover,
.page-home-v2 .btn-secondary:hover {
  background: rgba(163, 193, 173, 0.05);
  border-color: rgba(163, 193, 173, 0.45);
}

.page-home-v2 .hero {
  background:
    radial-gradient(circle at 72% 42%, rgba(163, 193, 173, 0.105), transparent 38%),
    radial-gradient(circle at 18% 80%, rgba(163, 193, 173, 0.055), transparent 34%),
    linear-gradient(90deg, #050708 0%, #07100d 54%, #050708 100%);
}

.page-home-v2 .hero::before {
  opacity: 0.08;
}

.page-home-v2 .hero::after {
  opacity: 0.1;
}

.page-home-v2 .hero-main {
  max-width: 1440px;
  grid-template-columns: minmax(420px, 0.46fr) minmax(480px, 0.54fr);
  gap: clamp(56px, 4vw, 72px);
  padding: 96px 64px 64px;
  align-items: center;
}

.page-home-v2 .hero-copy {
  align-self: center;
  max-width: 640px;
}

.page-home-v2 .hero-kicker {
  color: var(--cambridge-blue);
  letter-spacing: 0.16em;
  font-size: 15px;
  margin-bottom: 24px;
}

.page-home-v2 .hero-copy h1 {
  font-size: clamp(60px, 5.6vw, 92px);
  line-height: 1.03;
  margin-bottom: 32px;
  letter-spacing: -0.025em;
}

.page-home-v2 .hero-copy h2 {
  max-width: 620px;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.45;
  margin-bottom: 24px;
}

.page-home-v2 .hero-desc {
  max-width: 620px;
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.8;
  color: var(--text-secondary);
}

.page-home-v2 .hero-actions {
  margin-top: 40px;
}

.page-home-v2 .hero-visual {
  justify-content: center;
  align-items: center;
}

.page-home-v2 .visual-frame {
  width: clamp(440px, 38vw, 620px);
  aspect-ratio: 1 / 1;
  border-radius: 36px;
  border: 1px solid rgba(163, 193, 173, 0.12);
  background:
    radial-gradient(circle at 50% 48%, rgba(163, 193, 173, 0.08), transparent 58%),
    rgba(255, 255, 255, 0.012);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.018) inset,
    0 32px 80px rgba(0, 0, 0, 0.24);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.page-home-v2 .visual-frame:hover {
  transform: translateY(-2px);
  border-color: rgba(163, 193, 173, 0.18);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02) inset,
    0 36px 96px rgba(0, 0, 0, 0.28);
}

.page-home-v2 .visual-frame img {
  object-fit: contain;
  object-position: center;
  opacity: 0.94;
  transform: scale(1.05);
  transition: transform 240ms ease, opacity 240ms ease;
}

.page-home-v2 .visual-frame:hover img {
  transform: scale(1.065);
}

.page-home-v2 .hero-benefits {
  border-radius: 24px;
  border-color: rgba(163, 193, 173, 0.14);
  background: rgba(5, 8, 10, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    0 20px 60px rgba(0, 0, 0, 0.18);
}

.page-home-v2 .benefit-item {
  min-height: 112px;
  padding: 28px 30px;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.page-home-v2 .benefit-item:hover {
  background: rgba(163, 193, 173, 0.028);
}

.page-home-v2 .benefit-icon {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
  border-radius: 16px;
  border-color: rgba(163, 193, 173, 0.16);
  background:
    radial-gradient(circle at 50% 30%, rgba(163, 193, 173, 0.1), transparent 56%),
    rgba(163, 193, 173, 0.04);
}

.page-home-v2 .benefit-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.55;
}

.page-home-v2 .benefit-item h2 {
  font-size: 17px;
  margin-bottom: 6px;
}

.page-home-v2 .benefit-item p {
  font-size: 14px;
  line-height: 1.55;
}

.page-home-v2 .section {
  padding: 96px 0;
}

.page-home-v2 .section-dark {
  background:
    radial-gradient(circle at 78% 20%, rgba(163, 193, 173, 0.05), transparent 28%),
    #050908;
  border-top: 1px solid rgba(163, 193, 173, 0.08);
  border-bottom: 1px solid rgba(163, 193, 173, 0.08);
}

.page-home-v2 .section-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.page-home-v2 .section-heading.align-left {
  max-width: 620px;
}

.page-home-v2 .eyebrow {
  color: var(--cambridge-blue);
  letter-spacing: 0.16em;
  font-size: 13px;
}

.page-home-v2 .section-heading h2,
.page-home-v2 .cta-band h2 {
  font-size: clamp(38px, 3.4vw, 48px);
  line-height: 1.18;
}

.page-home-v2 .section-heading p,
.page-home-v2 .feature-card p,
.page-home-v2 .reason-card p,
.page-home-v2 .mini-profile p,
.page-home-v2 .cta-band p {
  color: var(--text-secondary);
  line-height: 1.78;
}

.page-home-v2 .grid {
  gap: 24px;
}

.page-home-v2 .feature-card,
.page-home-v2 .reason-card,
.page-home-v2 .mini-profile,
.page-home-v2 .cta-band {
  position: relative;
  border: 1px solid rgba(163, 193, 173, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.016);
  box-shadow: var(--shadow-soft);
}

.page-home-v2 .feature-card,
.page-home-v2 .reason-card {
  min-height: 100%;
  padding: 36px;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.page-home-v2 .feature-card:hover,
.page-home-v2 .reason-card:hover,
.page-home-v2 .mini-profile:hover {
  transform: translateY(-2px);
  border-color: rgba(163, 193, 173, 0.2);
}

.page-home-v2 .feature-card {
  display: flex;
  flex-direction: column;
}

.page-home-v2 .feature-card-strong {
  background:
    linear-gradient(180deg, rgba(163, 193, 173, 0.085), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.018);
}

.page-home-v2 .card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(163, 193, 173, 0.18);
  background: rgba(163, 193, 173, 0.05);
  color: var(--cambridge-blue-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  width: fit-content;
}

.page-home-v2 .feature-card h3,
.page-home-v2 .reason-card h3,
.page-home-v2 .mini-profile h3 {
  margin-bottom: 14px;
  line-height: 1.35;
}

.page-home-v2 .bullet-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.page-home-v2 .bullet-list li {
  padding-left: 18px;
  font-size: 14px;
  color: var(--text-secondary);
}

.page-home-v2 .bullet-list li::before {
  width: 6px;
  height: 6px;
  top: 0.74em;
  background: linear-gradient(180deg, var(--cambridge-blue), var(--cambridge-blue-deep));
  box-shadow: 0 0 0 4px rgba(163, 193, 173, 0.06);
}

.page-home-v2 .card-cta {
  margin-top: auto;
  align-self: flex-start;
  min-height: 44px;
}

.page-home-v2 .split-layout {
  gap: 42px;
  align-items: stretch;
}

.page-home-v2 .section-heading.align-left p + p {
  margin-top: 24px;
}

.page-home-v2 .section-heading.align-left .button {
  margin-top: 24px;
}

.page-home-v2 .mini-team-grid {
  gap: 20px;
}

.page-home-v2 .mini-profile {
  padding: 28px;
  min-height: 100%;
  transition: transform 180ms ease, border-color 180ms ease;
}

.page-home-v2 .mini-profile-role {
  color: rgba(183, 211, 192, 0.9);
  margin-top: 12px;
}

.page-home-v2 .reason-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(163, 193, 173, 0.45), transparent);
}

.page-home-v2 .reason-card-emphasis {
  background:
    linear-gradient(180deg, rgba(163, 193, 173, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.014);
}

.page-home-v2 .cta-band {
  padding: 48px 52px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(163, 193, 173, 0.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at 86% 50%, rgba(163, 193, 173, 0.08), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.014));
}

.page-home-v2 .cta-band > div:first-child {
  max-width: 760px;
}

.page-home-v2 .button-row {
  gap: 14px;
}

.page-home-v2 .site-footer {
  background:
    linear-gradient(180deg, rgba(163, 193, 173, 0.03), transparent 16%),
    #040607;
  border-top: 1px solid rgba(163, 193, 173, 0.1);
}

.page-home-v2 .footer-grid {
  gap: 36px;
  padding: 44px 0;
}

.page-home-v2 .site-footer h3 {
  margin-bottom: 14px;
}

.page-home-v2 .footer-list li {
  color: var(--text-secondary);
  line-height: 1.75;
}

.page-home-v2 .footer-list a:hover {
  color: var(--cambridge-blue);
}

.page-home-v2 .footer-slogan {
  color: var(--text-muted);
}

@media (max-width: 1180px) {
  .page-home-v2 .hero-main {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 40px 48px;
  }

  .page-home-v2 .hero-copy {
    max-width: 760px;
  }

  .page-home-v2 .hero-visual {
    justify-content: flex-start;
  }

  .page-home-v2 .visual-frame {
    width: min(100%, 560px);
  }

  .page-home-v2 .hero-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home-v2 .cta-band {
    padding: 42px 40px;
  }
}

@media (max-width: 768px) {
  .page-home-v2 .site-nav {
    top: calc(100% + 10px);
    padding: 16px;
    border-radius: 18px;
    background: rgba(7, 12, 10, 0.98);
    border-color: rgba(163, 193, 173, 0.14);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  }

  .page-home-v2 .hero-main {
    padding: 64px 28px 40px;
  }

  .page-home-v2 .hero-copy h1 {
    font-size: clamp(42px, 9vw, 48px);
  }

  .page-home-v2 .hero-copy h2 {
    font-size: min(24px, 6vw);
  }

  .page-home-v2 .hero-desc {
    font-size: min(18px, 4.4vw);
  }

  .page-home-v2 .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .page-home-v2 .btn,
  .page-home-v2 .button {
    width: 100%;
  }

  .page-home-v2 .visual-frame {
    width: 100%;
  }

  .page-home-v2 .hero-benefits {
    width: calc(100% - 56px);
    grid-template-columns: 1fr;
  }

  .page-home-v2 .grid-2,
  .page-home-v2 .grid-3,
  .page-home-v2 .split-layout,
  .page-home-v2 .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-home-v2 .benefit-item + .benefit-item,
  .page-home-v2 .benefit-item:nth-child(3),
  .page-home-v2 .benefit-item:nth-child(4) {
    border-left: none;
    border-top: 1px solid rgba(163, 193, 173, 0.12);
  }

  .page-home-v2 .section {
    padding: 64px 0;
  }

  .page-home-v2 .feature-card,
  .page-home-v2 .reason-card,
  .page-home-v2 .mini-profile,
  .page-home-v2 .cta-band {
    padding: 28px;
  }
}

@media (max-width: 480px) {
  .page-home-v2 .hero-main {
    padding: 56px 20px 36px;
  }

  .page-home-v2 .hero-benefits {
    width: calc(100% - 40px);
    margin-bottom: 32px;
  }

  .page-home-v2 .feature-card,
  .page-home-v2 .reason-card,
  .page-home-v2 .mini-profile,
  .page-home-v2 .cta-band {
    padding: 24px;
    border-radius: 24px;
  }

  .page-home-v2 .cta-band {
    padding: 32px 24px;
  }

  .page-home-v2 .section-heading {
    margin-bottom: 40px;
  }
}
