:root {
  --mint: #95e1d3;
  --mint-soft: #d5f4ed;
  --yellow: #fce38a;
  --yellow-soft: #fff4c9;
  --coral: #f38181;
  --coral-soft: #ffd7d3;
  --cream: #fffaf0;
  --paper: #fffef9;
  --ink: #173f3a;
  --muted-ink: #4d6763;
  --line: #cddfd9;
  --radius-small: 0.75rem;
  --radius-card: 1.5rem;
  --shadow: 0 1.25rem 3rem rgb(23 63 58 / 12%);
  --shell: 73rem;

  /* Ruled paper: the surface spelling practice actually happens on. */
  --rule: rgb(23 63 58 / 9%);
  --rule-strong: rgb(23 63 58 / 16%);
  --rule-height: 2.25rem;

  /* Rounded display face for headings, plain system face for reading. */
  --font-display: ui-rounded, "SF Pro Rounded", "Avenir Next Rounded", "Avenir Next", system-ui, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "SFMono-Regular", monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
.wordmark,
.eyebrow,
.button-link,
.text-link,
.step-number,
.feature-index,
.topic-number,
.policy-number,
.purchase-facts,
.site-nav a,
.site-footer nav a {
  font-family: var(--font-display);
}

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

a:hover {
  text-decoration-thickness: 0.16em;
}

/*
 * Focus rings are tuned per surface: ink carries on the pale sections, honey
 * carries on the dark ones. Coral alone was too weak on the yellow surfaces.
 */
:focus-visible {
  outline: 0.2rem solid var(--ink);
  outline-offset: 0.25rem;
}

.skip-link:focus-visible,
.product-tour :focus-visible,
.privacy-band :focus-visible,
.website-privacy :focus-visible {
  outline-color: var(--yellow);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  border-radius: 0.5rem;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgb(23 63 58 / 12%);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.wordmark-mark {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgb(23 63 58 / 12%);
  border-radius: 0.55rem;
  background: var(--paper);
}

.wordmark-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.site-nav a,
.site-footer nav a {
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:hover,
.site-footer nav a:hover {
  text-decoration: underline;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(20rem, 0.98fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  min-height: calc(100svh - 5rem);
  padding-block: clamp(4rem, 9vw, 8rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.4rem;
  color: var(--muted-ink);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.62rem;
  letter-spacing: 0;
}

/*
 * Home page sections are topics, not an ordered sequence, so they carry a
 * honeycomb marker instead of a counter. The three practice steps keep real
 * numbers, because there the order is the information.
 */
.eyebrow > span:empty {
  width: 0.85rem;
  height: 0.95rem;
  border: 0;
  border-radius: 0;
  background: var(--yellow);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.how-section .eyebrow > span:empty,
.privacy-band .eyebrow > span:empty {
  background: var(--mint);
}

.features-section .eyebrow > span:empty {
  background: var(--coral);
}

/* A ruled line trails each home page eyebrow, echoing the hero page. */
.hero .eyebrow::after,
.how-section .eyebrow::after,
.product-tour .eyebrow::after,
.features-section .eyebrow::after,
.privacy-band .eyebrow::after {
  flex: 1;
  max-width: 5.5rem;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
  content: "";
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 8ch;
  margin-bottom: 1.75rem;
  font-size: clamp(3.7rem, 8vw, 7.4rem);
  font-weight: 850;
}

h1 span {
  position: relative;
  z-index: 0;
}

h1 span::after {
  position: absolute;
  z-index: -1;
  right: -0.08em;
  bottom: 0.08em;
  left: -0.08em;
  height: 0.22em;
  border-radius: 999px;
  background: var(--yellow);
  content: "";
  transform: rotate(-1.5deg);
}

h2 {
  max-width: 15ch;
  margin-bottom: 0;
  font-size: clamp(2.4rem, 5.6vw, 5.2rem);
  font-weight: 820;
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 780;
}

.hero-summary {
  max-width: 34rem;
  margin: 0 0 1.6rem;
  color: var(--muted-ink);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.launch-note {
  width: fit-content;
  margin: 0 0 1.25rem;
  padding: 0.7rem 0.9rem;
  border-left: 0.25rem solid var(--coral);
  background: var(--paper);
  font-size: 0.93rem;
  font-weight: 700;
}

.purchase-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.4rem;
  margin: 0;
  padding: 0;
  color: var(--muted-ink);
  font-size: 0.78rem;
  font-weight: 750;
  list-style: none;
  text-transform: uppercase;
}

.purchase-facts li:not(:last-child)::after {
  margin-left: 1.4rem;
  color: var(--coral);
  content: "•";
}

.hero-showcase {
  position: relative;
  display: grid;
  min-height: 40rem;
  align-items: center;
  justify-items: end;
  padding: 3rem 1.5rem 3rem 5rem;
  isolation: isolate;
}

/*
 * The hero sits on a ruled exercise book page, margin rule and all. It is the
 * page's signature and the reason the screenshot reads as schoolwork.
 */
.hero-showcase::before {
  position: absolute;
  z-index: 0;
  inset: 1.5rem 0 1rem 1.5rem;
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-card);
  background:
    linear-gradient(to bottom, rgb(243 129 129 / 50%) 0 0) no-repeat 2.75rem 0 / 1.5px 100%,
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent calc(var(--rule-height) - 1px),
      var(--rule) calc(var(--rule-height) - 1px),
      var(--rule) var(--rule-height)
    ),
    var(--mint-soft);
  content: "";
  transform: rotate(1.5deg);
}

/* The bee signs the page. It must never sit over the product screen. */
.hero-bee {
  position: absolute;
  z-index: 1;
  top: 1.25rem;
  left: -1.75rem;
  width: min(13.5rem, 43%);
  height: auto;
  filter: drop-shadow(0 0.7rem 0.9rem rgb(23 63 58 / 16%));
  transform: rotate(-6deg);
}

.hero-phone {
  position: relative;
  z-index: 2;
  width: min(18.25rem, 78%);
  margin: 0;
  text-align: center;
}

/*
 * A restrained bezel: padding rather than a border keeps the inner and outer
 * radii concentric. Deliberately no notch, buttons, or home indicator, so the
 * frame never reads as part of the interface it holds.
 */
.iphone-frame {
  padding: 0.4rem;
  border-radius: 2.95rem;
  background: linear-gradient(155deg, #2c6058, var(--ink) 58%);
  box-shadow: var(--shadow), inset 0 0 0 1px rgb(255 254 249 / 16%);
  line-height: 0;
}

.iphone-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2.55rem;
}

.hero-phone figcaption {
  width: fit-content;
  margin: 1.1rem auto 0;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--paper);
  font-size: 0.75rem;
  font-weight: 800;
}

.section-pad {
  padding-block: clamp(5.5rem, 11vw, 10rem);
}

.how-section {
  border-block: 1px solid rgb(23 63 58 / 12%);
  background: var(--paper);
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(16rem, 0.55fr);
  align-items: end;
  gap: 3rem;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

.section-heading-row > p {
  max-width: 29rem;
  margin: 0 0 0.5rem;
  color: var(--muted-ink);
  font-size: 1.08rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
  counter-reset: steps;
}

.steps li {
  min-height: 17rem;
  padding: 2rem clamp(1.3rem, 3vw, 2.4rem) 1rem 0;
  border-right: 1px solid var(--line);
}

.steps li + li {
  padding-left: clamp(1.3rem, 3vw, 2.4rem);
}

.steps li:last-child {
  border-right: 0;
}

.step-number {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 4rem;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 0.8rem;
  font-weight: 900;
}

.steps li:nth-child(2) .step-number {
  background: var(--mint);
}

.steps li:nth-child(3) .step-number {
  background: var(--coral-soft);
}

.steps h3 {
  margin-bottom: 0.75rem;
}

.steps p {
  max-width: 19rem;
  margin: 0;
  color: var(--muted-ink);
}

.product-tour {
  color: var(--paper);
  background: var(--ink);
}

.product-tour .eyebrow,
.product-tour .section-heading-row > p {
  color: #c8ded9;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
}

.screenshot-card {
  position: relative;
  display: grid;
  overflow: hidden;
  justify-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: clamp(1.6rem, 3vw, 2.25rem) clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-card);
  color: var(--ink);
  background: var(--paper);
}

/*
 * One calm surface for all three cards. Colour lives in a single top rule so
 * the real app screens stay the brightest thing in the section.
 */
.screenshot-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 0.35rem;
  content: "";
}

.screenshot-card .iphone-frame {
  width: min(100%, 14rem);
  padding: 0.3rem;
  border-radius: 2.5rem;
  box-shadow: 0 1rem 2.2rem rgb(23 63 58 / 24%), inset 0 0 0 1px rgb(255 254 249 / 16%);
}

.screenshot-card .iphone-frame img {
  border-radius: 2.2rem;
}

.screenshot-card figcaption {
  max-width: 19rem;
  color: var(--muted-ink);
  line-height: 1.45;
}

.screenshot-card figcaption strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-size: 1.08rem;
}

.success-screen::before {
  background: var(--yellow);
}

.library-screen::before {
  background: var(--mint);
}

.history-screen::before {
  background: var(--coral);
}

.features-section {
  background: var(--cream);
}

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

.feature-card {
  position: relative;
  min-height: 27rem;
  padding: clamp(3.4rem, 6vw, 5rem) clamp(1.5rem, 4vw, 2.6rem) clamp(1.5rem, 4vw, 2.6rem);
  overflow: hidden;
  border: 1px solid rgb(23 63 58 / 14%);
  border-radius: var(--radius-card);
}

/*
 * Motifs are pinned to the bottom by layout rather than absolute offsets, so
 * copy of any length pushes them down instead of colliding with them.
 */
.feature-card:not(.feature-card-wide) {
  display: flex;
  flex-direction: column;
}

.feature-card:not(.feature-card-wide) > .mini-wave,
.feature-card:not(.feature-card-wide) > .slot-row {
  margin-top: auto;
}

.feature-card-wide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(11rem, 0.55fr);
  align-items: end;
  gap: 2rem;
  min-height: 24rem;
  grid-column: 1 / -1;
}

.feature-index {
  position: absolute;
  top: 1.3rem;
  right: 1.5rem;
  margin: 0;
  font-size: 0.73rem;
  font-weight: 900;
}

.feature-card h3 {
  max-width: 15ch;
  margin-top: 0;
  margin-bottom: 1rem;
}

.feature-card p:not(.feature-index) {
  max-width: 33rem;
  margin-bottom: 0;
  color: var(--muted-ink);
}

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

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

.coral-card {
  background: var(--coral-soft);
}

.paper-card {
  background: var(--paper);
}

.file-lines {
  padding: 1.1rem 1.25rem;
  border: 1px solid rgb(23 63 58 / 18%);
  border-radius: 0.9rem;
  background: var(--paper);
  box-shadow: 0.55rem 0.55rem 0 var(--yellow);
  transform: rotate(2deg);
}

.file-lines span {
  display: block;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

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

.mini-wave {
  display: flex;
  align-items: end;
  gap: 0.45rem;
  height: 5rem;
  margin-top: 2.5rem;
}

.mini-wave i {
  flex: 1;
  border-radius: 999px;
  background: var(--ink);
}

.mini-wave i:nth-child(1),
.mini-wave i:nth-child(7) { height: 25%; }
.mini-wave i:nth-child(2),
.mini-wave i:nth-child(6) { height: 48%; }
.mini-wave i:nth-child(3),
.mini-wave i:nth-child(5) { height: 72%; }
.mini-wave i:nth-child(4) { height: 100%; }

.slot-row {
  display: flex;
  gap: 0.65rem;
  margin-top: 2.5rem;
}

.slot-row span {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  font-weight: 900;
}

.slot-row span:last-child {
  border-style: dashed;
  background: transparent;
}

.mastery-meter {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
  align-self: end;
  padding-bottom: 0.6rem;
}

.mastery-meter span {
  height: 1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
}

.mastery-meter .complete {
  background: var(--mint);
}

.privacy-band {
  padding-block: clamp(5rem, 10vw, 9rem);
  color: var(--paper);
  background: var(--ink);
}

.privacy-band .eyebrow,
.privacy-band .privacy-copy {
  color: #c8ded9;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.55fr);
  gap: 2.5rem clamp(2rem, 7vw, 7rem);
  align-items: end;
}

.privacy-copy {
  padding-bottom: 0.6rem;
  font-size: 1.08rem;
}

.privacy-copy p {
  margin-top: 0;
}

.text-link {
  display: inline-flex;
  gap: 0.5rem;
  color: var(--yellow);
  font-weight: 800;
}

.privacy-seal {
  display: flex;
  grid-column: 1 / -1;
  gap: 0.6rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgb(255 254 249 / 22%);
}

.privacy-seal span {
  padding: 0.45rem 0.85rem;
  border: 1px solid rgb(255 254 249 / 35%);
  border-radius: 999px;
  color: #c8ded9;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-section {
  padding: 0 0 clamp(5rem, 10vw, 9rem);
  background: var(--paper);
}

.support-card {
  padding: clamp(2.5rem, 7vw, 5rem);
  border-radius: var(--radius-card);
  background: var(--mint-soft);
  text-align: center;
}

.support-card .eyebrow {
  justify-content: center;
}

.support-card h2 {
  max-width: none;
}

.support-card > p:not(.eyebrow) {
  max-width: 37rem;
  margin: 1.3rem auto 2rem;
  color: var(--muted-ink);
}

.button-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.15rem;
  border-radius: 0.8rem;
  color: var(--paper);
  background: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.button-link:hover {
  color: var(--ink);
  background: var(--yellow);
}

.site-footer {
  border-top: 1px solid rgb(23 63 58 / 15%);
  background: var(--cream);
}

.footer-inner {
  min-height: 7rem;
}

.footer-inner > p {
  margin: 0;
  color: var(--muted-ink);
  font-size: 0.8rem;
}

.wordmark-small {
  font-size: 1rem;
}

.wordmark-small .wordmark-mark {
  width: 1.8rem;
  height: 1.8rem;
  font-size: 0.8rem;
}

.page-hero {
  padding-block: clamp(4.5rem, 10vw, 8.5rem);
  border-bottom: 1px solid rgb(23 63 58 / 12%);
}

.page-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.48fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
}

.page-hero h1 {
  max-width: 12ch;
  margin-bottom: 1.4rem;
  font-size: clamp(3.5rem, 8vw, 7rem);
}

.page-summary {
  max-width: 39rem;
  margin: 0;
  color: var(--muted-ink);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
}

.contact-card {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border: 1px solid rgb(23 63 58 / 15%);
  border-radius: var(--radius-card);
  background: var(--yellow-soft);
  box-shadow: 0.55rem 0.55rem 0 var(--mint-soft);
  transform: rotate(1deg);
}

.contact-card .contact-label {
  margin: 0 0 2.7rem;
  color: var(--muted-ink);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.contact-card > a {
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-card > p:last-child {
  margin: 1.2rem 0 0;
  color: var(--muted-ink);
  font-size: 0.85rem;
}

.support-body {
  background: var(--paper);
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(11rem, 0.3fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.support-index {
  position: sticky;
  top: 2rem;
  padding-top: 0.4rem;
}

.support-index > p {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.support-index nav {
  display: grid;
  border-top: 1px solid var(--line);
}

.support-index a {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted-ink);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.support-index a:hover {
  color: var(--ink);
}

.support-topics {
  border-top: 1px solid var(--ink);
}

.support-topic {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  padding-block: clamp(3rem, 7vw, 5rem);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 2rem;
}

.support-topic:last-child {
  border-bottom: 0;
}

.support-topic .topic-number {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 850;
}

.support-topic h2 {
  margin-bottom: 2rem;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
}

.support-topic h3 {
  margin: 2.25rem 0 0.65rem;
  font-size: 1.18rem;
  letter-spacing: -0.025em;
}

.support-topic h2 + h3 {
  margin-top: 0;
}

.support-topic p {
  max-width: 47rem;
  color: var(--muted-ink);
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto auto;
  grid-auto-flow: column;
  gap: 0.75rem;
  margin: 2.2rem 0 0;
}

.detail-list dt {
  align-self: end;
  padding: 1rem 1rem 0.25rem;
  border-radius: var(--radius-small) var(--radius-small) 0 0;
  color: var(--muted-ink);
  background: var(--cream);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-list dd {
  margin: 0;
  padding: 0.25rem 1rem 1rem;
  border-radius: 0 0 var(--radius-small) var(--radius-small);
  background: var(--cream);
  font-weight: 800;
}

.tip-card {
  position: relative;
  margin: 2rem 0;
  padding: 1.5rem 1.5rem 1.5rem 4.5rem;
  border-radius: var(--radius-small);
  background: var(--yellow-soft);
}

.tip-card::before {
  position: absolute;
  top: 1.5rem;
  left: 1.45rem;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  content: "i";
  font-weight: 900;
}

.tip-card .tip-label {
  margin: 0 0 0.35rem;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tip-card p:last-child {
  margin: 0;
  color: var(--ink);
}

.policy-note {
  margin-top: 2.2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.support-section-page {
  padding-top: clamp(5rem, 10vw, 9rem);
  background: var(--cream);
}

.policy-hero {
  background: var(--yellow-soft);
}

.policy-date-card {
  position: relative;
  padding: 2rem;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 0.55rem 0.55rem 0 var(--coral-soft);
}

.policy-date-card::before {
  position: absolute;
  top: -0.8rem;
  right: 1.5rem;
  width: 2.8rem;
  height: 1.45rem;
  background: var(--mint);
  content: "";
  transform: rotate(4deg);
}

.policy-date-card p {
  margin: 0 0 1.5rem;
  color: var(--muted-ink);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.policy-date-card time {
  display: block;
  font-size: 1.08rem;
  font-weight: 800;
}

.policy-date-card span {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted-ink);
  font-size: 0.85rem;
}

.policy-page {
  background: var(--paper);
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(11rem, 0.3fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.policy-index {
  position: sticky;
  top: 2rem;
}

.policy-index > p {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.policy-index nav {
  display: grid;
  border-top: 1px solid var(--line);
}

.policy-index a {
  padding: 0.67rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted-ink);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.policy-index a:hover {
  color: var(--ink);
}

.policy-content {
  border-top: 1px solid var(--ink);
}

.policy-intro {
  padding-block: clamp(3rem, 7vw, 5rem);
  border-bottom: 1px solid var(--line);
}

.policy-kicker {
  margin: 0 0 1.2rem;
  color: var(--muted-ink);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.policy-intro h2 {
  max-width: 19ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 5vw, 4.2rem);
}

.policy-intro > p:last-child {
  max-width: 43rem;
  color: var(--muted-ink);
}

.policy-section {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  padding-block: clamp(2.8rem, 6vw, 4.5rem);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 2rem;
}

.policy-number {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  place-items: center;
  border-radius: 50%;
  background: var(--mint-soft);
  font-size: 0.68rem;
  font-weight: 850;
}

.policy-section:nth-of-type(3n) .policy-number {
  background: var(--yellow-soft);
}

.policy-section:nth-of-type(3n + 1) .policy-number {
  background: var(--coral-soft);
}

.policy-section h2 {
  margin-bottom: 1.3rem;
  font-size: clamp(1.75rem, 4vw, 3rem);
}

.policy-section p {
  max-width: 48rem;
  color: var(--muted-ink);
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.website-privacy {
  margin-top: clamp(4rem, 8vw, 7rem);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-card);
  color: var(--paper);
  background: var(--ink);
  scroll-margin-top: 2rem;
}

.website-privacy .eyebrow,
.website-privacy p {
  color: #c8ded9;
}

.website-privacy h2 {
  margin-bottom: 1.7rem;
  font-size: clamp(2rem, 5vw, 4.2rem);
}

.website-privacy p {
  max-width: 49rem;
}

.not-found-page {
  display: grid;
  min-height: calc(100svh - 12rem);
  place-items: center;
  padding-block: clamp(4rem, 10vw, 8rem);
}

.not-found-layout {
  display: grid;
  grid-template-columns: minmax(12rem, 0.48fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.not-found-page h1 {
  max-width: 10ch;
  margin-bottom: 1.5rem;
}

.missing-tile {
  display: grid;
  width: min(100%, 21rem);
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: var(--radius-card);
  background: var(--yellow);
  box-shadow: 0.85rem 0.85rem 0 var(--mint);
  font-size: clamp(6rem, 18vw, 12rem);
  font-weight: 900;
  line-height: 1;
  transform: rotate(-3deg);
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.3rem;
  margin-top: 2.2rem;
}

.dark-text-link {
  color: var(--ink);
}

@media (max-width: 54rem) {
  .hero,
  .section-heading-row,
  .privacy-layout,
  .page-hero-layout,
  .not-found-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 1rem;
    padding-top: 4.5rem;
  }

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

  .hero-showcase {
    width: min(100%, 35rem);
    min-height: 38rem;
    margin-inline: auto;
  }

  .section-heading-row {
    gap: 1.5rem;
  }

  .privacy-copy {
    max-width: 38rem;
  }

  .contact-card {
    width: min(100%, 35rem);
  }

  .policy-date-card {
    width: min(100%, 35rem);
  }

  .missing-tile {
    width: min(55vw, 17rem);
  }
}

@media (max-width: 42rem) {
  .site-shell {
    width: min(calc(100% - 1.3rem), var(--shell));
  }

  .header-inner {
    min-height: 4.4rem;
  }

  .wordmark-mark {
    width: 2rem;
    height: 2rem;
  }

  .hero-bee {
    top: 0.75rem;
    left: -0.75rem;
    width: min(10.5rem, 38%);
  }

  .hero {
    padding-block: 3.5rem 5rem;
  }

  .hero-summary {
    font-size: 1.05rem;
  }

  .purchase-facts {
    display: grid;
    gap: 0.35rem;
  }

  .purchase-facts li::after {
    display: none;
  }

  .hero-showcase {
    min-height: 34rem;
    padding: 2.25rem 0.5rem 2rem 2.25rem;
  }

  .hero-showcase::before {
    left: 0;
  }

  .hero-phone {
    width: min(17rem, 78%);
  }

  .steps,
  .screenshot-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .screenshot-card .iphone-frame {
    width: min(100%, 13rem);
  }

  .steps li,
  .steps li + li {
    min-height: 0;
    padding: 1.7rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .steps li:last-child {
    border-bottom: 0;
  }

  .step-number {
    margin-bottom: 2rem;
  }

  .feature-card {
    min-height: 24rem;
  }

  .feature-card-wide {
    display: block;
    grid-column: auto;
  }

  .file-lines,
  .mastery-meter {
    margin-top: 2.5rem;
  }

  .privacy-seal {
    flex-wrap: wrap;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    gap: 0.8rem;
    padding-block: 1.7rem;
  }

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

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

  .support-index {
    position: static;
  }

  .policy-index {
    position: static;
  }

  .support-index nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 1rem;
  }

  .policy-index nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 1rem;
  }

  .support-topic {
    grid-template-columns: 1fr;
  }

  .policy-section {
    grid-template-columns: 1fr;
  }

  .detail-list {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
    gap: 0;
  }

  .detail-list dt:not(:first-child) {
    margin-top: 0.75rem;
  }

  .tip-card {
    padding: 4.2rem 1.25rem 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
