/* Stockwyn v2: "the last one sells once"
   Shelf green for the store room, sage paper for reading, label yellow for the one
   thing that matters on a shelf: the tag. Mint only means "confirmed". */

:root {
  --shelf: #0e3b2c;
  --shelf-deep: #0a2c21;
  --shelf-line: #2a5a48;
  --paper: #eef2ec;
  --white: #fbfcfa;
  --ink: #10241b;
  --ink-soft: #465a50;
  --rule: #c9d3cc;
  --tag: #ffd23f;
  --mint: #7fd6a8;

  --display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --text: "Hanken Grotesk", "Segoe UI", system-ui, -apple-system, sans-serif;

  --step--1: 0.875rem;
  --step-0: 1.0625rem;
  --step-1: 1.3rem;
  --step-2: 1.75rem;
  --step-3: clamp(2rem, 4vw, 2.9rem);
  --step-4: clamp(3rem, 8vw, 6rem);

  --gutter: clamp(1.25rem, 4vw, 3rem);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--text);
  font-size: var(--step-0);
  line-height: 1.6;
  font-variant-numeric: tabular-nums;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

.band-shelf :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--tag);
}

.wrap {
  width: min(100% - 2 * var(--gutter), 74rem);
  margin-inline: auto;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  background: var(--tag);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

/* Bands */

.band-shelf {
  background: var(--shelf);
  color: var(--paper);
  --ink-soft: #b9cdc2;
  --rule: var(--shelf-line);
}

/* Header */

.site-header {
  padding-block: 1.4rem;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 2.75rem;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.wordmark svg {
  width: 1.7rem;
  height: 1.7rem;
}

.site-nav {
  display: flex;
  gap: 1.6rem;
  font-size: var(--step--1);
  font-weight: 500;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
}

.site-nav a:hover {
  color: var(--tag);
}

/* Buttons */

.button,
.sell {
  display: inline-block;
  padding: 0.85rem 1.35rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.button-yellow,
.sell {
  background: var(--tag);
  color: var(--ink);
}

.button-yellow:hover,
.sell:hover {
  background: var(--white);
}

.button:active,
.sell:active,
.billing-switch button:active {
  transform: scale(0.98);
}

.button-line,
.sell-line {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}

.button-line:hover,
.sell-line:hover {
  background: transparent;
  color: var(--tag);
}

.sell[aria-disabled="true"] {
  opacity: 0.45;
  cursor: progress;
}

/* Hero */

.hero {
  padding-block: clamp(2rem, 6vw, 5rem) clamp(3.5rem, 9vw, 7rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.hero h1 {
  font-size: var(--step-4);
  line-height: 0.95;
  letter-spacing: -0.035em;
  max-width: 9ch;
}

.hero-lede {
  margin: 1.6rem 0 2.2rem;
  max-width: 44ch;
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* The shelf: one tag, every channel follows it */

.shelf-figure {
  margin: 0;
}

.shelf {
  border: 1px solid var(--shelf-line);
  border-radius: 18px;
  background: var(--shelf-deep);
  overflow: hidden;
}

.tag {
  position: relative;
  margin: 1.4rem 1.4rem 0;
  padding: 1.2rem 1.4rem 1.1rem 2.6rem;
  border-radius: 10px 10px 10px 10px;
  background: var(--tag);
  color: var(--ink);
  transform: rotate(-1.5deg);
  transition: transform 350ms ease;
}

/* The punched hole of a shelf tag */
.tag::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 0.7rem;
  height: 0.7rem;
  margin-top: -0.35rem;
  border-radius: 50%;
  background: var(--shelf-deep);
}

.tag-product {
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
}

.tag-product span {
  display: block;
  font-size: var(--step--1);
  font-weight: 400;
  color: #3d4a2a;
}

.tag-count {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin: 0.3rem 0 0;
}

.tag-num {
  font-family: var(--display);
  font-size: clamp(5rem, 11vw, 7.5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.tag-unit {
  font-family: var(--display);
  font-size: var(--step-2);
  font-weight: 700;
}

.shelf.is-sold .tag {
  transform: rotate(0deg);
}

/* The one authored moment: the tag gets stamped when the last one is sold */
.tag-stamp {
  position: absolute;
  right: 1.2rem;
  bottom: 1.3rem;
  padding: 0.35rem 0.8rem;
  border: 3px solid var(--shelf);
  border-radius: 6px;
  color: var(--shelf);
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  transform: rotate(-8deg);
  animation: stamp-in 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes stamp-in {
  from {
    opacity: 0;
    transform: rotate(-8deg) scale(1.6);
  }
  to {
    opacity: 1;
    transform: rotate(-8deg) scale(1);
  }
}

.lanes {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.lane {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 1.4rem;
  border-top: 1px solid var(--shelf-line);
}

.lane-name {
  font-weight: 700;
}

.lane-state {
  font-size: var(--step--1);
  color: var(--ink-soft);
  text-align: right;
}

.lane.is-waiting .lane-state {
  color: var(--tag);
}

.lane.is-confirmed .lane-state {
  color: var(--mint);
  font-weight: 700;
}

.lane-planned {
  color: #7f978b;
}

.lane-planned .lane-state {
  color: #7f978b;
  font-style: italic;
}

.shelf-controls {
  padding: 1.1rem 1.4rem 1.4rem;
  border-top: 1px solid var(--shelf-line);
}

.shelf-event {
  margin: 0 0 0.9rem;
  min-height: 1.5em;
  font-size: var(--step--1);
  color: var(--ink-soft);
}

.shelf-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.sell {
  padding: 0.65rem 1.1rem;
}

.shelf-caption {
  margin-top: 1rem;
  font-size: var(--step--1);
  color: var(--ink-soft);
}

/* Sections */

.section {
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}

.section-white {
  background: var(--white);
}

.section h2 {
  font-size: var(--step-3);
  max-width: 18ch;
}

.section-lede {
  margin: 1rem 0 0;
  max-width: 56ch;
  color: var(--ink-soft);
}

/* Rules: what it will never do */

.never-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.never-intro p {
  margin: 1rem 0 0;
  max-width: 40ch;
  color: var(--ink-soft);
}

.rules {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rules li {
  padding: 1.4rem 0 1.4rem 2.6rem;
  border-top: 2px solid var(--ink);
  position: relative;
}

.rules li:last-child {
  border-bottom: 2px solid var(--ink);
}

/* A crossed-out mark: this is a "never" list */
.rules li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.75rem;
  width: 1.3rem;
  height: 1.3rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 45%, var(--ink) 45%, var(--ink) 55%, transparent 55%);
}

.rules h3 {
  font-size: var(--step-1);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.rules p {
  margin: 0.4rem 0 0;
  color: var(--ink-soft);
}

.rules .rule-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin-top: 0.9rem;
  font-size: var(--step--1);
}

.proof-sent {
  color: #8a6400;
  font-weight: 700;
}

.stamp {
  display: inline-block;
  padding: 0.15rem 0.6rem;
  border-radius: 4px;
  background: var(--tag);
  color: var(--ink);
  font-weight: 700;
  transform: rotate(-2deg);
}

/* Steps: a real sequence */

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 clamp(1.5rem, 4vw, 3.5rem);
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  row-gap: 0;
  align-content: start;
  counter-increment: step;
}

.steps li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  background: var(--shelf);
  color: var(--tag);
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 800;
}

.steps h3 {
  font-size: var(--step-1);
  letter-spacing: -0.01em;
}

.steps li > p {
  margin: 0.5rem 0 1.3rem;
  color: var(--ink-soft);
}

/* Step examples: small stock slips, like the paper that sits under a shelf tag */

.slip {
  align-self: start;
  padding: 0.35rem 1rem;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--paper);
  font-size: var(--step--1);
}

.slip-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0.55rem 0;
}

.slip-row + .slip-row {
  border-top: 1px dashed var(--rule);
}

.slip-row > :last-child {
  margin-left: auto;
}

.slip-total {
  font-weight: 700;
}

.slip-row.slip-total {
  border-top: 2px solid var(--ink);
}

.slip-sku {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.slip-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  white-space: nowrap;
}

.slip-ok,
.slip-ask {
  padding: 0.1rem 0.55rem;
  border-radius: 4px;
  font-weight: 700;
  white-space: nowrap;
}

.slip-ok {
  background: var(--shelf);
  color: var(--mint);
}

.slip-ask {
  background: var(--tag);
  color: var(--ink);
}

.steps-note {
  margin: 1.5rem 0 0;
  font-size: var(--step--1);
  color: var(--ink-soft);
}

/* Questions */

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.faq {
  border-top: 2px solid var(--ink);
}

.faq details {
  border-bottom: 1px solid var(--rule);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.5rem;
  padding-block: 0.9rem;
  font-family: var(--display);
  font-size: var(--step-1);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "";
  flex: none;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background:
    linear-gradient(var(--ink), var(--ink)) center / 0.75rem 2px no-repeat,
    linear-gradient(var(--ink), var(--ink)) center / 2px 0.75rem no-repeat,
    var(--tag);
}

.faq details[open] summary::after {
  background:
    linear-gradient(var(--ink), var(--ink)) center / 0.75rem 2px no-repeat,
    var(--tag);
}

.faq summary:hover {
  color: var(--shelf-line);
}

.faq details p {
  margin: 0 0 1.3rem;
  max-width: 60ch;
  color: var(--ink-soft);
}

/* Channels: one line from the Shopify count out to each marketplace, with honest status */

.channel-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
}

/* The line every channel hangs on */
.channel-track::before {
  content: "";
  position: absolute;
  left: 0.8rem;
  right: 10%;
  top: 0.8rem;
  height: 3px;
  background: linear-gradient(90deg, var(--ink) 0 45%, #9aa9a1 45% 100%);
}

.channel {
  position: relative;
  display: grid;
  gap: 0.35rem;
  padding-top: 2.6rem;
}

.channel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  border: 3px solid var(--ink);
  background: var(--paper);
}

.channel-name {
  font-family: var(--display);
  font-size: var(--step-2);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.channel-status {
  font-size: var(--step--1);
  color: var(--ink-soft);
}

.channel-hub::before {
  background: var(--shelf);
  border-color: var(--shelf);
}

.channel-dev::before {
  background: var(--tag);
}

.channel-dev .channel-status {
  color: var(--ink);
  font-weight: 700;
}

.channel-planned::before {
  border-style: dashed;
}

.channel-later .channel-name,
.channel-later .channel-status {
  color: #5d6d65;
}

.channel-later::before {
  border-color: #9aa9a1;
}

/* Pricing */

.pricing-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem 3rem;
}

.billing-switch {
  display: inline-flex;
  padding: 0.3rem;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--rule);
}

.billing-switch button {
  padding: 0.6rem 1.2rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.billing-switch button[aria-checked="true"] {
  background: var(--shelf);
  color: var(--paper);
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.5rem;
  border: 2px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
}

.plan {
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.plan + .plan {
  border-left: 1px solid var(--rule);
}

.plan h3 {
  font-size: var(--step-2);
}

.plan-price {
  margin: 1rem 0 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.6vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.plan-price small {
  display: block;
  margin-top: 0.4rem;
  font-family: var(--text);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink-soft);
}

.plan-note {
  margin: 0.8rem 0 0;
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  background: #fff3c2;
  font-size: var(--step--1);
  line-height: 1.4;
}

.plan-facts {
  margin: 1.4rem 0 0;
  padding: 1.2rem 0 0;
  border-top: 1px solid var(--rule);
  list-style: none;
}

.plan-facts li + li {
  margin-top: 0.5rem;
}

.plan-footnotes {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  font-size: var(--step--1);
  color: var(--ink-soft);
}

.plan-footnotes li + li {
  margin-top: 0.35rem;
}

/* Plan finder: two plain questions, the answer lights up a plan */

.finder {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem 2.5rem;
  margin-top: 2.5rem;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border-radius: 18px;
  background: var(--paper);
}

.finder h3 {
  grid-column: 1 / -1;
  font-size: var(--step-1);
  letter-spacing: -0.01em;
}

.finder-group {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.finder-group legend {
  margin-bottom: 0.6rem;
  padding: 0;
  font-size: var(--step--1);
  font-weight: 700;
  color: var(--ink-soft);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  position: relative;
  cursor: pointer;
}

.chip input {
  position: absolute;
  inset: 0;
  opacity: 0;
  margin: 0;
  cursor: pointer;
}

.chip span {
  display: inline-block;
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  border: 2px solid var(--rule);
  border-radius: 999px;
  background: var(--white);
  font-weight: 700;
  line-height: 1.2;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.chip small {
  font-weight: 500;
  color: var(--ink-soft);
}

.chip input:checked + span {
  border-color: var(--shelf);
  background: var(--shelf);
  color: var(--paper);
}

.chip input:checked + span small {
  color: #b9cdc2;
}

.chip input:focus-visible + span {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
}

.chip:active span {
  transform: scale(0.98);
}

.finder-result {
  grid-column: 1 / -1;
  margin: 0.2rem 0 0;
  font-weight: 700;
}

.plan {
  position: relative;
  transition: background-color 300ms ease;
}

.plan.is-fit {
  background: #fff8d9;
}

.plan-fit {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  margin: 0;
  padding: 0.2rem 0.65rem;
  border-radius: 6px;
  background: var(--tag);
  font-weight: 700;
  font-size: var(--step--1);
  transform: rotate(-3deg);
  animation: stamp-in 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Channel line: drawn once from the Shopify count outward when it comes into view */

.channel-track.will-draw::before {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.channel-track.will-draw .channel::before {
  opacity: 0.25;
  transition: opacity 300ms ease;
}

.channel-track.is-drawn::before {
  transform: scaleX(1);
}

.channel-track.is-drawn .channel::before {
  opacity: 1;
}

.channel-track.is-drawn .channel:nth-child(2)::before { transition-delay: 220ms; }
.channel-track.is-drawn .channel:nth-child(3)::before { transition-delay: 440ms; }
.channel-track.is-drawn .channel:nth-child(4)::before { transition-delay: 660ms; }
.channel-track.is-drawn .channel:nth-child(5)::before { transition-delay: 820ms; }

/* Contact: one column, the address is the thing to find */

.section-contact {
  border-top: 2px solid var(--ink);
}

.contact-stack > * {
  max-width: 48rem;
}

.contact-mail {
  margin: 1.2rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.contact-mail a {
  text-decoration-thickness: 3px;
  text-decoration-color: var(--tag);
  text-underline-offset: 0.18em;
  overflow-wrap: anywhere;
}

.contact-mail a:hover {
  color: var(--shelf);
  text-decoration-color: var(--shelf);
}

/* 404: the page is sold out */

.soldout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding-block: clamp(3rem, 8vw, 6rem);
}

.soldout .tag {
  margin: 0;
  max-width: 22rem;
}

.soldout .tag::before {
  background: var(--paper);
}

.soldout h1 {
  font-size: var(--step-3);
}

.soldout p {
  color: var(--ink-soft);
}

.soldout .tag p {
  color: var(--ink);
}

.soldout .button {
  background: var(--shelf);
  color: var(--paper);
}

@media (max-width: 720px) {
  .soldout {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Legal pages share this stylesheet */

.legal {
  padding-block: clamp(2rem, 5vw, 4rem) clamp(3rem, 7vw, 5rem);
}

.legal h1 {
  font-size: var(--step-3);
}

.legal .updated {
  margin: 0.6rem 0 2.5rem;
  color: var(--ink-soft);
  font-size: var(--step--1);
}

.legal article {
  max-width: 68ch;
}

.legal h2 {
  margin: 2.5rem 0 0.75rem;
  font-size: var(--step-1);
  letter-spacing: -0.01em;
}

.legal h3 {
  margin: 1.75rem 0 0.5rem;
  font-size: var(--step-0);
  letter-spacing: 0;
}

.legal ul {
  padding-left: 1.2rem;
}

.legal li + li {
  margin-top: 0.35rem;
}

.legal .button {
  background: var(--shelf);
  color: var(--paper);
}

.site-header-plain {
  background: var(--shelf);
  color: var(--paper);
}

.placeholder {
  background: var(--tag);
  padding: 0 0.25rem;
  border-radius: 2px;
}

.terms-disclaimer {
  padding: 0.9rem 1rem;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-size: var(--step--1);
  line-height: 1.5;
}

/* Footer */

.site-footer {
  padding-block: 2.5rem 3rem;
  background: var(--shelf-deep);
  color: #b9cdc2;
  font-size: var(--step--1);
}

.site-footer .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem 3rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-links a {
  color: var(--paper);
}

.trademarks {
  grid-column: 1 / -1;
  max-width: 90ch;
  margin: 0;
  color: #8fa89b;
}

/* Responsive */

@media (max-width: 960px) {
  .hero-grid,
  .never-grid,
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .channel-track {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .channel-track::before {
    left: 0.8rem;
    right: auto;
    top: 1.2rem;
    bottom: 1.2rem;
    width: 3px;
    height: auto;
    background: linear-gradient(180deg, var(--ink) 0 45%, #9aa9a1 45% 100%);
  }

  .channel {
    grid-template-columns: minmax(0, 1fr);
    padding: 0.9rem 0 0.9rem 3rem;
  }

  .channel::before {
    top: 50%;
    margin-top: -0.8rem;
  }

  .channel-track.will-draw::before {
    transform: scaleY(0);
    transform-origin: center top;
  }

  .channel-track.is-drawn::before {
    transform: scaleY(1);
  }

  .hero h1 {
    max-width: 11ch;
  }

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

  .steps li + li {
    margin-top: 2.5rem;
  }
}

@media (max-width: 720px) {
  .finder {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .plan + .plan {
    border-left: 0;
    border-top: 1px solid var(--rule);
  }
}

@media (max-width: 600px) {
  .site-nav {
    display: none;
  }

  .tag {
    margin: 1rem 1rem 0;
  }

  .lane,
  .shelf-controls {
    padding-inline: 1rem;
  }

  .shelf-buttons .sell {
    flex: 1 1 auto;
    text-align: center;
  }

  .site-footer .wrap {
    grid-template-columns: minmax(0, 1fr);
  }
}

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

  .tag {
    transition: none;
  }

  .tag-stamp,
  .plan-fit {
    animation: none;
  }
}
