@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&display=swap");

:root {
  color-scheme: dark;
  --bg: #08100e;
  --surface: #0c1614;
  --surface-2: #131e1c;
  --surface-3: #1a2624;
  --line: #1f3330;
  --line-strong: #2e4944;
  --text: #f4f8f7;
  --muted: #9faaa6;
  --quiet: #6b7672;
  --mint: #5eead4;
  --mint-hover: #7af3df;
  --yellow: #facc15;
  --coral: #ed7d5b;
  --ink: #08100e;
  --sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --content: 1180px;
  --article: 820px;
  --shadow: 0 22px 70px rgba(0, 0, 0, .36);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 86% -4%, rgba(94, 234, 212, .15), transparent 27rem),
    var(--bg);
  color: var(--text);
  font: 400 18px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .34;
  background-image: radial-gradient(circle, rgba(94, 234, 212, .20) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  color: inherit;
  font: inherit;
}

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

::selection {
  background: var(--mint);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid rgba(94, 234, 212, .45);
  outline-offset: 4px;
}

.wrap {
  width: min(var(--content), calc(100% - 48px));
  margin-inline: auto;
}

.ticker {
  min-height: 46px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #050c0a;
  border-bottom: 1px solid var(--line);
  color: var(--mint);
  font: 600 12px/1.2 var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ticker__arrows {
  color: var(--yellow);
  letter-spacing: .2em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 16, 14, .86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.brand__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 20px rgba(94, 234, 212, .8);
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font: 500 10px/1 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  transition: color .2s ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--mint);
}

.header-cta,
.button {
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--mint);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.2;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.header-cta:hover,
.button:hover {
  background: var(--mint-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(94, 234, 212, .18);
}

.button--yellow {
  background: var(--yellow);
}

.button--yellow:hover {
  background: #ffdb39;
  box-shadow: 0 14px 32px rgba(250, 204, 21, .18);
}

.button--ghost {
  background: var(--surface);
  color: var(--mint);
  border-color: var(--line-strong);
}

.button--ghost:hover {
  background: var(--surface-2);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 9px 13px;
  border: 1px solid rgba(94, 234, 212, .42);
  border-radius: 999px;
  background: rgba(94, 234, 212, .07);
  color: var(--mint);
  font: 700 11px/1 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.catalog-hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  gap: 62px;
  align-items: center;
  padding-block: 74px 86px;
}

.catalog-hero h1,
.article-hero h1 {
  margin-bottom: 28px;
  font-size: clamp(54px, 7.2vw, 92px);
  line-height: .94;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.title-highlight {
  display: inline-block;
  margin-top: 8px;
  padding: .03em .14em .09em;
  background: var(--mint);
  color: var(--ink);
  box-shadow: 8px 10px 0 rgba(0, 0, 0, .4);
  transform: rotate(-1deg);
}

.hero-copy {
  max-width: 710px;
  margin-bottom: 30px;
  color: #cbd4d1;
  font-size: 21px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-meta {
  margin-top: 27px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font: 600 11px/1.2 var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-meta span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
}

.tool-card {
  position: relative;
  min-height: 500px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(94, 234, 212, .09), transparent 45%),
    linear-gradient(180deg, #101c19, #07100d);
  box-shadow: var(--shadow);
}

.tool-card::after {
  content: "11";
  position: absolute;
  right: 8px;
  bottom: -38px;
  color: rgba(94, 234, 212, .07);
  font-size: 210px;
  font-weight: 800;
  letter-spacing: -.09em;
  line-height: .8;
}

.tool-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.tool-card__top img {
  width: min(250px, 70%);
}

.tool-card__index {
  color: var(--yellow);
  font: 700 11px/1 var(--mono);
  letter-spacing: .14em;
}

.terminal {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(3, 9, 7, .9);
  box-shadow: 10px 12px 0 rgba(0, 0, 0, .3);
}

.terminal__bar {
  height: 42px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--line);
}

.terminal__bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.terminal__bar i:nth-child(1) { background: var(--coral); }
.terminal__bar i:nth-child(2) { background: var(--yellow); }
.terminal__bar i:nth-child(3) { background: var(--mint); }

.terminal__body {
  min-height: 260px;
  padding: 22px;
  color: #c3ceca;
  font: 500 13px/1.75 var(--mono);
}

.terminal__body p {
  margin-bottom: 11px;
}

.terminal__prompt { color: var(--mint); }
.terminal__result { color: var(--text); }
.terminal__done { color: var(--yellow); }

.starburst {
  position: absolute;
  top: 116px;
  right: -7px;
  z-index: 2;
  color: var(--coral);
  font-size: 72px;
  font-weight: 300;
  line-height: 1;
  transform: rotate(18deg);
  text-shadow: 0 0 30px rgba(237, 125, 91, .32);
}

.section {
  padding-block: 90px;
  border-top: 1px solid var(--line);
}

.section--surface {
  background: rgba(12, 22, 20, .72);
}

.section-head {
  margin-bottom: 36px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--mint);
  font: 700 11px/1.2 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-head h2,
.product-panel h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -.045em;
}

.section-note {
  max-width: 450px;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 16px;
}

.filter-row {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.filter {
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  font: 650 12px/1 var(--mono);
  transition: .2s ease;
}

.filter:hover,
.filter.is-active {
  border-color: var(--mint);
  background: var(--mint);
  color: var(--ink);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.guide-card {
  position: relative;
  min-height: 360px;
  padding: 28px;
  overflow: hidden;
  border-radius: 24px;
  color: var(--ink);
  box-shadow: 10px 12px 0 rgba(0, 0, 0, .34);
  transition: transform .22s ease, box-shadow .22s ease;
}

.guide-card:not(.guide-card--soon):hover {
  transform: translateY(-5px) rotate(0);
  box-shadow: 12px 18px 0 rgba(0, 0, 0, .34);
}

.guide-card:nth-child(3n + 1) { background: var(--mint); transform: rotate(-.35deg); }
.guide-card:nth-child(3n + 2) { background: var(--yellow); transform: rotate(.3deg); }
.guide-card:nth-child(3n + 3) { background: var(--coral); transform: rotate(-.2deg); }

.guide-card--soon {
  opacity: .76;
}

.guide-card__top,
.guide-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font: 750 10px/1.2 var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.guide-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: rgba(8, 16, 14, .08);
  font: 800 18px/1 var(--mono);
}

.guide-card h3 {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 62px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(31px, 3vw, 41px);
  line-height: .98;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.guide-card__foot {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
}

.guide-card[hidden] {
  display: none;
}

.product-panel {
  padding: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 12%, rgba(94, 234, 212, .13), transparent 24rem),
    var(--surface);
  box-shadow: var(--shadow);
}

.product-panel__intro {
  max-width: 760px;
  margin: 20px 0 30px;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  min-height: 250px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  color: var(--ink);
  transition: transform .2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card--mint { background: var(--mint); }
.product-card--yellow { background: var(--yellow); }

.product-card__label {
  font: 750 10px/1 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 44px 0 12px;
  color: var(--ink);
  font-size: 36px;
  line-height: 1;
  letter-spacing: -.04em;
}

.product-card p {
  margin-bottom: 24px;
  color: rgba(8, 16, 14, .78);
  font-size: 16px;
  line-height: 1.5;
}

.product-card__link {
  margin-top: auto;
  font: 800 13px/1 var(--mono);
}

.channel-cta {
  padding: 70px 0 92px;
  text-align: center;
  border-top: 1px solid var(--line);
}

.channel-cta h2 {
  max-width: 850px;
  margin: 0 auto 20px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: .98;
  letter-spacing: -.055em;
}

.channel-cta p {
  max-width: 620px;
  margin: 0 auto 28px;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050c0a;
}

.site-footer__inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--quiet);
  font: 500 12px/1.5 var(--mono);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a:hover {
  color: var(--mint);
}

/* Article */
.article-hero {
  padding: 82px 0 64px;
}

.article-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, .85fr);
  gap: 58px;
  align-items: center;
}

.article-hero h1 {
  font-size: clamp(52px, 6.4vw, 86px);
}

.article-hero__visual {
  position: relative;
  min-height: 450px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  background:
    radial-gradient(circle at 72% 30%, rgba(237, 125, 91, .16), transparent 11rem),
    linear-gradient(145deg, rgba(94, 234, 212, .08), transparent 50%),
    var(--surface);
  box-shadow: var(--shadow);
}

.article-hero__visual img {
  position: relative;
  z-index: 2;
  width: 82%;
  margin: 24px auto;
}

.article-hero__visual .terminal {
  margin-top: 14px;
}

.article-hero__visual .terminal__body {
  min-height: 170px;
}

.article-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 46px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
}

.article-meta__item {
  padding: 18px;
  background: var(--surface);
}

.article-meta__item small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font: 600 10px/1 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.article-meta__item strong {
  font-size: 16px;
}

.article-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, var(--article));
  gap: 54px;
  justify-content: center;
  align-items: start;
  padding: 70px 0 110px;
  border-top: 1px solid var(--line);
}

.toc {
  position: sticky;
  top: 106px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(12, 22, 20, .92);
}

.toc__title {
  margin-bottom: 13px;
  color: var(--mint);
  font: 700 10px/1 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.toc a {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.toc a:last-child {
  border-bottom: 0;
}

.toc a:hover {
  color: var(--mint);
}

.article {
  min-width: 0;
}

.article > p,
.article li {
  color: #cbd4d1;
}

.article > p {
  margin-bottom: 24px;
}

.article h2 {
  scroll-margin-top: 110px;
  margin: 84px 0 24px;
  font-size: clamp(36px, 5vw, 55px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.article h3 {
  margin: 42px 0 16px;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -.025em;
}

.lead {
  color: var(--text) !important;
  font-size: 23px;
  line-height: 1.55;
}

.article a:not(.button):not(.product-card) {
  color: var(--mint);
  text-decoration: underline;
  text-decoration-color: rgba(94, 234, 212, .35);
  text-underline-offset: 4px;
}

.article-list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.article-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 32px;
}

.article-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--mint);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.step-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: var(--yellow);
  font: 700 11px/1 var(--mono);
  letter-spacing: .13em;
  text-transform: uppercase;
}

.step-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.note {
  margin: 30px 0;
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-left: 5px solid var(--mint);
  border-radius: 16px;
  background: var(--surface);
}

.note--warning {
  border-left-color: var(--yellow);
}

.note--coral {
  border-left-color: var(--coral);
}

.note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.note p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.proof-grid {
  margin: 34px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.proof-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.proof-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-2);
}

.proof-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.proof-card__body {
  padding: 16px;
}

.proof-card__body strong {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}

.proof-card__body span {
  color: var(--muted);
  font-size: 12px;
}

.annotated-shot {
  position: relative;
  margin: 34px 0;
  padding: 18px 18px 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.annotated-shot img {
  width: 100%;
  border-radius: 14px;
}

.annotated-shot figcaption {
  padding: 15px 4px 17px;
  color: var(--muted);
  font-size: 14px;
}

.shot-marker {
  position: absolute;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font: 800 17px/1 var(--mono);
  box-shadow: 0 7px 20px rgba(0, 0, 0, .35);
}

.shot-marker--download {
  top: 39%;
  right: 23%;
}

.shot-marker--extensions {
  top: 26%;
  right: 18%;
}

.shot-ring {
  position: absolute;
  z-index: 2;
  border: 5px solid var(--coral);
  border-radius: 18px;
  box-shadow: 0 0 0 4px rgba(8, 16, 14, .4);
  pointer-events: none;
}

.shot-ring--download {
  top: 35%;
  right: 12%;
  width: 22%;
  height: 20%;
}

.shot-ring--panel {
  top: 14%;
  right: 8%;
  width: 39%;
  height: 65%;
}

.shot-arrow {
  position: absolute;
  z-index: 3;
  width: 76px;
  height: 5px;
  border-radius: 999px;
  background: var(--mint);
  transform-origin: right center;
  pointer-events: none;
}

.shot-arrow::after {
  content: "";
  position: absolute;
  right: -3px;
  top: -7px;
  width: 16px;
  height: 16px;
  border-top: 5px solid var(--mint);
  border-right: 5px solid var(--mint);
  transform: rotate(45deg);
}

.shot-arrow--download {
  top: 46%;
  right: 29%;
  transform: rotate(-13deg);
}

.shot-arrow--panel {
  top: 23%;
  right: 36%;
  transform: rotate(8deg);
}

.fake-window {
  margin: 32px 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: #050c0a;
  box-shadow: var(--shadow);
}

.fake-window__bar {
  min-height: 44px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font: 600 11px/1 var(--mono);
}

.fake-window__bar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.fake-window__bar i:nth-child(1) { background: var(--coral); }
.fake-window__bar i:nth-child(2) { background: var(--yellow); }
.fake-window__bar i:nth-child(3) { background: var(--mint); }

.fake-window__bar span {
  margin-left: 8px;
}

.folder-screen {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 330px;
}

.folder-screen__side {
  padding: 24px;
  border-right: 1px solid var(--line);
  background: var(--surface);
}

.folder-screen__side strong {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font: 700 10px/1 var(--mono);
  letter-spacing: .1em;
}

.folder-tree {
  color: #cbd4d1;
  font: 500 13px/2 var(--mono);
}

.folder-tree .active {
  margin-left: -8px;
  padding: 5px 8px;
  border-radius: 7px;
  background: rgba(94, 234, 212, .12);
  color: var(--mint);
}

.folder-screen__main {
  position: relative;
  padding: 42px;
  display: grid;
  place-items: center;
  text-align: center;
}

.folder-screen__main b {
  display: block;
  margin-bottom: 12px;
  font-size: 30px;
}

.folder-screen__main p {
  max-width: 380px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.folder-screen__main .shot-marker {
  top: 28px;
  right: 28px;
}

.question-grid {
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.question {
  min-height: 150px;
  padding: 22px;
  border-radius: 18px;
  color: var(--ink);
}

.question:nth-child(1),
.question:nth-child(4) { background: var(--mint); }
.question:nth-child(2) { background: var(--yellow); }
.question:nth-child(3) { background: var(--coral); }

.question__num {
  font: 800 11px/1 var(--mono);
}

.question strong {
  display: block;
  margin-top: 28px;
  font-size: 21px;
  line-height: 1.15;
}

.prompt-box {
  position: relative;
  margin: 30px 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: #050c0a;
}

.prompt-box__head {
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--yellow);
  font: 700 11px/1 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.prompt-box pre {
  margin: 0;
  padding: 24px;
  overflow-x: auto;
  white-space: pre-wrap;
  color: #d6dfdc;
  font: 500 14px/1.75 var(--mono);
}

.checklist {
  margin: 32px 0;
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: var(--surface);
}

.checklist h3 {
  margin-top: 0;
}

.checklist label {
  min-height: 48px;
  padding: 11px 0;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  border-bottom: 1px solid var(--line);
  color: #cbd4d1;
  cursor: pointer;
}

.checklist label:last-child {
  border-bottom: 0;
}

.checklist input {
  width: 21px;
  height: 21px;
  margin-top: 3px;
  accent-color: var(--mint);
}

.article-products {
  margin: 70px 0 30px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}

.article-products h2 {
  margin-top: 0;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(12, 22, 20, .9);
  color: var(--mint);
  font: 800 18px/1 var(--mono);
  backdrop-filter: blur(10px);
}

@media (max-width: 980px) {
  .catalog-hero,
  .article-hero__grid {
    grid-template-columns: 1fr;
  }

  .catalog-hero {
    padding-top: 58px;
  }

  .tool-card,
  .article-hero__visual {
    min-height: 420px;
  }

  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
  }

  .toc__title {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 17px;
  }

  .wrap {
    width: min(100% - 30px, var(--content));
  }

  .ticker {
    justify-content: center;
    text-align: center;
  }

  .ticker span:last-child,
  .ticker__arrows {
    display: none;
  }

  .site-header__inner {
    min-height: 66px;
  }

  .nav {
    display: none;
  }

  .header-cta {
    min-height: 44px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .brand small {
    display: none;
  }

  .catalog-hero,
  .article-hero {
    padding-block: 46px 58px;
  }

  .catalog-hero {
    min-height: auto;
  }

  .catalog-hero h1,
  .article-hero h1 {
    font-size: clamp(44px, 13.2vw, 62px);
    line-height: .96;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-meta {
    display: grid;
    gap: 11px;
  }

  .tool-card,
  .article-hero__visual {
    min-height: 360px;
    padding: 18px;
    border-radius: 22px;
  }

  .tool-card__top img {
    width: 210px;
  }

  .tool-card::after {
    font-size: 160px;
  }

  .terminal__body {
    min-height: 220px;
    padding: 18px;
    font-size: 11px;
  }

  .section {
    padding-block: 64px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .guide-grid,
  .product-grid,
  .proof-grid,
  .question-grid {
    grid-template-columns: 1fr;
  }

  .guide-card {
    min-height: 330px;
  }

  .product-panel {
    padding: 24px;
  }

  .site-footer__inner {
    padding-block: 24px;
    align-items: flex-start;
    flex-direction: column;
  }

  .article-meta {
    grid-template-columns: 1fr;
  }

  .article-layout {
    padding-block: 48px 84px;
  }

  .toc {
    grid-template-columns: 1fr;
  }

  .article h2 {
    margin-top: 66px;
    font-size: 39px;
  }

  .lead {
    font-size: 20px;
  }

  .annotated-shot {
    margin-inline: -5px;
    padding: 9px 9px 0;
    border-radius: 16px;
  }

  .shot-marker {
    width: 34px;
    height: 34px;
    border-width: 3px;
    font-size: 14px;
  }

  .shot-ring {
    border-width: 3px;
    border-radius: 10px;
  }

  .shot-arrow {
    width: 48px;
    height: 4px;
  }

  .shot-arrow::after {
    top: -5px;
    width: 12px;
    height: 12px;
    border-width: 4px;
  }

  .folder-screen {
    grid-template-columns: 1fr;
  }

  .folder-screen__side {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .folder-screen__main {
    min-height: 250px;
    padding: 28px;
  }

  .prompt-box pre {
    padding: 18px;
    font-size: 12px;
  }

  .back-top {
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
