:root {
  --white: #fbfffc;
  --mist: rgba(240, 249, 242, 0.9);
  --green: #24f28a;
  --deep-green: #0f2a1f;
  --ink: #07120e;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: #10261d;
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
}

.placeholder-page {
  display: grid;
  min-height: 100vh;
  align-items: center;
  padding: 40px 22px;
  background:
    radial-gradient(circle at 82% 18%, rgba(36, 242, 138, 0.18), transparent 32%),
    linear-gradient(135deg, #020807 0%, #052116 55%, #020807 100%);
}

.placeholder-page section {
  width: min(100%, 900px);
  margin: 0 auto;
}

.content-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 24px clamp(18px, 4vw, 58px) 72px;
  background:
    linear-gradient(90deg, rgba(14, 42, 31, 0.62), rgba(33, 87, 57, 0.32) 48%, rgba(13, 36, 28, 0.62)),
    radial-gradient(circle at 50% 34%, rgba(159, 218, 135, 0.26), transparent 44%),
    linear-gradient(180deg, rgba(28, 74, 52, 0.78), rgba(13, 35, 27, 0.86));
  isolation: isolate;
}

.content-page::before,
.content-page::after {
  position: fixed;
  z-index: 0;
  width: min(52vw, 660px);
  height: min(38vw, 470px);
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='240' height='140' viewBox='0 0 240 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke-linejoin='miter'%3E%3Cpath d='M0 70 60 10 120 70 60 130Z M60 10 100 50 60 90 20 50Z M120 70 180 10 240 70 180 130Z M180 10 220 50 180 90 140 50Z' stroke='%23e9f3ec' stroke-opacity='.5' stroke-width='4'/%3E%3Cpath d='M60 70 120 10 180 70 120 130Z M120 42 148 70 120 98 92 70Z' stroke='%23aebbb4' stroke-opacity='.42' stroke-width='4'/%3E%3Cpath d='M0 0 30 30 0 60 M240 0 210 30 240 60 M0 140 30 110 0 80 M240 140 210 110 240 80' stroke='%2324f28a' stroke-opacity='.2' stroke-width='4'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 240px 140px;
  opacity: 0.13;
  pointer-events: none;
}

.content-page::before {
  top: 0;
  left: 0;
  mask-image: linear-gradient(135deg, #000 0 28%, transparent 76%);
}

.content-page::after {
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
  mask-image: linear-gradient(135deg, #000 0 28%, transparent 76%);
}

.content-page > * {
  position: relative;
  z-index: 1;
}

.content-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  margin-top: clamp(34px, 6vw, 76px);
}

.content-panel,
.feature-card,
.insight-card,
.space-detail-card {
  border: 1px solid rgba(211, 238, 217, 0.22);
  border-radius: 8px;
  background: rgba(20, 55, 39, 0.58);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.content-panel {
  padding: clamp(22px, 3vw, 34px);
}

.kxc-image-feature {
  position: relative;
  overflow: hidden;
  margin: clamp(28px, 5vw, 60px) 0 0;
  border: 1px solid rgba(211, 238, 217, 0.22);
  border-radius: 8px;
  background: rgba(11, 31, 23, 0.48);
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.28);
}

.kxc-image-feature::after,
.contact-image-feature::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 24, 18, 0.2), rgba(36, 242, 138, 0.08)),
    linear-gradient(180deg, transparent 52%, rgba(5, 17, 12, 0.74));
  pointer-events: none;
}

.kxc-image-feature img,
.contact-image-feature img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kxc-image-feature {
  min-height: clamp(280px, 34vw, 430px);
}

.kxc-image-feature img {
  aspect-ratio: 16 / 7;
}

.kxc-image-feature figcaption {
  position: absolute;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(16px, 2.6vw, 28px);
  z-index: 1;
  width: min(100% - 36px, 430px);
  color: var(--mist);
  font-size: clamp(0.92rem, 1vw, 1.02rem);
  font-weight: 700;
  line-height: 1.48;
}

.kxc-image-feature-left figcaption {
  right: auto;
  left: clamp(18px, 3vw, 34px);
}

.content-panel h2,
.feature-card h2,
.feature-card h3,
.insight-card h2,
.space-detail-card h2 {
  margin: 0;
  font-size: clamp(1.25rem, 1.75vw, 1.85rem);
  line-height: 1.14;
}

.content-panel p,
.feature-card p,
.insight-card p,
.space-detail-card p,
.content-list li {
  color: var(--mist);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  font-weight: 500;
  line-height: 1.68;
}

.content-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 22px;
}

.content-list li::marker {
  color: var(--green);
}

.feature-grid,
.insight-grid,
.space-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(26px, 4vw, 48px);
}

.feature-card,
.insight-card,
.space-detail-card {
  padding: 24px;
}

.feature-card {
  min-height: 250px;
}

.insight-card,
.space-detail-card {
  min-height: 220px;
}

.card-number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border: 1px solid rgba(36, 242, 138, 0.34);
  border-radius: 50%;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.platform-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.platform-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(36, 242, 138, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 18%, rgba(36, 242, 138, 0.14), transparent 32%),
    rgba(8, 29, 21, 0.66);
}

.platform-card h3 {
  margin: 0;
  font-size: clamp(1.15rem, 1.55vw, 1.55rem);
}

.platform-card p {
  margin: 14px 0 0;
}

.content-action {
  margin-top: 28px;
}

.under-construction-page .content-shell {
  min-height: calc(100vh - 160px);
  display: grid;
  align-items: center;
}

.under-construction-panel {
  position: relative;
  display: grid;
  gap: 34px;
  max-width: 980px;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid rgba(211, 238, 217, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(20, 55, 39, 0.58);
  box-shadow: 0 28px 90px rgba(1, 13, 8, 0.24);
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.under-construction-panel::after {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(36, 242, 138, 0.16);
  content: "";
  opacity: 0.7;
  transform: rotate(45deg);
}

.under-construction-panel h1 {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.96;
}

.under-construction-panel p:not(.eyebrow) {
  max-width: 700px;
  margin: 0;
  color: var(--mist);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  font-weight: 500;
  line-height: 1.7;
}

.under-construction-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(244, 251, 241, 0.26);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.secondary-cta:hover,
.secondary-cta:focus-visible {
  border-color: rgba(36, 242, 138, 0.62);
  background: rgba(36, 242, 138, 0.1);
  transform: translateY(-2px);
}

.leaf-heading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.leaf-heading img {
  flex: 0 0 auto;
  width: clamp(70px, 6vw, 98px);
  height: clamp(70px, 6vw, 98px);
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(36, 242, 138, 0.24));
  opacity: 0.86;
}

.blog-leaf-card {
  position: relative;
  overflow: hidden;
}

.blog-leaf-card::after {
  position: absolute;
  right: -18px;
  bottom: -26px;
  width: 86px;
  height: 86px;
  content: "";
  background: url("assets/blog-leaf.png") center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.blog-post-page {
  padding-bottom: 96px;
}

.blog-post-hero {
  position: relative;
  display: block;
  min-height: 520px;
  margin-top: clamp(44px, 8vh, 92px);
  padding: clamp(24px, 5vw, 56px);
  border: 1px solid rgba(211, 238, 217, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 76% 42%, rgba(36, 242, 138, 0.16), transparent 38%),
    linear-gradient(135deg, rgba(20, 55, 39, 0.72), rgba(26, 70, 48, 0.54));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.26);
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.blog-post-heading {
  position: relative;
  z-index: 1;
}

.blog-post-heading h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.85rem, 2.85vw, 3.2rem);
  line-height: 0.98;
}

.blog-post-heading p:not(.eyebrow) {
  max-width: 640px;
  color: var(--mist);
  font-size: clamp(1rem, 1.18vw, 1.16rem);
  font-weight: 500;
  line-height: 1.68;
}

.blog-post-body {
  width: min(100%, 780px);
  margin: clamp(34px, 6vw, 68px) auto 0;
}

.blog-post-body p {
  color: var(--mist);
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  font-weight: 500;
  line-height: 1.78;
}

.legal-page {
  overflow-x: hidden;
  overflow-y: auto;
}

.legal-hero {
  max-width: 920px;
  margin-top: clamp(36px, 6vw, 78px);
}

.legal-document {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
  width: min(100%, 980px);
  margin: clamp(30px, 5vw, 58px) auto 0;
}

.legal-document section {
  border: 1px solid rgba(211, 238, 217, 0.2);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  background:
    radial-gradient(circle at 12% 14%, rgba(36, 242, 138, 0.1), transparent 32%),
    rgba(20, 55, 39, 0.58);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.legal-document h2 {
  margin: 0 0 14px;
  font-size: clamp(1.25rem, 1.8vw, 1.82rem);
  line-height: 1.12;
}

.legal-document p {
  margin: 0;
  color: var(--mist);
  font-size: clamp(0.96rem, 1.04vw, 1.08rem);
  font-weight: 500;
  line-height: 1.7;
}

.legal-document p + p {
  margin-top: 12px;
}

.legal-note {
  border-color: rgba(36, 242, 138, 0.24);
}

.library-hero {
  max-width: 980px;
}

.offerings-library-page .page-hero {
  max-width: 1040px;
}

.library-index {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(26px, 4vw, 44px);
}

.library-index-card {
  display: grid;
  gap: 10px;
  min-height: 128px;
  align-content: end;
  border: 1px solid rgba(211, 238, 217, 0.2);
  border-radius: 8px;
  padding: 18px;
  background:
    radial-gradient(circle at 24% 18%, rgba(36, 242, 138, 0.12), transparent 38%),
    rgba(20, 55, 39, 0.52);
  color: var(--white);
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.library-index-card:hover,
.library-index-card:focus-visible {
  border-color: rgba(224, 246, 229, 0.72);
  background: rgba(19, 61, 42, 0.7);
  transform: translateY(-2px);
}

.library-index-card span {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.library-index-card strong {
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.16;
}

.resource-strip,
.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(28px, 4vw, 52px);
}

.resource-format,
.summary-card,
.summary-aside,
.summary-body {
  border: 1px solid rgba(211, 238, 217, 0.22);
  border-radius: 8px;
  background: rgba(20, 55, 39, 0.58);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.resource-format,
.summary-card {
  position: relative;
  min-height: 100%;
  padding: clamp(22px, 3vw, 32px);
  overflow: hidden;
}

.summary-card {
  display: grid;
  align-content: start;
  gap: 16px;
  color: var(--white);
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.summary-card:hover,
.summary-card:focus-visible {
  border-color: rgba(224, 246, 229, 0.72);
  background: rgba(19, 61, 42, 0.72);
  transform: translateY(-3px);
}

.resource-format h2,
.summary-card h3,
.summary-aside h2,
.summary-body h2 {
  margin: 0;
  font-size: clamp(1.22rem, 1.65vw, 1.72rem);
  line-height: 1.14;
}

.resource-format p,
.summary-card p,
.summary-aside p,
.summary-body p,
.summary-points li,
.summary-flow span {
  color: var(--mist);
  font-size: clamp(0.96rem, 1.04vw, 1.08rem);
  font-weight: 500;
  line-height: 1.64;
}

.resource-type {
  width: fit-content;
  border: 1px solid rgba(36, 242, 138, 0.34);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.resource-meta,
.summary-points,
.summary-flow {
  margin: 0;
  padding: 0;
  list-style: none;
}

.resource-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.resource-meta li {
  border: 1px solid rgba(211, 238, 217, 0.18);
  border-radius: 999px;
  padding: 7px 10px;
  color: rgba(232, 246, 234, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
}

.library-section {
  margin-top: clamp(42px, 7vw, 82px);
}

.services-resource-section {
  position: relative;
  z-index: 2;
  width: min(100%, 1180px);
  margin: clamp(42px, 7vw, 86px) auto 0;
  padding: 0 clamp(18px, 4vw, 58px) clamp(46px, 8vw, 92px);
}

.section-heading {
  max-width: 720px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.05rem);
  line-height: 1;
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--mist);
  font-size: clamp(0.98rem, 1.08vw, 1.12rem);
  font-weight: 500;
  line-height: 1.66;
}

.offering-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(24px, 4vw, 42px);
}

.offering-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  border: 1px solid rgba(211, 238, 217, 0.2);
  border-radius: 8px;
  padding: 18px 20px;
  background: rgba(20, 55, 39, 0.52);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.offering-list a::after {
  color: var(--green);
  content: "Open";
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offering-list a:hover,
.offering-list a:focus-visible {
  border-color: rgba(224, 246, 229, 0.72);
  background: rgba(19, 61, 42, 0.7);
  transform: translateY(-2px);
}

.offering-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(24px, 4vw, 42px);
}

.offering-detail-card {
  scroll-margin-top: 28px;
  border: 1px solid rgba(211, 238, 217, 0.2);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  background:
    radial-gradient(circle at 12% 14%, rgba(36, 242, 138, 0.12), transparent 34%),
    rgba(20, 55, 39, 0.58);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.offering-detail-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.06;
}

.offering-detail-card p:not(.eyebrow),
.offering-detail-card li {
  color: var(--mist);
  font-size: clamp(0.96rem, 1.04vw, 1.08rem);
  font-weight: 500;
  line-height: 1.64;
}

.offering-detail-card .service-cta {
  margin-top: 20px;
}

.library-cta-panel {
  max-width: 840px;
}

.summary-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: end;
}

.summary-facts {
  display: grid;
  gap: 10px;
  margin: 0;
}

.summary-facts div {
  border: 1px solid rgba(211, 238, 217, 0.2);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(18, 50, 36, 0.56);
}

.summary-facts dt {
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.summary-facts dd {
  margin: 5px 0 0;
  color: var(--white);
  font-weight: 700;
}

.summary-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(22px, 4vw, 48px);
  margin-top: clamp(34px, 6vw, 68px);
  align-items: start;
}

.summary-aside,
.summary-body {
  padding: clamp(22px, 3vw, 34px);
}

.summary-aside {
  position: sticky;
  top: 26px;
}

.summary-body {
  display: grid;
  gap: clamp(28px, 4vw, 46px);
}

.summary-body section + section {
  border-top: 1px solid rgba(211, 238, 217, 0.16);
  padding-top: clamp(26px, 4vw, 42px);
}

.summary-body section > .eyebrow + h2 {
  margin-top: 18px;
}

.summary-points {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.summary-points li {
  position: relative;
  padding-left: 22px;
}

.summary-points li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--green);
  box-shadow: 0 0 14px rgba(36, 242, 138, 0.42);
  content: "";
  transform: rotate(45deg);
}

.summary-flow {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  counter-reset: summary-flow;
}

.summary-flow li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 8px 16px;
  align-items: center;
  border: 1px solid rgba(211, 238, 217, 0.16);
  border-radius: 8px;
  padding: 16px;
  background: rgba(18, 50, 36, 0.4);
  counter-increment: summary-flow;
}

.summary-flow li::before {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  grid-row: 1 / span 2;
  align-self: start;
  border: 1px solid rgba(36, 242, 138, 0.44);
  border-radius: 50%;
  color: var(--green);
  content: counter(summary-flow, decimal-leading-zero);
  font-size: 0.74rem;
  font-weight: 800;
}

.summary-flow strong {
  display: block;
  grid-column: 2;
  color: var(--white);
  font-size: clamp(1.02rem, 1.18vw, 1.18rem);
  line-height: 1.18;
}

.summary-flow span {
  grid-column: 2;
}

.back-link {
  position: fixed;
  top: 24px;
  left: 24px;
  color: var(--mist);
  font-weight: 700;
  text-decoration: none;
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--white);
}

.site-footer {
  position: relative;
  z-index: 6;
  width: min(100%, 1180px);
  margin: clamp(34px, 5vw, 58px) auto 0;
  border-top: 1px solid rgba(211, 238, 217, 0.22);
  padding: 18px 0 0;
  color: rgba(240, 249, 242, 0.84);
}

.footer-link-grid {
  column-count: 3;
  column-gap: clamp(28px, 5vw, 72px);
}

.footer-link-grid a {
  display: block;
  break-inside: avoid;
  width: fit-content;
  margin: 0 0 7px;
  color: rgba(251, 255, 252, 0.9);
  font-size: clamp(0.8rem, 0.92vw, 0.9rem);
  font-weight: 650;
  line-height: 1.15;
  text-decoration: none;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer-link-grid a:hover,
.footer-link-grid a:focus-visible {
  color: var(--white);
  transform: translateX(3px);
}

.footer-copyright {
  margin: 12px 0 0;
  color: rgba(240, 249, 242, 0.66);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.tree-home {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 24px clamp(18px, 4vw, 58px) 56px;
  isolation: isolate;
}

.tree-home::before,
.tree-home::after {
  position: fixed;
  z-index: -5;
  width: min(52vw, 660px);
  height: min(38vw, 470px);
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='240' height='140' viewBox='0 0 240 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke-linejoin='miter'%3E%3Cpath d='M0 70 60 10 120 70 60 130Z M60 10 100 50 60 90 20 50Z M120 70 180 10 240 70 180 130Z M180 10 220 50 180 90 140 50Z' stroke='%23e9f3ec' stroke-opacity='.56' stroke-width='4'/%3E%3Cpath d='M60 70 120 10 180 70 120 130Z M120 42 148 70 120 98 92 70Z' stroke='%23aebbb4' stroke-opacity='.46' stroke-width='4'/%3E%3Cpath d='M0 0 30 30 0 60 M240 0 210 30 240 60 M0 140 30 110 0 80 M240 140 210 110 240 80' stroke='%2324f28a' stroke-opacity='.24' stroke-width='4'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 240px 140px;
  opacity: 0.2;
  pointer-events: none;
}

.tree-home::before {
  top: 0;
  left: 0;
  mask-image: linear-gradient(135deg, #000 0 28%, transparent 76%);
}

.tree-home::after {
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
  mask-image: linear-gradient(135deg, #000 0 28%, transparent 76%);
}

.home-video,
.home-atmosphere {
  position: fixed;
  inset: 0;
}

.home-video {
  z-index: -8;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}

.home-atmosphere {
  z-index: -7;
  background:
    linear-gradient(90deg, rgba(13, 39, 29, 0.62), rgba(34, 87, 57, 0.24) 48%, rgba(13, 36, 28, 0.58)),
    radial-gradient(circle at 50% 44%, rgba(164, 223, 137, 0.32), transparent 42%),
    linear-gradient(180deg, rgba(31, 76, 54, 0.66), rgba(13, 35, 27, 0.78));
}

.home-atmosphere::before,
.home-atmosphere::after {
  position: absolute;
  inset: 0;
  content: "";
}

.home-atmosphere::before {
  background: radial-gradient(circle at 50% 45%, rgba(247, 255, 248, 0.05), transparent 46%);
  opacity: 0.5;
}

.home-atmosphere::after {
  background: linear-gradient(90deg, transparent, rgba(202, 232, 185, 0.08), transparent);
  opacity: 0.28;
}

.site-header {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  width: 184px;
}

.site-logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 38px rgba(235, 255, 240, 0.26));
}

.tree-stage {
  position: relative;
  display: flex;
  min-height: calc(100vh - 120px);
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 4vw, 70px);
  padding: 16px 0 0;
}

.signal-field {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.signal-field span {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(226, 255, 234, 0.82);
  background: rgba(75, 255, 142, 0.64);
  box-shadow:
    0 0 18px rgba(75, 255, 142, 0.86),
    0 0 42px rgba(75, 255, 142, 0.34);
  opacity: 0;
  transform: rotate(45deg) scale(0.7);
  animation: signal-float 7s ease-in-out infinite;
}

.signal-field span:nth-child(1) {
  top: 21%;
  left: 50%;
  animation-delay: -1s;
}

.signal-field span:nth-child(2) {
  top: 30%;
  left: 69%;
  animation-delay: -3.4s;
}

.signal-field span:nth-child(3) {
  top: 43%;
  left: 57%;
  animation-delay: -5.1s;
}

.signal-field span:nth-child(4) {
  top: 49%;
  left: 79%;
  animation-delay: -2.2s;
}

.signal-field span:nth-child(5) {
  top: 61%;
  left: 66%;
  animation-delay: -4.4s;
}

.signal-field span:nth-child(6) {
  top: 37%;
  left: 43%;
  animation-delay: -6.2s;
}

.home-story {
  position: relative;
  z-index: 6;
  width: min(36vw, 470px);
  padding: 30px 0 32px;
}

.home-story::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -26px;
  width: 2px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(137, 214, 143, 0.76), transparent);
  box-shadow: 0 0 22px rgba(137, 214, 143, 0.34);
  animation: story-scan 4.8s ease-in-out infinite;
}

.home-story h1 {
  max-width: 100%;
  font-size: clamp(1.85rem, 2.85vw, 3.2rem);
  line-height: 1.04;
  text-shadow: 0 0 34px rgba(213, 255, 225, 0.16);
}

.home-story p:not(.eyebrow) {
  max-width: 430px;
  margin: 18px 0 0;
  color: var(--mist);
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  font-weight: 500;
  line-height: 1.62;
}

.tree-art {
  position: relative;
  z-index: 1;
  width: min(60vw, 930px);
  aspect-ratio: 3 / 2;
  margin-right: clamp(210px, 18vw, 310px);
  pointer-events: none;
}

.tree-art::before {
  position: absolute;
  inset: 8% 8% 12%;
  content: "";
  background:
    radial-gradient(circle at 48% 45%, rgba(210, 255, 143, 0.2), transparent 26%),
    conic-gradient(from 35deg at 50% 52%, transparent, rgba(93, 255, 147, 0.14), transparent 32%);
  mix-blend-mode: screen;
  filter: blur(10px);
  opacity: 0.66;
  animation: canopy-breathe 5.6s ease-in-out infinite;
}

.tree-art::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(110deg, transparent 30%, rgba(235, 255, 226, 0.2) 45%, transparent 60%);
  opacity: 0;
  transform: translateX(-28%);
  animation: tree-glint 8s ease-in-out infinite;
}

.tree-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 0 22px rgba(155, 222, 147, 0.18))
    drop-shadow(0 30px 80px rgba(0, 0, 0, 0.38));
}

.interaction-cue {
  position: absolute;
  right: 18%;
  bottom: 8vh;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 12px 16px;
  border: 1px solid rgba(203, 235, 211, 0.32);
  border-radius: 999px;
  background: rgba(22, 62, 43, 0.5);
  color: rgba(238, 248, 241, 0.84);
  font-size: clamp(0.82rem, 0.9vw, 0.96rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  box-shadow:
    0 16px 54px rgba(0, 0, 0, 0.28),
    0 0 26px rgba(36, 242, 138, 0.12);
  animation: cue-drift 4.8s ease-in-out infinite;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.interaction-cue:hover,
.interaction-cue:focus-visible {
  border-color: rgba(224, 246, 229, 0.72);
  background: rgba(24, 78, 51, 0.68);
  color: var(--white);
}

.cue-orbit {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(146, 255, 188, 0.62);
  border-radius: 50%;
}

.cue-orbit::before,
.cue-orbit::after {
  position: absolute;
  content: "";
}

.cue-orbit::before {
  inset: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(36, 242, 138, 0.9);
}

.cue-orbit::after {
  top: -4px;
  left: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 12px rgba(247, 255, 248, 0.86);
  transform-origin: 4px 18px;
  animation: cue-orbit 2.8s linear infinite;
}

.branch-map {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.branch {
  position: absolute;
  display: flex;
  align-items: center;
  right: 0;
  width: min(44vw, 560px);
  min-height: 78px;
  color: var(--white);
  text-decoration: none;
}

.branch-line {
  position: absolute;
  top: 50%;
  left: var(--connector-start, -130px);
  width: calc(100% - 312px - var(--connector-start, -130px));
  height: 1px;
  background: linear-gradient(90deg, rgba(221, 255, 232, 0.62), rgba(68, 255, 151, 0.48), rgba(221, 255, 232, 0.18));
  box-shadow: 0 0 10px rgba(36, 242, 138, 0.22);
  transform-origin: left center;
  overflow: hidden;
  opacity: 0.72;
}

.branch-line::after {
  position: absolute;
  inset: -2px 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  transform: translateX(-120%);
  animation: line-current 3.6s ease-in-out infinite;
}

.branch-node {
  position: absolute;
  top: calc(50% - 6px);
  left: var(--connector-start, -130px);
  width: 12px;
  height: 12px;
  border: 1px solid rgba(219, 255, 231, 0.82);
  background: rgba(36, 242, 138, 0.34);
  box-shadow: 0 0 16px rgba(36, 242, 138, 0.58);
  transform: rotate(45deg);
  animation: node-pulse 2.8s ease-in-out infinite;
}

.branch-label {
  position: relative;
  display: grid;
  gap: 7px;
  width: min(100%, 312px);
  padding: 15px 17px;
  border: 1px solid rgba(187, 230, 199, 0.24);
  border-radius: 8px;
  background: rgba(18, 53, 37, 0.62);
  backdrop-filter: blur(10px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
  animation: label-idle 5.8s ease-in-out infinite;
  margin-left: auto;
}

.branch-label::after {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 7px;
  height: 7px;
  border-top: 2px solid rgba(235, 255, 240, 0.62);
  border-right: 2px solid rgba(235, 255, 240, 0.62);
  content: "";
  opacity: 0;
  transform: translate(-8px, -50%) rotate(45deg);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.branch-label strong {
  font-size: 0.88rem;
  text-transform: uppercase;
}

.branch-label span {
  color: rgba(232, 246, 234, 0.76);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.35;
}

.branch:hover .branch-label,
.branch:focus-visible .branch-label {
  border-color: rgba(218, 244, 224, 0.7);
  background: rgba(17, 63, 42, 0.68);
  box-shadow:
    0 0 0 1px rgba(36, 242, 138, 0.16),
    0 18px 46px rgba(36, 242, 138, 0.2);
  transform: translateY(-4px) scale(1.02);
}

.branch:hover .branch-label::after,
.branch:focus-visible .branch-label::after {
  opacity: 1;
  transform: translate(0, -50%) rotate(45deg);
}

.branch:hover .branch-line,
.branch:focus-visible .branch-line {
  animation: branch-pulse 1.2s ease-in-out infinite;
}

.branch:hover .branch-node,
.branch:focus-visible .branch-node {
  background: rgba(247, 255, 248, 0.88);
  box-shadow:
    0 0 24px rgba(247, 255, 248, 0.9),
    0 0 56px rgba(36, 242, 138, 0.62);
}

.branch-team {
  top: 8%;
  --connector-start: -235px;
}

.branch-team .branch-line {
  transform: rotate(0deg);
}

.branch-services {
  top: 21%;
  --connector-start: -255px;
}

.branch-services .branch-line {
  transform: rotate(0deg);
}

.branch-elearning {
  top: 34%;
  --connector-start: -215px;
}

.branch-elearning .branch-line {
  transform: rotate(0deg);
}

.branch-contact {
  top: 47%;
  --connector-start: -245px;
}

.branch-contact .branch-line {
  transform: rotate(0deg);
}

.branch-why {
  top: 60%;
  --connector-start: -205px;
}

.branch-why .branch-line {
  transform: rotate(0deg);
}

.branch-blog {
  top: 73%;
  right: 0;
  width: min(44vw, 560px);
  --connector-start: -235px;
}

.branch-blog .branch-line {
  transform: rotate(0deg);
}

.branch-blog:hover .branch-label,
.branch-blog:focus-visible .branch-label {
  transform: translateY(-4px) scale(1.02);
}

.spaces-gallery {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 3vw, 34px);
  align-items: start;
  width: 100%;
  margin: clamp(40px, 7vh, 92px) 0 0;
  padding: clamp(26px, 4vw, 44px) 0 20px;
}

.spaces-gallery::before {
  position: absolute;
  inset: 0 -5vw auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(177, 221, 185, 0.44), transparent);
  box-shadow: 0 0 26px rgba(137, 214, 143, 0.18);
}

.spaces-copy h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(1.85rem, 2.85vw, 3.2rem);
  line-height: 1.04;
}

.x-phrase {
  white-space: nowrap;
}

.spaces-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--mist);
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  font-weight: 500;
  line-height: 1.62;
}

.gallery-track {
  display: grid;
  grid-auto-columns: minmax(280px, calc((100% - 48px) / 4));
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px 4px 18px;
  scroll-snap-type: inline mandatory;
  scrollbar-color: rgba(118, 255, 173, 0.54) rgba(3, 18, 14, 0.44);
  scrollbar-width: thin;
}

.gallery-track::-webkit-scrollbar {
  height: 9px;
}

.gallery-track::-webkit-scrollbar-track {
  background: rgba(3, 18, 14, 0.44);
  border-radius: 999px;
}

.gallery-track::-webkit-scrollbar-thumb {
  background: rgba(118, 255, 173, 0.54);
  border-radius: 999px;
}

.space-tile {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(188, 228, 199, 0.24);
  border-radius: 8px;
  color: var(--white);
  background: rgba(22, 62, 43, 0.5);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  isolation: isolate;
  scroll-snap-align: start;
}

.space-tile:focus-visible {
  outline: 2px solid rgba(118, 255, 173, 0.86);
  outline-offset: 4px;
}

.space-visual {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
  transition: transform 420ms ease, filter 420ms ease;
}

.space-visual::before,
.space-visual::after {
  position: absolute;
  inset: 0;
  content: "";
}

.space-visual::before {
  background:
    linear-gradient(180deg, rgba(2, 8, 7, 0.02), rgba(2, 8, 7, 0.62) 84%),
    linear-gradient(110deg, rgba(4, 23, 17, 0.2), rgba(36, 242, 138, 0.08) 52%, rgba(2, 8, 7, 0.38));
  opacity: 0.86;
}

.space-visual::after {
  background-image:
    linear-gradient(rgba(203, 255, 221, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(203, 255, 221, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(135deg, #000, transparent 76%);
  opacity: 0.26;
  animation: gallery-grid-shift 12s linear infinite;
}

.space-visual-one {
  background-image: url("assets/Strategy-space.jpeg");
}

.space-visual-two {
  background-image: url("assets/learning-studio.jpeg");
}

.space-visual-three {
  background-image: url("assets/build-lab.jpeg");
}

.space-visual-four {
  background-image: url("assets/collaboration-hub.jpeg");
}

.space-meta {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  gap: 0;
  padding: 15px 16px;
  border: 1px solid rgba(211, 238, 217, 0.24);
  border-radius: 8px;
  background: rgba(22, 62, 43, 0.62);
  backdrop-filter: blur(10px);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.space-meta strong {
  font-size: 0.9rem;
  text-transform: uppercase;
}

.space-tile:hover .space-meta {
  border-color: rgba(224, 246, 229, 0.7);
  background: rgba(24, 78, 51, 0.68);
  transform: translateY(-3px);
}

.space-tile:hover .space-visual::before {
  opacity: 0.72;
}

.space-tile:hover .space-visual {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.space-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 56px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.space-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.modal-open {
  overflow: hidden;
}

.space-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 32%, rgba(76, 183, 103, 0.2), transparent 42%),
    rgba(3, 14, 11, 0.78);
  backdrop-filter: blur(10px);
}

.space-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  width: min(100%, 1120px);
  max-height: min(82vh, 760px);
  overflow: hidden;
  border: 1px solid rgba(211, 238, 217, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(20, 64, 44, 0.96), rgba(5, 23, 18, 0.96)),
    rgba(7, 25, 19, 0.96);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.46);
  transform: translateY(14px) scale(0.98);
  transition: transform 220ms ease;
}

.space-modal.is-open .space-modal-panel {
  transform: translateY(0) scale(1);
}

.space-modal-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.space-modal-copy {
  position: relative;
  display: grid;
  align-content: start;
  gap: clamp(14px, 2.4vh, 24px);
  min-height: 420px;
  padding: clamp(88px, 12vh, 118px) clamp(34px, 4.2vw, 54px) clamp(34px, 4.2vw, 54px);
}

.space-modal-copy::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(203, 255, 221, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(203, 255, 221, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(135deg, #000, transparent 74%);
  opacity: 0.4;
  pointer-events: none;
}

.space-modal-copy > * {
  position: relative;
  z-index: 1;
}

.space-modal-copy h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.9rem, 2.55vw, 3rem);
  line-height: 1.04;
}

.space-modal-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--mist);
  font-size: clamp(1rem, 1.15vw, 1.14rem);
  font-weight: 550;
  line-height: 1.65;
}

.space-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(222, 246, 228, 0.46);
  border-radius: 999px;
  color: var(--white);
  background: rgba(7, 25, 19, 0.74);
  box-shadow: 0 0 24px rgba(118, 255, 173, 0.22);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.space-modal-close:hover,
.space-modal-close:focus-visible {
  border-color: rgba(118, 255, 173, 0.86);
  background: rgba(18, 76, 47, 0.86);
  transform: translateY(-1px);
}

.team-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 24px clamp(18px, 4vw, 58px) 68px;
  background:
    linear-gradient(90deg, rgba(14, 42, 31, 0.64), rgba(33, 87, 57, 0.34) 48%, rgba(13, 36, 28, 0.62)),
    radial-gradient(circle at 50% 18%, rgba(159, 218, 135, 0.25), transparent 43%),
    linear-gradient(180deg, rgba(29, 77, 54, 0.78), rgba(13, 35, 27, 0.86));
  isolation: isolate;
}

.team-page::before,
.team-page::after {
  position: fixed;
  z-index: -4;
  width: min(52vw, 660px);
  height: min(38vw, 470px);
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='240' height='140' viewBox='0 0 240 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke-linejoin='miter'%3E%3Cpath d='M0 70 60 10 120 70 60 130Z M60 10 100 50 60 90 20 50Z M120 70 180 10 240 70 180 130Z M180 10 220 50 180 90 140 50Z' stroke='%23e9f3ec' stroke-opacity='.5' stroke-width='4'/%3E%3Cpath d='M60 70 120 10 180 70 120 130Z M120 42 148 70 120 98 92 70Z' stroke='%23aebbb4' stroke-opacity='.42' stroke-width='4'/%3E%3Cpath d='M0 0 30 30 0 60 M240 0 210 30 240 60 M0 140 30 110 0 80 M240 140 210 110 240 80' stroke='%2324f28a' stroke-opacity='.2' stroke-width='4'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 240px 140px;
  opacity: 0.18;
  pointer-events: none;
}

.team-page::before {
  top: 0;
  left: 0;
  mask-image: linear-gradient(135deg, #000 0 28%, transparent 76%);
}

.team-page::after {
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
  mask-image: linear-gradient(135deg, #000 0 28%, transparent 76%);
}

.team-core-bg {
  position: fixed;
  inset: 0;
  z-index: -6;
  background-image: url("assets/team-core.jpeg");
  background-position: center;
  background-size: cover;
  filter: hue-rotate(78deg) saturate(0.96) brightness(0.78) contrast(0.96);
  opacity: 0.24;
  transform: scale(1.04);
}

.team-core-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(18, 50, 36, 0.76), rgba(25, 72, 47, 0.62), rgba(18, 50, 36, 0.76)),
    radial-gradient(circle at 50% 24%, rgba(36, 242, 138, 0.18), transparent 44%);
}

.team-signal-field {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
}

.team-signal-field span {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(226, 255, 234, 0.72);
  background: rgba(75, 255, 142, 0.46);
  box-shadow:
    0 0 16px rgba(75, 255, 142, 0.54),
    0 0 34px rgba(75, 255, 142, 0.22);
  opacity: 0;
  transform: rotate(45deg) scale(0.7);
  animation: team-signal-float 9s ease-in-out infinite;
}

.team-signal-field span:nth-child(1) {
  top: 18%;
  left: 72%;
  animation-delay: -1.4s;
}

.team-signal-field span:nth-child(2) {
  top: 34%;
  left: 16%;
  animation-delay: -4.8s;
}

.team-signal-field span:nth-child(3) {
  top: 52%;
  left: 84%;
  animation-delay: -2.7s;
}

.team-signal-field span:nth-child(4) {
  top: 72%;
  left: 24%;
  animation-delay: -6.2s;
}

.team-signal-field span:nth-child(5) {
  top: 82%;
  left: 68%;
  animation-delay: -7.5s;
}

.page-hero {
  position: relative;
  z-index: 2;
  width: min(100%, 980px);
  margin: clamp(44px, 8vh, 96px) 0 clamp(32px, 6vh, 72px);
}

.page-back-link {
  position: relative;
  top: auto;
  left: auto;
  display: inline-flex;
  margin-bottom: 24px;
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.85rem, 2.85vw, 3.2rem);
  line-height: 1.04;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--mist);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  font-weight: 500;
  line-height: 1.65;
}

.team-directory {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  width: min(100%, 1380px);
  margin: 0 auto;
}

.team-member {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(280px, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  padding: clamp(18px, 2.8vw, 34px);
  border: 1px solid rgba(188, 228, 199, 0.22);
  border-radius: 8px;
  background: rgba(22, 62, 43, 0.48);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.team-member:hover {
  border-color: rgba(224, 246, 229, 0.42);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.2),
    0 0 42px rgba(137, 214, 143, 0.1);
  transform: translateY(-3px);
}

.team-member:nth-child(even) {
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 380px);
}

.team-member:nth-child(even) .team-photo-slot {
  order: 2;
}

.team-photo-slot {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border: 1px solid rgba(211, 238, 217, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(36, 242, 138, 0.12), rgba(255, 255, 255, 0.06)),
    linear-gradient(180deg, rgba(26, 82, 52, 0.86), rgba(18, 50, 36, 0.88));
  box-shadow:
    inset 0 0 42px rgba(8, 28, 18, 0.56),
    0 18px 42px rgba(0, 0, 0, 0.18);
}

.team-photo-slot::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(203, 255, 221, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(203, 255, 221, 0.1) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.42;
  animation: gallery-grid-shift 14s linear infinite;
}

.team-photo-slot::after {
  content: none;
}

.team-photo-slot img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.08) brightness(0.96);
  opacity: 1;
  -webkit-mask-image: radial-gradient(circle at 50% 36%, #000 52%, rgba(0, 0, 0, 0.72) 76%, rgba(0, 0, 0, 0.42) 100%);
  mask-image: radial-gradient(circle at 50% 36%, #000 52%, rgba(0, 0, 0, 0.72) 76%, rgba(0, 0, 0, 0.42) 100%);
}

.team-photo-slot span {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 18px;
  color: rgba(232, 246, 234, 0.74);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}

.team-role {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.team-copy h2 {
  margin: 0;
  font-size: clamp(1.85rem, 2.85vw, 3.2rem);
  line-height: 1.04;
}

.team-copy p:not(.team-role) {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--mist);
  font-size: clamp(0.98rem, 1.1vw, 1.1rem);
  font-weight: 500;
  line-height: 1.68;
}

.services-page,
.service-detail-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 24px clamp(18px, 4vw, 58px) 68px;
  background:
    linear-gradient(90deg, rgba(14, 42, 31, 0.62), rgba(33, 87, 57, 0.32) 48%, rgba(13, 36, 28, 0.6)),
    radial-gradient(circle at 50% 42%, rgba(159, 218, 135, 0.28), transparent 43%),
    linear-gradient(180deg, rgba(29, 77, 54, 0.76), rgba(13, 35, 27, 0.84));
  isolation: isolate;
}

.services-page::before,
.services-page::after,
.service-detail-page::before,
.service-detail-page::after {
  position: fixed;
  z-index: 0;
  width: min(52vw, 660px);
  height: min(38vw, 470px);
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='240' height='140' viewBox='0 0 240 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke-linejoin='miter'%3E%3Cpath d='M0 70 60 10 120 70 60 130Z M60 10 100 50 60 90 20 50Z M120 70 180 10 240 70 180 130Z M180 10 220 50 180 90 140 50Z' stroke='%23e9f3ec' stroke-opacity='.5' stroke-width='4'/%3E%3Cpath d='M60 70 120 10 180 70 120 130Z M120 42 148 70 120 98 92 70Z' stroke='%23aebbb4' stroke-opacity='.42' stroke-width='4'/%3E%3Cpath d='M0 0 30 30 0 60 M240 0 210 30 240 60 M0 140 30 110 0 80 M240 140 210 110 240 80' stroke='%2324f28a' stroke-opacity='.2' stroke-width='4'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 240px 140px;
  opacity: 0.18;
  pointer-events: none;
}

.services-page::before,
.service-detail-page::before {
  top: 0;
  left: 0;
  mask-image: linear-gradient(135deg, #000 0 28%, transparent 76%);
}

.services-page::after,
.service-detail-page::after {
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
  mask-image: linear-gradient(135deg, #000 0 28%, transparent 76%);
}

.services-page > *,
.service-detail-page > * {
  position: relative;
  z-index: 1;
}

.growth-model {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 1440px);
  margin: 0 auto;
  min-height: 960px;
  padding: clamp(18px, 3vw, 34px) 0 64px;
}

.growth-core {
  position: relative;
  display: grid;
  place-items: center;
  width: min(45vw, 500px);
  aspect-ratio: 1;
  justify-self: center;
}

.growth-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(188, 228, 199, 0.24);
  border-radius: 50%;
  box-shadow:
    inset 0 0 42px rgba(137, 214, 143, 0.08),
    0 0 64px rgba(137, 214, 143, 0.08);
}

.growth-ring::before,
.growth-ring::after {
  position: absolute;
  inset: 9%;
  content: "";
  border: 1px solid rgba(211, 238, 217, 0.14);
  border-radius: 50%;
}

.growth-ring::after {
  inset: -12%;
  border-style: dashed;
  opacity: 0.48;
  animation: cue-orbit 34s linear infinite;
}

.growth-core-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  width: 188px;
  height: 188px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(36, 242, 138, 0.12), transparent 64%);
  text-align: center;
  transform: translate(-50%, -50%);
  backdrop-filter: none;
  overflow: visible;
}

.growth-core-link {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 4px;
  width: 100%;
  height: 100%;
  color: var(--white);
  text-decoration: none;
}

.growth-core-link img {
  width: 96px;
  height: 96px;
  aspect-ratio: 1;
  object-fit: contain;
  filter:
    drop-shadow(0 0 24px rgba(155, 222, 147, 0.34))
    drop-shadow(0 18px 42px rgba(0, 0, 0, 0.28));
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.growth-core-link strong {
  display: block;
  max-width: 150px;
  font-size: 0.92rem;
  line-height: 1.12;
  text-transform: uppercase;
}

.growth-core-link .eyebrow {
  margin: 0;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
}

.growth-core-link:hover img,
.growth-core-link:focus-visible img {
  filter:
    drop-shadow(0 0 32px rgba(155, 222, 147, 0.48))
    drop-shadow(0 22px 48px rgba(0, 0, 0, 0.3));
  transform: translateY(-3px) scale(1.04);
}

.growth-arrows {
  position: absolute;
  inset: -18%;
  display: none;
  border-radius: 50%;
  pointer-events: none;
}

.growth-arrows i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  border-top: 2px solid rgba(211, 238, 217, 0.62);
  border-right: 2px solid rgba(211, 238, 217, 0.62);
  filter: drop-shadow(0 0 10px rgba(137, 214, 143, 0.24));
}

.growth-arrows i:nth-child(1) {
  transform: rotate(30deg) translateX(314px) rotate(15deg);
}

.growth-arrows i:nth-child(2) {
  transform: rotate(90deg) translateX(314px) rotate(15deg);
}

.growth-arrows i:nth-child(3) {
  transform: rotate(150deg) translateX(314px) rotate(15deg);
}

.growth-arrows i:nth-child(4) {
  transform: rotate(210deg) translateX(314px) rotate(15deg);
}

.growth-arrows i:nth-child(5) {
  transform: rotate(270deg) translateX(314px) rotate(15deg);
}

.growth-arrows i:nth-child(6) {
  transform: rotate(330deg) translateX(314px) rotate(15deg);
}

.growth-core-copy h2 {
  margin: 0;
  font-size: clamp(1.25rem, 1.85vw, 2rem);
  line-height: 1.08;
}

.growth-orbit {
  position: absolute;
  inset: 0;
}

.growth-node {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 6px;
  width: 178px;
  max-width: 178px;
  min-height: 230px;
  color: var(--white);
  text-align: center;
  text-decoration: none;
  justify-self: center;
}

.growth-orbit .growth-node {
  position: absolute;
  left: 50%;
  top: 50%;
}

.growth-node img {
  width: 132px;
  height: 132px;
  aspect-ratio: 1;
  object-fit: contain;
  filter:
    drop-shadow(0 0 18px rgba(155, 222, 147, 0.22))
    drop-shadow(0 18px 42px rgba(0, 0, 0, 0.28));
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.growth-node span {
  display: grid;
  gap: 6px;
  align-content: center;
  width: 100%;
  min-height: 92px;
  padding: 11px 12px;
  border: 1px solid rgba(187, 230, 199, 0.24);
  border-radius: 8px;
  background: rgba(22, 62, 43, 0.58);
  backdrop-filter: blur(10px);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.growth-node strong {
  display: block;
  font-size: 0.86rem;
  line-height: 1.14;
  min-height: 38px;
  text-transform: uppercase;
}

.growth-node small {
  display: block;
  color: rgba(232, 246, 234, 0.76);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.growth-node:hover img,
.growth-node:focus-visible img {
  filter:
    drop-shadow(0 0 28px rgba(155, 222, 147, 0.42))
    drop-shadow(0 22px 48px rgba(0, 0, 0, 0.3));
  transform: translateY(-4px) scale(1.04);
}

.growth-node:hover span,
.growth-node:focus-visible span {
  border-color: rgba(224, 246, 229, 0.7);
  background: rgba(24, 78, 51, 0.68);
  transform: translateY(-2px);
}

.growth-node-seed,
.growth-node-root {
  transform: translate(-50%, -50%) translate(0, 388px);
}

.growth-node-shoot {
  transform: translate(-50%, -50%) translate(-336px, 188px);
}

.growth-node-sapling {
  transform: translate(-50%, -50%) translate(-336px, -188px);
}

.growth-node-young {
  transform: translate(-50%, -50%) translate(0, -384px);
}

.growth-node-tree {
  transform: translate(-50%, -50%) translate(336px, -188px);
}

.growth-node-forest {
  transform: translate(-50%, -50%) translate(336px, 188px);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(260px, 460px) minmax(280px, 720px);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  min-height: calc(100vh - 110px);
  width: min(100%, 1180px);
  margin: 0 auto;
}

.service-visual-panel {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 24px;
}

.service-detail img,
.service-visual-panel img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 26px rgba(155, 222, 147, 0.24))
    drop-shadow(0 26px 62px rgba(0, 0, 0, 0.32));
}

.service-detail h1 {
  max-width: 680px;
}

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

.service-copy .service-kicker {
  margin: 28px 0 12px;
  color: rgba(232, 246, 234, 0.9);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-copy p:not(.eyebrow):not(.service-kicker),
.service-copy li {
  color: var(--mist);
  font-size: clamp(0.98rem, 1.1vw, 1.1rem);
  font-weight: 500;
  line-height: 1.68;
}

.service-copy p:not(.eyebrow):not(.service-kicker) {
  margin: 16px 0 0;
}

.service-copy ul {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0 0 0 22px;
}

.service-copy li::marker {
  color: var(--green);
}

.service-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  max-width: 100%;
  margin-top: 28px;
  padding: 0 22px;
  border: 1px solid rgba(203, 235, 211, 0.34);
  border-radius: 999px;
  background: rgba(22, 62, 43, 0.56);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.18);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.service-cta:hover,
.service-cta:focus-visible {
  border-color: rgba(224, 246, 229, 0.72);
  background: rgba(24, 78, 51, 0.68);
  transform: translateY(-2px);
}

.service-deep-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(220px, 0.36fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  width: min(100%, 1180px);
  margin: clamp(46px, 8vh, 92px) auto 0;
}

.service-deep-hero img {
  width: min(100%, 320px);
  max-height: min(46vh, 420px);
  justify-self: center;
  object-fit: contain;
  filter:
    drop-shadow(0 0 34px rgba(155, 222, 147, 0.34))
    drop-shadow(0 24px 60px rgba(0, 0, 0, 0.28));
}

.service-deep-copy h1 {
  max-width: 780px;
  margin: 0;
}

.service-deep-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--mist);
  font-size: clamp(1rem, 1.15vw, 1.14rem);
  font-weight: 500;
  line-height: 1.68;
}

.service-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 1180px);
  margin: clamp(34px, 5vw, 62px) auto 0;
}

.service-bullet-card {
  min-height: 100%;
  border: 1px solid rgba(211, 238, 217, 0.22);
  border-radius: 8px;
  padding: clamp(20px, 2.5vw, 30px);
  background:
    radial-gradient(circle at 18% 14%, rgba(36, 242, 138, 0.12), transparent 34%),
    rgba(20, 55, 39, 0.58);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.service-bullet-card span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(36, 242, 138, 0.42);
  border-radius: 50%;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
}

.service-bullet-card h2 {
  margin: 18px 0 0;
  font-size: clamp(1.1rem, 1.45vw, 1.48rem);
  line-height: 1.14;
}

.service-bullet-card p {
  color: var(--mist);
  font-size: clamp(0.96rem, 1.02vw, 1.06rem);
  font-weight: 500;
  line-height: 1.62;
}

.service-deep-cta {
  width: min(100%, 1180px);
  margin: clamp(34px, 5vw, 62px) auto 0;
  border: 1px solid rgba(211, 238, 217, 0.22);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(20, 55, 39, 0.58);
}

.service-deep-cta h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(1.45rem, 2.2vw, 2.35rem);
  line-height: 1.08;
}

.service-deep-cta p {
  max-width: 760px;
  color: var(--mist);
  font-weight: 500;
  line-height: 1.62;
}

.contact-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 24px clamp(18px, 4vw, 58px) 68px;
  background:
    linear-gradient(90deg, rgba(14, 42, 31, 0.62), rgba(33, 87, 57, 0.32) 48%, rgba(13, 36, 28, 0.6)),
    radial-gradient(circle at 50% 42%, rgba(159, 218, 135, 0.28), transparent 43%),
    linear-gradient(180deg, rgba(29, 77, 54, 0.76), rgba(13, 35, 27, 0.84));
  isolation: isolate;
}

.contact-page::before,
.contact-page::after {
  position: fixed;
  z-index: 0;
  width: min(52vw, 660px);
  height: min(38vw, 470px);
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='240' height='140' viewBox='0 0 240 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke-linejoin='miter'%3E%3Cpath d='M0 70 60 10 120 70 60 130Z M60 10 100 50 60 90 20 50Z M120 70 180 10 240 70 180 130Z M180 10 220 50 180 90 140 50Z' stroke='%23e9f3ec' stroke-opacity='.5' stroke-width='4'/%3E%3Cpath d='M60 70 120 10 180 70 120 130Z M120 42 148 70 120 98 92 70Z' stroke='%23aebbb4' stroke-opacity='.42' stroke-width='4'/%3E%3Cpath d='M0 0 30 30 0 60 M240 0 210 30 240 60 M0 140 30 110 0 80 M240 140 210 110 240 80' stroke='%2324f28a' stroke-opacity='.2' stroke-width='4'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 240px 140px;
  opacity: 0.18;
  pointer-events: none;
}

.contact-page::before {
  top: 0;
  left: 0;
  mask-image: linear-gradient(135deg, #000 0 28%, transparent 76%);
}

.contact-page::after {
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
  mask-image: linear-gradient(135deg, #000 0 28%, transparent 76%);
}

.contact-page > * {
  position: relative;
  z-index: 1;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
  width: min(100%, 1180px);
  margin: clamp(44px, 8vh, 96px) auto 0;
}

.contact-intro h1 {
  max-width: 640px;
}

.contact-intro p:not(.eyebrow) {
  max-width: 580px;
  margin: 22px 0 0;
  color: var(--mist);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  font-weight: 500;
  line-height: 1.66;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  color: rgba(232, 246, 234, 0.86);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.45;
}

.contact-details a {
  color: rgba(232, 246, 234, 0.9);
  text-decoration: none;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--white);
}

.contact-image-feature {
  position: relative;
  overflow: hidden;
  height: clamp(190px, 20vw, 285px);
  margin-top: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(211, 238, 217, 0.2);
  border-radius: 8px;
  background: rgba(10, 31, 22, 0.56);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.24);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(188, 228, 199, 0.24);
  border-radius: 8px;
  background: rgba(22, 62, 43, 0.54);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

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

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label span {
  color: rgba(232, 246, 234, 0.82);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(211, 238, 217, 0.24);
  border-radius: 8px;
  background: rgba(18, 50, 36, 0.62);
  color: var(--white);
  font: inherit;
  font-size: 0.98rem;
  line-height: 1.45;
  padding: 13px 14px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(224, 246, 229, 0.7);
  box-shadow: 0 0 0 3px rgba(36, 242, 138, 0.1);
}

.form-status {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(211, 238, 217, 0.24);
  border-radius: 8px;
  color: var(--mist);
  background: rgba(18, 50, 36, 0.48);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
}

.form-status-sent {
  border-color: rgba(36, 242, 138, 0.34);
  color: var(--white);
  background: rgba(24, 78, 51, 0.5);
}

.contact-submit {
  border: 0;
  cursor: pointer;
}

.landing {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100vh;
  overflow: hidden;
  align-items: center;
  justify-items: start;
  padding: 40px clamp(24px, 7vw, 110px);
  isolation: isolate;
}

.forest-video,
.digital-forest,
.shade {
  position: absolute;
  inset: 0;
}

.forest-video {
  z-index: -5;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.digital-forest {
  z-index: -6;
  background:
    radial-gradient(circle at 20% 20%, rgba(36, 242, 138, 0.22), transparent 26%),
    radial-gradient(circle at 78% 34%, rgba(84, 255, 160, 0.16), transparent 28%),
    linear-gradient(180deg, #061d16 0%, #04120e 44%, #020706 100%);
}

.digital-forest::before,
.digital-forest::after {
  position: absolute;
  inset: 0;
  content: "";
}

.digital-forest::before {
  background-image:
    linear-gradient(rgba(82, 255, 162, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 255, 162, 0.1) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(transparent 0%, #000 38%, #000 100%);
  animation: grid-drift 18s linear infinite;
}

.digital-forest::after {
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 58px,
      rgba(46, 246, 139, 0.14) 59px,
      transparent 62px
    );
  opacity: 0.42;
  animation: scan 6s ease-in-out infinite alternate;
}

.tree-line {
  position: absolute;
  right: -8%;
  bottom: -10px;
  left: -8%;
  height: 56%;
  background-repeat: repeat-x;
  background-position: bottom center;
  transform-origin: bottom;
}

.tree-line-one {
  background-image:
    linear-gradient(70deg, transparent 47%, rgba(30, 226, 117, 0.58) 48% 51%, transparent 52%),
    linear-gradient(110deg, transparent 47%, rgba(30, 226, 117, 0.42) 48% 51%, transparent 52%),
    linear-gradient(180deg, transparent 0 64%, rgba(8, 74, 43, 0.86) 65% 100%);
  background-size: 118px 100%;
  opacity: 0.66;
  animation: sway 7s ease-in-out infinite alternate;
}

.tree-line-two {
  height: 47%;
  background-image:
    linear-gradient(70deg, transparent 46%, rgba(96, 255, 168, 0.44) 47% 50%, transparent 51%),
    linear-gradient(110deg, transparent 47%, rgba(96, 255, 168, 0.34) 48% 51%, transparent 52%),
    linear-gradient(180deg, transparent 0 58%, rgba(4, 43, 30, 0.9) 59% 100%);
  background-size: 94px 100%;
  opacity: 0.54;
  filter: blur(1px);
  animation: sway 9s ease-in-out infinite alternate-reverse;
}

.tree-line-three {
  height: 38%;
  background-image:
    linear-gradient(70deg, transparent 47%, rgba(186, 255, 211, 0.28) 48% 50%, transparent 51%),
    linear-gradient(110deg, transparent 47%, rgba(186, 255, 211, 0.22) 48% 50%, transparent 51%),
    linear-gradient(180deg, transparent 0 62%, rgba(1, 24, 18, 0.92) 63% 100%);
  background-size: 72px 100%;
  opacity: 0.38;
  filter: blur(2px);
}

.data-rain {
  position: absolute;
  inset: -30% 0 0;
  background-image:
    linear-gradient(180deg, transparent, rgba(86, 255, 166, 0.34), transparent),
    linear-gradient(180deg, transparent, rgba(86, 255, 166, 0.18), transparent);
  background-size: 3px 180px, 2px 120px;
  background-position: 12% 0, 68% 40px;
  opacity: 0.36;
  animation: rain 9s linear infinite;
}

.data-rain-two {
  opacity: 0.22;
  animation-duration: 13s;
  animation-delay: -4s;
  transform: translateX(36px);
}

.shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 18, 13, 0.68), rgba(9, 35, 24, 0.42) 42%, rgba(10, 32, 24, 0.16) 78%),
    radial-gradient(circle at 50% 92%, rgba(92, 255, 159, 0.26), transparent 42%);
}

.landing-content {
  width: min(100%, 660px);
  padding-top: clamp(10px, 4vh, 44px);
}

.brand-logo {
  display: block;
  width: min(300px, 50vw);
  height: auto;
  margin: 0 0 10px -12px;
  filter: drop-shadow(0 18px 54px rgba(230, 255, 239, 0.34));
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(1.85rem, 2.85vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.intro {
  max-width: 620px;
  margin: 22px 0 30px;
  color: var(--mist);
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  font-weight: 500;
  line-height: 1.62;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.enter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid rgba(136, 255, 184, 0.62);
  border-radius: 999px;
  background: rgba(12, 60, 39, 0.72);
  box-shadow: 0 16px 60px rgba(23, 227, 116, 0.22);
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.enter-button:hover,
.enter-button:focus-visible {
  border-color: rgba(194, 255, 216, 0.9);
  background: rgba(24, 112, 71, 0.84);
  transform: translateY(-2px);
}

.enter-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.enter-button-cyber {
  border-color: rgba(226, 231, 232, 0.64);
  background:
    linear-gradient(135deg, rgba(37, 42, 44, 0.86), rgba(102, 111, 113, 0.34)),
    rgba(23, 27, 28, 0.78);
  box-shadow:
    0 16px 60px rgba(226, 231, 232, 0.18),
    inset 0 0 24px rgba(255, 255, 255, 0.08);
}

.enter-button-cyber:hover,
.enter-button-cyber:focus-visible {
  border-color: rgba(255, 255, 255, 0.92);
  background:
    linear-gradient(135deg, rgba(59, 65, 67, 0.9), rgba(156, 163, 166, 0.42)),
    rgba(28, 32, 34, 0.86);
}

@keyframes grid-drift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 72px 72px;
  }
}

@keyframes scan {
  from {
    transform: translateX(-18px);
  }

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

@keyframes sway {
  from {
    transform: skewX(-1deg) scaleX(1.02);
  }

  to {
    transform: skewX(1.5deg) scaleX(1);
  }
}

@keyframes rain {
  from {
    transform: translateY(-18%);
  }

  to {
    transform: translateY(28%);
  }
}

@keyframes branch-pulse {
  0%,
  100% {
    opacity: 0.68;
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 28px rgba(36, 242, 138, 0.72);
  }
}

@keyframes signal-float {
  0%,
  100% {
    opacity: 0;
    transform: translate3d(0, 18px, 0) rotate(45deg) scale(0.55);
  }

  18%,
  72% {
    opacity: 0.72;
  }

  50% {
    transform: translate3d(18px, -24px, 0) rotate(45deg) scale(1);
  }
}

@keyframes story-scan {
  0%,
  100% {
    opacity: 0.38;
    transform: scaleY(0.72);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes canopy-breathe {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.98);
  }

  50% {
    opacity: 0.76;
    transform: scale(1.02);
  }
}

@keyframes tree-glint {
  0%,
  62%,
  100% {
    opacity: 0;
    transform: translateX(-34%);
  }

  74% {
    opacity: 0.52;
  }

  88% {
    opacity: 0;
    transform: translateX(34%);
  }
}

@keyframes line-current {
  0%,
  46%,
  100% {
    transform: translateX(-120%);
  }

  68% {
    transform: translateX(120%);
  }
}

@keyframes node-pulse {
  0%,
  100% {
    box-shadow: 0 0 16px rgba(36, 242, 138, 0.62);
  }

  50% {
    box-shadow:
      0 0 22px rgba(36, 242, 138, 0.95),
      0 0 42px rgba(36, 242, 138, 0.48);
  }
}

@keyframes label-idle {
  0%,
  100% {
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.16);
  }

  50% {
    box-shadow: 0 18px 42px rgba(36, 242, 138, 0.12);
  }
}

@keyframes cue-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes cue-orbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes gallery-grid-shift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 34px 34px;
  }
}

@keyframes team-signal-float {
  0%,
  100% {
    opacity: 0;
    transform: translate3d(0, 18px, 0) rotate(45deg) scale(0.55);
  }

  18%,
  70% {
    opacity: 0.58;
  }

  50% {
    transform: translate3d(16px, -26px, 0) rotate(45deg) scale(1);
  }
}

@media (max-width: 1000px) {
  .site-logo {
    width: 150px;
  }

  .tree-stage {
    display: block;
    min-height: 0;
    padding-top: 28px;
  }

  .home-story {
    width: min(100%, 620px);
    margin: 0 auto 22px;
  }

  .home-story::before {
    left: -14px;
  }

  .tree-art {
    position: relative;
    inset: auto;
    width: min(112%, 900px);
    margin: 0 auto;
    transform: none;
  }

  .branch-map {
    position: relative;
    display: grid;
    gap: 14px;
    width: min(100%, 560px);
    margin: -8vw auto 0;
  }

  .signal-field {
    display: none;
  }

  .team-signal-field {
    display: none;
  }

  .growth-model {
    display: block;
    min-height: 0;
  }

  .growth-core {
    width: min(100%, 520px);
    margin: 0 auto 42px;
  }

  .growth-arrows {
    display: none;
  }

  .growth-orbit {
    position: relative;
    display: grid;
    gap: 16px;
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .growth-node,
  .growth-node-root,
  .growth-node-seed,
  .growth-node-shoot,
  .growth-node-sapling,
  .growth-node-young,
  .growth-node-tree,
  .growth-node-forest {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: 96px 1fr;
    justify-items: start;
    align-items: center;
    width: 100%;
    text-align: left;
    transform: none;
  }

  .growth-node img {
    width: 96px;
  }

  .growth-node span {
    width: 100%;
    min-height: 0;
  }

  .growth-node strong {
    min-height: 0;
  }

  .service-detail {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 48px;
  }

  .service-detail img {
    width: min(100%, 420px);
    margin: 0 auto;
  }

  .contact-shell {
    grid-template-columns: 1fr;
    width: min(100%, 720px);
  }

  .content-grid,
  .feature-grid,
  .insight-grid,
  .space-detail-grid,
  .library-index,
  .offering-list,
  .offering-detail-grid,
  .service-deep-hero,
  .service-tile-grid,
  .resource-strip,
  .summary-grid,
  .summary-hero,
  .summary-layout,
  .platform-strip {
    grid-template-columns: 1fr;
  }

  .content-grid {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .site-footer {
    width: min(100%, 760px);
  }

  .footer-link-grid {
    column-count: 2;
  }

  .leaf-heading {
    align-items: flex-start;
    gap: 10px;
  }

  .leaf-heading img {
    width: 78px;
    height: 78px;
    margin-top: 2px;
  }

  .blog-post-hero {
    min-height: 0;
    padding-top: 72px;
  }

  .summary-aside {
    position: relative;
    top: auto;
  }

  .interaction-cue {
    top: auto;
    right: auto;
    left: 50%;
    bottom: 33%;
    animation: none;
    transform: translateX(-50%);
  }

  .spaces-gallery {
    grid-template-columns: 1fr;
    width: min(100%, 680px);
  }

  .branch {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    min-height: auto;
    padding-left: 34px;
  }

  .branch-line {
    left: 0;
    width: 28px;
    transform: none !important;
  }

  .branch-left .branch-line,
  .branch-right .branch-line {
    left: 0;
    right: auto;
    background: linear-gradient(90deg, rgba(235, 255, 240, 0.8), rgba(68, 255, 151, 0.76), transparent);
  }

  .branch-node,
  .branch-left .branch-node,
  .branch-right .branch-node {
    left: 0;
    right: auto;
  }

  .branch-label,
  .branch-left .branch-label,
  .branch-right .branch-label {
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 700px) {
  .footer-link-grid {
    column-count: 1;
  }

  .tree-home {
    padding: 18px 16px 34px;
  }

  .site-header {
    align-items: flex-start;
  }

  .tree-art {
    width: 124%;
    margin-left: -12%;
  }

  .interaction-cue {
    display: none;
  }

  .gallery-track {
    grid-auto-columns: minmax(280px, 86%);
  }

  .space-tile {
    min-height: 340px;
  }

  .space-modal {
    padding: 14px;
  }

  .space-modal-panel {
    grid-template-columns: 1fr;
    max-height: 88vh;
    overflow-y: auto;
  }

  .space-modal-panel img {
    min-height: 260px;
    max-height: 42vh;
  }

  .space-modal-copy {
    padding: 28px 22px 26px;
  }

  .landing {
    align-items: end;
    justify-items: start;
    min-height: 100svh;
    padding: 34px 18px 52px;
  }

  .shade {
    background:
      linear-gradient(180deg, rgba(5, 18, 13, 0.2), rgba(10, 34, 24, 0.64) 50%, rgba(8, 28, 20, 0.78)),
      radial-gradient(circle at 50% 86%, rgba(92, 255, 159, 0.28), transparent 48%);
  }

  .landing-content {
    padding-top: 0;
  }

  .brand-logo {
    width: min(260px, 76vw);
    margin: 0 0 10px -10px;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .intro {
    margin: 22px 0 28px;
    font-size: 1rem;
    line-height: 1.58;
  }

  .enter-button {
    width: 100%;
    max-width: 380px;
  }

  .landing-actions {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .services-page {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    padding-right: 32px;
    padding-left: 32px;
  }

  .services-page *,
  .services-page *::before,
  .services-page *::after {
    max-width: 100%;
  }

  .services-page .page-hero {
    width: calc(100vw - 64px);
    max-width: calc(100vw - 64px);
    margin-right: auto;
    margin-left: auto;
  }

  .services-page .page-hero h1,
  .services-page .page-hero p:not(.eyebrow) {
    width: calc(100vw - 64px);
    max-width: calc(100vw - 64px);
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .services-page .page-hero h1 {
    font-size: clamp(1.65rem, 7.2vw, 2.25rem);
    line-height: 1.08;
  }

  .services-page .page-hero p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .growth-model {
    display: grid;
    gap: 14px;
    width: calc(100vw - 64px);
    max-width: calc(100vw - 64px);
    min-height: 0;
    padding: 22px 0 38px;
    margin: 0 auto;
    place-items: stretch;
  }

  .growth-core {
    display: block;
    width: 100%;
    aspect-ratio: auto;
    margin: 0;
  }

  .growth-ring,
  .growth-arrows {
    display: none;
  }

  .growth-core-copy {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 14px 16px;
    border: 1px solid rgba(187, 230, 199, 0.24);
    border-radius: 8px;
    background: rgba(22, 62, 43, 0.58);
    text-align: left;
    transform: none;
    backdrop-filter: blur(10px);
  }

  .growth-core-link {
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: center;
    justify-items: start;
    gap: 12px;
    height: auto;
  }

  .growth-core-link img {
    width: 76px;
    height: 76px;
  }

  .growth-core-link strong {
    max-width: none;
    font-size: 0.98rem;
    line-height: 1.14;
    overflow-wrap: anywhere;
  }

  .growth-orbit {
    position: relative;
    display: grid;
    gap: 14px;
    width: 100%;
    margin: 0;
  }

  .growth-orbit .growth-node,
  .growth-node,
  .growth-node-root,
  .growth-node-seed,
  .growth-node-shoot,
  .growth-node-sapling,
  .growth-node-young,
  .growth-node-tree,
  .growth-node-forest {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: center;
    justify-items: start;
    gap: 12px;
    width: 100%;
    max-width: none;
    min-height: 0;
    text-align: left;
    transform: none;
  }

  .growth-node img {
    width: 70px;
    height: 70px;
  }

  .growth-node span {
    width: 100%;
    min-height: 0;
    padding: 14px 16px;
  }

  .growth-node strong {
    min-height: 0;
    font-size: 0.98rem;
    line-height: 1.14;
    overflow-wrap: anywhere;
  }

  .services-resource-section {
    width: calc(100vw - 64px);
    max-width: calc(100vw - 64px);
    margin-top: 18px;
    padding-right: 0;
    padding-left: 0;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
