:root {
  --color-black: #050505;
  --color-ink: #111111;
  --color-muted: #66666b;
  --color-soft: #f5f5f7;
  --color-electric: #0071e3;
  --color-cyan: #2fd6ff;
  --color-mint: #6ee7b7;
  --color-line: rgba(17, 17, 17, 0.1);
  --color-glass: rgba(255, 255, 255, 0.72);
  --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 18px 48px rgba(0, 0, 0, 0.1);
  --container: min(1180px, calc(100% - 40px));
  --radius-lg: 32px;
  --radius-md: 22px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(47, 214, 255, 0.13), transparent 28rem),
    radial-gradient(circle at 84% 18%, rgba(0, 113, 227, 0.13), transparent 30rem),
    radial-gradient(circle at 55% 88%, rgba(110, 231, 183, 0.1), transparent 28rem),
    #ffffff;
  color: var(--color-ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

.ambient-canvas,
.ambient-glow {
  position: fixed;
  pointer-events: none;
}

.ambient-canvas {
  inset: 0;
  z-index: 0;
  opacity: 0.72;
}

.ambient-glow {
  z-index: 0;
  width: clamp(260px, 34vw, 560px);
  height: clamp(260px, 34vw, 560px);
  border-radius: 50%;
  filter: blur(42px);
  opacity: 0.26;
  animation: driftGlow 18s var(--ease) infinite alternate;
}

.ambient-glow--one {
  top: 6%;
  left: -9%;
  background: radial-gradient(circle, rgba(47, 214, 255, 0.52), transparent 68%);
}

.ambient-glow--two {
  right: -11%;
  bottom: 13%;
  background: radial-gradient(circle, rgba(110, 231, 183, 0.42), transparent 70%);
  animation-delay: -7s;
}

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

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

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

:focus-visible {
  outline: 3px solid #0071e3;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--color-black);
  color: #ffffff;
  padding: 10px 16px;
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.nav {
  width: var(--container);
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
}

.nav__mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-black);
  color: #ffffff;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__menu a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border-radius: 999px;
  padding: 0 13px;
  color: rgba(17, 17, 17, 0.74);
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav__menu a:hover,
.nav__menu a:focus-visible {
  background: rgba(0, 0, 0, 0.06);
  color: var(--color-black);
}

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 17px;
  height: 1.5px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--color-black);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav__toggle[aria-expanded="true"] span:first-child {
  transform: translateY(2.75px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-2.75px) rotate(-45deg);
}

.section-pad {
  padding: clamp(88px, 12vw, 168px) 0;
  scroll-margin-top: 80px;
}

.section-snap {
  min-height: 100svh;
  scroll-margin-top: 80px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #6e6e73;
  font-size: clamp(0.76rem, 1.3vw, 0.9rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-header {
  width: var(--container);
  margin: 0 auto clamp(34px, 5vw, 70px);
}

.section-header h2,
.vision h2,
.spirituality h2,
.contact h2 {
  max-width: auto;
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.section-header--center {
  text-align: center;
}

.section-header--center h2 {
  margin-right: auto;
  margin-left: auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(28px, 6vw, 96px);
  width: var(--container);
  margin: 0 auto;
  padding: 96px 0 42px;
  overflow: hidden;
}

.hero__background {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.2) 0 28%, transparent 28% 100%),
    radial-gradient(circle at 82% 22%, rgba(47, 214, 255, 0.14), transparent 24rem),
    radial-gradient(circle at 12% 78%, rgba(0, 0, 0, 0.05), transparent 18rem),
    linear-gradient(180deg, #ffffff 0%, #f7f7f8 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 28px;
}

.hero__title {
  max-width: 900px;
  margin: 0;
  font-size: clamp(4.2rem, 11vw, 10.4rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.hero__subtitle {
  max-width: 710px;
  margin: 30px 0 0;
  color: #343437;
  font-size: clamp(1.32rem, 2.5vw, 2.15rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.hero__quote {
  max-width: 610px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 0.96rem;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease,
    box-shadow 0.2s ease;
}

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

.button--dark {
  background: var(--color-black);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.17);
}

.button--light {
  border-color: rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero__visual {
  justify-self: end;
  width: min(100%, 500px);
  perspective: 1200px;
}

.portrait-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: clamp(28px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.36);
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.18);
  transform: rotateX(2deg) rotateY(-5deg);
}

.portrait-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.44), transparent 36%);
  mix-blend-mode: screen;
}

.portrait-shell img {
  width: 100%;
  aspect-ratio: 4 / 5.4;
  object-fit: cover;
  object-position: center top;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  display: grid;
  width: 30px;
  height: 46px;
  place-items: start center;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 4px;
  height: 4px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--color-black);
  animation: scrollDot 1.6s ease-in-out infinite;
}

.story {
  position: relative;
  background: rgba(255, 255, 255, 0.84);
  overflow: hidden;
}

.story::before {
  content: "";
  position: absolute;
  inset: auto -12% 10% auto;
  width: min(520px, 48vw);
  height: min(520px, 48vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.11), transparent 70%);
  pointer-events: none;
}

.story__grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.82fr);
  gap: clamp(30px, 7vw, 104px);
  align-items: start;
}

.story__lead {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.story__copy {
  display: grid;
  gap: 24px;
  color: #333336;
  font-size: clamp(1.08rem, 1.9vw, 1.42rem);
  letter-spacing: -0.022em;
}

.story__copy p {
  margin: 0;
}

.spirit-note {
  position: relative;
  width: var(--container);
  margin: clamp(48px, 8vw, 96px) auto 0;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 56px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.52)),
    radial-gradient(circle at 100% 0%, rgba(47, 214, 255, 0.16), transparent 24rem);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
}

.spirit-note h3 {
  max-width: 820px;
  margin: 0 0 22px;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.spirit-note p:not(.eyebrow) {
  max-width: 820px;
  margin: 0;
  color: #3b3b3f;
  font-size: clamp(1.05rem, 1.8vw, 1.34rem);
  letter-spacing: -0.02em;
}

.spirit-note p + p {
  margin-top: 18px;
}

.journey {
  position: relative;
  overflow: hidden;
  background: rgba(245, 245, 247, 0.8);
}

.journey::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.85), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.85)),
    radial-gradient(circle at 50% 15%, rgba(0, 0, 0, 0.08), transparent 34rem);
}

.venture-board {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: clamp(24px, 4vw, 44px);
}

.venture-group {
  display: grid;
  gap: 18px;
}

.venture-group__heading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.venture-group__heading h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  letter-spacing: -0.04em;
}

.status-dot {
  position: relative;
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  border: 1px solid currentColor;
  opacity: 0.36;
  animation: pulseStatus 1.9s ease-out infinite;
}

.status-dot--active {
  color: var(--color-mint);
  background: var(--color-mint);
  box-shadow: 0 0 22px rgba(110, 231, 183, 0.8);
}

.status-dot--past {
  color: #9a9a9f;
  background: #9a9a9f;
}

.active-ventures {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.75fr);
  gap: 20px;
  align-items: stretch;
}

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

.venture-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(26px) saturate(170%);
  -webkit-backdrop-filter: blur(26px) saturate(170%);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s ease;
}

.venture-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.64), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(47, 214, 255, 0.18), transparent 18rem);
  opacity: 0.82;
}

.venture-card > * {
  position: relative;
  z-index: 1;
}

.venture-card:hover {
  transform: translateY(-8px);
  border-color: rgba(47, 214, 255, 0.35);
  box-shadow: 0 30px 90px rgba(0, 113, 227, 0.16);
}

.venture-card--primary {
  min-height: 480px;
  border-color: rgba(47, 214, 255, 0.34);
  background:
    radial-gradient(circle at 88% 0%, rgba(47, 214, 255, 0.28), transparent 24rem),
    radial-gradient(circle at 18% 100%, rgba(110, 231, 183, 0.18), transparent 22rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.58));
  box-shadow:
    0 32px 100px rgba(0, 113, 227, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.venture-card--primary::after {
  content: "";
  position: absolute;
  right: -16%;
  top: -18%;
  width: min(420px, 46vw);
  height: min(420px, 46vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 214, 255, 0.38), transparent 68%);
  filter: blur(8px);
  animation: orbitGlow 9s ease-in-out infinite alternate;
}

.venture-card--past {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(245, 245, 247, 0.5)),
    rgba(255, 255, 255, 0.52);
  filter: saturate(0.86);
  opacity: 0.9;
}

.venture-card__topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 12px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge--active {
  background: rgba(110, 231, 183, 0.18);
  color: #08724f;
  box-shadow: inset 0 0 0 1px rgba(110, 231, 183, 0.36);
}

.badge--past {
  background: rgba(0, 0, 0, 0.06);
  color: #68686d;
}

.venture-card__focus {
  color: #7a7a80;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.venture-card h4 {
  margin: 0;
  font-size: clamp(2.1rem, 5.4vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.venture-card--active h4,
.venture-card--past h4 {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}

.venture-card p {
  color: #46464b;
}

.venture-card__summary {
  max-width: auto;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  letter-spacing: -0.022em;
}

.venture-card__mission {
  display: inline-flex;
  margin: 28px 0 0;
  border: 1px solid rgba(0, 113, 227, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--color-black) !important;
  padding: 12px 16px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.venture-details {
  margin-top: 26px;
}

.venture-details summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: var(--color-black);
  color: #ffffff;
  padding: 12px 16px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.venture-details summary::after {
  content: "+";
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.9rem;
}

.venture-details[open] summary::after {
  content: "-";
}

.venture-details__content {
  margin-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 20px;
}

.venture-details__content p {
  max-width: 650px;
  margin: 0 0 16px;
}

.venture-details ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.venture-details li {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  padding: 9px 12px;
  color: #313135;
  font-weight: 700;
}

.timeline {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 22px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 41px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.22), transparent);
}

.timeline__item {
  position: relative;
  min-height: 336px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  padding: 78px clamp(22px, 3vw, 34px) 30px;
  background: var(--color-glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.timeline__item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.timeline__dot {
  position: absolute;
  top: 32px;
  left: 32px;
  z-index: 2;
  width: 18px;
  height: 18px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: var(--color-black);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12), 0 12px 28px rgba(0, 0, 0, 0.18);
}

.timeline__kicker {
  margin: 0 0 10px;
  color: #8a8a8f;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.timeline h3 {
  margin: 0 0 16px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.timeline p {
  color: #4c4c50;
  font-size: 1rem;
}

.timeline__closing {
  margin-top: 18px;
  color: var(--color-ink) !important;
  font-weight: 700;
}

.impact {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 245, 247, 0.82) 100%);
}

.impact__shell {
  width: var(--container);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: clamp(30px, 6vw, 64px);
  padding: clamp(42px, 7vw, 86px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
}

.impact .section-header {
  width: auto;
}

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

.stat-card {
  min-height: 190px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.stat-card__number {
  display: block;
  color: var(--color-black);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.stat-card p {
  max-width: 180px;
  margin: 18px 0 0;
  color: #59595e;
  font-weight: 700;
}

.vision {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #050505;
  color: #ffffff;
  text-align: center;
}

.vision::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(255, 255, 255, 0.05) 18% 18.35%, transparent 18.35% 43%, rgba(255, 255, 255, 0.04) 43% 43.25%, transparent 43.25% 100%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.2), transparent 28rem),
    linear-gradient(180deg, #121212 0%, #050505 100%);
}

.vision__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(12px);
  opacity: 0.26;
}

.vision__orb--one {
  width: 32vw;
  height: 32vw;
  top: 13%;
  left: -12%;
  background: #ffffff;
}

.vision__orb--two {
  width: 26vw;
  height: 26vw;
  right: -10%;
  bottom: 10%;
  background: #9a9a9a;
}

.vision__content {
  position: relative;
  z-index: 2;
  width: min(960px, calc(100% - 40px));
}

.vision .eyebrow {
  color: rgba(255, 255, 255, 0.62);
}

.vision h2 {
  margin-right: auto;
  margin-left: auto;
}

.vision p:last-child {
  max-width: 760px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  letter-spacing: -0.026em;
}

.spirituality {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(47, 214, 255, 0.12), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(245, 245, 247, 0.72) 100%);
  text-align: center;
}

.spirituality::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  opacity: 0.7;
  transform: scaleY(0.62);
}

.spirituality::after {
  content: "";
  position: absolute;
  top: 18%;
  left: 50%;
  width: min(620px, 86vw);
  height: min(620px, 86vw);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 18%, transparent 18.2%),
    conic-gradient(from 130deg, transparent, rgba(47, 214, 255, 0.18), transparent, rgba(110, 231, 183, 0.16), transparent);
  opacity: 0.45;
  filter: blur(1px);
  transform: translateX(-50%);
  animation: slowSpin 32s linear infinite;
}

.spirituality__content {
  position: relative;
  z-index: 2;
  width: min(930px, calc(100% - 40px));
  margin: 0 auto;
}

.spirituality h2 {
  margin: 0 auto;
}

.spirituality__content > p:not(.eyebrow) {
  max-width: 650px;
  margin: 26px auto 0;
  color: #55555b;
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  letter-spacing: -0.025em;
}

.spirituality__button {
  margin-top: 34px;
}

.spirituality__message {
  max-width: 760px;
  margin: 34px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: clamp(24px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.09);
  padding: clamp(26px, 5vw, 52px);
  backdrop-filter: blur(26px) saturate(160%);
  -webkit-backdrop-filter: blur(26px) saturate(160%);
}

.spirituality__message.is-visible {
  animation: messageIn 0.7s var(--ease) both;
}

.spirituality__message p {
  margin: 0;
  color: var(--color-black);
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 800;
}

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

.spirituality__message .spirituality__connect {
  max-width: 560px;
  margin: 28px auto 0;
  color: #5b5b60;
  font-size: clamp(1.02rem, 1.8vw, 1.24rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.blog {
  background: rgba(255, 255, 255, 0.86);
}

.blog-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.blog-card {
  overflow: hidden;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.09);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.14);
}

.blog-card a {
  display: grid;
  min-height: 100%;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 1.6 / 1;
  object-fit: cover;
}

.blog-card__body {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.blog-card__category {
  margin: 0;
  color: #77777c;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.82rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.blog-card__body p:not(.blog-card__category) {
  margin: 0;
  color: #5f5f64;
}

.read-more {
  margin-top: 10px;
  color: #0071e3;
  font-weight: 800;
}

.contact {
  background:
    radial-gradient(circle at 50% 12%, rgba(47, 214, 255, 0.16), transparent 28rem),
    radial-gradient(circle at 10% 88%, rgba(110, 231, 183, 0.14), transparent 24rem),
    linear-gradient(180deg, rgba(245, 245, 247, 0.85) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.contact__shell {
  width: var(--container);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: clamp(30px, 6vw, 66px);
  padding: clamp(42px, 8vw, 92px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.08);
  text-align: center;
  backdrop-filter: blur(30px) saturate(170%);
  -webkit-backdrop-filter: blur(30px) saturate(170%);
}

.contact h2 {
  margin-right: auto;
  margin-left: auto;
}

.contact__intro {
  max-width: 780px;
  margin: 28px auto 0;
  color: #4d4d52;
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  letter-spacing: -0.025em;
}

.contact__email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  border-radius: 999px;
  background: var(--color-black);
  color: #ffffff;
  padding: 15px 22px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 800;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.contact__email:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.contact svg,
.socials svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.socials a {
  position: relative;
  overflow: hidden;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.8);
  color: var(--color-black);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.07);
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease,
    box-shadow 0.22s ease;
}

.socials a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 15%, rgba(47, 214, 255, 0.34), transparent 52%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.socials a svg {
  position: relative;
  z-index: 1;
}

.socials a:hover {
  transform: translateY(-5px) scale(1.04);
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(0, 113, 227, 0.16);
}

.socials a:hover::before {
  opacity: 1;
}

.footer {
  display: grid;
  gap: 6px;
  padding: 34px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  background: #ffffff;
  color: #6e6e73;
  text-align: center;
  font-size: 0.92rem;
}

.footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.timeline__item:nth-child(2),
.blog-card:nth-child(2),
.venture-card--active,
.stat-card:nth-child(2) {
  transition-delay: 0.08s;
}

.timeline__item:nth-child(3),
.blog-card:nth-child(3),
.venture-group--past,
.stat-card:nth-child(3) {
  transition-delay: 0.16s;
}

.stat-card:nth-child(4) {
  transition-delay: 0.24s;
}

@keyframes scrollDot {
  0%,
  100% {
    opacity: 0;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
  }

  70% {
    opacity: 0;
    transform: translateY(18px);
  }
}

@keyframes driftGlow {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(7vw, 5vh, 0) scale(1.12);
  }
}

@keyframes pulseStatus {
  0% {
    opacity: 0.42;
    transform: scale(0.82);
  }

  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes orbitGlow {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-8%, 8%, 0) scale(1.08);
  }
}

@keyframes slowSpin {
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

@keyframes messageIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  :root {
    --container: min(100% - 32px, 760px);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 118px;
    text-align: center;
  }

  .hero__content,
  .hero__subtitle,
  .hero__quote {
    margin-right: auto;
    margin-left: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    justify-self: center;
    width: min(78vw, 420px);
  }

  .scroll-cue {
    display: none;
  }

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

  .active-ventures,
  .past-ventures {
    grid-template-columns: 1fr;
  }

  .venture-card--primary {
    min-height: auto;
  }

  .timeline {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 41px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.22), transparent);
  }

  .timeline__item {
    min-height: auto;
    padding-left: 78px;
  }

  .timeline__dot {
    left: 32px;
  }

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

@media (max-width: 760px) {
  .nav__toggle {
    position: relative;
    z-index: 60;
    display: block;
  }

  .nav__menu {
    position: fixed;
    inset: 0;
    z-index: 55;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 10px;
    padding: 84px 24px 24px;
    background: rgba(255, 255, 255, 0.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
  }

  .nav__menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.nav-open .site-header {
    border-bottom-color: transparent;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav__menu a {
    justify-content: center;
    min-height: 56px;
    font-size: 1.2rem;
  }

  .hero__title {
    font-size: clamp(4rem, 18vw, 7rem);
  }

  .section-header h2,
  .vision h2,
  .spirituality h2,
  .contact h2 {
    letter-spacing: -0.06em;
  }

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

  .stat-card {
    min-height: 150px;
  }

  .contact__email {
    width: 100%;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    word-break: break-word;
  }
}

@media (max-width: 520px) {
  :root {
    --container: min(100% - 24px, 460px);
  }

  .nav {
    height: 58px;
  }

  .nav__brand span:last-child {
    display: none;
  }

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

  .hero {
    padding-top: 92px;
  }

  .hero__subtitle {
    font-size: 1.22rem;
  }

  .button,
  .hero__actions {
    max-width: 100%;
  }

  .timeline__item {
    border-radius: 24px;
    padding: 74px 22px 26px 64px;
  }

  .timeline::before {
    left: 32px;
  }

  .timeline__dot {
    left: 23px;
  }

  .impact__shell,
  .spirit-note,
  .contact__shell {
    border-radius: 26px;
    padding: 32px 18px;
  }

  .venture-card {
    border-radius: 26px;
    padding: 26px 20px;
  }

  .venture-details li {
    width: 100%;
  }

  .blog-card {
    border-radius: 24px;
  }
}

@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;
  }

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

  .ambient-canvas,
  .ambient-glow,
  .status-dot::after,
  .venture-card--primary::after,
  .spirituality::after {
    animation: none !important;
  }
}
