:root {
  --paper: #f6f1e7;
  --paper-card: #fdfaf3;
  --ink: #221f1b;
  --ink-soft: #6b6459;
  --rust: #b5482f;
  --rust-dark: #963824;
  --moss: #5b7259;
  --gold: #c9a227;
  --slate: #4a5a6b;
  --border: #d9cfbc;
  --shadow: 0 22px 50px rgba(54, 45, 33, 0.10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(107, 100, 89, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 32px;
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--paper);
  border-radius: 4px;
}

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

.shell,
.site-header {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-stamp {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-radius: 50%;
  font: 700 1.05rem/1 "Fraunces", Georgia, serif;
  transform: rotate(-7deg);
}

.brand-copy { display: grid; gap: 2px; }

.brand-name {
  font: 700 1.25rem/1.1 "Fraunces", Georgia, serif;
  letter-spacing: -0.015em;
}

.brand-meta,
.eyebrow,
.section-kicker,
.widget-no,
.feature-number,
.results-count {
  font-family: "JetBrains Mono", monospace;
  font-weight: 600;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.brand-meta { color: var(--ink-soft); font-size: 0.68rem; }

.header-link {
  color: var(--ink);
  font: 600 0.78rem/1 "JetBrains Mono", monospace;
  text-underline-offset: 5px;
}

.header-link:hover { color: var(--rust); }

.hero {
  min-height: 670px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(48px, 8vw, 100px);
  padding-block: 72px 90px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--rust);
  font-size: 0.72rem;
}

.eyebrow { display: flex; align-items: center; gap: 9px; }

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rust);
  box-shadow: 0 0 0 4px rgba(181, 72, 47, 0.13);
}

h1, h2, h3, p { overflow-wrap: break-word; }

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(3.15rem, 6.6vw, 5.8rem);
  font-weight: 600;
  line-height: 0.98;
}

h1 em { color: var(--rust); font-weight: 600; }

.hero-lede {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
  line-height: 1.7;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid var(--ink);
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  background: var(--ink);
  color: var(--paper-card);
  box-shadow: 5px 5px 0 var(--gold);
}

.button-primary:hover { box-shadow: 7px 7px 0 var(--gold); }

.button-secondary { border-color: var(--border); background: rgba(253, 250, 243, 0.55); }

.button-secondary:hover { border-color: var(--ink); background: var(--paper-card); }

.promise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  list-style: none;
}

.promise-list span { color: var(--moss); font-weight: 700; }

.hero-showcase {
  position: relative;
  min-height: 510px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #e8dfcf;
  box-shadow: var(--shadow), 12px 12px 0 rgba(34, 31, 27, 0.05);
  transform: rotate(1deg);
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(34, 31, 27, 0.15);
  border-radius: 3px;
  pointer-events: none;
}

.showcase-note {
  position: absolute;
  z-index: 5;
  padding: 9px 12px;
  background: #fff7bd;
  box-shadow: 2px 3px 7px rgba(54, 45, 33, 0.15);
  font: 600 0.67rem/1.2 "JetBrains Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.note-top { top: -18px; right: 32px; transform: rotate(3deg); }
.note-bottom { bottom: 16px; left: -20px; transform: rotate(-5deg); }

.preview-card {
  position: absolute;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(34, 31, 27, 0.16);
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(54, 45, 33, 0.16);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.preview-card:hover { z-index: 4; box-shadow: 0 22px 38px rgba(54, 45, 33, 0.22); }

.preview-weather {
  z-index: 2;
  top: 52px;
  left: 38px;
  width: 70%;
  min-height: 205px;
  padding: 28px;
  background: linear-gradient(145deg, #a4c8d8, #f3bd7b);
  color: #17303c;
  transform: rotate(-3deg);
}

.preview-weather:hover { transform: rotate(-3deg) translateY(-5px); }

.preview-label { position: relative; z-index: 2; display: block; font-weight: 600; }

.preview-temperature {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 18px;
  font: 800 4.6rem/0.85 "Manrope", sans-serif;
  letter-spacing: -0.07em;
}

.preview-condition { position: relative; z-index: 2; display: block; margin-top: 16px; font-size: 0.84rem; }

.preview-sun {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #ffe29a;
  box-shadow: 0 0 30px rgba(255, 226, 154, 0.7);
}

.preview-cloud {
  position: absolute;
  z-index: 1;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
}

.preview-cloud::before,
.preview-cloud::after { content: ""; position: absolute; border-radius: 50%; background: inherit; }
.preview-cloud::before { width: 38px; height: 38px; left: 22px; bottom: 0; }
.preview-cloud::after { width: 28px; height: 28px; left: 50px; bottom: 0; }
.preview-cloud-one { width: 110px; top: 83px; right: 16px; }
.preview-cloud-two { width: 84px; top: 125px; right: -15px; opacity: 0.55; }

.preview-clock {
  z-index: 3;
  top: 228px;
  right: 28px;
  width: 53%;
  min-height: 245px;
  padding: 22px;
  background: #fbfbf7;
  transform: rotate(4deg);
  text-align: center;
}

.preview-clock:hover { transform: rotate(4deg) translateY(-5px); }

.clock-face {
  position: relative;
  width: 154px;
  height: 154px;
  display: block;
  margin: 0 auto 12px;
  border: 8px solid #181818;
  border-radius: 50%;
  background: #fff;
}

.clock-tick { position: absolute; background: #181818; }
.tick-12, .tick-6 { width: 5px; height: 17px; left: calc(50% - 2.5px); }
.tick-12 { top: 8px; } .tick-6 { bottom: 8px; }
.tick-3, .tick-9 { width: 17px; height: 5px; top: calc(50% - 2.5px); }
.tick-3 { right: 8px; } .tick-9 { left: 8px; }
.clock-hand { position: absolute; left: 50%; bottom: 50%; width: 4px; transform-origin: 50% 100%; background: #181818; border-radius: 99px; }
.hand-hour { height: 42px; transform: translateX(-50%) rotate(35deg); }
.hand-minute { height: 57px; width: 3px; transform: translateX(-50%) rotate(142deg); }
.hand-second { height: 64px; width: 2px; background: #d22e23; transform: translateX(-50%) rotate(255deg); }
.clock-pin { position: absolute; left: 50%; top: 50%; width: 10px; height: 10px; transform: translate(-50%, -50%); border-radius: 50%; background: #d22e23; }
.preview-caption { font: 600 0.67rem/1 "JetBrains Mono", monospace; text-transform: uppercase; letter-spacing: 0.06em; }

.preview-habit {
  z-index: 1;
  left: 32px;
  bottom: 38px;
  width: 55%;
  min-height: 160px;
  padding: 22px;
  background: var(--paper-card);
  transform: rotate(-1deg);
}

.preview-habit:hover { transform: rotate(-1deg) translateY(-5px); }
.habit-days { display: flex; gap: 7px; margin-top: 22px; }
.habit-days i { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 50%; color: var(--ink-soft); font: normal 600 0.65rem/1 "JetBrains Mono", monospace; }
.habit-days i.done { background: var(--moss); border-color: var(--moss); color: white; }
.habit-streak { display: block; margin-top: 13px; color: var(--moss); font: 600 0.7rem/1 "JetBrains Mono", monospace; text-transform: uppercase; }

.featured,
.catalog,
.platforms,
.how-it-works { padding-block: 92px; }

.featured { border-top: 1px solid var(--border); }

.section-heading,
.catalog-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 34px;
}

.section-heading h2,
.catalog-heading h2,
.how-intro h2,
.closing h2 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.04;
}

.section-heading > p {
  max-width: 440px;
  margin: 0 0 5px;
  color: var(--ink-soft);
  line-height: 1.65;
}

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

.feature-card {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.feature-number { position: relative; z-index: 2; font-size: 0.67rem; }
.feature-arrow { position: absolute; z-index: 3; top: 20px; right: 22px; font-size: 1.3rem; transition: transform 160ms ease; }
.feature-card:hover .feature-arrow { transform: translate(3px, -3px); }

.feature-copy { position: relative; z-index: 2; display: grid; gap: 10px; }
.feature-copy strong { font: 600 1.6rem/1.1 "Fraunces", Georgia, serif; letter-spacing: -0.02em; }
.feature-copy span { max-width: 310px; font-size: 0.9rem; line-height: 1.55; opacity: 0.8; }

.feature-sky { background: linear-gradient(145deg, #9bc7d9, #efd193 72%, #dfa169); color: #17303c; }
.feature-mark { position: absolute; right: -12px; top: 100px; font: 800 7.5rem/1 "Manrope", sans-serif; letter-spacing: -0.09em; color: rgba(255,255,255,0.55); }

.feature-moon { background: linear-gradient(145deg, #161a2c, #293b5b); color: #f4edda; }
.feature-moon::before { content: ""; position: absolute; inset: 0; opacity: 0.45; background-image: radial-gradient(circle, #fff 1px, transparent 1.5px); background-size: 39px 47px; }
.feature-moon-disc { position: absolute; top: 75px; right: 38px; width: 150px; height: 150px; border-radius: 50%; background: #f1e7cd; box-shadow: 0 0 45px rgba(241, 231, 205, 0.28); }
.feature-moon-disc::after { content: ""; position: absolute; inset: 0 0 0 44%; border-radius: 50%; background: #1d2841; }

.feature-transit { background: #1f2524; color: #f5eacb; }
.transit-board { position: absolute; top: 80px; left: 24px; right: 24px; display: grid; grid-template-columns: 1fr auto; gap: 4px; padding: 12px; background: #111; border: 1px solid #52524d; }
.transit-board b { padding: 9px 10px; background: #252525; color: #f5eacb; font: 600 1.05rem/1 "JetBrains Mono", monospace; }

.catalog { border-top: 1px solid var(--border); }
.results-count { margin: 0 0 7px; color: var(--ink-soft); font-size: 0.7rem; white-space: nowrap; }

.filters {
  position: sticky;
  z-index: 10;
  top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 34px;
  padding: 8px;
  border: 1px solid rgba(217, 207, 188, 0.82);
  border-radius: 999px;
  background: rgba(246, 241, 231, 0.9);
  backdrop-filter: blur(12px);
}

.filter-pill {
  min-height: 40px;
  padding: 9px 15px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font: 600 0.68rem/1 "JetBrains Mono", monospace;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}

.filter-pill:hover { border-color: var(--border); color: var(--ink); }
.filter-pill.active { border-color: var(--ink); background: var(--ink); color: var(--paper-card); }

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

.widget-card {
  --card-accent: var(--rust);
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(253, 250, 243, 0.78);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.widget-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--card-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.widget-card:hover { transform: translateY(-4px); border-color: #c1b49d; box-shadow: 0 16px 30px rgba(54, 45, 33, 0.09); }
.widget-card:hover::before { transform: scaleX(1); }
.widget-card.hidden { display: none; }
.card-time { --card-accent: var(--rust); }
.card-events { --card-accent: var(--gold); }
.card-trackers { --card-accent: var(--moss); }
.card-sky { --card-accent: var(--slate); }

.widget-no { color: var(--ink-soft); font-size: 0.66rem; }

.widget-glyph {
  min-height: 90px;
  display: flex;
  align-items: center;
  margin-top: 15px;
  color: var(--card-accent);
  font: 800 3.7rem/1 "Manrope", sans-serif;
  letter-spacing: -0.07em;
}

.widget-glyph span { margin-left: 4px; font-size: 1rem; letter-spacing: 0; }
.glyph-flip {
  gap: 5px;
  min-height: 90px;
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: 0;
}

.glyph-flip i {
  position: relative;
  width: 42px;
  height: 58px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #3c3a37;
  border-radius: 4px;
  background: linear-gradient(#2d2c2a 0 49%, #242321 50% 100%);
  box-shadow: 0 3px 0 #111, inset 0 1px rgba(255, 255, 255, 0.08);
  color: #f7f0e2;
  font: normal 700 1.9rem/1 "Manrope", sans-serif;
}

.glyph-flip i::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 1px solid #111;
  box-shadow: 0 1px rgba(255, 255, 255, 0.07);
}

.glyph-flip b {
  margin-inline: 1px;
  color: var(--rust);
  font: 800 1.65rem/1 "Manrope", sans-serif;
}

.glyph-nixie {
  position: relative;
  gap: 5px;
  min-height: 96px;
  color: #ff743d;
  font-size: 1rem;
  letter-spacing: 0;
}

.glyph-nixie::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: -5px;
  bottom: 7px;
  width: 203px;
  height: 14px;
  border: 1px solid #3f312a;
  border-radius: 3px;
  background: linear-gradient(#4c352a, #241b18);
  box-shadow: 0 3px 0 rgba(34, 31, 27, 0.18);
}

.glyph-nixie i {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 66px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(128, 99, 83, 0.78);
  border-radius: 17px 17px 5px 5px;
  background:
    linear-gradient(105deg, rgba(255,255,255,.11), transparent 24%),
    radial-gradient(circle at 50% 57%, #392019, #171414 70%);
  box-shadow: inset 0 0 12px rgba(255, 116, 61, 0.12), 0 2px 4px rgba(34,31,27,.22);
  color: #ff7943;
  font: normal 700 1.8rem/1 "Manrope", sans-serif;
  text-shadow: 0 0 4px #ff5b20, 0 0 11px rgba(255, 91, 32, 0.85);
}

.glyph-nixie i::before {
  content: "";
  position: absolute;
  inset: 7px 6px 9px;
  border-inline: 1px solid rgba(193, 137, 104, 0.2);
  border-radius: 9px;
}

.glyph-nixie b {
  position: relative;
  z-index: 1;
  margin-inline: 1px;
  color: #ff743d;
  font: 800 1.65rem/1 "Manrope", sans-serif;
  text-shadow: 0 0 8px rgba(255, 91, 32, 0.8);
}
.glyph-calendar { width: 68px; min-height: 70px; display: grid; place-items: center; align-content: center; margin-top: 25px; border: 2px solid var(--gold); font-size: 2rem; letter-spacing: -0.03em; }
.glyph-calendar small { display: block; font: 600 0.62rem/1.2 "JetBrains Mono", monospace; letter-spacing: 0.1em; }
.glyph-swiss {
  position: relative;
  width: 82px;
  min-height: 82px;
  margin-top: 20px;
  border: 5px solid #171717;
  border-radius: 50%;
  background: repeating-conic-gradient(#171717 0deg 3deg, transparent 3deg 30deg), #fff;
  box-shadow: 0 3px 0 rgba(34, 31, 27, 0.14);
}

.glyph-swiss::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 8px;
  border-radius: 50%;
  background: #fff;
}

.glyph-swiss i {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 50%;
  display: block;
  border-radius: 99px;
  transform-origin: 50% 100%;
}

.swiss-hour {
  width: 5px;
  height: 21px;
  background: #171717;
  transform: translateX(-50%) rotate(125deg);
}

.swiss-minute {
  width: 4px;
  height: 29px;
  background: #171717;
  transform: translateX(-50%) rotate(35deg);
}

.swiss-second {
  width: 2px;
  height: 31px;
  background: #d52b1e;
  transform: translateX(-50%) rotate(248deg);
}

.swiss-second::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  left: 50%;
  top: -3px;
  border-radius: 50%;
  background: #d52b1e;
  transform: translateX(-50%);
}

.glyph-swiss b {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d52b1e;
  transform: translate(-50%, -50%);
}
.glyph-board { min-height: 64px; width: fit-content; margin-top: 27px; padding: 14px; background: #252525; color: #f5eacb; font: 600 1rem/1 "JetBrains Mono", monospace; letter-spacing: 0; }
.glyph-timer { width: 76px; min-height: 76px; justify-content: center; margin-top: 21px; border: 7px solid #e7dfcf; border-top-color: var(--moss); border-radius: 50%; font-size: 1.7rem; letter-spacing: -0.04em; }
.glyph-stopwatch { min-height: 78px; font-size: 2.65rem; }
.glyph-checks { gap: 7px; color: var(--moss); font-size: 2rem; letter-spacing: 0.05em; }
.glyph-water { gap: 7px; align-items: end; }
.glyph-water i { width: 18px; display: block; border-radius: 2px 2px 8px 8px; background: #5c9db9; }
.glyph-water i:nth-child(1) { height: 35px; opacity: .55; }.glyph-water i:nth-child(2) { height: 55px; opacity: .75; }.glyph-water i:nth-child(3) { height: 75px; }
.glyph-goal { width: 78px; min-height: 78px; justify-content: center; margin-top: 20px; border: 7px solid #dfe4dc; border-top-color: var(--moss); border-right-color: var(--moss); border-radius: 50%; font-size: 1.55rem; letter-spacing: -0.05em; }
.glyph-goal span { font-size: 0.75rem; }
.glyph-weather { color: #467e96; }
.glyph-moon { width: 72px; min-height: 72px; margin-top: 23px; border-radius: 50%; background: #e9cf7a; box-shadow: inset -25px -3px 0 #37455c; }
.glyph-daylight { position: relative; width: 110px; min-height: 58px; margin-top: 36px; overflow: hidden; border-top: 3px dashed #d6a534; border-radius: 50% 50% 0 0; }
.glyph-daylight i { position: absolute; width: 18px; height: 18px; top: -9px; right: 17px; border-radius: 50%; background: #d6a534; box-shadow: 0 0 13px rgba(214,165,52,.5); }

.widget-card h3 { margin: 19px 0 8px; font: 600 1.45rem/1.15 "Fraunces", Georgia, serif; letter-spacing: -0.02em; }
.widget-card p { margin: 0; color: var(--ink-soft); font-size: 0.9rem; line-height: 1.58; }
.widget-card a { width: fit-content; margin-top: auto; padding-top: 22px; color: var(--card-accent); font: 600 0.73rem/1 "JetBrains Mono", monospace; text-underline-offset: 5px; }
.widget-card a:hover { color: var(--ink); }

.platforms {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(50px, 9vw, 120px);
  align-items: center;
  border-top: 1px solid var(--border);
}

.platforms-copy h2 {
  margin: 0;
  font: 600 clamp(2.25rem, 5vw, 4rem)/1.04 "Fraunces", Georgia, serif;
  letter-spacing: -0.035em;
}

.platforms-copy > p:last-child {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.platform-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.platform-list li {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(253, 250, 243, 0.7);
  font-weight: 600;
}

.platform-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 5px;
  background: var(--ink);
  color: var(--paper-card);
  font: 600 0.75rem/1 "JetBrains Mono", monospace;
}

.platform-note {
  grid-column: 2;
  margin: -28px 0 0;
  color: var(--ink-soft);
  font-size: 0.74rem;
}

.how-it-works {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(50px, 9vw, 120px);
  align-items: start;
  border-top: 1px solid var(--border);
}

.steps { margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.steps li:first-child { padding-top: 6px; }
.steps > li > span { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font: 600 0.72rem/1 "JetBrains Mono", monospace; }
.steps strong { font: 600 1.35rem/1.2 "Fraunces", Georgia, serif; }
.guide-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 24px;
  color: var(--rust);
  font: 600 0.78rem/1.3 "JetBrains Mono", monospace;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.guide-link:hover { color: var(--ink); }

/* Keep the established Fraunces family, but use its restrained text cut.
   This disables the high-optical-size glyph substitutions that make the
   lowercase f look overly curled in large headlines. */
.brand-stamp,
.brand-name,
h1,
h2,
.feature-copy strong,
.widget-card h3,
.platforms-copy h2,
.steps strong {
  font-optical-sizing: none;
  font-variation-settings: "opsz" 9;
  font-variant-ligatures: none;
}
.steps p { margin: 7px 0 0; color: var(--ink-soft); font-size: 0.9rem; line-height: 1.55; }

.closing {
  min-height: 300px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 5vw, 60px);
  margin-bottom: 92px;
  padding: clamp(34px, 6vw, 64px);
  background: var(--rust);
  color: #fff7ea;
  border-radius: 8px;
  box-shadow: 10px 10px 0 rgba(34, 31, 27, 0.12);
}

.closing .section-kicker { color: #f3c7b8; }
.closing h2 { font-size: clamp(2rem, 4.5vw, 3.55rem); }
.closing p:not(.section-kicker) { max-width: 710px; margin: 16px 0 0; color: #f4d9cf; line-height: 1.65; }
.closing-stamp { width: 104px; height: 104px; display: grid; place-items: center; border: 2px solid currentColor; border-radius: 50%; text-align: center; font: 600 0.8rem/1.3 "JetBrains Mono", monospace; text-transform: uppercase; transform: rotate(-8deg); }
.button-light { border-color: #fff7ea; color: #fff7ea; white-space: nowrap; }
.button-light:hover { background: #fff7ea; color: var(--rust-dark); }

.site-footer {
  min-height: 190px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
  border-top: 1px solid var(--border);
}

.site-footer p { max-width: 460px; margin: 0 auto; color: var(--ink-soft); font-size: 0.84rem; line-height: 1.55; text-align: center; }
.footer-link { color: var(--ink-soft); font: 500 0.7rem/1 "JetBrains Mono", monospace; }
.footer-link:hover { color: var(--rust); }

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

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 64px; }
  .hero-copy { max-width: 760px; }
  .hero-showcase { width: min(100%, 620px); margin-inline: auto; }
  .featured-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-card:last-child { grid-column: 1 / -1; min-height: 360px; }
  .widget-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .closing { grid-template-columns: auto 1fr; }
  .closing .button { grid-column: 2; justify-self: start; }
}

@media (max-width: 720px) {
  .shell, .site-header { width: min(100% - 28px, 1180px); }
  .site-header { min-height: 78px; }
  .brand-stamp { width: 42px; height: 42px; font-size: .95rem; }
  .header-link { display: none; }
  .hero { min-height: auto; gap: 60px; padding-block: 50px 70px; }
  h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero-lede { margin-top: 22px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .promise-list { gap: 9px 17px; }
  .hero-showcase { min-height: 465px; }
  .preview-weather { left: 24px; width: 76%; min-height: 190px; }
  .preview-temperature { font-size: 4rem; }
  .preview-clock { right: 20px; top: 213px; width: 56%; min-height: 226px; }
  .clock-face { width: 136px; height: 136px; }
  .preview-habit { left: 20px; bottom: 30px; width: 60%; }
  .featured, .catalog, .platforms, .how-it-works { padding-block: 68px; }
  .section-heading, .catalog-heading { align-items: start; flex-direction: column; gap: 18px; }
  .section-heading > p { max-width: 620px; }
  .featured-grid, .widget-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-card:last-child { grid-column: auto; min-height: 390px; }
  .filters { position: static; flex-wrap: nowrap; width: calc(100vw - 14px); margin-left: -7px; overflow-x: auto; border-radius: 7px; scrollbar-width: none; }
  .filters::-webkit-scrollbar { display: none; }
  .filter-pill { flex: 0 0 auto; }
  .widget-card { min-height: 310px; }
  .platforms, .how-it-works { grid-template-columns: 1fr; gap: 42px; }
  .platform-note { grid-column: auto; margin: -24px 0 0; }
  .closing { grid-template-columns: 1fr; margin-bottom: 68px; }
  .closing-stamp { width: 90px; height: 90px; }
  .closing .button { grid-column: auto; justify-self: stretch; }
  .site-footer { grid-template-columns: 1fr; justify-items: start; gap: 24px; padding-block: 42px; }
  .site-footer p { margin: 0; text-align: left; }
}

@media (max-width: 440px) {
  .brand-name { font-size: 1.1rem; }
  .brand-meta { font-size: .61rem; }
  h1 { font-size: 3.2rem; }
  .hero-showcase { min-height: 430px; }
  .preview-weather { top: 40px; left: 16px; width: 82%; padding: 22px; }
  .preview-sun { width: 54px; height: 54px; top: 22px; right: 23px; }
  .preview-clock { top: 205px; right: 13px; width: 59%; padding: 17px; }
  .clock-face { width: 118px; height: 118px; border-width: 6px; }
  .preview-habit { left: 12px; bottom: 23px; width: 65%; padding: 17px; }
  .habit-days { gap: 4px; }.habit-days i { width: 26px; height: 26px; }
  .note-top { right: 12px; }
  .note-bottom { left: -5px; }
  .feature-mark { font-size: 6rem; }
  .feature-moon-disc { width: 130px; height: 130px; right: 24px; }
}

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

/* ===== Featured Notion Guides ===== */
.guides-feature {
  padding-top: 72px;
  padding-bottom: 72px;
}

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

.guides-feature-head h2 {
  margin-bottom: 10px;
}

.guides-feature-head p {
  max-width: 680px;
}

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

.guide-feature-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--border, #ddd3bf);
  background: var(--paper-card, #fdfaf3);
  color: inherit;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease;
}

.guide-feature-card:hover {
  transform: translateY(-2px);
}

.guide-feature-kicker {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-soft, #6b6459);
}

.guide-feature-card strong {
  font-family: "Fraunces", serif;
  font-size: 24px;
  line-height: 1.1;
}

.guide-feature-card > span:last-child {
  line-height: 1.55;
  color: var(--ink-soft, #6b6459);
}

.site-footer {
  padding-bottom: 48px;
}

@media (max-width: 760px) {
  .guides-feature {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .guides-feature-head {
    display: block;
  }

  .guides-feature-head .guide-link {
    display: inline-block;
    margin-top: 14px;
  }

  .guides-feature-grid {
    grid-template-columns: 1fr;
  }

  .guide-feature-card strong {
    font-size: 21px;
  }
}

/* Final guide-card + footer polish */
.guide-feature-card {
  box-shadow: 0 1px 0 rgba(34, 31, 27, .03);
}

.guide-feature-card:hover,
.guide-feature-card:focus-visible {
  border-color: #b9aa90;
  box-shadow: 0 8px 20px rgba(34, 31, 27, .08);
  transform: translateY(-2px);
}

.guide-feature-card:focus-visible {
  outline: 2px solid #b5482f;
  outline-offset: 3px;
}

.site-footer {
  padding-bottom: 64px;
}

/* ===== Templates launch ===== */
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
}

.site-nav a,
.text-link {
  color: var(--ink);
  font: 600 0.82rem/1 "JetBrains Mono", monospace;
  letter-spacing: .025em;
  text-underline-offset: 5px;
}

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

.template-feature {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
  padding-block: 94px;
  border-top: 1px solid var(--border);
}

.template-feature-copy h2,
.template-catalog h2,
.template-principles h2,
.product-problem h2,
.product-inside h2,
.product-rhythm h2,
.product-widget-strip h2,
.product-cta h2 {
  margin: 16px 0 0;
  font: 600 clamp(2.35rem, 5vw, 4rem)/1.04 "Fraunces", Georgia, serif;
  font-optical-sizing: none;
  font-variation-settings: "opsz" 9;
  font-variant-ligatures: none;
  letter-spacing: -.035em;
}

.template-feature-copy > p:not(.section-kicker) {
  max-width: 590px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  line-height: 1.68;
}

.template-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 11px;
  border: 1px solid var(--moss);
  border-radius: 999px;
  color: var(--moss);
  font: 600 .65rem/1 "JetBrains Mono", monospace;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.template-badge-dark { border-color: #f2d7b6; color: #f2d7b6; }

.template-checks {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  color: var(--ink);
  list-style: none;
}

.template-checks li { display: flex; gap: 11px; line-height: 1.45; }
.template-checks li::before { content: "✓"; color: var(--moss); font-weight: 700; }

.template-feature-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 32px; }

.planner-preview {
  position: relative;
  display: block;
  min-height: 500px;
  padding: 18px;
  border: 1px solid #bfb39e;
  border-radius: 10px;
  background: #e5dac7;
  box-shadow: var(--shadow), 12px 12px 0 rgba(34, 31, 27, .06);
  color: var(--ink);
  text-decoration: none;
  transform: rotate(1deg);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.planner-preview:hover { transform: rotate(0) translateY(-4px); box-shadow: 0 28px 58px rgba(54,45,33,.16), 12px 12px 0 rgba(34,31,27,.06); }
.planner-window-bar { min-height: 42px; display: flex; align-items: center; gap: 7px; padding: 0 11px; border: 1px solid var(--border); border-bottom: 0; border-radius: 7px 7px 0 0; background: #f8f4eb; }
.planner-window-bar i { width: 8px; height: 8px; border-radius: 50%; background: var(--border); }
.planner-window-bar i:first-child { background: var(--rust); }
.planner-window-bar b { margin-left: auto; color: var(--ink-soft); font: 600 .61rem/1 "JetBrains Mono", monospace; letter-spacing: .05em; text-transform: uppercase; }
.planner-paper { min-height: 390px; display: block; padding: 34px; border: 1px solid var(--border); border-radius: 0 0 7px 7px; background: #fbf8f1; }
.planner-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--border); padding-bottom: 14px; }
.planner-heading small, .planner-columns small, .planner-window-bar { font-family: "JetBrains Mono", monospace; }
.planner-heading small { color: var(--rust); font-size: .61rem; letter-spacing: .07em; }
.planner-heading strong { font: italic 600 1.35rem/1 "Fraunces", Georgia, serif; }
.planner-progress { display: block; height: 6px; margin: 27px 0; overflow: hidden; border-radius: 99px; background: #ddd8cf; }
.planner-progress i { display: block; height: 100%; border-radius: inherit; background: var(--rust); }
.planner-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.planner-columns > span { display: grid; gap: 7px; padding: 17px; border: 1px solid var(--border); background: white; }
.planner-columns small { color: var(--ink-soft); font-size: .58rem; text-transform: uppercase; }
.planner-columns b { font: 600 1.05rem/1.2 "Fraunces", Georgia, serif; }
.planner-columns em { color: var(--ink-soft); font-size: .7rem; font-style: normal; }
.planner-tasks { display: grid; grid-template-columns: 18px 1fr; gap: 12px; align-items: center; margin-top: 24px; }
.planner-tasks i { width: 16px; height: 16px; border: 1px solid var(--moss); border-radius: 50%; }
.planner-tasks i.done { background: var(--moss); box-shadow: inset 0 0 0 4px #fbf8f1; }
.planner-tasks b { font-size: .77rem; font-weight: 500; }
.planner-note { position: absolute; right: -16px; bottom: 20px; padding: 10px 13px; background: #fff7bd; box-shadow: 2px 3px 7px rgba(54,45,33,.14); font: 600 .62rem/1.2 "JetBrains Mono", monospace; text-transform: uppercase; transform: rotate(-3deg); }

/* Templates catalog */
.template-hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(48px, 9vw, 120px);
  align-items: center;
  min-height: 590px;
  padding-block: 80px;
}

.template-manifesto { min-height: 320px; display: grid; place-items: center; align-content: center; gap: 28px; padding: 48px; border: 1px solid var(--border); border-radius: 8px; background: var(--paper-card); box-shadow: 9px 9px 0 rgba(34,31,27,.06); text-align: center; transform: rotate(1.5deg); }
.template-manifesto p { max-width: 410px; margin: 0; color: var(--ink-soft); font: 500 1.05rem/1.65 "Inter", sans-serif; }
.template-catalog, .template-principles, .product-inside, .product-rhythm, .product-widget-strip { padding-block: 92px; border-top: 1px solid var(--border); }
.template-product-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 18px; }
.template-product-card { overflow: hidden; border: 1px solid var(--border); border-radius: 9px; background: var(--paper-card); }
.template-product-live { display: grid; grid-template-columns: .9fr 1.1fr; }
.template-card-copy { display: flex; flex-direction: column; align-items: flex-start; padding: clamp(28px, 5vw, 52px); }
.template-card-copy h3 { margin: 22px 0 12px; font: 600 clamp(1.8rem, 3vw, 2.5rem)/1.08 "Fraunces", Georgia, serif; letter-spacing: -.025em; }
.template-card-copy > p { margin: 0; color: var(--ink-soft); line-height: 1.65; }
.template-card-copy .template-checks { margin-block: 26px; font-size: .88rem; }
.template-card-copy .button { margin-top: auto; }
.template-card-visual { display: grid; place-items: center; min-height: 480px; padding: 34px; background: #e4dac7; }
.mini-dashboard { width: 100%; min-height: 330px; display: flex; flex-direction: column; padding: 28px; border: 1px solid #c9bfad; border-radius: 5px; background: #fbf8f1; box-shadow: 7px 8px 0 rgba(34,31,27,.08); transform: rotate(-2deg); }
.mini-dashboard > small { color: var(--rust); font: 600 .57rem/1 "JetBrains Mono", monospace; letter-spacing: .06em; }
.mini-dashboard > strong { margin-top: 20px; font: 600 2rem/1.05 "Fraunces", Georgia, serif; }
.mini-dashboard > i { height: 7px; margin: 26px 0; overflow: hidden; border-radius: 99px; background: #ded8cf; }
.mini-dashboard > i b { display: block; height: 100%; background: var(--rust); }
.mini-dashboard > span { display: grid; grid-template-columns: 17px 1fr; gap: 13px; align-items: center; }
.mini-dashboard > span em { width: 15px; height: 15px; border: 1px solid var(--moss); border-radius: 50%; }
.mini-dashboard > span b { padding-block: 11px; border-bottom: 1px solid var(--border); font-size: .72rem; font-weight: 500; }
.template-product-soon { background: var(--ink); color: #fff7ea; }
.template-product-soon .template-card-copy { min-height: 480px; }
.template-product-soon .template-card-copy > p { color: #d7cbbb; }
.template-soon-note { margin-top: auto !important; padding-top: 35px; border-top: 1px solid rgba(255,255,255,.14); font-size: .8rem; }
.template-principles { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(48px, 8vw, 100px); }
.principle-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.principle-grid article, .inside-grid article { padding: 25px; border: 1px solid var(--border); background: rgba(253,250,243,.75); }
.principle-grid span { color: var(--rust); font: 600 .65rem/1 "JetBrains Mono", monospace; }
.principle-grid h3, .inside-grid h3 { margin: 24px 0 10px; font: 600 1.35rem/1.15 "Fraunces", Georgia, serif; }
.principle-grid p, .inside-grid p { margin: 0; color: var(--ink-soft); font-size: .87rem; line-height: 1.6; }

/* Starter product page */
.product-hero { min-height: 690px; display: grid; grid-template-columns: minmax(0,.86fr) minmax(520px,1.14fr); gap: clamp(48px,7vw,90px); align-items: center; padding-block: 76px 94px; }
.product-dashboard { position: relative; padding: 14px; border: 1px solid #bfb39e; border-radius: 10px; background: #e5dac7; box-shadow: var(--shadow), 12px 12px 0 rgba(34,31,27,.06); transform: rotate(1deg); }
.product-dashboard-top { min-height: 46px; display: flex; align-items: center; gap: 14px; padding: 0 15px; border-radius: 6px 6px 0 0; background: var(--ink); color: #fff7ea; }
.product-dashboard-top span { font: 600 .56rem/1 "JetBrains Mono", monospace; letter-spacing: .07em; }
.product-dashboard-top b { margin-left: auto; font: 600 .8rem/1 "Fraunces", Georgia, serif; }
.product-dashboard-top i { color: #b9ab95; font-style: normal; }
.product-dashboard-body { min-height: 430px; padding: 26px; border: 1px solid var(--border); border-top: 0; border-radius: 0 0 6px 6px; background: #fbf8f1; }
.dashboard-callout { display: block; padding: 14px; border-radius: 4px; background: #fff1c9; font-size: .72rem; }
.dashboard-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 24px; }
.dashboard-metrics > span { display: grid; gap: 7px; padding: 13px; border-top: 1px solid var(--border); }
.dashboard-metrics small, .dashboard-lists small { color: var(--ink-soft); font: 500 .55rem/1 "JetBrains Mono", monospace; text-transform: uppercase; }
.dashboard-metrics b { font: 700 1.18rem/1 "Manrope", sans-serif; }
.dashboard-metrics i { height: 4px; overflow: hidden; background: #d9d5ce; }
.dashboard-metrics em { display: block; height: 100%; background: var(--rust); }
.dashboard-lists { display: grid; grid-template-columns: 1.2fr .8fr; gap: 12px; margin-top: 24px; }
.dashboard-lists > span { display: flex; flex-direction: column; gap: 13px; padding: 17px; border: 1px solid var(--border); background: white; }
.dashboard-lists b { display: grid; grid-template-columns: 14px 1fr; gap: 8px; align-items: center; font-size: .65rem; font-weight: 500; }
.dashboard-lists b i { width: 13px; height: 13px; border: 1px solid var(--moss); border-radius: 50%; }
.dashboard-lists strong { font: 600 1.05rem/1.2 "Fraunces", Georgia, serif; }
.dashboard-lists em { color: var(--moss); font-size: .62rem; font-style: normal; }
.product-dashboard-note { position: absolute; right: -15px; bottom: -20px; padding: 10px 13px; background: #fff7bd; box-shadow: 2px 3px 7px rgba(54,45,33,.14); font: 600 .61rem/1.2 "JetBrains Mono", monospace; text-transform: uppercase; transform: rotate(-3deg); }
.product-problem { max-width: 980px; padding-block: 105px; text-align: center; }
.product-problem > p:last-child { max-width: 740px; margin: 24px auto 0; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.75; }
.inside-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.inside-grid article > span { font-size: 1.75rem; }
.inside-grid h3 { margin-top: 34px; }
.product-rhythm { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px,9vw,120px); }
.product-rhythm ol { margin: 0; padding: 0; list-style: none; }
.product-rhythm li { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 21px 0; border-bottom: 1px solid var(--border); }
.product-rhythm li > span { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font: 600 .68rem/1 "JetBrains Mono", monospace; }
.product-rhythm strong { font: 600 1.28rem/1.2 "Fraunces", Georgia, serif; }
.product-rhythm p { margin: 6px 0 0; color: var(--ink-soft); font-size: .87rem; }
.product-widget-strip { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px,8vw,100px); align-items: center; }
.widget-strip-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.widget-strip-grid span { min-height: 135px; display: grid; place-items: center; align-content: center; gap: 12px; border: 1px solid var(--border); border-radius: 6px; background: var(--paper-card); }
.widget-strip-grid b { color: var(--rust); font: 700 1.6rem/1 "Manrope", sans-serif; }
.widget-strip-grid small { color: var(--ink-soft); font: 600 .55rem/1 "JetBrains Mono", monospace; }
.product-cta { min-height: 320px; display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: clamp(28px,5vw,60px); margin-block: 92px; padding: clamp(34px,6vw,64px); border-radius: 8px; background: var(--rust); box-shadow: 10px 10px 0 rgba(34,31,27,.12); color: #fff7ea; }
.product-cta .section-kicker { color: #f3c7b8; }
.product-cta h2 { margin-top: 0; font-size: clamp(2rem,4.5vw,3.55rem); }
.product-cta p:not(.section-kicker) { max-width: 700px; margin: 16px 0 0; color: #f4d9cf; line-height: 1.65; }
.site-footer { grid-template-columns: auto minmax(0,1fr) auto auto; }

@media (max-width: 1050px) {
  .template-feature, .product-hero { grid-template-columns: 1fr; }
  .template-feature-copy, .product-hero-copy { max-width: 760px; }
  .planner-preview, .product-dashboard { width: min(100%, 720px); margin-inline: auto; }
  .template-product-grid { grid-template-columns: 1fr; }
  .template-product-soon .template-card-copy { min-height: 340px; }
  .site-footer { grid-template-columns: auto minmax(0,1fr) auto; }
  .site-footer .footer-link:last-child { grid-column: 3; }
}

@media (max-width: 760px) {
  .site-nav { gap: 15px; }
  .site-nav a { font-size: .72rem; }
  .template-feature { grid-template-columns: 1fr; padding-block: 68px; }
  .planner-preview { min-height: 435px; padding: 11px; transform: none; }
  .planner-paper { min-height: 355px; padding: 22px; }
  .planner-columns { grid-template-columns: 1fr; }
  .planner-columns > span:last-child { display: none; }
  .planner-note { right: 4px; bottom: -13px; }
  .template-hero { grid-template-columns: 1fr; min-height: auto; padding-block: 62px; }
  .template-manifesto { min-height: 270px; padding: 34px; }
  .template-catalog, .template-principles, .product-inside, .product-rhythm, .product-widget-strip { padding-block: 68px; }
  .template-product-live { grid-template-columns: 1fr; }
  .template-card-visual { min-height: 380px; }
  .template-principles, .product-rhythm, .product-widget-strip { grid-template-columns: 1fr; gap: 40px; }
  .principle-grid, .inside-grid { grid-template-columns: 1fr; }
  .product-hero { min-height: auto; padding-block: 58px 78px; }
  .product-dashboard { padding: 9px; transform: none; }
  .product-dashboard-body { min-height: 390px; padding: 18px; }
  .dashboard-metrics { grid-template-columns: 1fr 1fr 1fr; }
  .dashboard-lists { grid-template-columns: 1fr; }
  .dashboard-lists > span:last-child { display: none; }
  .product-dashboard-note { right: 2px; }
  .product-problem { padding-block: 80px; }
  .widget-strip-grid { grid-template-columns: 1fr; }
  .widget-strip-grid span { min-height: 110px; }
  .product-cta { grid-template-columns: 1fr; margin-block: 68px; }
  .product-cta .button { width: 100%; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer .footer-link:last-child { grid-column: auto; }
}

@media (max-width: 520px) {
  .site-header { align-items: center; }
  .site-nav { gap: 11px; }
  .site-nav a:first-child { display: none; }
  .planner-heading strong { font-size: 1rem; }
  .planner-tasks b { font-size: .68rem; }
  .template-feature-actions { align-items: stretch; flex-direction: column; }
  .template-feature-actions .button { width: 100%; }
  .template-feature-actions .text-link { text-align: center; }
  .mini-dashboard { padding: 22px; }
  .dashboard-metrics > span { padding: 9px 5px; }
  .dashboard-metrics b { font-size: .9rem; }
}
