html:has(body.home-page),
body.home-page {
  background: #fff;
}

body.home-page {
  --home-ink: #182433;
  --home-copy: #526173;
  --home-line: #e7e9ed;
  --home-soft: #f6f7f8;
  overflow-x: hidden;
}

.home-page .site-nav-page {
  box-shadow: none;
}

.home-hero,
.home-features,
.home-closing {
  width: min(var(--content-shell-width, 1180px), calc(100vw - var(--content-shell-gutter, 36px)));
  margin-inline: auto;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  align-items: start;
  gap: clamp(42px, 7vw, 96px);
  min-height: auto;
  padding: 68px 0 clamp(72px, 10vh, 112px);
}

.home-hero-copy {
  position: relative;
  z-index: 2;
}

.home-kicker,
.home-feature-kicker {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 680px;
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(40px, 5.4vw, 66px);
  font-weight: 650;
  letter-spacing: -.045em;
  line-height: 1.04;
}

.home-lead {
  max-width: 630px;
  margin: 28px 0 0;
  color: var(--home-copy);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.72;
}

.home-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 34px;
}

.home-primary-action,
.home-inline-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.home-primary-action {
  min-height: 52px;
  padding: 13px 20px 13px 23px;
  background: #1f1f1d;
  color: #fff;
  box-shadow: 0 12px 26px rgba(20, 24, 32, .14);
  font-size: 14px;
}

.home-primary-action:hover,
.home-primary-action:focus-visible {
  background: #145bb4;
  box-shadow: 0 16px 34px rgba(20, 91, 180, .23);
  transform: translateY(-2px);
}

.home-text-action,
.home-inline-action {
  color: var(--primary);
}

.home-text-action {
  padding: 8px 2px;
  font-size: 14px;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.home-text-action:hover,
.home-text-action:focus-visible {
  text-decoration-thickness: 2px;
}

.home-wheel-stage {
  position: relative;
  justify-self: end;
  width: min(100%, 450px);
  aspect-ratio: 1;
  isolation: isolate;
}

.home-wheel-stage::before {
  position: absolute;
  inset: 12%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(21, 37, 58, .08);
  filter: blur(32px);
  content: "";
  transform: translateY(7%);
}

@property --wheel-reveal {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}

.home-wheel {
  position: absolute;
  inset: 3%;
  overflow: hidden;
  border: 1px solid rgba(24, 36, 51, .16);
  border-radius: 50%;
  background: conic-gradient(
    from -20deg,
    var(--read) 0 27%,
    var(--investigate) 27% 43%,
    var(--practice) 43% 64%,
    var(--produce) 64% 76%,
    var(--discuss) 76% 91%,
    var(--collaborate) 91% 100%
  );
  background-clip: padding-box;
  box-shadow: 0 22px 48px rgba(15, 23, 42, .1);
  contain: paint;
}

.home-wheel::after {
  --wheel-reveal: 0%;
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 34% 28%,
    #eef3f7 0,
    #e3e9ef 68%,
    #d8e0e8 100%
  );
  content: "";
  -webkit-mask-image: conic-gradient(
    from -20deg,
    transparent 0 var(--wheel-reveal),
    #000 var(--wheel-reveal) 100%
  );
  mask-image: conic-gradient(
    from -20deg,
    transparent 0 var(--wheel-reveal),
    #000 var(--wheel-reveal) 100%
  );
  animation: home-wheel-reveal 1700ms cubic-bezier(.45, 0, .2, 1) 80ms forwards;
}

@keyframes home-wheel-reveal {
  to {
    --wheel-reveal: 100%;
  }
}

.home-wheel-labels {
  position: absolute;
  inset: 3%;
}

.home-wheel-label {
  position: absolute;
  display: grid;
  gap: 2px;
  width: 92px;
  color: #172033;
  line-height: 1.1;
  opacity: 0;
  text-align: center;
  text-shadow: 0 1px 1px rgba(255, 255, 255, .38);
  transform: translate(-50%, -50%);
  animation: home-wheel-label-in 520ms cubic-bezier(.16, 1, .3, 1) both;
  animation-delay: var(--wheel-label-delay);
}

@keyframes home-wheel-label-in {
  to {
    opacity: 1;
  }
}

.home-wheel-label strong {
  font-size: clamp(10px, 1.15vw, 13px);
  font-weight: 800;
}

.home-wheel-label small {
  font-size: clamp(9px, 1vw, 11px);
  font-weight: 700;
  opacity: .72;
}

.home-wheel-label-read {
  --wheel-label-delay: 660ms;
  top: 20.17%;
  left: 66.26%;
}

.home-wheel-label-investigate {
  --wheel-label-delay: 760ms;
  top: 59.39%;
  left: 82.64%;
}

.home-wheel-label-practice {
  --wheel-label-delay: 910ms;
  top: 83.75%;
  left: 54.36%;
}

.home-wheel-label-produce {
  --wheel-label-delay: 1030ms;
  top: 70.83%;
  left: 24.22%;
}

.home-wheel-label-discuss {
  --wheel-label-delay: 1290ms;
  top: 43.78%;
  left: 16.63%;
}

.home-wheel-label-collaborate {
  --wheel-label-delay: 1880ms;
  top: 22.54%;
  left: 29.93%;
}

.home-features {
  margin-top: 0;
}

.home-feature {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(390px, 1.12fr);
  align-items: start;
  gap: clamp(56px, 9vw, 126px);
  min-height: 56vh;
  padding: clamp(60px, 8vh, 88px) 0;
}

.home-feature:nth-child(even) .home-feature-copy {
  order: 2;
}

.home-feature-copy {
  --home-feature-title-size: clamp(30px, 3.25vw, 40px);
  --home-feature-number-width: clamp(38px, 4.2vw, 50px);
  --home-feature-heading-gap: clamp(13px, 1.5vw, 18px);
}

.home-feature-number {
  width: var(--home-feature-number-width);
  margin: 0;
  color: var(--home-ink);
  font-size: var(--home-feature-title-size);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.048em;
  line-height: 1.04;
}

.home-feature-kicker {
  margin-left: 0;
}

.home-feature-heading {
  display: grid;
  grid-template-columns: var(--home-feature-number-width) minmax(0, 1fr);
  align-items: start;
  gap: var(--home-feature-heading-gap);
}

.home-feature h2 {
  max-width: 590px;
  margin: 0;
  color: var(--home-ink);
  font-size: var(--home-feature-title-size);
  letter-spacing: -.048em;
  line-height: 1.04;
}

.home-feature-copy > p:last-of-type {
  max-width: 580px;
  margin: 24px 0 0;
  color: var(--home-copy);
  font-size: 16px;
  line-height: 1.78;
}

.home-feature-copy code {
  padding: 2px 5px;
  border-radius: 5px;
  background: #eff1f4;
  color: var(--home-ink);
  font-size: .88em;
}

.home-feature-visual {
  position: relative;
  min-width: 0;
}

.home-sequence-visual {
  padding: 0;
}

.home-moment-card {
  overflow: hidden;
  border: 1px solid #dfe3e9;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(20, 36, 55, .1);
}

.home-moment-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--home-line);
}

.home-moment-head > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #1f1f1d;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.home-moment-head strong {
  color: var(--home-ink);
  font-size: 14px;
}

.home-moment-head small,
.home-activity-row small {
  color: #778394;
  font-size: 11px;
  font-weight: 700;
}

.home-activity-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  margin: 10px;
  padding: 12px 14px;
  border-left: 5px solid var(--activity-color);
  border-radius: 9px;
  background: #f8f9fa;
  color: #3f4c5d;
  font-size: 12px;
  font-weight: 650;
}

.home-activity-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--activity-color);
}

.home-analysis-visual {
  padding: 0;
}

.home-analysis-card {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(150px, .8fr);
  align-items: center;
  gap: 32px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid #e1e4e8;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 15px 36px rgba(20, 36, 55, .08);
}

.home-mini-wheel {
  width: 100%;
  max-width: 230px;
  aspect-ratio: 1;
  margin: auto;
  border-radius: 50%;
  background: conic-gradient(
    var(--read) 0 28%,
    var(--investigate) 28% 38%,
    var(--practice) 38% 60%,
    var(--produce) 60% 78%,
    var(--discuss) 78% 90%,
    var(--collaborate) 90%
  );
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, .08);
}

.home-analysis-summary {
  display: grid;
  gap: 14px;
}

.home-analysis-summary > span {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 8px;
}

.home-analysis-summary i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--metric-color);
}

.home-analysis-summary b {
  color: var(--home-ink);
  font-size: 13px;
}

.home-analysis-summary small {
  color: var(--home-copy);
  font-size: 10px;
  font-weight: 650;
}

.home-analysis-note {
  display: flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  max-width: calc(100% - 36px);
  margin: 18px auto 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--primary);
  font-size: 11px;
  font-weight: 750;
}

.home-inline-action {
  margin-top: 26px;
  font-size: 14px;
}

.home-inline-action:hover,
.home-inline-action:focus-visible {
  gap: 16px;
}

.home-share-visual {
  padding: 0;
}

.home-share-card {
  overflow: hidden;
  border: 1px solid #dfe3e9;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(20, 36, 55, .1);
}

.home-share-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: clamp(20px, 3vw, 28px);
}

.home-share-main-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: color-mix(in srgb, var(--discuss) 32%, #fff);
  color: #185a9f;
}

.home-share-head div {
  display: grid;
  gap: 4px;
}

.home-share-head strong {
  color: var(--home-ink);
  font-size: 14px;
}

.home-share-head small {
  color: var(--home-copy);
  font-size: 11px;
  line-height: 1.45;
}

.home-share-link-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  margin: 0 clamp(20px, 3vw, 28px);
  padding: 15px 0;
  border-top: 1px solid var(--home-line);
  color: var(--home-copy);
  font-size: 11px;
}

.home-share-link-row > i {
  color: var(--primary);
}

.home-share-link-row > span {
  overflow: hidden;
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-share-link-row > strong {
  color: #33834c;
  font-size: 10px;
  white-space: nowrap;
}

.home-share-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--home-line);
}

.home-share-options > div {
  display: grid;
  align-content: start;
  gap: 6px;
  min-width: 0;
  padding: clamp(18px, 3vw, 26px);
}

.home-share-options > div + div {
  border-left: 1px solid var(--home-line);
}

.home-share-options i {
  margin-bottom: 5px;
  color: var(--primary);
  font-size: 17px;
}

.home-share-options strong {
  color: var(--home-ink);
  font-size: 11px;
}

.home-share-options small {
  color: var(--home-copy);
  font-size: 9px;
  line-height: 1.5;
}

.home-cli-visual {
  padding: 0;
}

.home-terminal {
  overflow: hidden;
  border: 1px solid #30363d;
  border-radius: 16px;
  background: #151718;
  color: #e8edf2;
  box-shadow: 0 24px 55px rgba(11, 15, 20, .26);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}

.home-terminal-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 15px;
  border-bottom: 1px solid #30343a;
  background: #202326;
}

.home-terminal-bar > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #69727d;
}

.home-terminal-bar > span:first-child { background: #e37975; }
.home-terminal-bar > span:nth-child(2) { background: #e7b959; }
.home-terminal-bar > span:nth-child(3) { background: #75c98a; }

.home-terminal-bar small {
  margin-left: auto;
  color: #9099a5;
  font-size: 10px;
}

.home-terminal-body {
  min-height: 285px;
  padding: clamp(24px, 4vw, 38px);
  font-size: clamp(11px, 1.3vw, 13px);
  line-height: 1.8;
}

.home-terminal-body p {
  margin: 0 0 17px;
  white-space: nowrap;
}

.home-prompt {
  color: var(--read);
  font-weight: 800;
}

.home-terminal-result {
  color: #aeb9c4;
  padding-left: 16px;
}

.home-terminal-result i {
  margin-right: 7px;
  color: #75c98a;
}

.home-terminal-cursor i {
  display: inline-block;
  width: 7px;
  height: 15px;
  background: #d8dee6;
  vertical-align: -2px;
  animation: home-cursor 1s steps(1) infinite;
}

@keyframes home-cursor {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}

.home-closing {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  align-items: start;
  gap: clamp(54px, 7vw, 92px);
  padding: clamp(76px, 10vw, 116px) 0;
}

.home-quote {
  min-width: 0;
}

.home-quote-inner {
  padding: 0 clamp(4px, 2vw, 16px);
}

.home-quote blockquote {
  position: relative;
  margin: 0;
  padding-left: clamp(72px, 8vw, 96px);
}

.home-quote blockquote::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--primary);
  content: "“";
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(90px, 11vw, 124px);
  font-weight: 700;
  line-height: 1;
  opacity: .3;
}

.home-quote blockquote p {
  max-width: 930px;
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(18px, 1.9vw, 23px);
  font-weight: 500;
  letter-spacing: -.022em;
  line-height: 1.45;
}

.home-quote blockquote footer {
  margin-top: 16px;
  color: var(--home-copy);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.home-quote blockquote cite {
  font-style: normal;
}

.home-final-cta {
  display: grid;
  min-width: 0;
  justify-items: start;
  text-align: left;
}

.home-final-cta-content {
  display: grid;
  justify-items: start;
}

.home-closing .home-final-cta h2 {
  font-size: clamp(34px, 3.6vw, 44px);
}

.home-final-cta h2 {
  max-width: 730px;
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(38px, 5vw, 62px);
  letter-spacing: -.052em;
  line-height: 1.03;
}

.home-final-cta .home-primary-action {
  margin-top: 30px;
}

.reveal-ready .home-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 700ms cubic-bezier(.22, 1, .36, 1),
    transform 700ms cubic-bezier(.22, 1, .36, 1);
}

.reveal-ready .home-feature-visual.home-reveal {
  transition-delay: 110ms;
}

.reveal-ready .home-final-cta-content.home-reveal {
  transition-delay: 180ms;
}

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

[data-theme="dark"] html:has(body.home-page),
[data-theme="dark"] body.home-page {
  background: #181816;
}

[data-theme="dark"] body.home-page {
  --home-ink: #f2f4f7;
  --home-copy: #b9c1cb;
  --home-line: rgba(129, 124, 112, .42);
  --home-soft: #24231f;
}

[data-theme="dark"] .home-wheel::after {
  background: radial-gradient(
    circle at 34% 28%,
    #353b42 0,
    #2c3238 68%,
    #24292f 100%
  );
}

[data-theme="dark"] .home-wheel {
  border-color: rgba(232, 237, 242, .2);
}

[data-theme="dark"] .home-moment-card,
[data-theme="dark"] .home-analysis-card,
[data-theme="dark"] .home-share-card {
  background: rgba(36, 35, 31, .96);
  border-color: var(--home-line);
}

[data-theme="dark"] .home-moment-head strong,
[data-theme="dark"] .home-analysis-summary b,
[data-theme="dark"] .home-share-head strong,
[data-theme="dark"] .home-share-options strong {
  color: var(--home-ink);
}

[data-theme="dark"] .home-moment-head small,
[data-theme="dark"] .home-activity-row small,
[data-theme="dark"] .home-analysis-summary small,
[data-theme="dark"] .home-share-head small,
[data-theme="dark"] .home-share-options small {
  color: var(--home-copy);
}

[data-theme="dark"] .home-share-main-icon {
  background: color-mix(in srgb, var(--discuss) 24%, #24231f);
  color: #a9d2ff;
}

[data-theme="dark"] .home-activity-row {
  background: #2b2a26;
  color: #d1d6dd;
}

[data-theme="dark"] .home-feature-copy code {
  background: #2e2c27;
  color: #eff3f8;
}

[data-theme="dark"] .home-primary-action {
  background: linear-gradient(180deg, var(--btn-primary-from), var(--btn-primary-to));
  color: #fff;
  box-shadow: var(--shadow-btn-primary);
}

[data-theme="dark"] .home-primary-action:hover,
[data-theme="dark"] .home-primary-action:focus-visible {
  background: linear-gradient(180deg, var(--btn-primary-from), var(--btn-primary-to));
  color: #fff;
  filter: brightness(1.08);
}

@media (min-width: 901px) and (max-width: 1200px) {
  .home-hero,
  .home-features,
  .home-closing {
    width: min(1060px, calc(100vw - 96px));
  }

  .home-hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr);
    gap: clamp(44px, 4.5vw, 54px);
    padding: 58px 0 76px;
  }

  .home-hero h1 {
    font-size: clamp(42px, 4.4vw, 54px);
  }

  .home-lead {
    font-size: clamp(17px, 1.55vw, 19px);
  }

  .home-wheel-stage {
    width: min(100%, 420px);
  }

  .home-feature {
    grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
    gap: clamp(44px, 4.25vw, 52px);
    min-height: auto;
    padding: 68px 0;
  }

  .home-feature-copy {
    --home-feature-title-size: clamp(30px, 2.9vw, 36px);
    --home-feature-number-width: clamp(38px, 3.5vw, 44px);
  }
}

@media (max-width: 900px) {
  .home-hero,
  .home-features,
  .home-closing {
    width: min(760px, calc(100vw - 96px));
  }

  .home-closing {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 72px 0 84px;
  }

  .home-quote {
    padding-bottom: 56px;
    border-bottom: 1px solid var(--home-line);
  }

  .home-final-cta,
  .home-final-cta-content {
    justify-items: center;
    text-align: center;
  }

  .home-hero {
    grid-template-columns: 1fr;
    gap: 44px;
    min-height: auto;
    padding: 52px 0 72px;
  }

  .home-hero-copy {
    max-width: 700px;
    margin-inline: auto;
  }

  .home-wheel-stage {
    justify-self: center;
    width: min(72vw, 420px);
    margin-top: 4px;
  }

  .home-features {
    margin-top: 0;
  }

  .home-feature {
    grid-template-columns: 1fr;
    gap: 44px;
    min-height: auto;
    padding: 64px 0;
  }

  .home-feature:nth-child(even) .home-feature-copy {
    order: 0;
  }

  .home-feature-copy,
  .home-feature-visual {
    width: min(100%, 700px);
    margin-inline: auto;
  }

  .home-feature-copy {
    max-width: 700px;
  }
}

@media (max-width: 600px) {
  .home-hero,
  .home-features,
  .home-closing {
    width: min(100% - 28px, var(--content-shell-width, 1180px));
  }

  .home-closing {
    gap: 44px;
    padding: 60px 0 72px;
  }

  .home-quote {
    padding-bottom: 44px;
  }

  .home-quote blockquote {
    padding-left: 54px;
  }

  .home-quote blockquote::before {
    font-size: 76px;
  }

  .home-hero {
    gap: 44px;
    padding: 44px 0 82px;
  }

  .home-hero h1 {
    font-size: clamp(38px, 11.5vw, 50px);
  }

  .home-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-primary-action {
    width: 100%;
  }

  .home-wheel-stage {
    width: min(88vw, 390px);
  }

  .home-wheel-label {
    width: 76px;
  }

  .home-wheel-label strong {
    font-size: clamp(8px, 2.6vw, 11px);
  }

  .home-wheel-label small {
    font-size: clamp(8px, 2.3vw, 10px);
  }

  .home-feature {
    gap: 42px;
    padding: 58px 0;
  }

  .home-feature-copy {
    --home-feature-title-size: clamp(28px, 8.5vw, 36px);
    --home-feature-number-width: clamp(36px, 10vw, 44px);
  }

  .home-analysis-card {
    grid-template-columns: 1fr;
  }

  .home-analysis-summary {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-analysis-summary > span {
    grid-template-columns: auto auto;
  }

  .home-analysis-summary small {
    grid-column: 1 / -1;
  }

  .home-share-options {
    grid-template-columns: 1fr;
  }

  .home-share-options > div + div {
    border-top: 1px solid var(--home-line);
    border-left: 0;
  }

  .home-terminal-body {
    min-height: 250px;
    overflow-x: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-wheel-label {
    opacity: 1;
    animation: none;
  }

  .home-wheel::after {
    display: none;
    animation: none;
  }

  .home-wheel-label {
    transform: translate(-50%, -50%);
  }

  .home-terminal-cursor i {
    animation: none;
  }

  .reveal-ready .home-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
