:root {
  --background: #f5f5f4;
  --paper: #fbfaf8;
  --panel: #e7e7e6;
  --foreground: #262626;
  --muted: #77756f;
  --soft: #b2b2b1;
  --line: rgba(38, 38, 38, 0.14);
  --red: #c83f38;
  --red-light: #f26a62;
  --red-hi: #ffd1ce;
  --red-shadow: #9f2b27;
  --warm: #c47a3a;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 7%, rgba(255, 209, 206, 0.42), transparent 28rem),
    radial-gradient(circle at 90% 19%, rgba(196, 122, 58, 0.14), transparent 25rem),
    var(--background);
  color: var(--foreground);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image: linear-gradient(rgba(38, 38, 38, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(38, 38, 38, 0.02) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 14px max(18px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(245, 245, 244, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.brand img {
  image-rendering: pixelated;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 26px;
  color: rgba(38, 38, 38, 0.68);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
}

.nav-links a:hover {
  color: var(--foreground);
}

.nav-cta {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px;
  background: var(--foreground);
  color: var(--background);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
}

.hero {
  width: min(var(--max), calc(100% - 36px));
  min-height: calc(100svh - 72px);
  margin: 0 auto;
  padding: 56px 0 34px;
  display: grid;
  gap: 38px;
  align-items: center;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow,
.microline,
.soft-note,
.form-note {
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: 0.18em;
  text-transform: lowercase;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--soft);
  font-size: 12px;
}

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

h1,
h2 {
  margin: 0;
  max-width: 15ch;
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: normal;
  hyphens: none;
}

h1 {
  font-size: clamp(36px, 6vw, 68px);
}

h2 {
  font-size: clamp(32px, 8vw, 66px);
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.lead {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(38, 38, 38, 0.82);
  font-size: clamp(20px, 4.6vw, 28px);
  line-height: 1.45;
  font-weight: 500;
}

.hero-explain {
  max-width: 610px;
  margin: 18px 0 0;
  color: rgba(38, 38, 38, 0.7);
  font-size: clamp(17px, 2.5vw, 21px);
  line-height: 1.55;
}

.hero-helper {
  max-width: 560px;
  margin: 14px 0 0;
  color: rgba(38, 38, 38, 0.66);
  font-size: 16px;
  line-height: 1.6;
}

.hero-copy .microline {
  margin-top: 22px;
  color: var(--soft);
  font-size: 12px;
}

.product-formula,
.trust-line,
.origin-line {
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: 0.12em;
  text-transform: lowercase;
}

.product-formula {
  display: inline-flex;
  margin: 22px 0 0;
  border: 1px solid rgba(200, 63, 56, 0.2);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 209, 206, 0.2);
  color: rgba(38, 38, 38, 0.72);
  font-size: 12px;
  line-height: 1.45;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 22px;
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background: var(--red);
  color: white;
  border-color: rgba(159, 43, 39, 0.25);
  box-shadow: 0 18px 38px rgba(200, 63, 56, 0.18);
}

.btn.secondary {
  background: rgba(251, 250, 248, 0.64);
  color: var(--foreground);
}

.hero-art {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--foreground);
  box-shadow: 0 34px 90px rgba(38, 38, 38, 0.16);
}

.hero-art img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.hero-art::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(38, 38, 38, 0.5), transparent 50%), radial-gradient(circle at 50% 50%, transparent 22%, rgba(38, 38, 38, 0.18));
}

.thought-corridor,
.arrival-card {
  position: absolute;
  z-index: 2;
}

.thought-corridor {
  inset: 12% 10%;
}

.node {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 0 0 12px rgba(255, 209, 206, 0.12), 0 0 36px rgba(242, 106, 98, 0.5);
}

.node-left {
  left: 22%;
  top: 56%;
}

.node-right {
  right: 20%;
  top: 46%;
}

.corridor-line {
  position: absolute;
  left: 25%;
  right: 20%;
  top: 45%;
  height: 96px;
  border-radius: 47% 53% 42% 58%;
  background:
    radial-gradient(circle at 24% 58%, rgba(255, 255, 255, 0.68), transparent 18%),
    radial-gradient(circle at 70% 40%, rgba(255, 209, 206, 0.7), transparent 20%),
    linear-gradient(100deg, transparent, rgba(255, 209, 206, 0.48), rgba(255, 255, 255, 0.58), rgba(255, 209, 206, 0.44), transparent);
  filter: blur(1px);
  transform: rotate(-8deg);
  animation: breathe 6.8s ease-in-out infinite;
}

.pixel-heart {
  display: inline-block;
  width: 30px;
  height: 26px;
  background:
    linear-gradient(var(--red-light), var(--red-light)) 3px 0 / 9px 3px,
    linear-gradient(var(--red-light), var(--red-light)) 18px 0 / 9px 3px,
    linear-gradient(var(--red), var(--red)) 0 3px / 30px 9px,
    linear-gradient(var(--red), var(--red)) 3px 12px / 24px 3px,
    linear-gradient(var(--red), var(--red)) 6px 15px / 18px 3px,
    linear-gradient(var(--red), var(--red)) 9px 18px / 12px 3px,
    linear-gradient(var(--red), var(--red)) 12px 21px / 6px 3px,
    linear-gradient(var(--red-hi), var(--red-hi)) 6px 3px / 6px 3px,
    linear-gradient(var(--red-hi), var(--red-hi)) 21px 3px / 6px 3px,
    linear-gradient(var(--red-shadow), var(--red-shadow)) 27px 9px / 3px 6px;
  background-repeat: no-repeat;
  image-rendering: pixelated;
}

.resonance-heart {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: resonance 6.8s ease-in-out infinite;
  filter: drop-shadow(0 0 18px rgba(242, 106, 98, 0.82));
}

.arrival-card {
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(245, 245, 244, 0.8);
  backdrop-filter: blur(16px);
}

.arrival-card p {
  margin: 0;
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  color: rgba(38, 38, 38, 0.74);
}

.pixel-heart.small {
  width: 20px;
  height: 18px;
  background-size: 6px 2px, 6px 2px, 20px 6px, 16px 2px, 12px 2px, 8px 2px, 4px 2px, 4px 2px, 4px 2px, 2px 4px;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-copy {
  max-width: 720px;
}

.section-copy.centered {
  margin: 0 auto 34px;
  text-align: center;
}

.section-copy.centered h2 {
  margin-inline: auto;
}

.section-copy p:not(.eyebrow),
.limit-band > p,
.beta-copy p {
  color: rgba(38, 38, 38, 0.74);
  font-size: clamp(18px, 3.5vw, 23px);
  line-height: 1.65;
  text-wrap: pretty;
}

.quiet {
  display: grid;
  gap: 34px;
}

.tile-grid,
.people-grid {
  display: grid;
  gap: 12px;
}

.tile-grid article,
.people-grid span,
.steps article,
.compare-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 250, 248, 0.62);
  box-shadow: 0 18px 50px rgba(38, 38, 38, 0.04);
}

.tile-grid article,
.people-grid span {
  min-height: 78px;
  padding: 24px;
  display: flex;
  align-items: center;
  color: rgba(38, 38, 38, 0.76);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.tile-grid.compact {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.tile-grid.compact article {
  min-height: 68px;
}

.split {
  display: grid;
  gap: 38px;
  align-items: center;
}

.visual-panel,
.image-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(251, 250, 248, 0.62);
}

.corridor-panel {
  min-height: 420px;
  display: grid;
  place-items: center;
  position: relative;
}

.corridor-panel::before {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(200, 63, 56, 0.16);
  border-radius: 48% 52% 50% 44%;
  content: "";
  animation: morph 7s ease-in-out infinite;
}

.orbital {
  position: relative;
  width: min(74vw, 360px);
  aspect-ratio: 1;
}

.orbital span {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(200, 63, 56, 0.22);
  border-radius: 43% 57% 62% 38%;
  animation: morph 6s ease-in-out infinite;
}

.orbital span:nth-child(2) {
  inset: 22%;
  animation-duration: 7.5s;
  animation-delay: -2s;
}

.orbital span:nth-child(3) {
  inset: 32%;
  animation-duration: 9s;
  animation-delay: -4s;
}

.orbital i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 62px;
  transform: translate(-50%, -50%) scale(1.8);
  animation: pulse 3.4s ease-in-out infinite;
}

.corridor-panel p {
  position: absolute;
  bottom: 28px;
  margin: 0;
  color: var(--soft);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  letter-spacing: 0.14em;
}

.soft-note {
  margin-top: 20px;
  color: var(--red);
  font-size: 13px;
}

.limit-band {
  border-block: 1px solid var(--line);
  display: grid;
  gap: 18px;
}

.limit-band h2 {
  max-width: 14ch;
}

.daily-hearts {
  display: flex;
  gap: 14px;
  padding-top: 10px;
}

.daily-hearts .pixel-heart {
  animation: pulse 3s ease-in-out infinite;
}

.daily-hearts .pixel-heart:nth-child(2) { animation-delay: 0.35s; }
.daily-hearts .pixel-heart:nth-child(3) { animation-delay: 0.7s; }
.daily-hearts .pixel-heart:nth-child(4) { animation-delay: 1.05s; }

.steps {
  display: grid;
  gap: 14px;
}

.steps article {
  padding: 26px;
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  border: 1px solid rgba(200, 63, 56, 0.32);
  border-radius: 999px;
  color: var(--red);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.steps p,
.compare-grid li {
  color: rgba(38, 38, 38, 0.66);
  line-height: 1.6;
}

.image-card img {
  width: 100%;
  max-height: 650px;
  object-fit: cover;
}

.people {
  display: grid;
  gap: 34px;
}

.compare-grid {
  display: grid;
  gap: 14px;
}

.compare-grid article {
  padding: 28px;
}

.compare-grid .fernherz-card {
  background: rgba(255, 209, 206, 0.26);
  border-color: rgba(200, 63, 56, 0.28);
}

.compare-grid ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.compare-grid li::before {
  content: "· ";
  color: var(--red);
  font-weight: 700;
}

.story-strip {
  display: grid;
  gap: 14px;
  padding-top: 24px;
}

.story-strip img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.quickstart {
  padding-top: 34px;
}

.quickstart-grid,
.faq-grid {
  display: grid;
  gap: 14px;
}

.quickstart-grid article,
.faq-grid article,
.code-explain,
.beat-sample {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 250, 248, 0.62);
  box-shadow: 0 18px 50px rgba(38, 38, 38, 0.04);
}

.beat-sample {
  max-width: 680px;
  margin: 26px auto 0;
  padding: 26px;
  text-align: left;
}

.beat-sample blockquote {
  margin: 8px 0 16px;
  color: var(--foreground);
  font-size: clamp(24px, 5vw, 36px);
  line-height: 1.12;
  font-weight: 600;
  text-wrap: balance;
}

.beat-sample p:not(.eyebrow) {
  margin: 0;
  color: rgba(38, 38, 38, 0.72);
  line-height: 1.7;
}

.quickstart-grid article {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.quickstart-grid p,
.faq-grid p,
.code-explain li {
  color: rgba(38, 38, 38, 0.7);
  line-height: 1.65;
}

.code-explain {
  max-width: 860px;
  margin: 0 auto 18px;
  padding: 24px;
}

.code-pill {
  display: inline-flex;
  margin-bottom: 14px;
  border: 1px solid rgba(200, 63, 56, 0.24);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 209, 206, 0.2);
  color: var(--red);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: 0.12em;
}

.code-explain ol {
  margin: 0;
  padding-left: 22px;
}

.code-note {
  margin: 0 0 14px;
  color: rgba(38, 38, 38, 0.68);
  line-height: 1.6;
}

.faq-grid article {
  padding: 22px;
}

.faq-grid h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.faq-grid p {
  margin: 0;
}

.pricing-grid {
  display: grid;
  gap: 14px;
}

.pricing-grid article {
  display: grid;
  gap: 14px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: rgba(251, 250, 248, 0.66);
  box-shadow: 0 18px 50px rgba(38, 38, 38, 0.04);
}

.pricing-title,
.pricing-grid span {
  margin: 0;
  color: var(--soft);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: 0.14em;
  text-transform: lowercase;
}

.pricing-grid strong {
  color: var(--foreground);
  font-size: 26px;
  line-height: 1.1;
}

.pricing-grid p:not(.pricing-title) {
  margin: 0;
  color: rgba(38, 38, 38, 0.72);
  line-height: 1.65;
}

.pricing-grid span {
  font-size: 12px;
  line-height: 1.6;
}

.pricing-grid .btn {
  width: 100%;
  min-height: 48px;
  margin-top: 4px;
}

.trust-line {
  max-width: 840px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
}

.beta {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto 80px;
  padding: 34px;
  border: 1px solid rgba(200, 63, 56, 0.24);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 209, 206, 0.5), rgba(251, 250, 248, 0.78) 48%, rgba(231, 231, 230, 0.72));
  display: grid;
  gap: 30px;
}

.beta h2 {
  max-width: 13ch;
}

.beta-form {
  display: grid;
  gap: 14px;
}

.beta-form label {
  display: grid;
  gap: 8px;
  color: rgba(38, 38, 38, 0.68);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.beta-form input,
.beta-form select {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--foreground);
  padding: 0 16px;
  letter-spacing: 0;
}

.form-note {
  margin: 4px 0 0;
  color: var(--soft);
  font-size: 12px;
}

.site-footer {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0 96px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 16px;
  color: rgba(38, 38, 38, 0.66);
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
}

.origin-line {
  color: var(--soft);
  font-size: 12px;
  line-height: 1.6;
}

.legal-page .site-header {
  position: static;
}

.legal-main {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: 74px 0 90px;
}

.legal-main h1 {
  margin-bottom: 24px;
}

.legal-main section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-main h2 {
  max-width: none;
  margin-bottom: 16px;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.1;
}

.legal-main h3 {
  margin: 24px 0 10px;
}

.legal-main p,
.legal-main li {
  color: rgba(38, 38, 38, 0.74);
  font-size: 17px;
  line-height: 1.75;
}

.legal-main ul {
  padding-left: 20px;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 10px 14px max(10px, env(safe-area-inset-bottom));
  background: rgba(245, 245, 244, 0.84);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.section-stepper {
  position: fixed;
  right: 12px;
  bottom: calc(76px + env(safe-area-inset-bottom));
  z-index: 42;
  display: none;
  gap: 8px;
  flex-direction: column;
}

.section-stepper button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(245, 245, 244, 0.88);
  color: var(--muted);
  box-shadow: 0 10px 30px rgba(38, 38, 38, 0.08);
  backdrop-filter: blur(14px);
}

.section {
  position: relative;
}

.section::after,
.hero::after {
  content: "↓";
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: none;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transform: translateX(-50%);
  color: var(--soft);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 15px;
  line-height: 26px;
  text-align: center;
  background: rgba(245, 245, 244, 0.78);
}

.install-card {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 96px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: end;
  border: 1px solid var(--line);
  background: rgb(245 245 244 / 88%);
  box-shadow: 0 22px 70px rgb(38 38 38 / 7%);
}

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

.install-card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.install-card p {
  max-width: 720px;
  margin: 0;
  color: rgb(38 38 38 / 72%);
  line-height: 1.65;
}

.install-hint {
  margin-top: 12px !important;
  color: var(--foreground) !important;
}

.install-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mobile-cta .btn {
  width: 100%;
}

@keyframes breathe {
  0%, 100% { opacity: 0.58; border-radius: 47% 53% 42% 58%; transform: rotate(-8deg) scale(0.92, 0.82); }
  50% { opacity: 0.95; border-radius: 58% 42% 57% 43%; transform: rotate(-8deg) scale(1.06, 1); }
}

@keyframes resonance {
  0%, 100% { left: 50%; top: 50%; opacity: 0.72; transform: translate(-50%, -50%) scale(0.82); }
  35% { left: 48%; top: 52%; opacity: 1; transform: translate(-50%, -50%) scale(1.02); }
  68% { left: 53%; top: 47%; opacity: 0.9; transform: translate(-50%, -50%) scale(0.92); }
}

@keyframes pulse {
  0%, 100% { transform: translateZ(0) scale(1); opacity: 0.95; }
  50% { transform: translateZ(0) scale(1.06); opacity: 1; }
}

@keyframes morph {
  0%, 100% { border-radius: 43% 57% 62% 38%; transform: rotate(0deg) scale(1); }
  50% { border-radius: 58% 42% 39% 61%; transform: rotate(4deg) scale(1.03); }
}

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

@media (min-width: 720px) {
  .nav-links,
  .nav-cta {
    display: inline-flex;
  }

  .hero {
    grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.97fr);
    padding-top: 42px;
  }

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

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

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

  .story-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

  .beta {
    grid-template-columns: 0.9fr 1fr;
    align-items: end;
    padding: 52px;
  }

  .site-footer {
    grid-template-columns: 1fr auto auto;
    align-items: center;
    padding-bottom: 42px;
  }

  .site-footer .origin-line {
    grid-column: 1 / -1;
  }

  .mobile-cta {
    display: none;
  }
}

@media (min-width: 960px) {
  .quiet,
  .split,
  .limit-band {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .reverse .section-copy {
    order: 2;
  }

  .limit-band {
    grid-template-columns: 0.9fr 1fr auto;
  }

  .limit-band .microline {
    grid-column: 2 / -1;
    margin: 0;
  }
}

@media (max-width: 480px) {
  .site-header {
    min-height: 56px;
    padding-block: 10px;
  }

  .brand {
    letter-spacing: 0.08em;
  }

  .nav-links {
    display: none;
  }

  .hero {
    width: min(100% - 28px, var(--max));
    padding-top: 34px;
    padding-bottom: 74px;
  }

  h1 {
    font-size: clamp(34px, 14vw, 52px);
    line-height: 1.02;
    max-width: 8.4ch;
  }

  h2 {
    font-size: clamp(31px, 12vw, 46px);
    line-height: 1.04;
    max-width: 9.5ch;
  }

  .section-copy.centered h2 {
    max-width: 10.5ch;
  }

  .hero-art,
  .hero-art img {
    min-height: 420px;
  }

  .section {
    width: min(100% - 28px, var(--max));
    padding: 68px 0 82px;
  }

  .hero::after,
  .section::after {
    display: block;
  }

  .section-stepper {
    display: flex;
  }

  .story-strip::after,
  .pricing::after,
  .faq::after {
    display: none;
  }

  .btn {
    width: 100%;
  }

  .product-formula {
    width: 100%;
    border-radius: 8px;
  }

  .beta {
    width: min(100% - 28px, var(--max));
    padding: 24px;
  }
}
