/* The Player — site that adopts the app's actual visual language.
 * Cream paper, olive waveform green, coral accent, pastel section tints
 * pulled directly from the app screenshot.
 */

:root {
  /* paper */
  --bg: #fffefa;
  --bg-2: #fffbed;
  --paper: #ffffff;
  --ink: #2a241c;
  --ink-2: #5a4f3e;
  --ink-3: #8a7f6c;
  --ink-4: #a89e89;
  --rule: rgba(42, 36, 28, 0.10);
  --rule-2: rgba(42, 36, 28, 0.06);

  /* app palette, lifted from screenshot */
  --coral: #c25538;
  --coral-soft: #f6dccf;
  --olive: #7a8866;          /* waveform green */
  --olive-soft: #dde2cf;
  --verse: #b9d3df;          /* light blue verse tint */
  --verse-deep: #5b8ba4;
  --verse-text: #234b62;
  --chorus: #f1cfc7;          /* pink chorus tint */
  --chorus-deep: #c25538;
  --chorus-text: #8a3a22;
  --bridge: #d4c8d6;          /* lavender */
  --bridge-deep: #6e5070;
  --vocals: #cf6b8a;
  --drums: var(--coral);
  --bass: #c39a3a;
  --other: #5b7a99;

  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: Georgia, "Times New Roman", Times, serif;
  --mono: ui-monospace, "SF Mono", Menlo, Monaco, "Cascadia Mono", monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
::selection { background: var(--coral); color: var(--paper); }
a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--rule); transition: color 160ms, border-color 160ms; }
a:hover { color: var(--coral); border-bottom-color: var(--coral); }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ---------- Header ---------- */
.head {
  position: sticky; top: 0; z-index: 50;
  padding: 14px 0;
  background: rgba(245, 239, 225, 0.78);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid var(--rule-2);
}
.head .row { display: flex; align-items: center; gap: 16px; }
.brand { display: inline-flex; align-items: center; border: 0; }
.brand .wordmark { height: 26px; width: auto; display: block; }
.brand b { color: var(--ink); font-weight: 500; }
.brand em { color: var(--coral); font-style: normal; font-weight: 500; }
.head nav { margin-left: auto; display: flex; gap: 22px; align-items: center; font-family: var(--mono); font-size: 12.5px; color: var(--ink-3); }
.head nav a { border: 0; color: var(--ink-3); }
.head nav a:hover { color: var(--ink); }
.head nav .dl {
  background: var(--ink); color: var(--bg);
  padding: 8px 14px; border-radius: 999px;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
}
.head nav .dl:hover { background: var(--coral); color: var(--paper); }

/* ---------- Hero ---------- */
.hero { padding: 20px 0 16px; }
.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 6.4vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin: 36px auto 28px;
  max-width: 22ch;
  text-align: center;
}
.hero h1 em { font-style: normal; color: var(--coral); font-weight: 800; }
.hero-lede {
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 46ch;
  margin: 0 0 32px;
}
.cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 8px; }

.hero-meta {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 32px;
}
.hero-lede {
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.35;
  color: var(--ink-2);
  font-weight: 600;
  max-width: 54ch;
  margin: clamp(56px, 10vw, 124px) auto 0;
  text-align: center;
  text-wrap: pretty;
}
.hero-lede strong { font-weight: 800; letter-spacing: -0.01em; color: var(--ink); }
.hero-side {
  display: grid; gap: 8px;
  font-family: var(--mono); font-size: 12px;
  color: var(--ink-3);
  border-left: 1px solid var(--rule);
  padding-left: 22px;
}
.hero-side .row { display: grid; grid-template-columns: 90px 1fr; }
.hero-side b { color: var(--ink); font-weight: 500; }

.prose { max-width: 64ch; }
.prose p { font-size: 17px; line-height: 1.55; color: var(--ink-2); margin: 0 0 1em; }
.prose p:last-child { margin-bottom: 0; }

.lib-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

/* Sections block — heading + text on the left, the section-creation clip on the
   right (aligned to the top of the heading via .lib-grid's align-items: start). */
.section-demo { align-self: start; }
.section-demo .video-frame {
  display: block; width: 100%; height: auto;
  aspect-ratio: 1068 / 574;
  border-radius: 12px;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 24px 48px -22px rgba(42, 36, 28, 0.3);
}
/* the mapped song's sections, as a row of mini cards (like the app's Sections list) */
.section-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.sec-card {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 10px 7px 9px;
  border-radius: 7px;
  background: #eee7d4;
  border-left: 3px solid var(--c, var(--ink-3));
  white-space: nowrap;
}
.sec-card .nm { font-family: var(--sans); font-size: 12.5px; font-weight: 600; color: var(--ink); }
.sec-card .bars {
  font-family: var(--mono); font-size: 9.5px; color: var(--ink-3);
  background: rgba(42, 36, 28, 0.06); padding: 2px 6px; border-radius: 999px;
}

.note { padding: 96px 0; }
.note-grid { display: grid; grid-template-columns: 200px 1fr; gap: 56px; }
.note-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.note-body { font-size: 19px; line-height: 1.55; max-width: 56ch; color: var(--ink); }
.note-body p { margin: 0 0 1em; }
.note-body em { font-style: normal; color: var(--coral); }
.note-body .signoff { font-family: var(--mono); font-size: 11px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-top: 8px; }

.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 56px; }
.qa h4 { font-family: var(--display); font-weight: 600; font-size: 17px; margin: 0 0 8px; color: var(--ink); letter-spacing: -0.01em; }
.qa p { font-size: 15.5px; line-height: 1.5; color: var(--ink-2); margin: 0; max-width: 50ch; }

.pull { padding: 96px 0; text-align: center; border-top: 1px solid var(--rule); }
.pull q {
  display: block; quotes: "“" "”";
  font-family: var(--display); font-weight: 600;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1; letter-spacing: -0.03em;
  max-width: 24ch; margin: 0 auto;
  color: var(--ink);
}
.pull q em { font-style: normal; color: var(--coral); }

@media (max-width: 880px) {
  .hero-meta, .lib-grid, .note-grid, .faq-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-side { border: 0; padding: 0; border-top: 1px solid var(--rule); padding-top: 16px; }
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: var(--paper);
  padding: 13px 22px; border-radius: 999px;
  font-size: 14.5px; font-weight: 500;
  border: 1px solid transparent;
  transition: background 160ms, transform 160ms;
  cursor: pointer;
}
.btn:hover { background: var(--coral); color: var(--paper); border-bottom-color: transparent; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.req { font-family: var(--mono); font-size: 12px; color: var(--ink-3); }

/* ---------- Hero screenshot ---------- */
.hero-shot {
  margin: 12px calc(50% - 50vw) 0;
  padding: 0 24px;
  max-width: 100vw;
  box-sizing: border-box;
}
.hero-shot img {
  display: block;
  width: 100%;
  max-width: 1680px;
  height: auto;
  margin: 0 auto;
}
.window {
  margin-top: 64px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--rule);
  box-shadow:
    0 1px 0 rgba(0,0,0,0.04),
    0 30px 60px -24px rgba(42, 36, 28, 0.32);
}
.titlebar {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
}
.titlebar .lights { display: flex; gap: 6px; margin-right: 4px; }
.titlebar .lights span { width: 12px; height: 12px; border-radius: 50%; }
.titlebar .lights .r { background: #ed6a5e; }
.titlebar .lights .y { background: #f4be4f; }
.titlebar .lights .g { background: #61c554; }
.titlebar .title-brand { display: inline-flex; align-items: baseline; }
.titlebar .title-brand b { color: var(--ink); font-weight: 500; }
.titlebar .title-brand em { color: var(--coral); font-style: normal; font-weight: 500; }
.titlebar .center { flex: 1; display: flex; justify-content: center; gap: 16px; color: var(--ink-3); }
.titlebar .center b { color: var(--ink); font-weight: 500; }
.titlebar .right { color: var(--ink-3); }

.window img { display: block; width: 100%; height: auto; }

/* ---------- Section ribbon styling, lifted from app ---------- */
.section-bar {
  display: flex; align-items: center;
  gap: 12px;
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink);
  letter-spacing: 0.02em;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  width: fit-content;
}
.section-bar .pip {
  font-family: var(--mono);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.section-bar .pip.intro { background: var(--olive-soft); color: #4a5a36; }
.section-bar .pip.verse  { background: var(--verse); color: var(--verse-text); }
.section-bar .pip.chorus { background: var(--chorus); color: var(--chorus-text); }
.section-bar .pip.bridge { background: var(--bridge); color: #4a3550; }

/* ---------- Section divider — colored ribbon block ---------- */
.ribbon {
  height: 56px;
  display: flex;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.ribbon > div {
  display: flex; align-items: center; padding: 0 18px; gap: 8px;
}
.ribbon .verse  { background: var(--verse);  color: var(--verse-text);  flex: 2; }
.ribbon .chorus { background: var(--chorus); color: var(--chorus-text); flex: 1.4; }
.ribbon .bridge { background: var(--bridge); color: #4a3550; flex: 1; }
.ribbon .outro  { background: var(--olive-soft); color: #4a5a36; flex: 0.8; }
.ribbon b { font-weight: 500; }

/* ---------- Sections ---------- */
section { padding: 112px 0; border-top: 1px solid var(--rule); }
section:first-of-type { border-top: 0; }

.sec-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 56px;
  max-width: 18ch;
}
.sec-title em { font-style: normal; color: var(--coral); }

/* ---------- Feature panels (each in app aesthetic) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 880px) { .feature-grid { grid-template-columns: 1fr; } }

.panel {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.panel.tall { grid-row: span 2; }
.panel .ix {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.panel h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 8px;
}
.panel p { color: var(--ink-2); margin: 0; max-width: 48ch; font-size: 15.5px; line-height: 1.5; }
.panel-fig { margin-top: auto; }

/* ---------- Specific demo widgets, mimicking app pieces ---------- */

/* Speed popover — mirrors the speed-detail screenshot */
.speed-pop {
  background: var(--paper);
  border: 1px solid rgba(194,85,56,0.3);
  border-radius: 14px;
  padding: 14px 16px 14px;
  box-shadow: 0 12px 28px -16px rgba(42,36,28,0.25);
  position: relative;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
}
.speed-pop .row1 { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; letter-spacing: 0.06em; }
.speed-pop .row1 b { color: var(--coral); font-weight: 500; }
.speed-pop .track-row { padding: 6px 0 12px; }
.speed-pop .track {
  height: 4px; background: var(--coral-soft); border-radius: 2px; position: relative; cursor: pointer;
}
.speed-pop .track .fill { position: absolute; top: 0; bottom: 0; left: 0; background: var(--coral); border-radius: 2px; }
.speed-pop .track .knob {
  position: absolute; top: 50%; width: 16px; height: 16px;
  background: var(--paper); border: 1px solid var(--rule); border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.speed-pop .pres { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.speed-pop .pres button {
  padding: 8px; border-radius: 8px; border: 1px solid var(--rule);
  background: var(--paper); cursor: pointer;
  font-family: var(--mono); font-size: 12px; color: var(--ink);
}
.speed-pop .pres button:hover { border-color: var(--coral); color: var(--coral); }
.speed-pop .pres button.active { background: var(--coral); color: var(--paper); border-color: var(--coral); }

/* Transpose stepper — mirrors app stepper */
.transpose-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 12px;
}
.transpose-row .label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--ink-3); text-transform: uppercase; }
.stepper { display: inline-flex; align-items: center; gap: 6px; }
.stepper button {
  width: 38px; height: 34px; border: 0;
  background: #ece6d6;
  border-radius: 8px;
  font-family: var(--mono); font-size: 15px; color: var(--ink-2);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.stepper button:hover { background: rgba(194,85,56,0.14); color: var(--coral); }
.stepper .val {
  padding: 0 16px; font-family: var(--mono); font-size: 13px;
  color: var(--ink); height: 34px;
  background: #ece6d6; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  min-width: 88px; box-sizing: border-box;
}
.transpose-row .key {
  margin-left: auto;
  font-family: var(--mono); font-size: 13px; color: var(--ink);
}
.transpose-row .key b { color: var(--coral); }

/* Loop figure — a mini of the app's bar-ruled waveform with a loop region */
.loop-fig {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 14px 16px 12px;
  display: flex; flex-direction: column; gap: 8px;
}
.loop-ruler {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 10px; color: var(--ink-4);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--rule-2);
}
.loop-stage {
  position: relative;
  height: 86px;
  margin-top: 4px;
  background: var(--bg-2);
}
.loop-wave { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.loop-wave path { fill: var(--olive); opacity: 0.8; }
/* faint per-bar gridlines, like the app's waveform */
.loop-grid {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    to right,
    rgba(42, 36, 28, 0.07) 0, rgba(42, 36, 28, 0.07) 1px,
    transparent 1px, transparent calc(100% / 84));
}
.loop-tints { position: absolute; inset: 0; display: flex; }
.loop-tints .seg { position: relative; height: 100%; box-sizing: border-box; }
.loop-tints .seg + .seg { border-left: 1px solid rgba(42, 36, 28, 0.16); }
.loop-tints .seg.intro  { background: rgba(221, 226, 207, 0.55); }
.loop-tints .seg.verse  { background: rgba(185, 211, 223, 0.42); }
.loop-tints .seg.chorus { background: rgba(241, 207, 199, 0.48); }
.loop-tints .lbl {
  position: absolute; top: 5px; left: 5px;
  font-family: var(--mono); font-size: 8.5px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #fff; padding: 1.5px 6px; border-radius: 999px;
  white-space: nowrap; line-height: 1.4;
}
.loop-tints .intro  .lbl { background: #6f7f50; }
.loop-tints .verse  .lbl { background: var(--verse-deep); }
.loop-tints .chorus .lbl { background: var(--coral); }
.loop-region {
  position: absolute; top: 0; bottom: 0;
  box-sizing: border-box;
  background: rgba(91, 139, 164, 0.18);
  border-left: 1.5px solid var(--coral);
  border-right: 1.5px solid var(--coral);
}
.loop-region .bracket {
  position: absolute; top: -1px; left: -1.5px; right: -1.5px;
  height: 2px;
  background: #3f7cc4;
  border-radius: 1px;
}
.loop-region .bracket i {
  position: absolute; top: -2.5px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--coral); border: 1.5px solid var(--paper);
  box-sizing: border-box;
}
.loop-region .bracket i:first-child { left: -4px; }
.loop-region .bracket i:last-child  { right: -4px; }
.loop-head {
  position: absolute; top: 0; bottom: 0; width: 1.5px;
  background: var(--coral);
  box-shadow: 0 0 6px rgba(194, 85, 56, 0.45);
  transition: left 0.26s linear;
}
.loop-meta {
  display: flex; justify-content: space-between; gap: 12px;
  font-family: var(--mono); font-size: 10.5px; color: var(--ink-3);
  letter-spacing: 0.03em; text-transform: uppercase;
}
.loop-meta b { color: var(--ink); }

/* Stems mixer — mirrors the app's Stems panel: swatch · name · M/S · volume · value */
.stems {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 2px 0;
}
.stem {
  display: grid;
  grid-template-columns: 11px 78px auto 1fr 30px;
  align-items: center; gap: 12px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--rule-2);
}
.stem:last-child { border-bottom: 0; }
.stem .sw { width: 11px; height: 11px; border-radius: 3px; }
.stem .nm { font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--ink); }
.stem .btns { display: flex; gap: 5px; }
.stem .ms {
  width: 22px; height: 22px; border-radius: 6px;
  border: 1px solid var(--rule); background: #ece6d6;
  font-family: var(--sans); font-size: 11px; font-weight: 600; color: var(--ink-3);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.stem .ms:hover { color: var(--ink); }
.stem .ms.on-m { background: var(--coral); color: #fff; border-color: var(--coral); }
.stem .ms.on-s { background: var(--bass); color: #4a3712; border-color: var(--bass); }
.stem .slider { position: relative; height: 22px; display: flex; align-items: center; cursor: pointer; }
.stem .slider .track {
  position: relative; width: 100%; height: 4px;
  background: #e6dfcc; border-radius: 2px;
}
.stem .slider .fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--coral); border-radius: 2px;
}
.stem .slider .knob {
  position: absolute; top: 50%; transform: translate(-50%, -50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: #fff; border: 1px solid var(--rule);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
}
.stem .vol { font-family: var(--mono); font-size: 12px; color: var(--ink-3); text-align: right; }
/* muted (either explicitly, or implied because another stem is soloed) */
.stem.muted .sw { opacity: 0.4; }
.stem.muted .nm { color: var(--ink-4); }
.stem.muted .vol { color: var(--ink-4); }
.stem.muted .slider { opacity: 0.5; }
.stem.muted .slider .fill { background: var(--ink-4); }

/* Library list — mirrors app library */
.library-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 16px;
}
.library-card .lh {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3);
  padding: 4px 8px 12px;
}
.library-card .search {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 12px; border: 1px solid var(--rule); border-radius: 8px;
  background: var(--bg);
  font-family: var(--mono); font-size: 12px; color: var(--ink-4);
  margin-bottom: 10px;
}
.library-list { display: grid; gap: 2px; }
.library-list .row {
  display: grid; grid-template-columns: 22px 1fr auto;
  align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 8px;
  cursor: default;
}
.library-list .row:hover { background: var(--bg); }
.library-list .row.active { background: var(--coral-soft); }
.library-list .num { font-family: var(--mono); font-size: 11px; color: var(--ink-4); }
.library-list .song { font-size: 14px; color: var(--ink); }
.library-list .song .by { display: block; font-size: 12px; color: var(--ink-3); }
.library-list .meta { font-family: var(--mono); font-size: 11px; color: var(--ink-3); }

/* ---------- Pull quote ---------- */
.pull { padding: 96px 0; text-align: center; }
.pull q {
  display: block; quotes: "“" "”";
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(36px, 6vw, 80px);
  line-height: 1.04; letter-spacing: -0.02em;
  max-width: 22ch; margin: 0 auto 18px;
}
.pull q em { color: var(--coral); }
.pull .who { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }

/* ---------- Note ---------- */
.note { padding: 96px 0; }
.note .grid2 { display: grid; grid-template-columns: 200px 1fr; gap: 56px; }
.note .body { font-family: var(--serif); font-size: clamp(20px, 2.4vw, 28px); line-height: 1.4; max-width: 28ch; color: var(--ink); }
.note .body p { margin: 0 0 1em; }
.note .body em { color: var(--coral); }
.note .signoff { font-family: var(--mono); font-size: 11px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- Closer ---------- */
.closer { padding: 120px 0 140px; text-align: center; background: radial-gradient(60% 50% at 50% 0%, var(--coral-soft), transparent 70%); border-top: 1px solid var(--rule); }
.closer h2 { font-family: var(--display); font-weight: 600; font-size: clamp(44px, 7vw, 88px); line-height: 1.02; letter-spacing: -0.035em; margin: 0 0 18px; max-width: 16ch; margin-inline: auto; }
.closer h2 em { font-style: normal; color: var(--coral); }
.closer p { font-family: var(--sans); font-size: clamp(17px, 1.6vw, 19px); color: var(--ink-2); max-width: 44ch; margin: 0 auto 30px; line-height: 1.5; }
.closer .cta { justify-content: center; }

/* ---------- Footer ---------- */
footer.foot { padding: 36px 0; border-top: 1px solid var(--rule); background: var(--bg-2); font-family: var(--mono); font-size: 12px; color: var(--ink-3); }
footer.foot .row { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
footer.foot .sp { flex: 1; }
footer.foot a { color: var(--ink-3); border: 0; }
footer.foot a:hover { color: var(--coral); }

@media (max-width: 880px) {
  .hero-meta { grid-template-columns: 1fr; gap: 24px; }
  .hero-side { border: 0; padding: 0; border-top: 1px solid var(--rule); padding-top: 18px; }
  .sec-head { grid-template-columns: 1fr; gap: 12px; margin-bottom: 32px; }
  .note .grid2 { grid-template-columns: 1fr; gap: 16px; }
  .titlebar .center { display: none; }
}
