* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
#logout-button {
  margin-left: 20px;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
button:disabled {
  cursor: wait;
}
button,
a,
summary {
  touch-action: manipulation;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #3479b0;
  outline-offset: 5px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.2;
}
svg {
  display: block;
  width: 100%;
  height: 100%;
}
.svg-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon-fill {
  fill: currentColor;
  stroke: none;
}
.site-shell {
  max-width: 1320px;
  margin: auto;
  padding: 0 60px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  top: -70px;
  left: 20px;
  padding: 12px 20px;
  background: var(--ink);
  color: white;
  z-index: 100;
}
.skip-link:focus {
  top: 10px;
}
.header {
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #edf2f6;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1.2px;
}
.brand-bound {
  font-weight: 450;
  margin-left: 5px;
}
.brand-dot {
  color: var(--blue);
}
.brand-mark {
  width: 36px;
  height: 36px;
  color: var(--blue);
  display: grid;
  place-items: center;
}
.brand-mark svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}
.desktop-nav {
  display: flex;
  gap: 33px;
  font-size: 12px;
  font-weight: 650;
  color: var(--ink-soft);
}
.desktop-nav a {
  position: relative;
  padding: 12px 0;
}
.desktop-nav a:after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sky);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.desktop-nav a:hover:after {
  transform: scaleX(1);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 48px;
  padding: 13px 21px;
  border: 0;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.4;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s,
    background 0.25s;
}
.button:hover {
  transform: translateY(-2px);
}
.button:active {
  transform: translateY(1px) scale(0.98);
}
.button-login {
  background: #f2f7fa;
  border: 1px solid #e1ebf1;
}
.button-login .icon {
  width: 17px;
  height: 17px;
}
.button-login .arrow {
  margin-left: 10px;
  width: 15px;
}
.button-primary {
  background: var(--sun);
  color: #36421e;
  box-shadow: 0 5px 0 #f4da7340;
}
.button-primary:hover {
  background: #ffe774;
  box-shadow: 0 8px 18px #dec73325;
}
.button-primary .arrow {
  margin-left: 11px;
}
.hero {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 65px 0 56px;
  min-height: 595px;
}
.eyebrow {
  font-size: 9px;
  letter-spacing: 1.8px;
  font-weight: 800;
  color: var(--muted);
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 9px;
  letter-spacing: 1.65px;
}
.tiny-spark {
  font-size: 22px;
  color: var(--blue);
}
h1 {
  font-size: clamp(48px, 5.5vw, 72px);
  letter-spacing: -4.3px;
  font-weight: 600;
  line-height: 1.1;
  margin: 22px 0 24px;
}
.belong {
  color: var(--blue);
  position: relative;
}
.belong:after {
  content: '';
  position: absolute;
  left: -1px;
  right: 0;
  bottom: -8px;
  height: 10px;
  border-top: 3px solid #bfdff2;
  border-radius: 50%;
  transform: rotate(-3deg);
}
.word-spark {
  position: absolute;
  right: -49px;
  top: -24px;
  font-size: 32px;
  color: #93c4e5;
  font-weight: 400;
}
.full-stop {
  color: var(--blue);
}
.hero-description {
  font-size: 13px;
  line-height: 1.95;
  color: var(--ink-soft);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-top: 28px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 750;
  background: none;
  border: 0;
  padding: 8px 0;
}
.text-link:hover {
  color: var(--blue);
}
.text-link .icon {
  width: 16px;
  height: 16px;
}
.hero-footnote {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 10px;
  color: var(--muted);
}
.little-orbit {
  font-size: 19px;
  color: #90b5cf;
}
.hero-art {
  position: relative;
  height: 423px;
  margin: 0 8px 0 0;
  isolation: isolate;
  border-radius: 150px 46px 130px 46px;
  background: #e2f3fd;
}
.dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}
.floating-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 17px;
  border: 1px solid #fff;
  border-radius: 18px;
  background: #ffffffc9;
  box-shadow: 0 12px 36px #507fae12;
  backdrop-filter: blur(12px);
  position: absolute;
  z-index: 4;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.55;
}
.floating-note small {
  display: block;
  font-size: 9px;
  font-weight: 500;
  color: var(--muted);
}
.note-top {
  top: 92px;
  left: -34px;
  transform: rotate(-6deg);
}
.note-icon {
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
  color: var(--blue);
}
.note-bottom {
  bottom: 52px;
  right: -18px;
  transform: rotate(5deg);
  padding: 10px 17px 10px 9px;
}
.note-bottom img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 12px;
}
.note-bottom > span {
  font-size: 25px;
  color: #81b0cf;
  margin-left: 20px;
}
.art-caption {
  position: absolute;
  bottom: 22px;
  left: 35px;
  font-size: 9px;
  color: #486d88;
  letter-spacing: 0.4px;
}
.art-caption span {
  margin-left: 15px;
}
.values-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  padding: 20px 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 550;
}
.values-strip > span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.values-strip .icon {
  width: 15px;
  height: 15px;
  color: #83a7c1;
}
.values-strip i {
  font-size: 17px;
  color: #aec8da;
  font-style: normal;
}
.daily-section {
  padding-top: 62px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 25px;
  gap: 24px;
}
.section-heading h2 {
  font-size: 28px;
  font-weight: 550;
  letter-spacing: -1px;
  margin-top: 9px;
}
.section-heading > p {
  color: var(--muted);
  font-size: 10px;
  text-align: right;
  line-height: 1.7;
}
.daily-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 22px;
}
.flame-card,
.pulse-card {
  border-radius: var(--radius);
  padding: 29px 31px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  container-type: inline-size;
}
.flame-card {
  background: #f7faf9;
  position: relative;
  overflow: hidden;
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.small-label {
  font-size: 9px;
  letter-spacing: 1.35px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 7px;
}
.small-label .icon {
  width: 14px;
  height: 14px;
  color: var(--blue);
}
.status-chip,
.day-tag {
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.8px;
  padding: 6px 9px;
  border-radius: 7px;
  background: #edf4f9;
  color: #4e6d84;
  white-space: nowrap;
}
.flame-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 26px;
}
.flame-message h3 {
  font-size: 24px;
  font-weight: 550;
  letter-spacing: -0.7px;
  line-height: 1.25;
}
.flame-message p {
  font-size: 11px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 12px;
}
.flame-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-width: 103px;
  padding: 28px 10px 0;
}
.flame-number strong {
  font-size: 61px;
  font-weight: 550;
  letter-spacing: -4px;
  line-height: 1;
}
.flame-number > span:last-child {
  font-size: 9px;
  color: var(--muted);
  margin-top: 8px;
}
.flame-mark {
  position: absolute;
  width: 39px;
  height: 39px;
  right: -1px;
  top: 0;
  background: #e2f0fa;
  border-radius: 13px;
  transform: rotate(12deg);
  display: grid;
  place-items: center;
  color: #82b0d1;
}
.flame-mark svg {
  width: 21px;
  height: 25px;
  fill: currentColor;
}
.week-track {
  display: flex;
  justify-content: space-between;
  gap: 9px;
  margin: 27px 0 21px;
}
.day-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 7px;
  position: relative;
  color: #5f7a90;
  font-size: 9px;
}
.day-step:before {
  content: '';
  position: absolute;
  left: calc(50% + 21px);
  top: 18px;
  width: calc(100% - 33px);
  border-top: 1px dashed #cadde9;
}
.day-step:last-child:before {
  display: none;
}
.day-step .day-circle {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background: #fff8;
  border: 1px solid #dce8f1;
  color: #9fb9cd;
}
.day-circle .icon {
  width: 14px;
  height: 14px;
}
.day-step.complete .day-circle {
  background: var(--sun);
  border-color: #e9ce59;
  color: #56603a;
}
.day-step.today .day-circle {
  border: 1px solid #86b6d7;
  background: #edf7ff;
  color: #497b9e;
  box-shadow: 0 0 0 4px #fff9;
}
.day-step.today > span:last-child {
  color: var(--blue);
  font-weight: 750;
}
.button-claim {
  width: 100%;
  background: #e3f0fa;
  color: #416984;
  border: 1px solid #d6e7f4;
  min-height: 47px;
  justify-content: flex-start;
  padding-left: 19px;
}
.button-claim > .arrow {
  margin-left: auto;
  width: 17px;
}
.button-claim.ready {
  background: var(--sun);
  border-color: #f1d653;
  color: #414a29;
}
.button-claim.claimed {
  background: #eef7ff;
  color: #416984;
}
.claim-footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 9px;
  color: var(--muted);
  margin-top: 12px;
}
.claim-footnote .icon {
  width: 11px;
  height: 11px;
}
.pulse-card {
  background: #fff;
  display: flex;
  flex-direction: column;
}
.connection-state {
  font-size: 9px;
  color: var(--muted);
  display: flex;
  gap: 5px;
  align-items: center;
  white-space: nowrap;
}
.connection-state.live {
  color: #377561;
}
.pulse-card h3 {
  font-size: 23px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.7px;
  margin-top: 31px;
}
.pulse-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
}
.pulse-stats > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  border-right: 1px solid #e7eff5;
}
.pulse-stats > div:first-child {
  align-items: flex-start;
}
.pulse-stats > div:last-child {
  border: 0;
  align-items: flex-end;
}
.pulse-stats .icon {
  width: 17px;
  height: 17px;
  color: #88a9bf;
  margin-bottom: 5px;
}
.pulse-stats strong {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -1px;
  font-weight: 600;
}
.pulse-stats div > span:last-child {
  font-size: 9px;
  color: var(--muted);
}
.online-mark {
  width: 13px;
  height: 13px;
  border: 3px solid #a5c6dd;
  border-radius: 50%;
  margin: 2px 0 7px;
}
.pulse-note {
  font-size: 9px;
  color: var(--muted);
  margin-top: 20px;
  line-height: 1.7;
}
.pulse-link {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 750;
}
.pulse-link .icon {
  width: 15px;
  height: 15px;
}
.milestone-section {
  padding-top: 62px;
}
.milestone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.milestone-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 25px 26px;
  background: linear-gradient(150deg, #fff, #f7fbfe);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
}
.milestone-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.milestone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 21px;
}
.milestone-emblem {
  width: 48px;
  height: 48px;
  background: #eaf5fd;
  display: grid;
  place-items: center;
  border-radius: 16px;
  position: relative;
  color: #87b4d4;
  box-shadow: inset 0 0 0 1px #dfedf7;
}
.milestone-emblem svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}
.emblem-ember {
  color: #6f9cbd;
  transform: rotate(-5deg);
}
.milestone-emblem i {
  position: absolute;
  font-style: normal;
  font-size: 15px;
  right: -5px;
  top: -7px;
  color: #92bbd7;
}
.emblem-celestial {
  color: #5387ad;
  background: #e3effa;
  transform: rotate(5deg);
}
.emblem-celestial svg {
  height: 29px;
  width: 25px;
}
.milestone-card h3 {
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.4px;
}
.milestone-card p {
  font-size: 10px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 11px;
}
.milestone-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding-top: 15px;
  font-size: 9px;
  letter-spacing: 0.7px;
  color: #526e83;
  font-weight: 700;
}
.milestone-bottom .icon {
  width: 12px;
  height: 12px;
}
.milestone-explainer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  color: var(--muted);
  margin-top: 20px;
  text-align: center;
}
.milestone-explainer .icon {
  width: 12px;
  height: 12px;
  color: #91b5ce;
}
.community-bottom {
  display: grid;
  grid-template-columns: 1.22fr 1fr;
  gap: 22px;
  padding-top: 60px;
}
.leaderboard-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 29px;
  min-height: 318px;
  display: flex;
  flex-direction: column;
}
.leaderboard-card h2 {
  font-size: 24px;
  letter-spacing: -0.8px;
  font-weight: 550;
  margin-top: 10px;
}
.leaderboard-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
  padding: 22px 10px;
}
.empty-constellation {
  color: #6c8da6;
  letter-spacing: 9px;
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 12px;
}
.leaderboard-empty h3 {
  font-size: 13px;
  font-weight: 650;
}
.leaderboard-empty p {
  font-size: 10px;
  color: var(--muted);
  margin-top: 7px;
  line-height: 1.8;
}
.board-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e6eef4;
  padding-top: 15px;
  font-size: 9px;
  color: var(--muted);
}
.board-footer .icon {
  width: 11px;
  height: 11px;
  color: #a1bbcd;
}
.belong-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #e1f2fe;
  isolation: isolate;
  min-height: 318px;
}
.belong-card img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 50%;
  z-index: -1;
}
.belong-card:after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, #e1f2fe 5%, #e1f2fec9 44%, #e1f2fe00 80%);
}
.belong-copy {
  padding: 35px 28px;
}
.belong-copy .eyebrow {
  font-size: 9px;
  letter-spacing: 1px;
}
.belong-copy h2 {
  font-size: 27px;
  font-weight: 550;
  letter-spacing: -1px;
  margin-top: 13px;
}
.belong-copy p {
  font-size: 10px;
  line-height: 1.85;
  color: #557992;
  margin-top: 13px;
}
.belong-copy a {
  margin-top: 21px;
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  margin: 68px 0 58px;
}
.faq h2 {
  font-size: 27px;
  font-weight: 550;
  letter-spacing: -1px;
  margin-top: 11px;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.faq details:first-child {
  padding-top: 0;
}
.faq summary {
  font-size: 11px;
  font-weight: 650;
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  min-height: 25px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary span {
  font-size: 20px;
  font-weight: 400;
  color: #8dabbe;
}
.faq details[open] summary span {
  transform: rotate(45deg);
}
.faq details p {
  font-size: 11px;
  line-height: 1.85;
  color: var(--muted);
  padding: 14px 25px 0 0;
}
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  min-height: 106px;
  gap: 24px;
}
.footer .brand {
  font-size: 20px;
}
.footer .brand-mark {
  width: 27px;
  height: 27px;
}
.footer > span {
  font-size: 10px;
  color: var(--muted);
}
.footer > div {
  display: flex;
  align-items: center;
  gap: 22px;
}
.footer > div > a {
  padding: 12px;
  color: #64869d;
}
.preview-label {
  font-size: 9px;
  letter-spacing: 1.2px;
  font-weight: 700;
  color: #587085;
  border: 1px solid #dce8ef;
  border-radius: 6px;
  padding: 5px 7px;
}
dialog {
  border: 1px solid #deebf5;
  border-radius: 32px;
  padding: 37px;
  width: min(460px, calc(100% - 32px));
  color: var(--ink);
  box-shadow: 0 40px 120px #17395533;
}
dialog::backdrop {
  background: #233c5255;
  backdrop-filter: blur(7px);
}
.dialog-close {
  position: absolute;
  right: 17px;
  top: 12px;
  border: 0;
  background: none;
  font-size: 26px;
  color: var(--muted);
  width: 40px;
  height: 40px;
}
.dialog-star {
  display: block;
  font-size: 44px;
  line-height: 1;
  color: #8bb8d7;
  margin-bottom: 21px;
}
dialog h2 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
#dialog-copy p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 12px;
}
.dialog-done {
  margin-top: 14px;
  min-width: 120px;
}
.noscript-note {
  padding: 16px;
  text-align: center;
  background: var(--sky-pale);
}
[hidden] {
  display: none !important;
}
.leaderboard-list {
  padding: 0;
  margin: 16px 0;
  list-style: none;
}
.leaderboard-list li {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #edf3f7;
  gap: 14px;
  font-size: 11px;
}
.leaderboard-list li > span:first-child {
  color: var(--muted);
  width: 18px;
}
.leaderboard-list strong {
  margin-left: auto;
  color: var(--blue);
}
.leaderboard-avatar {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: #edf6fc;
  color: var(--blue);
  font-size: 11px;
}
.preview-bar {
  position: sticky;
  top: 8px;
  width: fit-content;
  max-width: calc(100% - 24px);
  margin: 8px auto 12px;
  padding: 10px 15px;
  background: #233c52;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px #233c5233;
  z-index: 20;
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.preview-bar select {
  font: inherit;
  background: #fff;
  color: var(--ink);
  border: 0;
  border-radius: 5px;
  padding: 5px;
}
.preview-bar a {
  text-decoration: underline;
}
.flame-card.is-active .flame-mark {
  background: var(--sun);
  color: #59603b;
}
.flame-card.is-active .status-chip {
  background: #fff2a9;
  color: #6c621f;
}
.flame-card.celebrate .flame-mark {
  animation: celebrate 0.7s var(--ease);
}
@keyframes celebrate {
  0% {
    transform: rotate(12deg) scale(0.8);
  }
  50% {
    transform: rotate(-12deg) scale(1.25);
  }
  100% {
    transform: rotate(12deg) scale(1);
  }
}
@container (max-width:380px) {
  .flame-message h3 {
    font-size: 20px;
  }
  .flame-message p {
    font-size: 10px;
  }
  .flame-number {
    min-width: 75px;
  }
  .flame-number strong {
    font-size: 52px;
  }
  .status-chip {
    font-size: 9px;
  }
  .week-track {
    gap: 5px;
  }
  .day-step .day-circle {
    width: 31px;
    height: 31px;
  }
  .day-step:before {
    top: 15px;
    left: calc(50% + 17px);
    width: calc(100% - 25px);
  }
  .button-claim {
    font-size: 11px;
  }
}
@media (min-width: 1600px) {
  .site-shell {
    max-width: 1420px;
  }
  .hero {
    gap: 75px;
  }
  .hero-art {
    height: 450px;
  }
  .hero {
    min-height: 640px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-copy h1 {
    font-size: 80px;
  }
}
@media (max-width: 1100px) {
  .site-shell {
    padding: 0 35px;
  }
  .hero {
    gap: 25px;
  }
  .hero-art {
    height: 370px;
  }
      .note-top {
    left: -15px;
    top: 90px;
  }
  .note-bottom {
    right: -10px;
  }
  .hero-actions {
    gap: 15px;
  }
  .hero-actions .text-link {
    font-size: 9px;
  }
  .hero .eyebrow {
    font-size: 9px;
  }
  .desktop-nav {
    gap: 22px;
  }
  .values-strip {
    gap: 26px;
  }
  .flame-card,
  .pulse-card {
    padding: 25px;
  }
  .section-heading h2 {
    font-size: 25px;
  }
}
@media (max-width: 850px) {
  .header {
    height: 94px;
  }
  .desktop-nav {
    gap: 18px;
    font-size: 10px;
  }
  .button-login {
    padding: 12px 15px;
  }
  .button-login .arrow {
    display: none;
  }
  .brand {
    font-size: 22px;
  }
  .hero {
    gap: 24px;
    min-height: 510px;
    padding: 44px 0;
  }
  .hero h1 {
    font-size: 54px;
    letter-spacing: -3px;
  }
  .hero-art {
    height: 345px;
  }
  .hero-description {
    font-size: 11px;
  }
  .hero-actions {
    flex-wrap: wrap;
    gap: 10px;
  }
  .hero-footnote {
    font-size: 9px;
    margin-top: 15px;
  }
  .floating-note {
    padding: 10px 12px;
    font-size: 9px;
  }
  .floating-note small {
    font-size: 9px;
  }
  .note-top {
    left: -13px;
    top: 88px;
  }
  .note-bottom {
    right: -7px;
    bottom: 45px;
  }
      .note-bottom > span {
    margin-left: 7px;
  }
  .values-strip {
    gap: 18px;
    font-size: 9px;
  }
  .values-strip > span {
    gap: 7px;
  }
  .values-strip i {
    font-size: 13px;
  }
  .daily-grid {
    grid-template-columns: 1.25fr 1fr;
    gap: 16px;
  }
  .flame-card,
  .pulse-card {
    padding: 22px;
  }
  .pulse-card h3 {
    font-size: 21px;
  }
  .pulse-stats strong {
    font-size: 24px;
  }
  .milestone-grid {
    gap: 13px;
  }
  .milestone-card {
    padding: 21px 19px;
  }
  .milestone-card h3 {
    font-size: 16px;
  }
  .milestone-bottom {
    font-size: 9px;
    letter-spacing: 0.2px;
  }
  .section-heading h2 {
    font-size: 24px;
  }
  .community-bottom {
    grid-template-columns: 1.1fr 1fr;
    gap: 16px;
  }
  .leaderboard-card {
    padding: 24px;
  }
  .belong-copy {
    padding: 30px 22px;
  }
  .belong-copy h2 {
    font-size: 24px;
  }
  .footer {
    gap: 15px;
  }
  .footer > span {
    font-size: 9px;
  }
}
@media (max-width: 700px) {
  .site-shell {
    padding: 0 23px;
  }
  .header {
    height: 87px;
    gap: 10px;
  }
  .brand {
    font-size: 22px;
  }
  .brand-mark {
    width: 27px;
    height: 27px;
  }
  .brand-mark svg {
    width: 25px;
  }
  .desktop-nav {
    display: none;
  }
  .button-login {
    font-size: 10px;
    padding: 10px 12px;
    min-height: 43px;
    gap: 7px;
  }
  .button-login .icon {
    width: 15px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 35px 0 32px;
    gap: 35px;
  }
  .hero-copy {
    padding: 0 3px;
  }
  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 1.4px;
  }
  .hero h1 {
    font-size: 64px;
    letter-spacing: -3.7px;
    margin: 17px 0 23px;
  }
  .hero-description {
    font-size: 12px;
    max-width: 365px;
  }
  .hero-actions {
    gap: 22px;
    margin-top: 25px;
  }
  .hero-actions .text-link {
    font-size: 10px;
  }
  .hero-footnote {
    margin-top: 20px;
    font-size: 9px;
  }
  .hero-art {
    height: 340px;
    margin: 0 12px;
    border-radius: 105px 35px 95px 35px;
  }
    .note-top {
    left: -15px;
    top: 70px;
    font-size: 10px;
  }
  .note-bottom {
    right: -11px;
    bottom: 45px;
    font-size: 11px;
  }
  .floating-note small {
    font-size: 9px;
  }
      .values-strip {
    gap: 14px;
    justify-content: space-around;
    padding: 17px 0;
    flex-wrap: wrap;
    row-gap: 12px;
  }
  .values-strip > span {
    font-size: 9px;
  }
  .values-strip i {
    display: none;
  }
  .values-strip > span:last-child {
    width: 100%;
    justify-content: center;
  }
  .daily-section,
  .milestone-section {
    padding-top: 40px;
  }
  .section-heading {
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
  }
  .section-heading h2 {
    font-size: 25px;
    line-height: 1.25;
    letter-spacing: -0.8px;
    max-width: 310px;
  }
  .section-heading > p {
    display: none;
  }
  .daily-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }
  .flame-card,
  .pulse-card {
    padding: 25px;
  }
  .flame-message h3 {
    font-size: 24px;
  }
  .flame-message p {
    font-size: 11px;
  }
  .flame-number {
    min-width: 94px;
  }
  .flame-number strong {
    font-size: 62px;
  }
  .week-track {
    margin-top: 24px;
  }
  .pulse-card h3 {
    font-size: 25px;
    margin-top: 23px;
  }
  .pulse-stats {
    margin-top: 24px;
  }
  .pulse-stats strong {
    font-size: 29px;
  }
  .pulse-stats > div:first-child,
  .pulse-stats > div:last-child {
    align-items: center;
  }
  .pulse-note {
    text-align: center;
  }
  .pulse-link {
    border-top: 1px solid #edf2f6;
    padding-top: 17px;
    margin-top: 20px;
  }
  .milestone-section .section-heading {
    flex-direction: column;
    gap: 8px;
  }
  .milestone-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .milestone-card {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    column-gap: 13px;
    padding: 20px;
    align-items: center;
    position: relative;
  }
  .milestone-top {
    display: contents;
  }
  .milestone-emblem {
    grid-column: 1;
    grid-row: 1/3;
    width: 49px;
    height: 49px;
  }
  .day-tag {
    font-size: 9px;
    padding: 5px 7px;
  }
  .milestone-top > .day-tag {
    grid-column: 3;
    grid-row: 1;
  }
  .milestone-card h3 {
    grid-column: 2;
    grid-row: 1;
    font-size: 16px;
  }
  .milestone-card p {
    grid-column: 2/4;
    grid-row: 2;
    font-size: 10px;
    margin-top: 6px;
  }
  .milestone-card p br {
    display: none;
  }
  .milestone-bottom {
    grid-column: 2/4;
    grid-row: 3;
    margin-top: 13px;
    padding-top: 10px;
  }
  .milestone-explainer {
    align-items: flex-start;
    font-size: 9px;
    text-align: left;
    line-height: 1.8;
    padding: 0 5px;
  }
  .milestone-explainer .icon {
    margin-top: 3px;
  }
  .community-bottom {
    grid-template-columns: 1fr;
    padding-top: 38px;
    gap: 17px;
  }
  .leaderboard-card {
    min-height: 310px;
    padding: 25px;
  }
  .belong-card {
    min-height: 300px;
  }
  .belong-copy {
    padding: 32px 25px;
  }
  .belong-copy h2 {
    font-size: 28px;
  }
  .belong-copy p {
    font-size: 12px;
  }
  .belong-copy .eyebrow {
    font-size: 9px;
  }
  .belong-card img {
    object-position: 50% 50%;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 42px 0;
  }
  .faq h2 {
    font-size: 26px;
  }
  .faq summary {
    font-size: 12px;
    padding: 4px 0;
  }
  .faq details p {
    font-size: 12px;
  }
  .footer {
    flex-wrap: wrap;
    padding: 24px 0;
    gap: 13px;
  }
  .footer > .brand {
    font-size: 21px;
  }
  .footer > span {
    order: 3;
    width: 100%;
    font-size: 10px;
    margin-left: 36px;
  }
  .footer > div {
    gap: 8px;
  }
  .preview-label {
    font-size: 9px;
  }
  .footer > div > a {
    padding: 8px;
  }
  .footer .icon {
    width: 17px;
  }
  .flame-card .status-chip {
    font-size: 9px;
  }
}
@media (max-width: 370px) {
  .site-shell {
    padding: 0 16px;
  }
  .brand {
    font-size: 19px;
    gap: 5px;
  }
  .button-login {
    font-size: 9px;
    padding: 9px;
  }
  .hero h1 {
    font-size: 56px;
  }
  .hero-actions {
    gap: 13px;
  }
  .hero .eyebrow {
    font-size: 9px;
  }
  .hero-art {
    height: 310px;
  }
  .flame-card,
  .pulse-card {
    padding: 21px;
  }
  .milestone-card {
    column-gap: 10px;
    grid-template-columns: 45px 1fr auto;
    padding: 17px;
  }
  .milestone-emblem {
    width: 40px;
    height: 40px;
  }
  .milestone-card h3 {
    font-size: 14px;
  }
}
.milestone-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--line, #e3edf4);
  font-size: 12px;
  color: var(--muted, #587085);
}
.milestone-line p {
  line-height: 2;
}
.milestone-line strong {
  color: var(--ink, #233c52);
  margin-right: 4px;
}
.milestone-line p span {
  margin: 0 12px;
}
.community-bottom {
  grid-template-columns: 1fr;
}
.leaderboard-empty {
  min-height: 150px;
}
.button {
  transition:
    transform 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}
.button:active:not(:disabled) {
  transform: scale(0.97);
}
.button .arrow {
  transition: transform 240ms ease;
}
.button:hover .arrow {
  transform: translate(2px, -2px);
}
.note-bottom {
  animation: note-drift 7s ease-in-out infinite;
}
@keyframes note-drift {
  50% {
    translate: 0 -6px;
  }
}
@keyframes sky-breathe {
  to {
    scale: 1.04;
  }
}
@media (max-width: 700px) {
  .milestone-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
  }
  .milestone-line p span {
    margin: 0 5px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  }
#claim-button {
  scroll-margin-block: 120px;
}
