:root {
  --scroll-progress: 0;
  --bg-0: #0f0f23;
  --bg-1: #151532;
  --bg-2: #1a1a3e;
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
  --text-dim: rgba(255, 255, 255, 0.6);
  --primary-1: #7c86ff;
  --primary-2: #c27aff;
  --primary-3: #f6339a;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(110deg, var(--bg-0) 0%, var(--bg-2) 50%, var(--bg-0) 100%);
  color: var(--text-main);
}

.container {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(15, 15, 35, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-inner {
  height: 68px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.12em;
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 48px;
}

.nav-links a {
  display: inline-block;
  text-decoration: none;
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.35px;
  line-height: 20px;
}

.nav-links a.active {
  color: var(--primary-1);
}

.page {
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
}

.page::before,
.page::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.page::before {
  width: 520px;
  height: 520px;
  background: rgba(97, 95, 255, 0.18);
  top: 40px;
  left: 18%;
}

.page::after {
  width: 460px;
  height: 460px;
  background: rgba(173, 70, 255, 0.15);
  top: 180px;
  left: 24%;
}

.hero,
.section,
.impact-section,
.footer {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  padding: 96px 0 64px;
  overflow: visible;
}

.hero-ambience {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.hero-blob-a {
  width: 500px;
  height: 500px;
  left: 22%;
  top: 0;
  background: rgba(97, 95, 255, 0.2);
}

.hero-blob-b {
  width: 600px;
  height: 600px;
  left: 20%;
  top: 114px;
  background: rgba(173, 70, 255, 0.2);
}

.hero-blob-c {
  width: 400px;
  height: 400px;
  left: 46%;
  top: 357px;
  background: rgba(246, 51, 154, 0.1);
  filter: blur(100px);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 608px) minmax(320px, 1fr);
  align-items: center;
  gap: 48px;
  min-height: 754px;
  overflow: visible;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 754px;
  max-width: 608px;
}

.hero-block-heading {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 10.8px 20.8px;
  border-radius: 999px;
  border: 0.8px solid rgba(124, 134, 255, 0.3);
  background: linear-gradient(
    90deg,
    rgba(97, 95, 255, 0.2) 0%,
    rgba(173, 70, 255, 0.2) 100%
  );
}

.status-pill-icon {
  display: block;
  flex-shrink: 0;
}

.status-pill span {
  color: #a3b3ff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
  line-height: 20px;
}

.hero-title {
  margin: 0;
  display: flex;
  flex-direction: column;
  letter-spacing: -2.4px;
}

.hero-greeting {
  font-size: 64px;
  font-weight: 300;
  line-height: 96px;
  color: #fff;
}

.hero-name {
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 400;
  line-height: 96px;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient-text {
  background: linear-gradient(140deg, var(--primary-1), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-bio {
  position: relative;
  width: 100%;
  min-height: 109px;
}

.hero-bio-glow {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(
    90deg,
    rgba(97, 95, 255, 0.3) 0%,
    rgba(173, 70, 255, 0.3) 50%,
    rgba(246, 51, 154, 0.3) 100%
  );
  filter: blur(40px);
}

.hero-bio-box {
  position: relative;
  min-height: 109px;
  padding: 12px 13px;
  border-radius: 16px;
  border: 0.8px solid rgba(124, 134, 255, 0.3);
  background: linear-gradient(
    90deg,
    rgba(97, 95, 255, 0.1) 0%,
    rgba(173, 70, 255, 0.1) 50%,
    rgba(246, 51, 154, 0.1) 100%
  );
}

.hero-bio-box p {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 1px;
  color: #fff;
}

.hero-block-tagline {
  padding-top: 32px;
}

.hero-note {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 39px;
  background: linear-gradient(90deg, #7c86ff 0%, #c27aff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub-note {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 39px;
  color: rgba(255, 255, 255, 0.6);
}

.hero-block-actions {
  padding-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  border-radius: 999px;
  white-space: nowrap;
}

.btn img {
  display: block;
  flex-shrink: 0;
}

.btn-primary {
  color: #fff;
  padding: 16px 32px;
  background: linear-gradient(90deg, #4f39f6 0%, #9810fa 100%);
  box-shadow: 0 8px 24px rgba(79, 57, 246, 0.35);
}

.btn-secondary {
  color: #fff;
  padding: 17.6px 33.6px;
  border: 1.6px solid rgba(124, 134, 255, 0.3);
  background: transparent;
}

.hero-right {
  position: relative;
  width: 520px;
  height: 520px;
  justify-self: end;
  margin-top: 95px;
  overflow: visible;
  flex-shrink: 0;
}

.orb-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(97, 95, 255, 0.3) 0%,
    rgba(173, 70, 255, 0.2) 50%,
    rgba(246, 51, 154, 0.3) 100%
  );
  filter: blur(58px);
  opacity: 0.91;
}

.orb-orbit {
  position: absolute;
  width: 653px;
  height: 653px;
  left: -89px;
  top: -89px;
  display: grid;
  place-items: center;
}

.orb-ring-dashed {
  width: 475px;
  height: 475px;
  border-radius: 50%;
  border: 1.45px dashed rgba(124, 134, 255, 0.4);
  transform: rotate(31.36deg);
}

.orb-ring-outer {
  position: absolute;
  left: 47px;
  top: 47px;
  width: 377px;
  height: 377px;
  border-radius: 50%;
  border: 1.45px solid rgba(124, 134, 255, 0.5);
  background: linear-gradient(
    135deg,
    rgba(97, 95, 255, 0.2) 0%,
    rgba(173, 70, 255, 0.1) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  box-shadow: 0 22.6px 45.1px rgba(97, 95, 255, 0.2);
  display: grid;
  place-items: center;
  padding: 1.45px;
}

.orb-ring-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 0.72px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(
    135deg,
    rgba(97, 95, 255, 0.1) 0%,
    rgba(173, 70, 255, 0.05) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  display: grid;
  place-items: center;
}

.orb-letter {
  font-size: 116px;
  font-weight: 300;
  line-height: 1;
  background: linear-gradient(123deg, #7c86ff 0%, #c27aff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transform: translateY(-4px);
}

.floating-icon {
  position: absolute;
  width: 66px;
  height: 66px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  padding: 19px;
}

.floating-icon img {
  width: 29px;
  height: 29px;
  display: block;
}

.icon-ribbon {
  left: 390px;
  top: 79px;
  border: 0.72px solid rgba(124, 134, 255, 0.3);
  background: linear-gradient(135deg, rgba(97, 95, 255, 0.2), rgba(173, 70, 255, 0.2));
  box-shadow:
    0 18px 22.6px rgba(97, 95, 255, 0.2),
    0 7.2px 9px rgba(97, 95, 255, 0.2);
}

.icon-users {
  left: 24px;
  top: 313px;
  border: 0.72px solid rgba(194, 122, 255, 0.3);
  background: linear-gradient(135deg, rgba(173, 70, 255, 0.2), rgba(246, 51, 154, 0.2));
  box-shadow:
    0 18px 22.6px rgba(173, 70, 255, 0.2),
    0 7.2px 9px rgba(173, 70, 255, 0.2);
}

.icon-spark {
  left: auto;
  right: -8px;
  top: 251px;
  border: 0.72px solid rgba(251, 100, 182, 0.3);
  background: linear-gradient(135deg, rgba(246, 51, 154, 0.2), rgba(97, 95, 255, 0.2));
  box-shadow:
    0 18px 22.6px rgba(246, 51, 154, 0.2),
    0 7.2px 9px rgba(246, 51, 154, 0.2);
}

.section {
  padding: 82px 0;
}

.section-title {
  margin: 0;
  text-align: center;
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 300;
}

.section-subtitle {
  margin: 20px auto 0;
  text-align: center;
  max-width: 780px;
  font-size: 20px;
  color: var(--text-dim);
}

.card-grid {
  margin-top: 64px;
  display: grid;
  gap: 24px;
}

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

.card {
  border: 1px solid rgba(124, 134, 255, 0.2);
  border-radius: 24px;
  padding: 24px;
  background: linear-gradient(
    135deg,
    rgba(97, 95, 255, 0.1) 0%,
    rgba(173, 70, 255, 0.05) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

.card h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  color: #f3f3ff;
}

.card p {
  margin: 12px 0 0;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 14px;
}

.timeline {
  margin-top: 16px !important;
  color: var(--primary-1) !important;
  font-size: 12px !important;
  font-weight: 500;
}

.metrics-row {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.metric-card {
  border: 1px solid rgba(124, 134, 255, 0.2);
  border-radius: 16px;
  background: linear-gradient(
    158deg,
    rgba(97, 95, 255, 0.1) 0%,
    rgba(173, 70, 255, 0.05) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  padding: 28px 18px;
  text-align: center;
}

.value {
  margin: 0;
  font-size: 48px;
  font-weight: 300;
  color: transparent;
  background: linear-gradient(140deg, var(--primary-1), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
}

.label {
  margin: 8px 0 0;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  font-size: 13px;
}

.clarity-section {
  padding: 72px 0 96px;
}

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

.clarity-title {
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 60px;
  letter-spacing: -1.5px;
  font-weight: 300;
  color: #fff;
}

.clarity-title-accent {
  font-weight: 400;
  background: linear-gradient(90deg, #7c86ff 0%, #c27aff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.clarity-subtitle {
  margin: 22.8px auto 0;
  max-width: 900px;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.6);
}

.clarity-cards {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.clarity-card {
  min-height: 431.6px;
  border: 0.8px solid rgba(124, 134, 255, 0.2);
  border-radius: 24px;
  padding: 32px;
  background: linear-gradient(
    131deg,
    rgba(97, 95, 255, 0.1) 0%,
    rgba(173, 70, 255, 0.05) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

.clarity-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  border: 0.8px solid rgba(124, 134, 255, 0.3);
  background: linear-gradient(
    135deg,
    rgba(97, 95, 255, 0.2) 0%,
    rgba(173, 70, 255, 0.2) 100%
  );
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.clarity-icon-wrap img {
  display: block;
  width: 32px;
  height: 32px;
}

.clarity-card-title {
  margin: 24px 0 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.clarity-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.clarity-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.6);
}

.clarity-list li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 10px;
  border-radius: 50%;
  background: linear-gradient(90deg, #7c86ff 0%, #c27aff 100%);
}

.impact-section {
  position: relative;
  padding: 0 0 96px;
  overflow: hidden;
}

.impact-stage {
  position: relative;
  min-height: 792px;
}

.impact-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1259px, 100%);
  height: 699px;
  border-radius: 24px;
  background: linear-gradient(
    151deg,
    rgba(97, 95, 255, 0.2) 0%,
    rgba(173, 70, 255, 0.2) 50%,
    rgba(246, 51, 154, 0.2) 100%
  );
  filter: blur(40px);
  pointer-events: none;
}

.impact-panel {
  position: relative;
  z-index: 1;
  margin: 93px auto 0;
  width: min(1168px, calc(100% - 92px));
  border: 0.8px solid rgba(124, 134, 255, 0.3);
  border-radius: 24px;
  background: linear-gradient(
    156deg,
    rgba(97, 95, 255, 0.1) 0%,
    rgba(173, 70, 255, 0.1) 100%
  );
}

.impact-panel-content {
  padding: 48px 32px 80px;
}

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

.impact-title {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 60px;
  letter-spacing: -1.5px;
  font-weight: 300;
  color: #fff;
}

.impact-title-accent {
  font-weight: 400;
  background: linear-gradient(90deg, #7c86ff 0%, #c27aff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.impact-subtitle {
  margin: 24px auto 0;
  max-width: 672px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}

.impact-cards {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.impact-card {
  min-height: 205.6px;
  border: 0.8px solid rgba(124, 134, 255, 0.2);
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  background: linear-gradient(
    149deg,
    rgba(97, 95, 255, 0.1) 0%,
    rgba(173, 70, 255, 0.05) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

.impact-value {
  margin: 0;
  font-size: 48px;
  font-weight: 300;
  line-height: 48px;
  background: linear-gradient(154deg, #7c86ff 0%, #c27aff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.impact-card:nth-child(3) .impact-value {
  background: linear-gradient(139deg, #7c86ff 0%, #c27aff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.impact-label {
  margin: 16px 0 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: #fff;
}

.impact-desc {
  margin: 8px auto 0;
  max-width: 285px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.6);
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 64px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.footer-brand {
  margin: 0;
  text-align: center;
  font-size: 24px;
  letter-spacing: 0.02em;
  font-weight: 300;
  color: transparent;
  background: linear-gradient(140deg, var(--primary-1), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
}

.footer-sub {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  font-size: 14px;
}

.footer-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dim);
  font-size: 16px;
}

.footer-row a {
  text-decoration: none;
  color: var(--text-dim);
}

.socials {
  display: flex;
  gap: 16px;
  opacity: 0.6;
}

.socials a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0.8px solid rgba(124, 134, 255, 0.2);
  display: grid;
  place-items: center;
  text-decoration: none;
}

.socials img {
  width: 24px;
  height: 24px;
  display: block;
}

@media (max-width: 1140px) {
  .hero {
    padding-top: 64px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 56px;
  }

  .hero-left {
    min-height: auto;
    gap: 32px;
  }

  .hero-block-tagline,
  .hero-block-actions {
    padding-top: 0;
  }

  .hero-right {
    justify-self: center;
    margin-top: 0;
  }

  .card-grid.three,
  .metrics-row,
  .impact-cards,
  .clarity-cards {
    grid-template-columns: 1fr;
  }

  .clarity-card {
    min-height: auto;
  }

  .impact-stage {
    min-height: auto;
  }

  .impact-glow {
    height: 520px;
  }

  .impact-panel {
    margin-top: 48px;
    width: calc(100% - 32px);
  }

  .footer-row {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1240px, calc(100% - 32px));
  }

  .nav-links {
    gap: 18px;
  }

  .hero-greeting {
    font-size: 46px;
    line-height: 1.1;
  }

  .hero-name {
    font-size: 58px;
    line-height: 1.1;
  }

  .hero-bio-box p {
    font-size: 17px;
    line-height: 1.5;
    letter-spacing: 0.4px;
  }

  .hero-note,
  .hero-sub-note {
    font-size: 20px;
    line-height: 1.5;
  }

  .hero-right {
    width: 320px;
    height: 320px;
  }

  .orb-orbit {
    width: 440px;
    height: 440px;
    left: -60px;
    top: -60px;
  }

  .orb-ring-dashed {
    width: 320px;
    height: 320px;
  }

  .orb-ring-outer {
    left: 32px;
    top: 32px;
    width: 256px;
    height: 256px;
  }

  .orb-letter {
    font-size: 78px;
  }

  .floating-icon {
    width: 52px;
    height: 52px;
    padding: 14px;
  }

  .floating-icon img {
    width: 22px;
    height: 22px;
  }

  .icon-ribbon {
    left: 258px;
    top: 52px;
  }

  .icon-users {
    left: 14px;
    top: 210px;
  }

  .icon-spark {
    left: auto;
    right: -6px;
    top: 168px;
  }
}
