:root {
  --bg: #f3efe2;
  --bg-strong: #ebe5d3;
  --panel: rgba(251, 248, 238, 0.9);
  --panel-strong: rgba(253, 251, 244, 0.96);
  --ink: #183342;
  --muted: #50646f;
  --line: rgba(24, 51, 66, 0.18);
  --line-strong: rgba(24, 51, 66, 0.34);
  --accent: #193543;
  --accent-strong: #0e5667;
  --accent-soft: rgba(25, 53, 67, 0.08);
  --warm: #936028;
  --warm-soft: rgba(147, 96, 40, 0.12);
  --shadow: 0 22px 54px rgba(71, 63, 46, 0.14);
  --radius: 24px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.76), transparent 24%),
    radial-gradient(circle at bottom right, rgba(227, 220, 198, 0.7), transparent 28%),
    linear-gradient(180deg, #f6f2e6 0%, #efe9d8 100%);
  font-family: "Aptos", "Segoe UI Variable Text", "Segoe UI", sans-serif;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    url("./assets/geometry-orbits.svg") top right / min(92vw, 980px) auto no-repeat,
    url("./assets/geometry-cells.svg") bottom left / min(90vw, 920px) auto no-repeat;
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 40px 0 76px;
}

.centered {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(245, 240, 226, 0.9)),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("./assets/geometry-orbits.svg") right -120px top -40px / 58% auto no-repeat,
    linear-gradient(135deg, rgba(147, 96, 40, 0.08), rgba(25, 53, 67, 0.02));
  opacity: 0.34;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 18px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(24, 51, 66, 0.1);
  background: radial-gradient(circle, rgba(147, 96, 40, 0.08), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: center;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.compact-hero {
  max-width: 780px;
  text-align: center;
}

.eyebrow,
.kicker,
.card-label {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--warm);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", "URW Palladio L", serif;
  line-height: 1.02;
}

h1 {
  max-width: 12.5ch;
  font-size: clamp(3rem, 6vw, 5.3rem);
}

h2 {
  font-size: clamp(1.92rem, 3vw, 2.8rem);
}

h3 {
  font-size: 1.34rem;
}

.lede {
  max-width: 62ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
  color: var(--muted);
}

.hero-note {
  max-width: 56ch;
  margin: 18px 0 0;
  color: #35515c;
  font-size: 0.99rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.badge-row span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(24, 51, 66, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
  font-weight: 700;
  color: #21414f;
}

.hero-visual {
  display: grid;
  gap: 12px;
  margin: 0;
}

.motif-stack {
  align-content: start;
}

.motif-row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.motif-card {
  min-height: 228px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background-color: rgba(252, 249, 242, 0.9);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.68),
    0 16px 28px rgba(70, 61, 44, 0.1);
  animation: motifDrift 18s ease-in-out infinite alternate;
}

.motif-orbits {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(243, 236, 219, 0.66)),
    url("./assets/geometry-orbits.svg") center / cover no-repeat;
}

.motif-cells {
  min-height: 196px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(243, 236, 219, 0.66)),
    url("./assets/geometry-cells.svg") center / cover no-repeat;
  animation-delay: -7s;
}

.motif-half {
  min-height: 188px;
}

.motif-traces {
  background:
    radial-gradient(circle at 20% 22%, rgba(25, 53, 67, 0.24), transparent 16%),
    radial-gradient(circle at 78% 74%, rgba(25, 53, 67, 0.24), transparent 14%),
    linear-gradient(135deg, transparent 33%, rgba(25, 53, 67, 0.82) 34%, rgba(25, 53, 67, 0.82) 36%, transparent 37%),
    linear-gradient(32deg, transparent 43%, rgba(25, 53, 67, 0.72) 44%, rgba(25, 53, 67, 0.72) 46%, transparent 47%),
    linear-gradient(168deg, transparent 56%, rgba(25, 53, 67, 0.72) 57%, rgba(25, 53, 67, 0.72) 59%, transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(243, 236, 219, 0.66));
  animation-delay: -12s;
}

.hero-visual figcaption {
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(25, 53, 67, 0.12);
}

.button-primary {
  color: #f8f4ea;
  background: linear-gradient(135deg, #1c3a48, #0e5667);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.section {
  position: relative;
  overflow: hidden;
  margin-top: 32px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(246, 241, 229, 0.88)),
    var(--panel);
  box-shadow: 0 18px 40px rgba(71, 63, 46, 0.11);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  pointer-events: none;
}

.highlight-band::before {
  background:
    url("./assets/geometry-orbits.svg") right -220px center / 62% auto no-repeat;
}

.explanation-band::before {
  background:
    url("./assets/geometry-orbits.svg") left -180px center / 58% auto no-repeat;
}

.figure-band::before {
  background:
    url("./assets/geometry-cells.svg") right -220px center / 64% auto no-repeat;
}

.teaching-band::before {
  background:
    url("./assets/geometry-orbits.svg") center top / 108% auto no-repeat;
}

.story-band::before {
  background:
    url("./assets/geometry-cells.svg") center center / 112% auto no-repeat;
}

.abstraction-band::before {
  background:
    url("./assets/geometry-orbits.svg") left -220px top -40px / 56% auto no-repeat,
    url("./assets/geometry-cells.svg") right -180px bottom -50px / 54% auto no-repeat;
}

.section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
}

.section-heading p {
  max-width: 72ch;
  margin: 14px 0 0;
  color: var(--muted);
}

.card-grid,
.metric-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.lesson-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.lesson-card {
  padding: 20px;
  border: 1px solid rgba(24, 51, 66, 0.13);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(245, 239, 226, 0.86)),
    rgba(255, 255, 255, 0.8);
}

.lesson-step {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--accent);
  color: #f6f1e4;
  font-weight: 700;
}

.lesson-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.field-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.field-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 18px;
  border: 1px solid rgba(24, 51, 66, 0.14);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 241, 229, 0.94)),
    rgba(255, 255, 255, 0.8);
}

.field-visual {
  min-height: 164px;
  border-radius: 16px;
  border: 1px solid rgba(24, 51, 66, 0.16);
  background-color: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.field-orbits {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(243, 236, 219, 0.68)),
    url("./assets/geometry-orbits.svg") center / cover no-repeat;
}

.field-cells {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(243, 236, 219, 0.68)),
    url("./assets/geometry-cells.svg") center / cover no-repeat;
}

.field-cuts {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(243, 236, 219, 0.68)),
    linear-gradient(180deg, transparent 0 34%, rgba(25, 53, 67, 0.84) 35%, rgba(25, 53, 67, 0.84) 38%, transparent 39%),
    linear-gradient(180deg, transparent 0 60%, rgba(25, 53, 67, 0.72) 61%, rgba(25, 53, 67, 0.72) 63%, transparent 64%),
    linear-gradient(90deg, rgba(25, 53, 67, 0.12), rgba(255, 255, 255, 0));
}

.field-traces {
  background:
    radial-gradient(circle at 18% 24%, rgba(25, 53, 67, 0.2), transparent 13%),
    radial-gradient(circle at 72% 70%, rgba(25, 53, 67, 0.18), transparent 11%),
    linear-gradient(135deg, transparent 27%, rgba(25, 53, 67, 0.84) 28%, rgba(25, 53, 67, 0.84) 30%, transparent 31%),
    linear-gradient(24deg, transparent 48%, rgba(25, 53, 67, 0.72) 49%, rgba(25, 53, 67, 0.72) 51%, transparent 52%),
    linear-gradient(164deg, transparent 58%, rgba(25, 53, 67, 0.72) 59%, rgba(25, 53, 67, 0.72) 61%, transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(243, 236, 219, 0.68));
}

.field-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.card,
.metric-card {
  display: block;
  height: 100%;
  padding: 22px;
  border: 1px solid rgba(24, 51, 66, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 242, 230, 0.92)),
    rgba(255, 255, 255, 0.84);
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.card:hover,
.metric-card:hover,
.link-table a:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 86, 103, 0.34);
  box-shadow: 0 18px 34px rgba(71, 63, 46, 0.12);
}

.card p,
.metric-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.metric-card a,
.link-table a,
.api-crate-list a {
  color: var(--accent-strong);
  font-weight: 700;
}

.showcase-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.showcase-card {
  padding: 22px;
  border: 1px solid rgba(24, 51, 66, 0.14);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 241, 229, 0.92)),
    rgba(255, 255, 255, 0.84);
}

.accent-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(241, 231, 210, 0.95)),
    rgba(255, 255, 255, 0.84);
}

.showcase-list {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.showcase-list li + li {
  margin-top: 8px;
}

.api-crate-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.api-crate-list a {
  text-decoration: none;
}

.api-crate-list a:hover {
  text-decoration: underline;
}

.stacked-actions {
  flex-direction: column;
}

.link-table {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.link-table a {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid rgba(24, 51, 66, 0.13);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(246, 241, 229, 0.9)),
    rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.link-table span {
  color: var(--muted);
  font-weight: 500;
}

.deck-shell {
  max-width: 1320px;
}

.slide-deck {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.slide-frame {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(245, 240, 226, 0.92)),
    var(--panel-strong);
  box-shadow: 0 18px 36px rgba(71, 63, 46, 0.11);
}

.slide-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  background:
    url("./assets/geometry-orbits.svg") right -220px center / 56% auto no-repeat;
}

.slide-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.slide-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--accent);
  color: #f7f2e7;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

.slide-lede {
  position: relative;
  z-index: 1;
  max-width: 68ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.slide-grid,
.fabric-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.slide-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.fabric-grid {
  margin-top: 22px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.fabric-card {
  padding: 20px;
  border: 1px solid rgba(24, 51, 66, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(246, 241, 229, 0.96)),
    rgba(255, 255, 255, 0.82);
}

.fabric-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.roadmap-strip {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin-top: 22px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.roadmap-step {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(24, 51, 66, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 241, 229, 0.94)),
    rgba(255, 255, 255, 0.82);
}

.roadmap-step strong {
  font-size: 1.04rem;
}

.roadmap-step span {
  color: var(--muted);
}

.asset-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.asset-card {
  display: grid;
  gap: 12px;
}

.asset-frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(24, 51, 66, 0.16);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.74),
    0 18px 34px rgba(71, 63, 46, 0.12);
}

.export-social {
  aspect-ratio: 1200 / 630;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(241, 234, 217, 0.98)),
    rgba(255, 255, 255, 0.86);
}

.alt-social {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(235, 229, 211, 0.98)),
    rgba(255, 255, 255, 0.86);
}

.proof-social {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(233, 225, 205, 0.98)),
    rgba(255, 255, 255, 0.86);
}

.export-cover {
  aspect-ratio: 16 / 9;
  padding: 58px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(241, 234, 217, 0.98)),
    rgba(255, 255, 255, 0.86);
}

.alt-cover {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(232, 225, 205, 0.98)),
    rgba(255, 255, 255, 0.86);
}

.proof-cover {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(228, 221, 201, 0.98)),
    rgba(255, 255, 255, 0.86);
}

.export-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  max-width: 76%;
}

.export-copy h3 {
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  line-height: 0.96;
}

.export-copy p {
  margin: 0;
  color: #35515c;
  font-size: clamp(0.86rem, 1.2vw, 1rem);
}

.export-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--warm);
}

.export-orbit,
.export-cells,
.export-trace,
.cover-band,
.cover-grid,
.cover-trace {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  pointer-events: none;
}

.export-orbit,
.cover-band {
  background:
    url("./assets/geometry-orbits.svg") right -120px center / 58% auto no-repeat,
    linear-gradient(180deg, transparent 0 66%, rgba(25, 53, 67, 0.08) 67%, transparent 68%);
}

.export-cells,
.cover-grid {
  background:
    url("./assets/geometry-cells.svg") right -100px bottom -30px / 58% auto no-repeat,
    url("./assets/geometry-orbits.svg") left -140px top -50px / 42% auto no-repeat;
}

.export-trace,
.cover-trace {
  background:
    radial-gradient(circle at 24% 30%, rgba(25, 53, 67, 0.18), transparent 10%),
    radial-gradient(circle at 74% 66%, rgba(25, 53, 67, 0.18), transparent 12%),
    linear-gradient(135deg, transparent 33%, rgba(25, 53, 67, 0.86) 34%, rgba(25, 53, 67, 0.86) 36%, transparent 37%),
    linear-gradient(32deg, transparent 47%, rgba(25, 53, 67, 0.72) 48%, rgba(25, 53, 67, 0.72) 50%, transparent 51%),
    linear-gradient(168deg, transparent 60%, rgba(25, 53, 67, 0.72) 61%, rgba(25, 53, 67, 0.72) 63%, transparent 64%);
}

.screenshot-frame {
  min-height: 340px;
  padding: 22px;
  background:
    linear-gradient(180deg, #132630, #173744),
    rgba(19, 38, 48, 0.96);
  color: #eef2ea;
}

.export-cover .export-copy {
  max-width: 76%;
}

.export-cover .export-copy h3 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
}

.export-cover .export-copy p {
  font-size: clamp(0.96rem, 1.45vw, 1.08rem);
}

.report-frame {
  background:
    linear-gradient(180deg, #17303b, #214651),
    rgba(19, 38, 48, 0.96);
}

.audit-frame {
  background:
    linear-gradient(180deg, #183342, #224b58),
    rgba(19, 38, 48, 0.96);
}

.shot-title {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  color: #d8b27b;
}

.shot-pre {
  margin: 0;
  white-space: pre-wrap;
  font-family: "Cascadia Code", "Consolas", monospace;
  font-size: 0.96rem;
  line-height: 1.55;
  color: #f4f3ef;
}

.audit-stack {
  display: grid;
  gap: 10px;
}

.audit-row {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.audit-row span {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: #d5b37f;
}

.audit-row strong {
  font-size: 0.96rem;
  color: #f4f3ef;
}

.asset-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 4px;
  color: var(--muted);
}

.asset-actions strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.asset-actions a {
  color: var(--accent-strong);
  font-weight: 700;
  text-decoration: none;
}

.asset-actions a:hover {
  text-decoration: underline;
}

.footer {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding: 0 4px;
  color: var(--muted);
  font-size: 0.96rem;
}

.footer p {
  margin: 0;
}

code {
  padding: 0.12rem 0.35rem;
  border-radius: 6px;
  background: var(--accent-soft);
  font-family: "Cascadia Code", "Consolas", monospace;
  font-size: 0.92em;
}

@keyframes motifDrift {
  from {
    transform: translateY(0) scale(1);
    background-position: center;
  }

  to {
    transform: translateY(-3px) scale(1.01);
    background-position: center 12px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 24px), var(--max-width));
    padding: 18px 0 44px;
  }

  .hero,
  .section {
    padding: 24px;
  }

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

  .hero::before {
    background-size: 125% auto;
    background-position: right -120px top -20px;
  }

  .motif-card {
    min-height: 180px;
  }

  .motif-row {
    grid-template-columns: 1fr;
  }

  .motif-cells {
    min-height: 154px;
  }

  .motif-half,
  .field-visual {
    min-height: 150px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .slide-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .export-copy {
    max-width: 100%;
  }

  .export-social,
  .export-cover {
    padding: 24px;
  }

  .asset-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  h1 {
    max-width: none;
  }
}
