@import url('https://fonts.googleapis.com/css2?family=Geist+Mono:wght@400&display=swap');

:root {
  --skill-cream: #fdf2d4;
  --skill-ink: #111013;
  --skill-yellow: #ffff78;
  --skill-green: #39bf97;
  --skill-mint: #dce6de;
  --skill-coral: #ffb89f;
  --skill-lilac: #ede9fe;
  --skill-pale-mint: #dcfce7;
  --skill-peach: #ffedd5;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skill-body {
  margin: 0;
  background: var(--skill-cream);
  color: var(--skill-ink);
}

.skill-page {
  min-height: 100vh;
  position: relative;
  overflow: clip;
  background-color: var(--skill-cream);
  background-image:
    linear-gradient(rgba(224, 103, 63, .18), rgba(224, 103, 63, .18)),
    linear-gradient(90deg, rgba(224, 103, 63, .18), rgba(224, 103, 63, .18));
  background-size: 1.5px 22px, 22px 1.5px;
  background-position:
    calc(50% - 40px) 30px,
    calc(50% - 50px) 40px;
  background-repeat: repeat;
}

/* Mask most of each repeating line so the background reads as the sparse
   coral plus-grid used throughout Plutonium rather than as graph paper. */
.skill-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: var(--skill-cream);
  background-image: url("data:image/svg+xml,%3Csvg width='105' height='105' viewBox='0 0 105 105' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M52.5 42v21M42 52.5h21' stroke='%23df7758' stroke-opacity='.20' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.skill-page > * {
  position: relative;
  z-index: 1;
}

.skill-skip-link {
  position: fixed;
  top: 10px;
  left: 16px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 18px;
  border: 2px solid #000;
  border-radius: 100px;
  background: #fff;
  font-weight: 700;
}

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

.skill-shell {
  width: min(1220px, calc(100% - 56px));
  margin: 0 auto;
  position: relative;
}

.skill-section h2,
.skill-section-heading h2,
.skill-pluto-cta h2,
.skill-subscribe-card h2 {
  margin: 0;
  font-family: 'Unbounded', 'Poppins', sans-serif;
  font-weight: 700;
  color: #000;
}

.skill-header-outer {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 50px;
}

.skill-header {
  min-height: 80px;
  padding: 16px 24px 16px 42px;
}

.skill-header .header-logo {
  text-decoration: none;
}

.skill-header-nav {
  gap: 10px;
}

.skill-header-nav .nav-link {
  gap: 7px;
  padding-inline: 18px;
}

.skill-nav-icon {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.skill-nav-icon img {
  width: 15.006px;
  height: 16.671px;
}

.skill-nav-active {
  color: #fff;
}

.skill-nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 100px;
  background: transparent;
  color: #fff;
  font: 600 14px/1 'Poppins', sans-serif;
  cursor: pointer;
}

.skill-hero {
  min-height: 607px;
  padding: 153px 0 120px;
  position: relative;
}

.skill-hero-inner {
  min-height: 334px;
}

.skill-hero-copy {
  width: min(910px, 78%);
  min-width: 0;
}

.skill-hero h1 {
  margin: 0;
  font-family: 'Unbounded', 'Poppins', sans-serif;
  font-size: 46px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: 0;
  color: #000;
}

.skill-hero-copy > p {
  max-width: 829px;
  margin: 49px 0 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  color: #111013;
}

.skill-primary-button,
.skill-secondary-button {
  min-height: 56px;
  border: 1.5px solid #000;
  border-radius: 100px;
  padding: 13px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.skill-primary-button {
  background: #000;
  color: #fff;
  box-shadow: 4px 4px 0 rgba(0,0,0,.22);
}

.skill-secondary-button {
  background: #fff;
  color: #000;
}

.skill-primary-button:hover,
.skill-secondary-button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #000;
}

.skill-primary-button:active,
.skill-secondary-button:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 #000;
}

.skill-download-icon,
.skill-cta-arrow {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.skill-download-icon { width: 24px; height: 24px; }
.skill-download-icon img { width: 20px; height: 20px; }
.skill-cta-arrow { width: 24px; height: 24px; }
.skill-cta-arrow img { width: 16px; height: 16px; }

.skill-hero-copy > .skill-primary-button {
  width: 364px;
  margin-top: 49px;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 1.62px;
}

.skill-monkey-stage {
  position: absolute;
  top: -11px;
  right: -84px;
  width: 364px;
  height: 398px;
  pointer-events: none;
}

.skill-hovering-monkey {
  position: absolute;
  top: 129px;
  left: 0;
  width: 252px;
  height: 269px;
  max-width: none;
  animation: skill-monkey-hover 2.402s linear infinite;
}

.skill-prompt-bubble {
  position: absolute;
  top: -4px;
  left: 184px;
  width: 194px;
  height: 194px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #111013;
  box-shadow: none;
  font: 500 14px/20.3px 'Poppins', sans-serif;
  letter-spacing: .14px;
  text-align: left;
  cursor: pointer;
  pointer-events: auto;
}

.skill-prompt-shape {
  position: absolute;
  top: 140px;
  left: 4px;
  width: 25px;
  height: 21px;
  opacity: 0;
  translate: 0 0;
  transform-origin: left bottom;
  will-change: width, height, opacity, translate;
}

.skill-prompt-shape > img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
}

.skill-prompt-bubble.is-expanding .skill-prompt-shape {
  animation:
    skill-bubble-height 1.022094s forwards,
    skill-bubble-opacity 1.022094s forwards,
    skill-bubble-width 1.022094s forwards,
    skill-bubble-translate 1.022094s forwards;
}

.skill-prompt-bubble.is-expanded .skill-prompt-shape {
  width: 181px;
  height: 152px;
  opacity: 1;
  translate: 0 -131px;
}

.skill-prompt-copy {
  position: absolute;
  top: 22px;
  left: 27.5px;
  z-index: 1;
  width: 144px;
  height: 102px;
  opacity: 0;
  transition: opacity 1.022094s linear(0, 0.0188, 0.0679, 0.1374, 0.2195, 0.308, 0.3978, 0.4856, 0.5686, 0.6452, 0.7142, 0.7753, 0.8283, 0.8735, 0.9113, 0.9423, 0.9671, 0.9866, 1.0014, 1.0123, 1.0198, 1.0247, 1.0274, 1.0283, 1.0281, 1.0268, 1.025, 1.0227, 1.0202, 1.0177, 1.0152, 1.0128, 1.0106, 1.0085, 1.0068, 1.0052, 1.0039, 1.0028, 1.0018, 1.0011, 1.0005, 1, 0.9997, 0.9995, 0.9993, 0.9992, 0.9992, 0.9992, 0.9992, 0.9993, 0.9993);
}

.skill-prompt-bubble.is-content-visible .skill-prompt-copy {
  opacity: 1;
}

.skill-prompt-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  text-align: left;
  opacity: 1;
  transition: opacity .3s ease-out;
}

.skill-prompt-bubble:focus-visible {
  outline: 2px solid #0d9488;
  outline-offset: 3px;
}

.skill-prompt-text.is-entering,
.skill-prompt-text.is-leaving {
  opacity: 0;
}

.skill-prompt-bubble.is-looping .skill-prompt-text {
  transition-timing-function: ease-in;
}

.skill-orbit {
  position: absolute;
  max-width: none;
  pointer-events: none;
}

.skill-orbit-left {
  left: 0;
  top: 462px;
  width: 103px;
  height: 197px;
  animation: skill-planet-float 4.5s ease-in-out -1.5s infinite;
}

.skill-orbit-right {
  right: 0;
  top: 79px;
  width: 33px;
  height: 51px;
}

@keyframes skill-monkey-hover {
  0% { transform: translateY(0); }
  0.041632% {
    animation-timing-function: ease-out;
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8.4px);
  }
  50.041632% {
    animation-timing-function: ease-out;
    transform: translateY(-8.4px);
  }
  100% { transform: translateY(0); }
}

@keyframes skill-bubble-height {
  0% {
    animation-timing-function: linear(0, 0.0188, 0.0679, 0.1374, 0.2195, 0.308, 0.3978, 0.4856, 0.5686, 0.6452, 0.7142, 0.7753, 0.8283, 0.8735, 0.9113, 0.9423, 0.9671, 0.9866, 1.0014, 1.0123, 1.0198, 1.0247, 1.0274, 1.0283, 1.0281, 1.0268, 1.025, 1.0227, 1.0202, 1.0177, 1.0152, 1.0128, 1.0106, 1.0085, 1.0068, 1.0052, 1.0039, 1.0028, 1.0018, 1.0011, 1.0005, 1, 0.9997, 0.9995, 0.9993, 0.9992, 0.9992, 0.9992, 0.9992, 0.9993, 0.9993);
    height: 21px;
  }
  100% { height: 152px; }
}

@keyframes skill-bubble-opacity {
  0% {
    animation-timing-function: linear(0, 0.0188, 0.0679, 0.1374, 0.2195, 0.308, 0.3978, 0.4856, 0.5686, 0.6452, 0.7142, 0.7753, 0.8283, 0.8735, 0.9113, 0.9423, 0.9671, 0.9866, 1.0014, 1.0123, 1.0198, 1.0247, 1.0274, 1.0283, 1.0281, 1.0268, 1.025, 1.0227, 1.0202, 1.0177, 1.0152, 1.0128, 1.0106, 1.0085, 1.0068, 1.0052, 1.0039, 1.0028, 1.0018, 1.0011, 1.0005, 1, 0.9997, 0.9995, 0.9993, 0.9992, 0.9992, 0.9992, 0.9992, 0.9993, 0.9993);
    opacity: 0;
  }
  100% { opacity: 1; }
}

@keyframes skill-bubble-width {
  0% {
    animation-timing-function: linear(0, 0.0188, 0.0679, 0.1374, 0.2195, 0.308, 0.3978, 0.4856, 0.5686, 0.6452, 0.7142, 0.7753, 0.8283, 0.8735, 0.9113, 0.9423, 0.9671, 0.9866, 1.0014, 1.0123, 1.0198, 1.0247, 1.0274, 1.0283, 1.0281, 1.0268, 1.025, 1.0227, 1.0202, 1.0177, 1.0152, 1.0128, 1.0106, 1.0085, 1.0068, 1.0052, 1.0039, 1.0028, 1.0018, 1.0011, 1.0005, 1, 0.9997, 0.9995, 0.9993, 0.9992, 0.9992, 0.9992, 0.9992, 0.9993, 0.9993);
    width: 25px;
  }
  100% { width: 181px; }
}

@keyframes skill-bubble-translate {
  0% {
    animation-timing-function: linear(0, 0.0188, 0.0679, 0.1374, 0.2195, 0.308, 0.3978, 0.4856, 0.5686, 0.6452, 0.7142, 0.7753, 0.8283, 0.8735, 0.9113, 0.9423, 0.9671, 0.9866, 1.0014, 1.0123, 1.0198, 1.0247, 1.0274, 1.0283, 1.0281, 1.0268, 1.025, 1.0227, 1.0202, 1.0177, 1.0152, 1.0128, 1.0106, 1.0085, 1.0068, 1.0052, 1.0039, 1.0028, 1.0018, 1.0011, 1.0005, 1, 0.9997, 0.9995, 0.9993, 0.9992, 0.9992, 0.9992, 0.9992, 0.9993, 0.9993);
    translate: 0 0;
  }
  100% { translate: 0 -131px; }
}

@keyframes skill-planet-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.skill-section h2,
.skill-section-heading h2 {
  font-size: 26px;
  line-height: 38px;
}

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

.skill-info-card {
  min-height: 131px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 16px;
  border: .614px solid #000;
  border-radius: 12.281px;
  box-shadow: 5px 5px 0 #000;
}

.skill-info-card-lilac { background: linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,.5)), var(--skill-lilac); }
.skill-info-card-mint { background: linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,.5)), var(--skill-pale-mint); }
.skill-info-card-peach { background: linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,.5)), var(--skill-peach); }

.skill-card-icon,
.skill-step-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 0;
}

.skill-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
}

.skill-info-card-lilac .skill-card-icon { background: var(--skill-lilac); }
.skill-info-card-mint .skill-card-icon { background: var(--skill-pale-mint); }
.skill-info-card-peach .skill-card-icon { background: var(--skill-peach); }

.skill-card-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.skill-info-card h3,
.skill-step-item h3 {
  margin: 0;
  font: 700 18px/18px 'Poppins', sans-serif;
  color: #000;
}

.skill-info-card > div,
.skill-step-item > div {
  min-width: 0;
}

.skill-info-card p,
.skill-step-item p {
  margin: 11px 0 0;
  font: 400 14px/20.3px 'Poppins', sans-serif;
  letter-spacing: .14px;
  color: #111013;
}

.skill-steps {
  margin-top: 79px;
}

.skill-step-grid {
  display: grid;
  grid-template-columns: 27.265625% 30.474834% 34.558786%;
  gap: 3.850378%;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.skill-step-item {
  min-height: 133px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 30px 26px 20px;
  border: 1px solid #000;
  border-radius: 8px;
  background: #ecf8f5;
  box-shadow: 4px 4px 0 #000;
}

.skill-step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 65px;
  right: -50px;
  width: 50px;
  border-top: 1.5px solid #000;
}

.skill-step-item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 61px;
  right: -51px;
  width: 8px;
  height: 8px;
  border: 1px solid #000;
  border-radius: 50%;
  background: var(--skill-cream);
  box-shadow: -47px 0 0 -1px var(--skill-cream), -47px 0 0 0 #000;
  z-index: 2;
}

.skill-step-number {
  position: absolute;
  left: 26px;
  top: -16px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid #000;
  border-radius: 50%;
  background: #0d9488;
  color: #fff;
  font: 700 16px/1 'Poppins', sans-serif;
}

.skill-step-icon {
  width: 43.617px;
  height: 43.617px;
  border-radius: 5.057px;
  background: #cfeee6;
}

.skill-step-icon img {
  max-width: none;
  object-fit: contain;
}

.skill-step-item:nth-child(1) .skill-step-icon img { width: 24.658px; height: 24.658px; }
.skill-step-item:nth-child(2) .skill-step-icon img { width: 24.529px; height: 24.529px; }
.skill-step-item:nth-child(3) .skill-step-icon img { width: 20.964px; height: 25.709px; }
.skill-step-item:nth-child(1) { gap: 16px; padding-right: 14px; }
.skill-step-item:nth-child(2) { padding-right: 18px; }

.skill-step-item:last-child {
  padding-left: 32px;
  gap: 12px;
}

.skill-onboarding {
  margin-top: 79px;
  scroll-margin-top: 110px;
}

.skill-section-heading > p {
  margin: 8px 0 0;
  font: 400 18px/20.3px 'Poppins', sans-serif;
  letter-spacing: .14px;
}

.skill-install-panel {
  min-height: 292px;
  position: relative;
  margin-top: 24px;
  padding: 24px 26px;
  border: 1px solid #000;
  border-radius: 12px;
  background: #fff;
  box-shadow: 7px 7px 0 #000;
}

.skill-install-tabs-row {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.skill-platform-tabs,
.skill-os-tabs {
  display: flex;
  align-items: center;
}

.skill-platform-tabs {
  min-width: 0;
  gap: 4px;
}

.skill-platform-tab {
  height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 12px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  color: #57534e;
  font: 400 14px/20px 'Switzer', 'Poppins', sans-serif;
  white-space: nowrap;
  cursor: pointer;
}

.skill-platform-tab:hover { color: #000; }

.skill-platform-tab > img,
.skill-tab-logo {
  width: 16px;
  height: 16px;
  flex: none;
}

.skill-tab-logo {
  position: relative;
  display: block;
}

.skill-platform-tab-active {
  border-color: #eee8e2;
  background: #fff;
  color: #000;
  box-shadow: 0 3px 9px rgba(0,0,0,.08);
  font-weight: 500;
}

.skill-tab-logo-codex img {
  position: absolute;
  left: 1px;
  top: 1px;
  width: 14px;
  height: 14px;
}

.skill-tab-logo-cursor img { position: absolute; max-width: none; }
.skill-tab-logo-cursor img:nth-child(1) { left: 1.191px; top: 0; width: 13.6px; height: 16px; }
.skill-tab-logo-cursor img:nth-child(2) { left: 1.191px; top: 0; width: 6.802px; height: 12px; }
.skill-tab-logo-cursor img:nth-child(3) { left: 7.992px; top: 4px; width: 6.8px; height: 8px; }
.skill-tab-logo-cursor img:nth-child(4) { left: 7.988px; top: 0; width: 6.802px; height: 5.2px; }
.skill-tab-logo-cursor img:nth-child(5) { left: 1.191px; top: 4px; width: 6.804px; height: 8px; }
.skill-tab-logo-cursor img:nth-child(6) { left: 1.191px; top: 4px; width: 13.6px; height: 12px; }

.skill-os-tabs {
  flex: 0 0 auto;
  border-radius: 5px;
  background: #f5f5f4;
  padding: 2px;
}

.skill-os-tab {
  width: 50px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #a8a29e;
  cursor: pointer;
}

.skill-os-tab.is-active {
  background: #fff;
  color: #000;
  box-shadow: 0 2px 7px rgba(0,0,0,.1);
}

.skill-os-icon {
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
}

.skill-os-icon img { max-width: 16px; max-height: 16px; }

.skill-command-panel {
  height: 112px;
  position: relative;
  margin-top: 24px;
  padding: 16px 42px 16px 16px;
  overflow: auto;
  border: 0;
  border-radius: 3px;
  background: #fff8f5;
  scrollbar-width: thin;
}

.skill-command-panel[hidden] { display: none; }

.skill-command-panel pre {
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.skill-command-panel code {
  font: 400 14px/20px 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  color: #3f3f46;
}

.skill-copy-button {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 6px;
  background: rgba(255,255,255,.86);
  color: #57534e;
  cursor: pointer;
}

.skill-copy-button:hover { background: #eeeae6; color: #000; }
.skill-copy-button.is-copied { background: #d1fae5; color: #047857; }

.skill-copy-icon {
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
}

.skill-copy-icon img { width: 14.333px; height: 14.333px; }

.skill-install-actions {
  position: absolute;
  right: 26px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.skill-install-actions .skill-secondary-button {
  width: 220px;
  min-height: 44px;
  padding-block: 10px;
  font-size: 13px;
  white-space: nowrap;
}

.skill-download-button {
  width: 289px;
  min-height: 48px;
  padding-block: 10px;
  font-size: 13px;
}

.skill-install-note {
  position: absolute;
  left: 26px;
  bottom: 27px;
  width: min(610px, calc(100% - 570px));
  margin: 0;
  font: 400 12px/1.5 'Poppins', sans-serif;
  color: #57534e;
}

.skill-checksum {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skill-pluto-cta {
  width: min(1332px, calc(100% - 40px));
  min-height: 254px;
  margin: 144px auto 0;
  padding: 48px 62px;
  display: grid;
  grid-template-columns: 116px minmax(0, 674px) minmax(230px, 322px);
  align-items: center;
  gap: 48px;
  border: 1px solid #000;
  border-radius: 30px;
  background: var(--skill-coral);
  box-shadow: none;
}

.skill-pluto-cta-art {
  width: 116px;
  height: 116px;
  overflow: visible;
}

.skill-pluto-cta-art img {
  width: 116px;
  height: 116px;
  max-width: none;
}

.skill-pluto-cta-copy h2 {
  font-size: 28px;
  line-height: 38px;
}

.skill-pluto-cta-copy p {
  margin: 12px 0 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 36px;
}

.skill-pluto-cta-button {
  width: 322px;
  justify-self: end;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 1.62px;
  gap: 16px;
}

.skill-subscribe-wrap {
  width: min(1328px, calc(100% - 40px));
  margin: 120px auto 0;
}

.skill-subscribe-card {
  width: min(1205px, calc(100% - 123px));
  min-height: 297px;
  position: relative;
  margin: 0 auto 0 73.5px;
  padding: 62px;
  display: grid;
  grid-template-columns: minmax(0, 501px) minmax(360px, 512px);
  align-items: center;
  gap: 68px;
  border: 1px solid #000;
  border-radius: 29px;
  background: var(--skill-mint);
  isolation: isolate;
}

.skill-subscribe-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 1;
  border-radius: 28px;
  background: var(--skill-mint);
  pointer-events: none;
}

.skill-subscribe-copy,
.skill-subscribe-form,
.skill-subscribe-stars-right {
  z-index: 2;
}

.skill-subscribe-copy,
.skill-subscribe-form {
  position: relative;
}

.skill-subscribe-copy h2 {
  font-size: 28px;
  line-height: 38px;
}

.skill-subscribe-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.skill-subscribe-form label {
  padding-left: 8px;
  font: 700 16px/24.96px 'Poppins', sans-serif;
}

.skill-subscribe-form input,
.skill-subscribe-form button {
  width: 100%;
  height: 56px;
  border: 1px solid #000;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
}

.skill-subscribe-form input {
  padding: 10px 22px;
  background: #fff;
  font-size: 16px;
  outline: none;
}

.skill-subscribe-form input:focus { box-shadow: 0 0 0 3px rgba(0,0,0,.12); }

.skill-subscribe-form button {
  background: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  cursor: pointer;
}

.skill-subscribe-form button:disabled { opacity: .6; cursor: wait; }

.skill-subscribe-message {
  min-height: 18px;
  margin: -4px 8px 0;
  font-size: 12px;
  line-height: 18px;
}

.skill-subscribe-message.is-error { color: #b91c1c; }
.skill-subscribe-message.is-success { color: #166534; }

.skill-subscribe-stars {
  position: absolute;
  pointer-events: none;
}

.skill-subscribe-stars img { position: absolute; max-width: none; }

.skill-subscribe-stars-left {
  left: -47.828px;
  top: 116.262px;
  width: 123.545px;
  height: 123.545px;
  z-index: 0;
}

.skill-subscribe-stars-left img { width: 123.545px; height: 123.545px; }
.skill-subscribe-stars-left img:first-child { left: 0; top: 0; }
.skill-subscribe-stars-left img:last-child { left: 0; top: 0; transform: rotate(-45deg); transform-origin: 50% 50%; }

.skill-subscribe-stars-right {
  right: 23px;
  top: 18px;
  width: 48px;
  height: 48px;
}

.skill-subscribe-stars-right img:first-child { left: 0; top: 0; width: 30.399px; height: 30.399px; }
.skill-subscribe-stars-right img:last-child { right: 0; bottom: 0; width: 14.181px; height: 14.185px; }

.skill-footer {
  min-height: 108px;
  margin-top: 116px;
  display: flex;
  align-items: center;
}

.skill-footer .site-footer-inner { width: 100%; }

:where(a, button, input):focus-visible {
  outline: 3px solid #4f46e5;
  outline-offset: 3px;
}

@media (max-width: 1240px) {
  .skill-header-nav .nav-link { padding-inline: 12px; font-size: 14px; }
  .skill-header-nav { gap: 5px; }
  .skill-monkey-stage { right: 0; transform: scale(.9); transform-origin: top right; }
  .skill-hero-copy { width: min(820px, 74%); }
  .skill-install-note { display: none; }
  .skill-pluto-cta { grid-template-columns: 100px minmax(0, 1fr) 270px; gap: 32px; }
  .skill-pluto-cta-button { width: 270px; }
}

@media (max-width: 1024px) {
  .skill-header-outer { padding-inline: 20px; }
  .skill-nav-toggle { display: inline-flex; }
  .skill-header-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 20px;
    right: 20px;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    border: 1.5px solid #000;
    border-radius: 18px;
    background: #000;
    box-shadow: 6px 6px 0 rgba(0,0,0,.3);
  }
  .skill-header-nav.is-open { display: flex; }
  .skill-page .skill-header-nav .nav-link { display: flex; justify-content: flex-start; }
  .skill-header-nav .btn-sneak-peak { justify-content: center; margin-top: 4px; }

  .skill-hero { min-height: auto; padding: 112px 0 80px; }
  .skill-hero-copy { width: 70%; }
  .skill-monkey-stage { right: 0; top: 0; transform: scale(.75); }
  .skill-orbit { display: none; }

  .skill-benefit-grid,
  .skill-step-grid { grid-template-columns: 1fr; }
  .skill-benefit-grid { gap: 18px; }
  .skill-info-card { min-height: 112px; }
  .skill-step-grid { gap: 28px; }
  .skill-step-item { min-height: 116px; }
  .skill-step-item:not(:last-child)::after,
  .skill-step-item:not(:last-child)::before { display: none; }

  .skill-install-panel { min-height: 350px; }
  .skill-install-note {
    display: block;
    position: static;
    width: auto;
    margin: 12px 0 0;
  }
  .skill-install-actions { position: static; justify-content: flex-end; margin-top: 18px; }

  .skill-pluto-cta {
    min-height: 230px;
    padding: 40px;
    grid-template-columns: 92px 1fr;
  }
  .skill-pluto-cta-art { width: 92px; height: 92px; }
  .skill-pluto-cta-art img { width: 92px; height: 92px; }
  .skill-pluto-cta-button { grid-column: 2; width: auto; justify-self: start; }

  .skill-subscribe-card { width: 100%; margin: 0; grid-template-columns: 1fr 1fr; padding: 46px; gap: 40px; }
}

@media (max-width: 760px) {
  .skill-shell { width: min(100% - 32px, 600px); }
  .skill-header-outer { padding-inline: 10px; }
  .skill-header { min-height: 66px; padding: 11px 14px 11px 18px; border-radius: 0 0 25px 25px; }
  .skill-header .header-logo { font-size: 20px; }
  .skill-nav-toggle-label { display: none; }
  .skill-header-nav { top: 58px; left: 10px; right: 10px; }

  .skill-hero { padding: 78px 0 52px; }
  .skill-hero-inner { min-height: 0; }
  .skill-hero-copy { width: 100%; }
  .skill-hero h1 { font-size: clamp(31px, 9vw, 40px); line-height: 1.12; }
  .skill-hero-copy > p { margin-top: 26px; font-size: 17px; line-height: 1.65; }
  .skill-hero-copy > .skill-primary-button { width: 100%; margin-top: 34px; }
  .skill-monkey-stage {
    position: relative;
    top: auto;
    right: auto;
    width: min(364px, 100%);
    height: 326px;
    margin: 46px auto 0;
    transform: scale(.82);
    transform-origin: top center;
  }

  .skill-section h2,
  .skill-section-heading h2,
  .skill-pluto-cta-copy h2,
  .skill-subscribe-copy h2 { font-size: 22px; line-height: 1.45; }
  .skill-steps,
  .skill-onboarding { margin-top: 64px; }

  .skill-info-card { align-items: flex-start; }
  .skill-step-item { align-items: flex-start; padding-inline: 20px; }

  .skill-install-panel { padding: 20px; box-shadow: 5px 5px 0 #000; }
  .skill-install-tabs-row { align-items: flex-start; }
  .skill-platform-tabs { flex-wrap: wrap; }
  .skill-command-panel { height: 180px; padding-right: 42px; }
  .skill-install-actions { flex-direction: column; align-items: stretch; }
  .skill-install-actions .skill-secondary-button,
  .skill-download-button { width: 100%; }
  .skill-checksum {
    position: static !important;
    width: auto !important;
    height: auto !important;
    margin: 14px 0 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
    font-size: 10px;
    line-height: 1.5;
    overflow-wrap: anywhere !important;
    color: #78716c;
  }

  .skill-pluto-cta {
    width: calc(100% - 24px);
    margin-top: 88px;
    padding: 32px 24px;
    grid-template-columns: 74px 1fr;
    gap: 24px;
    border-radius: 24px;
  }
  .skill-pluto-cta-art { width: 74px; height: 74px; }
  .skill-pluto-cta-art img { width: 74px; height: 74px; }
  .skill-pluto-cta-copy p { font-size: 15px; line-height: 1.6; }
  .skill-pluto-cta-button { grid-column: 1 / -1; width: 100%; }

  .skill-subscribe-wrap { width: calc(100% - 24px); margin-top: 72px; }
  .skill-subscribe-card { width: 100%; min-height: auto; grid-template-columns: 1fr; padding: 34px 24px; gap: 28px; border-radius: 22px; }
  .skill-subscribe-form input,
  .skill-subscribe-form button { height: 50px; }
  .skill-subscribe-stars-left { display: none; }
  .skill-footer { margin-top: 72px; }
}

@media (max-width: 420px) {
  .skill-primary-button,
  .skill-secondary-button { font-size: 13px; padding-inline: 18px; }
  .skill-hero-copy > .skill-primary-button,
  .skill-pluto-cta-button { font-size: 13px; line-height: 18px; letter-spacing: .9px; }
  .skill-monkey-stage { margin-left: -8px; }
  .skill-install-tabs-row { gap: 10px; }
  .skill-platform-tab { padding-inline: 8px; }
  .skill-os-tab { width: 42px; }
  .skill-pluto-cta { grid-template-columns: 1fr; text-align: left; }
  .skill-pluto-cta-art { display: none; }
  .skill-pluto-cta-button { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .skill-hovering-monkey,
  .skill-orbit-left { animation: none; }
  .skill-primary-button,
  .skill-secondary-button,
  .skill-prompt-bubble,
  .skill-prompt-copy,
  .skill-prompt-text { transition: none; }
  .skill-prompt-shape {
    width: 181px;
    height: 152px;
    opacity: 1;
    translate: 0 -131px;
  }
}
