:root {
  --page-bg: #f4f6f4;
  --surface: #ffffff;
  --surface-soft: #f7f9f8;
  --surface-muted: #eef2ef;
  --ink: #101615;
  --ink-soft: #62716d;
  --line: rgba(16, 22, 21, 0.1);
  --line-strong: rgba(16, 22, 21, 0.16);
  --green: #45d7a8;
  --green-deep: #10372f;
  --green-soft: rgba(69, 215, 168, 0.16);
  --hero-bg: #0d1714;
  --hero-line: rgba(255, 255, 255, 0.09);
  --hero-text: rgba(255, 255, 255, 0.96);
  --hero-soft: rgba(230, 238, 235, 0.68);
  --radius-xl: 44px;
  --radius-lg: 30px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --shadow-soft: 0 16px 38px rgba(12, 19, 17, 0.06);
  --shadow-card: 0 14px 26px rgba(12, 19, 17, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #eef4f1 0%, #f8faf8 180px, #f5f7f5 100%);
  color: var(--ink);
  font-family:
    "SF Pro Display",
    "Avenir Next",
    "PingFang SC",
    "Hiragino Sans GB",
    "Microsoft YaHei",
    sans-serif;
}

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

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

button {
  cursor: pointer;
}

img {
  max-width: 100%;
}

.site-root {
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0;
}

.hero-shell {
  position: relative;
  width: 100vw;
  margin-top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: visible;
  background:
    radial-gradient(circle at 82% 22%, rgba(104, 219, 170, 0.2), transparent 22%),
    radial-gradient(circle at 36% 56%, rgba(20, 90, 57, 0.3), transparent 44%),
    linear-gradient(90deg, #0b1512 0%, #0d2219 36%, #114329 72%, #2a7c4d 100%);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.06);
  padding-bottom: 44px;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    linear-gradient(117deg, transparent 0%, transparent 77%, rgba(179, 255, 217, 0.08) 77%, rgba(179, 255, 217, 0.08) 83%, transparent 83%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 74px 74px;
  opacity: 0.28;
  pointer-events: none;
}

.hero-header,
.hero-body,
.site-main,
.site-footer {
  position: relative;
  z-index: 1;
}

.hero-header {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 0;
}

.hero-header-bar {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 48px;
  padding: 0 14px 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(230, 245, 235, 0.08);
  backdrop-filter: blur(18px) saturate(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 12px 24px rgba(4, 12, 9, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: auto;
  height: 28px;
  max-width: 168px;
}

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

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  line-height: 1;
  transition: color 160ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  margin-left: 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(5, 16, 11, 0.18);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    background-color 160ms ease,
    border-color 160ms ease;
}

.header-cta:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(5, 16, 11, 0.24);
  border-color: rgba(255, 255, 255, 0.16);
}

.menu-toggle,
.menu-close {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--hero-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 0 auto 4px;
  background: currentColor;
}

.menu-toggle span:last-child {
  margin-bottom: 0;
}

.mobile-mask {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(3, 6, 6, 0.52);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.mobile-menu {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 61;
  width: min(340px, calc(100vw - 20px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(10, 17, 15, 0.96);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  transform: translateX(110%);
  transition: transform 180ms ease;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .mobile-mask {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .mobile-menu {
  transform: translateX(0);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.mobile-nav .nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.mobile-nav .nav-link::after {
  bottom: -6px;
}

.mobile-cta {
  width: 100%;
  margin: 28px 0 0;
}

.hero-body {
  width: min(1188px, calc(100% - 84px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.82fr);
  align-items: end;
  gap: 48px;
  min-height: 446px;
  padding: 56px 0 26px;
}

.hero-copy {
  max-width: 620px;
  padding: 28px 0 0;
}

.section-kicker,
.card-kicker,
.footer-column-title {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  color: var(--hero-text);
  font-size: clamp(2.15rem, 3.55vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
}

.hero-description {
  max-width: 29rem;
  margin: 18px 0 0;
  color: var(--hero-soft);
  font-size: 0.98rem;
  line-height: 1.72;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

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

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 12px;
  font-size: 0.94rem;
  font-weight: 600;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

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

.hero-button-primary {
  background: rgba(69, 215, 168, 0.18);
  border: 1px solid rgba(69, 215, 168, 0.26);
  color: #ffffff;
}

.hero-button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.96);
  color: #14211d;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center end;
  min-height: 426px;
  align-self: stretch;
}

.hero-shot {
  position: absolute;
  right: 12px;
  bottom: -92px;
  width: min(100%, 414px);
  aspect-ratio: 0.79;
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08)),
    rgba(242, 251, 247, 0.12);
  backdrop-filter: blur(22px) saturate(1.14);
  box-shadow:
    0 24px 40px rgba(5, 16, 11, 0.22),
    0 10px 24px rgba(255, 255, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
  transform: none;
}

.hero-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 34%, transparent 74%, rgba(255, 255, 255, 0.06));
  pointer-events: none;
  z-index: 2;
}

.hero-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border: 0;
  border-radius: inherit;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 520ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(8, 20, 15, 0.26);
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
}

.hero-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    opacity 180ms ease;
}

.hero-dot.is-active {
  background: rgba(255, 255, 255, 0.95);
  transform: scale(1.22);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.72);
}

.site-main {
  display: grid;
  gap: 68px;
  padding-top: 88px;
}

#definition.section {
  margin-top: -24px;
  position: relative;
  z-index: 2;
}

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

.section-intro {
  display: grid;
  gap: 10px;
}

.section-intro.centered {
  margin-inline: auto;
  justify-items: center;
  text-align: center;
}

.section-intro.compact {
  max-width: 760px;
}

.section-intro.align-left {
  text-align: left;
}

.section-intro h2 {
  margin: 0;
  font-size: clamp(1.3rem, 2.8vw, 2.2rem);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

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

.definition-grid {
  margin-top: 8px;
}

.card,
.why-card,
.partner-card,
.pillar-card,
.unit-card,
.intake-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.definition-card,
.why-card {
  min-height: 182px;
  padding: 22px 22px 20px;
}

.definition-card {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
  box-shadow:
    0 20px 44px rgba(18, 42, 35, 0.08),
    0 8px 18px rgba(18, 42, 35, 0.06);
}

.definition-card::after {
  content: "";
  position: absolute;
  top: -34px;
  right: -18px;
  width: 128px;
  height: 128px;
  background: radial-gradient(circle, rgba(99, 255, 203, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.definition-card:hover {
  transform: translateY(-6px);
  border-color: rgba(69, 215, 168, 0.24);
  box-shadow:
    0 28px 52px rgba(18, 42, 35, 0.14),
    0 10px 24px rgba(18, 42, 35, 0.1);
}

.definition-card:hover::after {
  opacity: 1;
}

.definition-card::before,
.why-card::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(69, 215, 168, 0.1), transparent 70%);
  pointer-events: none;
}

.definition-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(69, 215, 168, 0.22);
  background: rgba(69, 215, 168, 0.08);
  color: var(--green-deep);
}

.definition-icon {
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.definition-card:hover .definition-icon {
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(69, 215, 168, 0.34);
  background: rgba(69, 215, 168, 0.12);
  color: #1d6c55;
}

.definition-card .card-title,
.partner-card h3 {
  margin: 14px 0 10px;
  font-size: 1.52rem;
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.why-card .card-title {
  margin: 0 0 18px;
  font-size: 1.52rem;
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.card-text {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.8;
}

.why-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 250, 0.98)),
    var(--surface);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease;
}

.why-card::before {
  inset: auto auto -28px -26px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(69, 215, 168, 0.08), transparent 72%);
}

.why-card::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 10px;
  width: 120px;
  height: 120px;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  opacity: 0.38;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.why-card:nth-child(1) {
  background:
    radial-gradient(circle at top left, rgba(89, 199, 164, 0.1), transparent 26%),
    linear-gradient(180deg, #fbfefc, #f6fbf9);
}

.why-card:nth-child(1)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%2399cabc' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='16' y='74' width='24' height='24' rx='6'/%3E%3Crect x='80' y='74' width='24' height='24' rx='6'/%3E%3Crect x='48' y='22' width='24' height='24' rx='6'/%3E%3Cpath d='M28 74V58c0-4 3-7 7-7h50c4 0 7 3 7 7v16'/%3E%3Cpath d='M60 51V46'/%3E%3C/g%3E%3C/svg%3E");
}

.why-card:nth-child(2) {
  background:
    radial-gradient(circle at top left, rgba(151, 209, 226, 0.1), transparent 24%),
    linear-gradient(180deg, #fbfefd, #f7fbfb);
}

.why-card:nth-child(2)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23a8cfd9' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 67h22l10-21 18 45 12-29h34'/%3E%3Ccircle cx='12' cy='67' r='3' fill='%23a8cfd9' stroke='none'/%3E%3Ccircle cx='108' cy='62' r='3' fill='%23a8cfd9' stroke='none'/%3E%3C/g%3E%3C/svg%3E");
}

.why-card:nth-child(3) {
  background:
    radial-gradient(circle at top left, rgba(188, 215, 203, 0.1), transparent 24%),
    linear-gradient(180deg, #fbfefd, #f7fbf8);
}

.why-card:nth-child(3)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23afcdbf' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 86a38 38 0 1 1 76 0'/%3E%3Cpath d='M60 86 84 54'/%3E%3Ccircle cx='60' cy='86' r='6'/%3E%3C/g%3E%3C/svg%3E");
}

.why-card:hover {
  background:
    radial-gradient(circle at top right, rgba(99, 255, 203, 0.18), transparent 30%),
    linear-gradient(145deg, #10372f, #0c221d);
  border-color: rgba(69, 215, 168, 0.12);
  box-shadow: 0 18px 40px rgba(12, 42, 35, 0.18);
  transform: translateY(-6px);
}

.why-card:hover::after {
  opacity: 0.16;
  transform: scale(1.04);
}

.why-card:hover .card-title,
.why-card:hover .card-text,
.why-card:hover .card-kicker {
  color: #f5fbf9;
}

.video-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  border-radius: 20px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent 30%),
    linear-gradient(180deg, #10241f 0%, #0d1815 100%);
  box-shadow: var(--shadow-card);
}

.showcase-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  filter: blur(10px) saturate(0.88) brightness(0.78);
  transform: scale(1.05);
  transition:
    filter 260ms ease,
    transform 260ms ease;
}

.video-card.is-playing .showcase-video {
  filter: none;
  transform: scale(1);
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.video-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-play-button {
  position: relative;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.video-play-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: translate(-36%, -50%);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
}

.video-play-button:hover {
  transform: scale(1.04);
  background: rgba(255, 255, 255, 0.26);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.video-label {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  text-align: center;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
}

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

.pillar-card {
  display: grid;
  gap: 0;
  align-content: start;
  min-height: 296px;
  padding: 22px 22px 20px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.pillar-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: rgba(69, 215, 168, 0.2);
}

.pillar-no {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(69, 215, 168, 0.18);
  color: #1b5d4a;
  font-size: 0.95rem;
  font-weight: 700;
}

.pillar-copy h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.24;
  letter-spacing: -0.03em;
}

.pillar-copy p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.72;
}

.pillar-media {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  border-radius: 18px;
  opacity: 1;
  transform: none;
  transition:
    filter 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.pillar-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.08) 26%, rgba(12, 23, 19, 0.18) 100%),
    linear-gradient(90deg, rgba(248, 252, 250, 0.38), transparent 22%, transparent 78%, rgba(248, 252, 250, 0.12));
  pointer-events: none;
}

.pillar-media img {
  display: block;
  width: 100%;
  height: 116px;
  object-fit: cover;
  filter: blur(8px) saturate(0.9) brightness(0.88);
  transform: scale(1.05);
  transition:
    filter 220ms ease,
    transform 220ms ease;
}

.pillar-card:hover .pillar-media {
  box-shadow: 0 14px 28px rgba(15, 43, 35, 0.12);
}

.pillar-card:hover .pillar-media img {
  filter: blur(0) saturate(1) brightness(1);
  transform: scale(1);
}

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

.unit-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-content: start;
  min-height: 560px;
  padding: 22px 22px 24px;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
  background:
    radial-gradient(circle at top right, rgba(255, 202, 176, 0.22), transparent 23%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 252, 250, 0.95));
}

.unit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(18, 42, 35, 0.12);
  border-color: rgba(69, 215, 168, 0.22);
}

.unit-card:nth-child(2) {
  background:
    radial-gradient(circle at top right, rgba(173, 235, 226, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 251, 0.95));
}

.unit-card:nth-child(3) {
  background:
    radial-gradient(circle at top right, rgba(215, 217, 255, 0.22), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 251, 255, 0.95));
}

.unit-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.unit-kicker {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.unit-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(120, 138, 132, 0.2);
  background: rgba(250, 252, 250, 0.78);
  color: #455057;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.unit-card h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.unit-subtitle {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.55;
}

.unit-english {
  margin: 16px 0 0;
  color: #7f8a87;
  font-size: 0.74rem;
  line-height: 1.45;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.unit-slogan {
  padding: 22px 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(244, 247, 245, 0.92), rgba(239, 244, 241, 0.88));
}

.unit-slogan-kicker {
  color: #7a8682;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.unit-slogan-text {
  margin-top: 12px;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.unit-summary {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.72;
}

.unit-thumb {
  align-self: stretch;
  overflow: hidden;
  border-radius: 24px;
  background: #d7e3dd;
  min-height: 210px;
}

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

.partners-section {
  gap: 16px;
}

.partners-layout {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: stretch;
}

.partners-grid {
  display: grid;
  gap: 18px;
  height: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  align-self: stretch;
}

.partner-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 0;
  height: 100%;
  padding: 28px 28px 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.985), rgba(246, 250, 248, 0.94)),
    var(--surface);
  outline: none;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.partner-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 42%;
  background:
    linear-gradient(0deg, rgba(112, 214, 187, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 214, 187, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.7) 28%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.7) 28%, #000 100%);
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.partner-card::after {
  content: "";
  position: absolute;
  right: 40px;
  top: 76px;
  width: 120px;
  height: 170px;
  background: linear-gradient(180deg, rgba(154, 246, 225, 0.18), rgba(154, 246, 225, 0.02));
  clip-path: polygon(38% 0, 100% 20%, 70% 100%, 8% 80%);
  opacity: 0.7;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.partner-card:nth-child(2)::before,
.partner-card:nth-child(4)::before {
  background:
    linear-gradient(0deg, rgba(176, 197, 247, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(176, 197, 247, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
}

.partner-card:nth-child(2)::after,
.partner-card:nth-child(4)::after {
  background: linear-gradient(180deg, rgba(190, 213, 255, 0.18), rgba(190, 213, 255, 0.02));
}

.partner-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.partner-icon {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  border: 1px solid rgba(220, 229, 224, 0.92);
  background: rgba(255, 255, 255, 0.72);
  color: #c2c9c5;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 8px 20px rgba(194, 210, 201, 0.14);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.partner-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.7;
}

.partner-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(1.8rem, 2vw, 2.3rem);
  line-height: 1.16;
  letter-spacing: -0.05em;
}

.partner-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.72;
}

.partner-card .card-kicker {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.partner-card:hover,
.partner-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(69, 215, 168, 0.22);
  box-shadow: 0 20px 40px rgba(18, 42, 35, 0.1);
}

.partner-card:hover::before,
.partner-card:focus-visible::before {
  opacity: 0.88;
  transform: translateX(-6px);
}

.partner-card:hover::after,
.partner-card:focus-visible::after {
  opacity: 0.9;
  transform: translate(-6px, -4px);
}

.partner-card:hover .partner-icon,
.partner-card:focus-visible .partner-icon {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(196, 226, 214, 0.94);
  background: rgba(255, 255, 255, 0.88);
  color: #98a8a1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 12px 24px rgba(186, 211, 201, 0.18);
}

.partner-card:hover h3,
.partner-card:focus-visible h3 {
  color: #1f2a28;
}

.intake-card {
  height: 100%;
}

.intake-card {
  padding: 18px;
}

.slogan-endline-section {
  gap: 0;
}

.slogan-endline {
  position: relative;
  overflow: hidden;
  padding: 34px 36px 36px;
  border: 1px solid rgba(52, 112, 92, 0.22);
  border-radius: 32px;
  background:
    radial-gradient(circle at 82% 58%, rgba(78, 212, 169, 0.22), transparent 18%),
    linear-gradient(135deg, #0d2822 0%, #12382f 56%, #23785e 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 44px rgba(12, 42, 35, 0.14);
}

.slogan-endline::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.slogan-endline .section-kicker {
  position: relative;
  z-index: 1;
  color: rgba(197, 255, 231, 0.88);
}

.slogan-endline h2 {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  color: #f7fbf9;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: -0.06em;
}

.intake-head h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.15;
}

.intake-head p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.7;
}

.contact-form {
  margin-top: 16px;
}

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

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

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

.field span {
  color: #2c3935;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(16, 22, 21, 0.1);
  border-radius: 12px;
  background: #fbfcfb;
  color: var(--ink);
  padding: 12px 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(69, 215, 168, 0.42);
  box-shadow: 0 0 0 3px rgba(69, 215, 168, 0.12);
}

.form-actions {
  margin-top: 14px;
}

.submit-button {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 12px;
  background: #101615;
  color: #fff;
  font-weight: 600;
}

.form-note,
.contact-feedback {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.7;
}

.contact-feedback.is-success {
  color: #1e7f61;
}

.contact-feedback.is-error {
  color: #c94d4d;
}

.site-footer {
  display: grid;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  gap: 28px;
  grid-template-columns: minmax(220px, 1.15fr) minmax(0, 1.8fr) auto;
  margin-top: 46px;
  padding: 26px max(46px, calc((100vw - 1240px) / 2 + 30px));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background:
    radial-gradient(circle at 82% 22%, rgba(104, 219, 170, 0.18), transparent 22%),
    radial-gradient(circle at 36% 56%, rgba(20, 90, 57, 0.24), transparent 44%),
    linear-gradient(90deg, #0b1512 0%, #0d2219 36%, #114329 72%, #2a7c4d 100%);
  color: rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 20px 48px rgba(8, 15, 14, 0.16);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    linear-gradient(117deg, transparent 0%, transparent 77%, rgba(179, 255, 217, 0.08) 77%, rgba(179, 255, 217, 0.08) 83%, transparent 83%);
  opacity: 0.9;
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 74px 74px;
  opacity: 0.18;
  pointer-events: none;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-logo {
  height: 34px;
}

.footer-brand p {
  max-width: 340px;
  margin: 18px 0 0;
  color: rgba(230, 238, 235, 0.74);
  font-size: 0.92rem;
  line-height: 1.9;
}

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

.footer-column ul {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.footer-column li,
.footer-column a {
  color: rgba(230, 238, 235, 0.74);
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-column a:hover {
  color: #fff;
}

.footer-top-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 600;
}

.footer-top-link svg {
  width: 16px;
  height: 16px;
}

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

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

@media (max-width: 1100px) {
  .hero-body {
    gap: 28px;
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    padding-bottom: 28px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-visual {
    min-height: 360px;
    justify-items: start;
  }

  .site-main {
    padding-top: 72px;
    gap: 56px;
  }

  #definition.section {
    margin-top: 0;
  }

  .definition-grid {
    margin-top: 8px;
  }

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

  .partners-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-top-link {
    justify-self: start;
  }
}

@media (max-width: 780px) {
  .shell {
    width: min(1240px, calc(100% - 18px));
    padding-top: 0;
  }

  .hero-header {
    width: min(1240px, calc(100% - 18px));
    padding-top: 12px;
  }

  .hero-header-bar {
    min-height: 50px;
    padding: 0 10px 0 12px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle,
  .menu-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .hero-body {
    width: min(1240px, calc(100% - 18px));
    padding: 28px 0 26px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 10vw, 2.95rem);
  }

  .hero-description {
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .hero-shot {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 300px);
    aspect-ratio: 0.78;
  }

  .hero-dots {
    bottom: 14px;
  }

  .site-main {
    padding-top: 54px;
    gap: 44px;
  }

  .hero-shell {
    padding-bottom: 20px;
  }

  #definition.section {
    margin-top: 0;
  }

  .definition-grid {
    margin-top: 8px;
  }

  .section-intro h2 {
    font-size: 1.4rem;
  }

  .definition-grid,
  .why-grid,
  .pillars-grid,
  .units-grid,
  .partners-grid,
  .footer-columns,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-rows: none;
    height: auto;
  }

  .unit-card {
    grid-template-columns: 1fr;
  }

  .unit-thumb {
    min-height: 150px;
  }

  .site-footer {
    padding: 22px 20px;
    border-radius: 0;
  }

  .slogan-endline {
    padding: 28px 22px 30px;
    border-radius: 26px;
  }
}
