:root {
  --bg: #050505;
  --panel: #101010;
  --panel-soft: #181818;
  --text: #f7f4ee;
  --muted: #bfb8ad;
  --line: rgba(255, 255, 255, 0.08);
  --cta: #b8e247;
  --blue: #2da8ff;
  --green: #9df44d;
  --orange: #ffb347;
  --red: #ff5349;
  --lime: #d8ec63;
  --pink: #f27bb4;
  --cyan: #68d8f7;
  --yellow: #f7cb51;
  --purple: #8c6bff;
  --coral: #ff865e;
  --gold: #ffb84d;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(184, 226, 71, 0.12), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(45, 168, 255, 0.12), transparent 22%),
    linear-gradient(180deg, #020202 0%, #050505 45%, #080808 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

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

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

.page-shell {
  width: min(100%, 1180px);
  margin: 0 auto 40px;
  padding: 20px 20px 20px;
}

.topbar {
  padding: 4px 0 18px;
}

.top-links {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: thin;
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
}

.top-links::-webkit-scrollbar {
  height: 6px;
}

.top-links a:hover,
.top-links a:focus-visible {
  color: var(--text);
}

.landing {
  display: grid;
  gap: 56px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: 32px;
  align-items: stretch;
  padding: 18px 18px 8px;
}

.hero-copy,
.hero-side {
  height: 100%;
}

.brand {
  margin: 10px 0;
  font-family: "Roboto", sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 700;
  line-height: 0.9;
}

.hero h1{
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.section-block h2 {
  margin: 0;
  margin-bottom: 20px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 420px;
  font-size: clamp(2.1rem, 4.5vw, 4.2rem);
  line-height: 0.92;
}

.intro {
  max-width: 380px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
}

.hero-side {
  display: grid;
  justify-items: center;
  align-content: stretch;
  gap: 26px;
  padding-top: 10px;
  width: 100%;
}

.cta,
.share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--cta);
  color: #101010;
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: 0 10px 20px rgba(184, 226, 71, 0.26);
}

.hero-orbit {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 10 / 7;
  margin: 0 auto;
  --orbit-center-x: 50%;
  --orbit-center-y: 50%;
}

.orbit-cta {
  position: absolute;
  top: calc(var(--orbit-center-y) - 28px);
  left: 50%;
  z-index: 3;
  min-width: 236px;
  min-height: 94px;
  font-size: 1.35rem;
  transform: translateX(-50%);
}

.goal-chip {
  position: absolute;
  top: var(--orbit-center-y);
  left: var(--orbit-center-x);
  min-width: 0;
  animation: chip-orbit var(--orbit-duration, 7s) linear infinite;
  animation-delay: var(--orbit-delay, 0s);
  will-change: transform;
}

.goal-ring {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  aspect-ratio: 1 !important;
  width: 80px;
  padding: 10px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: 
    linear-gradient(#000, #000) padding-box, 
    linear-gradient(135deg, var(--gradient-start), var(--gradient-end)) border-box;
    
  /* 3. This ensures the gradient follows the border-radius */
  background-origin: border-box;
}

.goal-chip {
  --orbit-scale-y: calc(var(--orbit-radius-y) / var(--orbit-radius-x));
}

.goal-ring > * {
  position: relative;
  z-index: 1;
}

.goal-ring {
  transform: scaleY(calc(1 / var(--orbit-scale-y)));
}

.goal-chip-icon {
  font-size: 1.2rem;
  line-height: 0.8;
}

.goal-chip-name {
  text-align: center;
  max-width: 88px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
}

.chip-1 {
  --orbit-radius-x: 198px;
  --orbit-radius-y: 136px;
  --orbit-start: 150deg;
  --orbit-duration: 5.2s;
  --orbit-delay: -0.6s;
}

.chip-2 {
  --orbit-radius-x: 194px;
  --orbit-radius-y: 130px;
  --orbit-start: 118deg;
  --orbit-duration: 4.8s;
  --orbit-delay: -1.8s;
}

.chip-3 {
  --orbit-radius-x: 202px;
  --orbit-radius-y: 138px;
  --orbit-start: 34deg;
  --orbit-duration: 5.8s;
  --orbit-delay: -2.7s;
}

.chip-4 {
  --orbit-radius-x: 206px;
  --orbit-radius-y: 144px;
  --orbit-start: 188deg;
  --orbit-duration: 5.1s;
  --orbit-delay: -1.1s;
}

.chip-5 {
  --orbit-radius-x: 200px;
  --orbit-radius-y: 148px;
  --orbit-start: 90deg;
  --orbit-duration: 5.9s;
  --orbit-delay: -3.4s;
}

.chip-6 {
  --orbit-radius-x: 204px;
  --orbit-radius-y: 140px;
  --orbit-start: -8deg;
  --orbit-duration: 5.4s;
  --orbit-delay: -2.2s;
}

.chip-7 {
  --orbit-radius-x: 210px;
  --orbit-radius-y: 152px;
  --orbit-start: 214deg;
  --orbit-duration: 6.1s;
  --orbit-delay: -4.1s;
}

.chip-8 {
  --orbit-radius-x: 208px;
  --orbit-radius-y: 146px;
  --orbit-start: 74deg;
  --orbit-duration: 5.5s;
  --orbit-delay: -5s;
}

@keyframes chip-orbit {
  from {
    transform:
      translate(-50%, -50%)
      scaleY(var(--orbit-scale-y))
      rotate(var(--orbit-start))
      translateX(var(--orbit-radius-x))
      rotate(calc(-1 * var(--orbit-start)));
  }

  to {
    transform:
      translate(-50%, -50%)
      scaleY(var(--orbit-scale-y))
      rotate(calc(var(--orbit-start) + 360deg))
      translateX(var(--orbit-radius-x))
      rotate(calc(-1 * (var(--orbit-start) + 360deg)));
  }
}

.section-block {
  position: relative;
  display: grid;
  gap: 28px;
  padding: 42px 28px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 32px;
  background: rgba(7, 7, 7, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 22px 54px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transition:
    background 520ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 520ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.section-block::before,
.section-block::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  height: 1px;
  pointer-events: none;
}

.section-block::before {
  top: 0;
  background: linear-gradient(90deg, transparent, rgba(71, 208, 226, 0.01), transparent);
}

.section-block::after {
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(45, 168, 255, 0.01), transparent);
}

.goals.section-block {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.008), rgba(255, 255, 255, 0.003)),
    radial-gradient(circle at top left, rgba(45, 168, 255, 0.04), transparent 34%),
    radial-gradient(circle at bottom right, rgba(0, 74, 173, 0.03), transparent 34%),
    rgba(7, 10, 15, 0.54);
}

.goals.section-block.section-active {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    radial-gradient(circle at top left, rgba(45, 168, 255, 0.04), transparent 34%),
    radial-gradient(circle at bottom right, rgba(0, 74, 173, 0.24), transparent 34%),
    rgba(9, 16, 28, 0.96);
  border-color: rgba(45, 168, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 34px 90px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(45, 168, 255, 0.06);
  transform: translateY(-4px);
}

.achievements.section-block {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.008), rgba(255, 255, 255, 0.003)),
    radial-gradient(circle at 20% 25%, rgba(255, 134, 94, 0.018), transparent 32%),
    radial-gradient(circle at 82% 80%, rgba(140, 107, 255, 0.018), transparent 34%),
    rgba(10, 8, 9, 0.56);
}

.achievements.section-block.section-active {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    radial-gradient(circle at 20% 25%, rgba(255, 134, 94, 0.26), transparent 32%),
    radial-gradient(circle at 82% 80%, rgba(140, 107, 255, 0.24), transparent 34%),
    rgba(28, 12, 18, 0.96);
  border-color: rgba(255, 134, 94, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 34px 90px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(140, 107, 255, 0.08);
  transform: translateY(-4px);
}

.status.section-block {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.008), rgba(255, 255, 255, 0.003)),
    radial-gradient(circle at top right, rgba(104, 216, 247, 0.018), transparent 32%),
    radial-gradient(circle at bottom left, rgba(247, 203, 81, 0.018), transparent 36%),
    rgba(7, 9, 11, 0.56);
}

.status.section-block.section-active {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    radial-gradient(circle at top right, rgba(104, 216, 247, 0.26), transparent 32%),
    radial-gradient(circle at bottom left, rgba(247, 203, 81, 0.24), transparent 36%),
    rgba(10, 18, 24, 0.96);
  border-color: rgba(104, 216, 247, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 34px 90px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(104, 216, 247, 0.08);
  transform: translateY(-4px);
}

.section-block h2 {
  text-align: center;
  font-size: clamp(1rem, 2.7vw, 2rem);
}

.goal-grid {
  display: grid;
  gap: 34px;
}

.goal-card {
  display: grid;
  grid-template-columns: minmax(180px, 320px) 120px minmax(220px, 1fr);
  gap: 18px;
  align-items: center;
}

.goal-card-right {
  grid-template-columns: minmax(220px, 1fr) 120px minmax(180px, 320px);
}

.goal-card-health {
  padding-top: 8px;
}

.goal-media {
  position: relative;
  height: 250px;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(135deg, #242424, #111111);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.rotate-left {
  transform: rotate(-8deg);
}

.rotate-right {
  transform: rotate(8deg);
}

.goal-media img,
.story-card img {
  position: absolute;
  inset: 0;
}

.image-fallback {
  display: none;
}

.goal-badge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 110px;
  height: 110px;
  padding: 10px;
  border-radius: 50%;
  border: 3px solid transparent;
  background:
    linear-gradient(#090909, #090909) padding-box,
    linear-gradient(135deg, var(--gradient-start), var(--gradient-end)) border-box;
  background-origin: border-box;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  text-align: center;
}

.goal-badge-icon {
  font-size: 1.35rem;
  line-height: 1;
}

.goal-badge-name {
  max-width: 78px;
  font-size: 0.92rem;
  line-height: 1.02;
}

.badge-sport {
  --gradient-start: #5de0e6;
  --gradient-end: #004aad;
}

.badge-knowledge {
  --gradient-start: #0cc0df;
  --gradient-end: #ffde59;
}

.badge-ecology {
  --gradient-start: #89d957;
  --gradient-end: #c9e265;
}

.badge-connection {
  --gradient-start: #8c52ff;
  --gradient-end: #00bf63;
}

.badge-creativity {
  --gradient-start: #5170ff;
  --gradient-end: #ff66c4;
}

.goal-copy {
  font-size: clamp(0.8rem, 1.4vw, 1rem);
  font-weight: 700;
  line-height: 1.28;
}

.goal-copy p {
  margin: 0;
}

.goal-copy.right-align{
  text-align: right;
}

.goal-users {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.95em;
}

@media (min-width: 901px) {
  .goal-card,
  .goal-card-right {
    align-items: end;
  }

  .goal-card {
    grid-template-columns: minmax(320px, 480px) 30px minmax(310px, 1fr);
  }

  .goal-card-right {
    grid-template-columns: minmax(310px, 1fr) 30px minmax(320px, 480px);
  }

  .goal-media {
    height: 285px;
  }

  .goal-copy {
    align-self: center;
  }

  .goal-badge {
    position: relative;
    align-self: end;
    justify-self: start;
    z-index: 2;
    margin: 0 0 5px -72px;
  }

  .goal-badge.right-align {
    justify-self: end;
    margin: 0 -72px 5px 0;
  }
}

.story-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.story-card {
  position: relative;
  min-height: 380px;
  border-radius: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #1b1b1b, #0b0b0b);
  border: 1px solid var(--line);
}

.story-card-featured {
  min-height: 420px;
}

.story-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.48));
}

.story-overlay p {
  max-width: 220px;
  margin: 0;
  font-size: clamp(1.2rem, 1.9vw, 1.5rem);
  font-weight: 800;
  line-height: 1.04;
  text-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
}

.story-card-featured .story-overlay {
  justify-content: flex-end;
  gap: 16px;
}

.story-card-featured .story-overlay p {
  max-width: 180px;
}

.story-plus {
  align-self: flex-end;
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 800;
}

.plus-purple {
  background: linear-gradient(135deg, #9567ff, #bd75ff);
}

.plus-coral {
  background: linear-gradient(135deg, #ff7b56, #ff9c68);
}

.plus-gold {
  background: linear-gradient(135deg, #ff9c4a, #ffc45f);
}

.plus-connection {
  background: linear-gradient(135deg, #8c52ff, #00bf63);
}

.plus-creativity {
  background: linear-gradient(135deg, #5170ff, #ff66c4);
}

.plus-knowledge {
  background: linear-gradient(135deg, #0cc0df, #ffde59);
}

.status-layout {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.progress-card {
  display: grid;
  justify-items: center;
  justify-self: center;
  padding: 18px 16px;
  background: linear-gradient(135deg, #3b3b3b, transparent);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.status-calendar-image {
  width: min(100%, 380px);
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}



.status-copy {
  justify-self: center;
  text-align: center;
  font-size: clamp(0.8rem, 1.55vw, 1.2rem);
  font-weight: 700;
  line-height: 1.35;
}

.status-copy p {
  margin: 0 0 16px;
}

.status-lead {
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  line-height: 1.2;
}

.status-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.status-list-wrap {
  display: inline-block;
  text-align: left;
}

.status-copy li + li {
  margin-top: 6px;
}

.site-footer {
  padding: 40px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.8rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--text);
}

@media (min-width: 1200px) {
  .page-shell {
    width: min(100%, 1320px);
    padding-left: 28px;
    padding-right: 28px;
  }

  .section-block {
      padding: 48px 150px;
  }

  .goal-card {
      grid-template-columns: minmax(380px, 600px) 120px minmax(220px, 1fr);
  }

  .goal-card-right {
      grid-template-columns: minmax(220px, 1fr) 120px minmax(380px, 600px);
  }

  .goal-media {
    height: 320px;
  }
}

@media (max-width: 900px) {
  body {
    background: #000000;
  }

  .brand {
    width: 100%;
  }

  .hero,
  .status-layout,
  .goal-card,
  .goal-card-right {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-side {
    background: #000000;
    box-shadow: none;
    border: none;
  }


  .hero-side {
    justify-items: start;
  }

  .hero-orbit {
    width: min(100%, 460px);
    --orbit-center-y: 50%;
  }

  .goal-ring {
    width: 72px;
  }
  .goal-chip-icon {
  font-size: 0.9rem;
}

.goal-chip-name {
  font-size: 0.7rem;
  font-weight: 700;
}

  .chip-1 {
    --orbit-radius-x: 176px;
    --orbit-radius-y: 122px;
  }

  .chip-2 {
    --orbit-radius-x: 172px;
    --orbit-radius-y: 118px;
  }

  .chip-3 {
    --orbit-radius-x: 180px;
    --orbit-radius-y: 124px;
  }

  .chip-4 {
    --orbit-radius-x: 184px;
    --orbit-radius-y: 128px;
  }

  .chip-5 {
    --orbit-radius-x: 178px;
    --orbit-radius-y: 132px;
  }

  .chip-6 {
    --orbit-radius-x: 182px;
    --orbit-radius-y: 126px;
  }

  .chip-7 {
    --orbit-radius-x: 188px;
    --orbit-radius-y: 136px;
  }

  .chip-8 {
    --orbit-radius-x: 186px;
    --orbit-radius-y: 130px;
  }

  .goal-card,
  .goal-card-right {
    gap: 14px;
    padding: 0 100px;
  }

  .goal-media {
    order: 1;
    height: 250px;
  }

  .goal-badge {
    order: 2;
    margin: -68px auto 0 18px;
    position: relative;
    z-index: 2;
  }

  .goal-badge.right-align {
    margin-left: auto;
    margin-right: 18px;
  }

  .goal-copy {
    order: 3;
    margin-top: 4px;
  }

  .rotate-left,
  .rotate-right {
    transform: none;
  }

  .story-strip {
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 72vw);
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    padding-bottom: 8px;
  }

  .story-card,
  .story-card-featured {
    min-height: 320px;
    scroll-snap-align: start;
  }

 

  .progress-card {
    max-width: 360px;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .hero-copy {
    padding-left: 20%;
    padding-right: 40px;
  }
  .hero h1 {
    max-width: 800px;
  }

  .status-calendar-image {
    width: min(100%, 320px);
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 16px 14px 70px;
  }

  .landing {
    gap: 48px;
  }

  .section-block {
    padding: 34px 18px;
    border-radius: 24px;
  }

  .hero {
    padding: 8px 6px 0;
  }

  .top-links {
    gap: 12px;
    font-size: 0.74rem;
  }

  .orbit-cta {
    width: calc(100% - 88px);
    max-width: 150px;
    min-width: 0;
    min-height: 56px;
    font-size: 1rem;
  }

  .hero-orbit {
    width: min(100%, 400px);
    --orbit-center-y: 50%;
  }

  .goal-ring {
    width: 50px;
  }
    .goal-chip-icon {
  font-size: 0.7rem;
}

 .goal-card,
  .goal-card-right {
    gap: 14px;
    padding: 0 ;
  }


.goal-chip-name {
  font-size: 0.45rem;
  font-weight: 700;
}

  .chip-1 {
    --orbit-radius-x: 108px;
    --orbit-radius-y: 78px;
  }

  .chip-2 {
    --orbit-radius-x: 104px;
    --orbit-radius-y: 74px;
  }

  .chip-3 {
    --orbit-radius-x: 110px;
    --orbit-radius-y: 80px;
  }

  .chip-4 {
    --orbit-radius-x: 112px;
    --orbit-radius-y: 82px;
  }

  .chip-5 {
    --orbit-radius-x: 108px;
    --orbit-radius-y: 86px;
  }

  .chip-6 {
    --orbit-radius-x: 110px;
    --orbit-radius-y: 84px;
  }

  .chip-7 {
    --orbit-radius-x: 116px;
    --orbit-radius-y: 90px;
  }

  .chip-8 {
    --orbit-radius-x: 114px;
    --orbit-radius-y: 88px;
  }

  .goal-media {
    height: 180px;
  }

  .goal-badge {
    width: 94px;
    height: 94px;
    margin-left: 14px;
    margin-right: auto;
  }

  .goal-badge-icon {
    font-size: 1.1rem;
  }

  .goal-badge-name {
    max-width: 66px;
    font-size: 0.76rem;
  }
  .goal-badge.right-align {
    margin-left: auto;
    margin-right: 14px;
  }

  .status-layout {
    gap: 24px;
  }
}
