:root {
  --font-display: "Anybody", "Trebuchet MS", system-ui, sans-serif;
  --font-body: "Inclusive Sans", system-ui, -apple-system, sans-serif;
  --font-utility: "Azeret Mono", ui-monospace, SFMono-Regular, monospace;
}


:root {
  --night: #21162e;
  --blue: #4d5fff;
  --lilac: #dde2ff;
  --coral: #ff6a5e;
  --yellow: #ffd447;
  --paper: #fbfaff;
  --mint: #a9f1d1;
  --line: 2px solid var(--night);
  --page: min(1440px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--lilac);
  color: var(--night);
  font-family: var(--font-body), Arial, sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 1.45;
  overflow-x: hidden;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

a {
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

::selection {
  background: var(--yellow);
  color: var(--night);
}

:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: 4px;
}

.site-nav {
  align-items: center;
  border-bottom: var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 86px;
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 28px;
  position: relative;
  z-index: 10;
}

.wordmark {
  align-items: center;
  display: inline-flex;
  font-family: var(--font-display), sans-serif;
  font-size: 1.72rem;
  font-variation-settings: "wdth" 108;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  width: max-content;
}

.wordmark b {
  background: var(--coral);
  border: 2px solid var(--night);
  font-size: 0.66em;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-left: 0.1em;
  padding: 0.35em 0.42em 0.3em;
  transform: rotate(-3deg);
}

.unofficial-label,
.eyebrow,
.stage-topline,
.speaker,
.recipe-name > span,
.recipe-index,
.recipe-facts,
.permission-chip,
.permission-level,
.how-list span,
.stage-note {
  font-family: var(--font-utility), monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.unofficial-label {
  background: var(--paper);
  border: 1.5px solid var(--night);
  padding: 0.48rem 0.75rem;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 1.65rem;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 0.96rem;
  font-weight: 650;
  position: relative;
}

.nav-links a::after,
.official-links a::after,
.text-link::after {
  background: currentColor;
  bottom: -0.25rem;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.nav-links a:hover::after,
.official-links a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(3rem, 5vw, 6.5rem);
  grid-template-columns: minmax(0, 0.84fr) minmax(540px, 1.16fr);
  margin: 0 auto;
  max-width: 1440px;
  min-height: calc(100svh - 86px);
  padding: clamp(4rem, 7vw, 7rem) 28px;
  scroll-margin-top: 20px;
}

.eyebrow {
  align-items: center;
  display: flex;
  gap: 0.7rem;
}

.eyebrow::before {
  background: var(--coral);
  border: 1.5px solid var(--night);
  content: "";
  display: inline-block;
  height: 0.72rem;
  transform: rotate(45deg);
  width: 0.72rem;
}

.hero h1 {
  font-family: var(--font-display), sans-serif;
  font-size: clamp(4.15rem, 7.2vw, 7.4rem);
  font-variation-settings: "wdth" 82;
  font-weight: 760;
  letter-spacing: -0.075em;
  line-height: 0.84;
  margin: 1.4rem 0 1.75rem;
  max-width: 760px;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--blue);
  font-style: normal;
  font-variation-settings: "wdth" 118;
  position: relative;
  white-space: nowrap;
}

.hero h1 em::after {
  background: var(--yellow);
  bottom: 0.015em;
  content: "";
  height: 0.09em;
  left: 0.02em;
  position: absolute;
  transform: rotate(-1deg);
  width: 98%;
  z-index: -1;
}

.hero-intro {
  font-size: clamp(1.14rem, 1.6vw, 1.42rem);
  line-height: 1.42;
  max-width: 600px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.7rem;
  margin-top: 2.2rem;
}

.button {
  align-items: center;
  border: var(--line);
  display: inline-flex;
  font-family: var(--font-utility), monospace;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 1rem;
  justify-content: center;
  letter-spacing: 0.03em;
  min-height: 54px;
  padding: 0.85rem 1.15rem;
  text-transform: uppercase;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.button:hover {
  box-shadow: 6px 6px 0 var(--night);
  transform: translate(-3px, -3px);
}

.button-primary {
  background: var(--coral);
}

.text-link {
  font-weight: 700;
  position: relative;
}

.trust-line {
  border-left: 4px solid var(--yellow);
  font-size: 0.92rem;
  font-weight: 650;
  margin-top: 2.6rem;
  max-width: 440px;
  padding: 0.15rem 0 0.15rem 0.85rem;
}

.hero-demo {
  min-width: 0;
}

.recipe-switcher {
  display: flex;
  gap: 0;
  padding-left: 1.3rem;
}

.recipe-switcher button {
  background: var(--paper);
  border: 2px solid var(--night);
  border-bottom: 0;
  cursor: pointer;
  font-family: var(--font-utility), monospace;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-right: -2px;
  min-height: 39px;
  padding: 0.65rem 0.85rem;
  text-transform: uppercase;
  transition: background-color 160ms ease, transform 160ms ease;
}

.recipe-switcher button:hover,
.recipe-switcher button.active {
  background: var(--yellow);
}

.recipe-switcher button.active {
  transform: translateY(-5px);
}

.conversation-stage {
  background: var(--blue);
  border: var(--line);
  box-shadow: 12px 12px 0 var(--night);
  min-height: 590px;
  padding: clamp(1.4rem, 2.8vw, 2.6rem);
  position: relative;
}

.stage-topline {
  color: var(--paper);
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.6rem;
}

.stage-topline span:first-child {
  align-items: center;
  display: flex;
  gap: 0.55rem;
}

.stage-topline span:first-child::before {
  animation: blink 1.2s steps(2, start) infinite;
  background: var(--coral);
  border: 1.5px solid var(--night);
  content: "";
  height: 0.62rem;
  width: 0.62rem;
}

.script {
  min-height: 420px;
}

.speech-step {
  background: var(--paper);
  border: var(--line);
  box-shadow: 5px 5px 0 rgba(33, 22, 46, 0.28);
  margin-bottom: 1.45rem;
  min-height: 78px;
  padding: 0.85rem 1rem 0.95rem;
  position: relative;
  transition: background-color 180ms ease, transform 180ms ease, width 280ms ease;
}

.speech-step::after {
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 11px solid var(--night);
  bottom: -12px;
  content: "";
  left: 22px;
  position: absolute;
}

.speech-step:last-child::after {
  display: none;
}

.speech-step.step-0 {
  margin-left: 0;
  width: 54%;
}

.speech-step.step-1 {
  margin-left: 10%;
  width: 77%;
}

.speech-step.step-2 {
  margin-left: 24%;
  width: 73%;
}

.speech-step.step-3 {
  margin-left: 37%;
  width: 61%;
}

.speech-step .speaker {
  color: var(--blue);
  display: block;
  margin-bottom: 0.3rem;
}

.speech-step p {
  font-family: var(--font-display), sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  font-variation-settings: "wdth" 98;
  font-weight: 620;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.speech-step.has-spoken {
  background: var(--mint);
}

.speech-step.is-speaking {
  background: var(--yellow);
  box-shadow: 8px 8px 0 var(--night);
  transform: translate(-3px, -3px);
}

.speech-step.is-speaking p {
  animation: breathe 760ms ease-in-out both;
}

.stage-controls {
  align-items: center;
  border-top: 1.5px solid rgba(251, 250, 255, 0.5);
  display: flex;
  justify-content: space-between;
  padding-top: 1.1rem;
}

.speak-button {
  align-items: center;
  background: var(--coral);
  border: var(--line);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-utility), monospace;
  font-size: 0.73rem;
  font-weight: 700;
  gap: 0.75rem;
  min-height: 48px;
  padding: 0.7rem 1rem;
  text-transform: uppercase;
}

.speak-button:disabled {
  color: var(--night);
  cursor: wait;
}

.sound-bars {
  align-items: center;
  display: flex;
  gap: 2px;
  height: 18px;
}

.sound-bars i {
  background: var(--night);
  display: block;
  height: 6px;
  width: 2px;
}

.speak-button:disabled .sound-bars i {
  animation: sound 540ms ease-in-out infinite alternate;
}

.speak-button:disabled .sound-bars i:nth-child(2) {
  animation-delay: -280ms;
}

.speak-button:disabled .sound-bars i:nth-child(3) {
  animation-delay: -420ms;
}

.speak-button:disabled .sound-bars i:nth-child(4) {
  animation-delay: -160ms;
}

.stage-note {
  color: var(--paper);
  opacity: 0.76;
}

.statement {
  border-bottom: var(--line);
  border-top: var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.statement span {
  align-items: center;
  border-right: var(--line);
  display: flex;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(1.2rem, 2.1vw, 2rem);
  font-variation-settings: "wdth" 96;
  font-weight: 720;
  justify-content: center;
  letter-spacing: -0.04em;
  min-height: 90px;
  padding: 1.2rem;
  text-align: center;
}

.statement span:nth-child(1) {
  background: var(--coral);
}

.statement span:nth-child(2) {
  background: var(--paper);
}

.statement span:nth-child(3) {
  background: var(--yellow);
  border-right: 0;
}

.recipes-section,
.teeth-section,
.how-section,
.submit-section,
footer {
  padding-left: max(28px, calc((100vw - 1384px) / 2));
  padding-right: max(28px, calc((100vw - 1384px) / 2));
}

.recipes-section {
  background: var(--paper);
  padding-bottom: clamp(5rem, 9vw, 9rem);
  padding-top: clamp(5rem, 9vw, 9rem);
  scroll-margin-top: 20px;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 4rem;
  grid-template-columns: 1.2fr 0.8fr;
  margin-bottom: clamp(3rem, 5vw, 5.5rem);
}

.section-heading h2,
.teeth-title h2,
.how-intro h2,
.submit-section h2 {
  font-family: var(--font-display), sans-serif;
  font-size: clamp(3rem, 5.5vw, 6rem);
  font-variation-settings: "wdth" 86;
  font-weight: 740;
  letter-spacing: -0.065em;
  line-height: 0.9;
  margin-top: 1rem;
  text-wrap: balance;
}

.section-heading > p {
  font-size: 1.15rem;
  line-height: 1.45;
  max-width: 510px;
}

.recipe-list {
  border-bottom: var(--line);
}

.recipe-row {
  align-items: center;
  border-top: var(--line);
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 48px minmax(160px, 0.9fr) minmax(230px, 1.45fr) minmax(170px, 0.75fr) 78px 90px;
  min-height: 138px;
  padding: 1.25rem 0;
  transition: background-color 160ms ease, padding 160ms ease;
}

.recipe-row:hover {
  background: var(--lilac);
  padding-left: 1rem;
  padding-right: 1rem;
}

.recipe-index {
  align-self: start;
  padding-top: 0.2rem;
}

.recipe-name > span {
  color: var(--blue);
  display: block;
  margin-bottom: 0.45rem;
}

.recipe-name h3 {
  font-family: var(--font-display), sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  font-variation-settings: "wdth" 92;
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 1;
}

.recipe-summary {
  font-size: 1rem;
  line-height: 1.42;
  max-width: 520px;
}

.recipe-facts {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  line-height: 1.35;
}

.recipe-facts span:last-child {
  font-weight: 500;
  opacity: 0.65;
}

.permission-chip {
  border: 1.5px solid var(--night);
  padding: 0.5rem 0.38rem;
  text-align: center;
}

.permission-chip.peeks {
  background: var(--mint);
}

.permission-chip.pokes {
  background: var(--yellow);
}

.permission-chip.bites {
  background: var(--coral);
}

.stage-link {
  background: transparent;
  cursor: pointer;
  font-weight: 750;
  justify-self: end;
  padding: 0.65rem 0;
  white-space: nowrap;
}

.stage-link span {
  display: inline-block;
  transition: transform 160ms ease;
}

.stage-link:hover span {
  transform: translateY(-4px);
}

.teeth-section {
  background: var(--night);
  color: var(--paper);
  display: grid;
  gap: clamp(4rem, 9vw, 10rem);
  grid-template-columns: minmax(300px, 0.85fr) minmax(480px, 1.15fr);
  padding-bottom: clamp(5rem, 9vw, 9rem);
  padding-top: clamp(5rem, 9vw, 9rem);
  scroll-margin-top: 20px;
}

.teeth-title .eyebrow::before {
  border-color: var(--paper);
}

.teeth-title > p:last-child {
  font-size: 1.12rem;
  line-height: 1.5;
  margin-top: 1.8rem;
  max-width: 500px;
  opacity: 0.78;
}

.permission-list {
  border-bottom: 1.5px solid rgba(251, 250, 255, 0.55);
}

.permission-row {
  align-items: start;
  border-top: 1.5px solid rgba(251, 250, 255, 0.55);
  display: grid;
  gap: 1.3rem;
  grid-template-columns: 92px 130px 1fr;
  min-height: 138px;
  padding: 1.6rem 0;
  position: relative;
}

.permission-row::before {
  content: "";
  height: 100%;
  left: -1.5rem;
  position: absolute;
  top: 0;
  width: 5px;
}

.permission-row.peeks::before {
  background: var(--mint);
}

.permission-row.pokes::before {
  background: var(--yellow);
}

.permission-row.bites::before {
  background: var(--coral);
}

.permission-level {
  border: 1px solid currentColor;
  justify-self: start;
  padding: 0.45rem 0.5rem;
}

.permission-row h3 {
  font-family: var(--font-display), sans-serif;
  font-size: 1.75rem;
  font-variation-settings: "wdth" 90;
  letter-spacing: -0.045em;
  line-height: 1;
}

.permission-row p {
  font-size: 1rem;
  line-height: 1.45;
  opacity: 0.76;
}

.how-section {
  background: var(--yellow);
  display: grid;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: minmax(300px, 0.9fr) minmax(480px, 1.1fr);
  padding-bottom: clamp(5rem, 9vw, 9rem);
  padding-top: clamp(5rem, 9vw, 9rem);
}

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

.how-list li {
  align-items: start;
  background: var(--paper);
  border: var(--line);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 76px 1fr;
  margin-bottom: -2px;
  min-height: 112px;
  padding: 1.4rem;
  position: relative;
}

.how-list li:nth-child(2) {
  margin-left: 7%;
}

.how-list li:nth-child(3) {
  margin-left: 14%;
}

.how-list li::after {
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 11px solid var(--night);
  bottom: -12px;
  content: "";
  left: 26px;
  position: absolute;
  z-index: 2;
}

.how-list li:last-child::after {
  display: none;
}

.how-list span {
  color: var(--blue);
  padding-top: 0.25rem;
}

.how-list p {
  font-family: var(--font-display), sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-variation-settings: "wdth" 96;
  font-weight: 630;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.submit-section {
  align-items: end;
  background: var(--coral);
  border-bottom: var(--line);
  border-top: var(--line);
  display: grid;
  gap: 2.4rem;
  grid-template-columns: 0.95fr 1.4fr 0.8fr auto;
  padding-bottom: clamp(3.6rem, 6vw, 6rem);
  padding-top: clamp(3.6rem, 6vw, 6rem);
}

.submit-section .eyebrow {
  align-self: start;
  margin-top: 0.6rem;
}

.submit-section .eyebrow::before {
  background: var(--yellow);
}

.submit-section h2 {
  font-size: clamp(2.6rem, 4.4vw, 5rem);
  margin: 0;
}

.submit-section > p:not(.eyebrow) {
  font-size: 1.04rem;
  line-height: 1.48;
}

.button-light {
  background: var(--paper);
  white-space: nowrap;
}

footer {
  align-items: start;
  background: var(--lilac);
  display: grid;
  gap: clamp(2rem, 5vw, 6rem);
  grid-template-columns: 0.8fr 1.3fr 0.55fr;
  padding-bottom: 3.5rem;
  padding-top: 3.5rem;
}

.wordmark-footer {
  font-size: 1.35rem;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 0.9rem;
}

.disclaimer {
  font-size: 0.8rem;
  line-height: 1.55;
  max-width: 620px;
  opacity: 0.68;
}

.official-links {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  font-size: 0.88rem;
  font-weight: 700;
  gap: 0.75rem;
}

.official-links a {
  position: relative;
}

@keyframes blink {
  50% {
    opacity: 0.28;
  }
}

@keyframes breathe {
  0% {
    font-variation-settings: "wdth" 92;
  }
  55% {
    font-variation-settings: "wdth" 115;
  }
  100% {
    font-variation-settings: "wdth" 101;
  }
}

@keyframes sound {
  from {
    height: 4px;
  }
  to {
    height: 17px;
  }
}

@media (max-width: 1120px) {
  .hero {
    align-items: start;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
  }

  .hero-copy .eyebrow,
  .hero-copy h1 {
    grid-column: 1 / -1;
  }

  .hero-intro {
    grid-column: 1;
  }

  .hero-actions {
    align-self: start;
    grid-column: 2;
    grid-row: 3 / span 2;
    justify-content: flex-end;
    margin-top: 0;
  }

  .trust-line {
    grid-column: 1;
  }

  .conversation-stage {
    min-height: 560px;
  }

  .recipe-row {
    gap: 1rem;
    grid-template-columns: 40px minmax(150px, 0.9fr) minmax(210px, 1.2fr) 78px 84px;
  }

  .recipe-facts {
    display: none;
  }

  .submit-section {
    grid-template-columns: 0.7fr 1.2fr 0.8fr;
  }

  .submit-section .button {
    grid-column: 3;
    justify-self: start;
  }

  .submit-section > p:not(.eyebrow) {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  :root {
    --page: calc(100vw - 36px);
  }

  .site-nav {
    grid-template-columns: 1fr auto;
    height: 74px;
    padding: 0 18px;
  }

  .unofficial-label {
    display: none;
  }

  .nav-links {
    gap: 1rem;
  }

  .nav-links a:nth-child(2) {
    display: none;
  }

  .hero {
    gap: 3.5rem;
    padding: 4.4rem 18px 5rem;
  }

  .hero-copy {
    display: block;
  }

  .hero h1 {
    font-size: clamp(4rem, 15vw, 6.4rem);
  }

  .hero-actions {
    justify-content: flex-start;
    margin-top: 2rem;
  }

  .conversation-stage {
    box-shadow: 8px 8px 0 var(--night);
  }

  .section-heading,
  .teeth-section,
  .how-section {
    gap: 3rem;
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }

  .recipes-section,
  .teeth-section,
  .how-section,
  .submit-section,
  footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .recipe-row {
    grid-template-columns: 36px 1fr auto;
    min-height: 0;
    padding: 1.5rem 0;
  }

  .recipe-index {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .recipe-name {
    grid-column: 2;
  }

  .recipe-summary {
    grid-column: 2 / -1;
  }

  .permission-chip {
    grid-column: 3;
    grid-row: 1;
  }

  .stage-link {
    grid-column: 2 / -1;
    justify-self: start;
  }

  .permission-row {
    grid-template-columns: 90px 1fr;
  }

  .permission-row p {
    grid-column: 2;
  }

  .submit-section {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .submit-section .button,
  .submit-section > p:not(.eyebrow) {
    grid-column: 1;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  .disclaimer {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .official-links {
    justify-self: end;
  }
}

@media (max-width: 560px) {
  .wordmark {
    font-size: 1.35rem;
  }

  .nav-links a {
    font-size: 0.82rem;
  }

  .nav-links a:first-child {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3.55rem, 17vw, 5rem);
    line-height: 0.87;
  }

  .hero h1 em {
    white-space: normal;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.1rem;
  }

  .recipe-switcher {
    overflow-x: auto;
    padding-left: 0;
  }

  .recipe-switcher button {
    flex: 0 0 auto;
  }

  .conversation-stage {
    min-height: 550px;
    padding: 1.2rem;
  }

  .stage-topline span:last-child,
  .stage-note {
    display: none;
  }

  .script {
    min-height: 420px;
  }

  .speech-step {
    margin-bottom: 1.25rem;
    min-height: 74px;
    padding: 0.7rem 0.8rem 0.8rem;
  }

  .speech-step.step-0 {
    width: 66%;
  }

  .speech-step.step-1 {
    margin-left: 5%;
    width: 90%;
  }

  .speech-step.step-2 {
    margin-left: 10%;
    width: 88%;
  }

  .speech-step.step-3 {
    margin-left: 22%;
    width: 76%;
  }

  .speech-step p {
    font-size: 0.98rem;
  }

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

  .statement span {
    border-bottom: var(--line);
    border-right: 0;
    min-height: 70px;
  }

  .statement span:last-child {
    border-bottom: 0;
  }

  .section-heading h2,
  .teeth-title h2,
  .how-intro h2,
  .submit-section h2 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .recipe-row {
    grid-template-columns: 30px 1fr;
  }

  .permission-chip {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
  }

  .recipe-summary {
    grid-column: 2;
  }

  .permission-row {
    gap: 0.8rem;
    grid-template-columns: 82px 1fr;
  }

  .permission-row::before {
    left: -0.75rem;
  }

  .how-list li,
  .how-list li:nth-child(2),
  .how-list li:nth-child(3) {
    grid-template-columns: 58px 1fr;
    margin-left: 0;
    padding: 1.15rem;
  }

  footer {
    grid-template-columns: 1fr;
  }

  .disclaimer,
  .official-links {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.recipe-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.recipe-actions .permalink {
  font-family: var(--font-utility), monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--night);
  text-decoration: none;
  border-bottom: 2px solid var(--blue);
  padding-bottom: 2px;
  white-space: nowrap;
}

.recipe-actions .permalink:hover {
  color: var(--blue);
}

/* The facts row and permission chip are sized by the .recipe-row grid on the
   home page. On a detail page they sit in normal flow, so they need their own
   layout and an intrinsic width. */
.recipe-facts-detail {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 22px 0 14px;
}

.hero-copy .permission-chip {
  display: inline-block;
  width: auto;
  padding: 0.5rem 0.9rem;
}
