/* vibe-coding.fans. Neubrutalist flat: thick ink borders, hard offset shadows, flat bold fills, no blur.
   Mobile first. The rotating ad (showcase.css) sits in a 300px right rail from 75rem, and is a bottom bar below that. */

@font-face { font-family: "Lexend Mega"; src: url("fonts/lexend-mega-latin.woff2") format("woff2"); font-weight: 100 900; font-style: normal; font-display: swap; }
@font-face { font-family: "Public Sans"; src: url("fonts/public-sans-latin.woff2") format("woff2"); font-weight: 100 900; font-style: normal; font-display: swap; }

/* ---------- tokens ---------- */
:root {
  color-scheme: light;
  --ink: #0B0B0F;
  --paper: #FFFDF7;
  --pink: #FF4FA3;
  --lime: #C6F432;
  --blue: #3D5AFE;
  --sun: #FFD23F;

  --bg: var(--paper);
  --surface: #FFFFFF;
  --text: var(--ink);
  --text-2: #3D3C47;
  --line: var(--ink);    /* borders on page surfaces */
  --shadow: var(--ink);  /* hard offset shadows */
  --focus: var(--blue);

  --font: "Public Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --display: "Lexend Mega", "Public Sans", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --mono: ui-monospace, "Cascadia Mono", "SFMono-Regular", Menlo, Consolas, monospace;

  --b: 3px;
  --r-sm: 12px;
  --r: 18px;
  --r-lg: 26px;

  --s1: .25rem; --s2: .5rem; --s3: .75rem; --s4: 1rem; --s5: 1.5rem; --s6: 2rem; --s7: 3rem; --s8: 4rem;
  --fs-13: .8125rem; --fs-14: .875rem; --fs-15: .9375rem; --fs-16: 1rem; --fs-17: 1.0625rem; --fs-18: 1.125rem; --fs-20: 1.25rem; --fs-24: 1.5rem;
  --ease: cubic-bezier(.2, .8, .2, 1);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --bg: #0E0E13;
    --surface: #17171F;
    --text: #FFFDF7;
    --text-2: #C9C7D3;
    --line: #E9E6DC;
    --shadow: #E9E6DC;
    --focus: var(--lime);
  }
}
:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0E0E13;
  --surface: #17171F;
  --text: #FFFDF7;
  --text-2: #C9C7D3;
  --line: #E9E6DC;
  --shadow: #E9E6DC;
  --focus: var(--lime);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 var(--fs-17)/1.6 var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }
img, svg { display: block; }
a { color: inherit; text-decoration-thickness: 2px; text-underline-offset: 3px; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
::selection { background: var(--pink); color: var(--ink); }
.vh { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.i { flex: none; width: 1.25rem; height: 1.25rem; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.i-fill { fill: currentColor; stroke: none; }
[id] { scroll-margin-top: var(--s4); }

.skip {
  position: absolute; z-index: 100; left: var(--s4); top: var(--s4);
  padding: var(--s3) var(--s4); border-radius: var(--r-sm);
  background: var(--ink); color: var(--paper); font-weight: 700; text-decoration: none;
  transform: translateY(-200%);
}
.skip:focus { transform: none; }

/* ---------- layout ---------- */
.page {
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: max(var(--s4), env(safe-area-inset-left)) max(var(--s4), env(safe-area-inset-right));
}
@media (min-width: 40rem) { .page { padding-inline: var(--s6); } }
@media (min-width: 75rem) {
  .page { display: grid; grid-template-columns: minmax(0, 1fr) 300px; column-gap: var(--s7); }
  .top, .main, .foot { grid-column: 1; }
  .showcase-slot { grid-column: 2; grid-row: 1 / span 3; padding-top: var(--s5); }
}

/* ---------- header ---------- */
.top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s2) var(--s5); padding-block: var(--s4); }
.brand { display: inline-flex; align-items: center; gap: var(--s3); min-height: 2.75rem; color: var(--text); text-decoration: none; border-radius: var(--r-sm); }
.mark { color: var(--shadow); flex: none; }
.wordmark { font: 700 clamp(.9375rem, .85rem + .4vw, 1.125rem)/1 var(--display); letter-spacing: -.07em; }
.nav { display: flex; flex-wrap: wrap; margin-inline: -.55rem; }
.nav a {
  display: inline-flex; align-items: center; min-height: 2.75rem; padding-inline: .5rem;
  border: 2px solid transparent; border-radius: 999px;
  font-size: var(--fs-14); font-weight: 700; text-decoration: none; white-space: nowrap;
  transition: transform .16s var(--ease);
}
.nav a:hover { border-color: var(--ink); background: var(--sun); color: var(--ink); transform: rotate(-2deg); }
@media (min-width: 40rem) { .nav { gap: var(--s1); margin-inline: 0; } .nav a { padding-inline: .9rem; font-size: var(--fs-15); } }

/* ---------- shared pieces ---------- */
.h-display { font-family: var(--display); font-weight: 800; letter-spacing: -.065em; text-wrap: balance; }
.kicker {
  display: inline-block; padding: .2rem .7rem; border: 2px solid var(--ink); border-radius: 999px;
  background: var(--sun); color: var(--ink);
  font-size: var(--fs-13); font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  transform: rotate(-2deg);
}
.kicker-lime { background: var(--lime); }
.kicker-blue { background: var(--blue); color: #fff; }
.kicker-pink { background: var(--pink); }

/* Buttons: the face and the hard shadow are pseudo elements, so hover and press only animate transforms. */
.btn {
  --btn-bg: var(--surface); --btn-ink: var(--text); --btn-edge: var(--line); --btn-shadow: var(--shadow);
  position: relative; z-index: 0;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 3rem; padding: .7rem 1.2rem;
  color: var(--btn-ink); font-size: var(--fs-16); font-weight: 800; line-height: 1.2; text-decoration: none;
  border-radius: var(--r-sm); touch-action: manipulation;
  transition: transform .16s var(--ease);
}
.btn::before, .btn::after { content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit; transition: transform .16s var(--ease); }
.btn::before { background: var(--btn-shadow); transform: translate(4px, 4px); }
.btn::after { background: var(--btn-bg); border: var(--b) solid var(--btn-edge); }
.btn:hover { transform: translate(-2px, -2px); }
.btn:hover::before { transform: translate(6px, 6px); }
.btn:active { transform: translate(4px, 4px); }
.btn:active::before { transform: none; }
.btn:focus-visible { outline-offset: 5px; }
.btn .i { transition: transform .16s var(--ease); }
.btn:hover .i-right { transform: translateX(3px); }
.btn:hover .i-down { transform: translateY(2px); }
.btn-pink { --btn-bg: var(--pink); --btn-ink: var(--ink); --btn-edge: var(--ink); }
@media (forced-colors: active) { .btn { border: 2px solid ButtonText; } }

.cta-row { display: flex; flex-wrap: wrap; gap: var(--s4); }

/* ---------- hero ---------- */
.hero { display: grid; gap: var(--s7); align-items: center; padding-block: clamp(1.5rem, .5rem + 4vw, 4.5rem) var(--s7); }
.hero-copy { container-type: inline-size; }
.hero h1 { margin-top: var(--s5); font-size: clamp(2rem, 12.4cqi, 5.5rem); line-height: 1.04; }
.hero h1 > span { display: block; }
.hl {
  display: inline-block; margin-top: .06em; padding: 0 .12em .06em;
  background: var(--pink); color: var(--ink);
  border: var(--b) solid var(--ink); border-radius: .16em; box-shadow: .07em .07em 0 var(--shadow);
  transform: rotate(-2.5deg);
}
.lede { max-width: 44ch; margin-top: var(--s5); font-size: clamp(var(--fs-17), 1rem + .35vw, var(--fs-20)); color: var(--text-2); }
.hero .cta-row { margin-top: var(--s6); }

.hero-art { display: none; }
@media (min-width: 56rem) {
  .hero { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); }
  .hero-art { display: block; position: relative; width: 100%; max-width: 25rem; aspect-ratio: 1; justify-self: center; }
}
.st { position: absolute; }
.st-heart { left: 2%; top: 20%; width: 52%; height: auto; color: var(--shadow); transform: rotate(-9deg); }
.st-app { width: 33%; height: auto; border: var(--b) solid var(--ink); border-radius: 26%; box-shadow: 6px 6px 0 var(--shadow); }
.st-ps { left: 60%; top: 6%; transform: rotate(10deg); }
.st-ov { left: 56%; top: 58%; transform: rotate(-7deg); }
.st-round {
  display: grid; place-items: center; left: 14%; top: 72%; width: 23%; aspect-ratio: 1;
  border: var(--b) solid var(--ink); border-radius: 50%; box-shadow: 5px 5px 0 var(--shadow);
  background: var(--sun); color: var(--ink); font: 800 1.125rem/1 var(--display); letter-spacing: -.07em;
  transform: rotate(14deg);
}
.st-pill {
  padding: .45rem .85rem; border: var(--b) solid var(--ink); border-radius: 999px; box-shadow: 4px 4px 0 var(--shadow);
  font: 800 var(--fs-15)/1 var(--display); letter-spacing: -.06em; text-transform: uppercase; white-space: nowrap;
}
.st-free { left: 4%; top: 6%; background: var(--lime); color: var(--ink); transform: rotate(-10deg); }
.st-zero { left: 36%; top: 47%; background: var(--blue); color: #fff; transform: rotate(5deg); }

/* ---------- ticker ---------- */
.ticker {
  display: flex; align-items: center; gap: var(--s2);
  margin-block: var(--s2) 0; padding-right: var(--s2);
  background: var(--lime); color: var(--ink);
  border: var(--b) solid var(--ink); border-radius: var(--r); box-shadow: 6px 6px 0 var(--shadow);
  transform: rotate(-1.2deg);
}
.ticker-window { flex: 1; min-width: 0; overflow: hidden; border-radius: var(--r) 0 0 var(--r); }
.ticker-track { display: flex; width: max-content; animation: ticker 32s linear infinite; }
.ticker-list { display: flex; }
.ticker-list li {
  display: flex; align-items: center; gap: 1.1rem; padding: .85rem 0 .85rem 1.1rem;
  font: 700 var(--fs-15)/1.2 var(--display); letter-spacing: -.05em; text-transform: uppercase; white-space: nowrap;
}
.ticker-list li::before { content: ""; flex: none; width: .6rem; height: .6rem; background: var(--pink); border: 2px solid var(--ink); transform: rotate(45deg); }
@keyframes ticker { to { transform: translateX(-50%); } }
.motion-toggle {
  display: grid; place-items: center; flex: none; width: 2.75rem; height: 2.75rem; padding: 0;
  border: 2px solid var(--ink); border-radius: 50%; background: var(--paper); color: var(--ink); cursor: pointer; touch-action: manipulation;
}
.motion-toggle:hover { background: var(--sun); }
.motion-toggle .i { width: 1.1rem; height: 1.1rem; stroke-width: 3; }
.motion-toggle[aria-pressed="true"] .i-pause, .motion-toggle:not([aria-pressed="true"]) .i-play { display: none; }
.motion-toggle:focus-visible { outline-color: var(--ink); }
.motion-paused *, .motion-paused *::before, .motion-paused *::after { animation-play-state: paused !important; }

/* ---------- sections ---------- */
.section { padding-top: clamp(4rem, 3rem + 4vw, 7rem); }
.section-intro { max-width: 46rem; margin-bottom: var(--s7); }
.section-intro h2 { margin-top: var(--s4); font-size: clamp(1.625rem, 1rem + 2.6vw, 2.75rem); line-height: 1.1; }
.section-lede { max-width: 54ch; margin-top: var(--s4); font-size: var(--fs-18); color: var(--text-2); }

/* ---------- project cards ---------- */
.projects { display: grid; gap: var(--s7) var(--s6); }
@media (min-width: 62rem) { .projects { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.project {
  position: relative; container-type: inline-size;
  background: var(--surface); border: var(--b) solid var(--line); border-radius: var(--r-lg); box-shadow: 8px 8px 0 var(--shadow);
}
.project-inner { display: grid; grid-template-rows: auto auto 1fr auto; gap: var(--s5); height: 100%; padding: clamp(1.125rem, 5cqi, 1.75rem); }
@container (min-width: 44rem) {
  .project-inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); grid-template-rows: auto 1fr auto; column-gap: var(--s6); }
  .project-inner > * { grid-column: 1; }
  .project-inner > .preview { grid-column: 2; grid-row: 1 / 3; align-self: center; }
  .project-inner > .actions { grid-column: 1 / -1; }
}
.project-top { display: flex; align-items: center; gap: var(--s4); }
.project-logo { width: 3.5rem; height: 3.5rem; border: var(--b) solid var(--ink); border-radius: 15px; box-shadow: 4px 4px 0 var(--shadow); transform: rotate(-5deg); }
.project h3 { font-size: var(--fs-24); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; }
/* The subdomain is a real link; the pseudo element grows its touch target to 44px without moving the layout. */
.project-host { position: relative; font-size: var(--fs-14); font-weight: 600; color: var(--text-2); overflow-wrap: anywhere; }
.project-host::after { content: ""; position: absolute; inset: -.75rem -.25rem; }
.project-host:hover { color: var(--text); text-decoration-color: var(--pink); text-decoration-thickness: 3px; }
.feat-sticker {
  position: absolute; z-index: 1; top: -1rem; right: 1.25rem;
  padding: .25rem .75rem; border: var(--b) solid var(--ink); border-radius: 999px; box-shadow: 3px 3px 0 var(--ink);
  background: var(--sun); color: var(--ink);
  font: 800 var(--fs-13)/1.2 var(--display); letter-spacing: -.04em; text-transform: uppercase;
  transform: rotate(5deg);
}
.project-copy { display: grid; align-content: start; gap: var(--s3); }
.pitch { font-size: var(--fs-20); font-weight: 800; line-height: 1.25; letter-spacing: -.015em; }
.facts { display: grid; gap: var(--s3); margin-top: var(--s2); font-size: var(--fs-16); line-height: 1.5; }
.facts li { display: flex; align-items: flex-start; gap: var(--s3); }
.facts .i { width: 1.375rem; height: 1.375rem; margin-top: .05rem; padding: 3px; border: 2px solid var(--ink); border-radius: 50%; background: var(--lime); color: var(--ink); stroke-width: 3.5; }
.actions { display: flex; flex-wrap: wrap; gap: var(--s4); }

.preview { position: relative; overflow: hidden; min-height: 11.5rem; border: var(--b) solid var(--ink); border-radius: var(--r); }

/* PasteSafe preview: its own dark slate and green. Values fade into placeholder chips. */
.preview-ps { padding-bottom: var(--s4); background: #0B1120; color: #CBD5E1; font: 500 var(--fs-13)/1.7 var(--mono); }
.ps-bar { display: flex; align-items: center; justify-content: space-between; gap: var(--s3); margin-bottom: var(--s3); padding: .5rem .85rem; border-bottom: 1px solid #1E293B; }
.ps-dots { display: flex; gap: .35rem; }
.ps-dots i { width: .55rem; height: .55rem; border-radius: 50%; background: #334155; }
.ps-net { font-size: .75rem; color: #94A3B8; }
.ps-net b { margin-left: .3rem; padding: 0 .4rem; border-radius: 5px; background: #22C55E; color: #0B1120; }
.ps-line { padding: .15rem .85rem; overflow-wrap: anywhere; }
.ps-t { color: #94A3B8; }
.ps-lvl { font-weight: 700; color: #4ADE80; }
.ps-dbg { color: #FACC15; }
.ps-swap { display: inline-grid; vertical-align: top; }
.ps-swap > * { grid-area: 1 / 1; justify-self: start; }
.ps-secret { position: relative; color: #FCA5A5; opacity: 0; }
.ps-secret::after { content: ""; position: absolute; inset: 0 -.2rem; border-radius: 4px; background: #EF4444; opacity: 0; mix-blend-mode: screen; }
.ps-chip { padding: 0 .4rem; border-radius: 6px; background: #22C55E; color: #0B1120; font-weight: 700; }
@container (max-width: 26rem) { .ps-t { display: none; } }

/* Overlap preview: its own calendar blue and green. Hard stops are UTC hours: work 9 to 17, awake 7 to 23 local. */
.preview-ov {
  --work: #2563EB; --awake: #BFDBFE; --asleep: #1E293B;
  display: grid; align-content: center; padding: 2.6rem 1rem 1rem; background: #F8FAFC; color: #0F172A;
}
.ov-grid { position: relative; display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: .6rem .75rem; font-size: var(--fs-13); font-weight: 700; }
.ov-bar { height: 1.5rem; border: 2px solid #0F172A; border-radius: 6px; }
.ov-ny { background: linear-gradient(90deg, var(--awake) 0 12.5%, var(--asleep) 12.5% 45.83%, var(--awake) 45.83% 54.17%, var(--work) 54.17% 87.5%, var(--awake) 87.5%); }
.ov-ldn { background: linear-gradient(90deg, var(--asleep) 0 25%, var(--awake) 25% 33.33%, var(--work) 33.33% 66.67%, var(--awake) 66.67% 91.67%, var(--asleep) 91.67%); }
.ov-ber { background: linear-gradient(90deg, var(--asleep) 0 20.83%, var(--awake) 20.83% 29.17%, var(--work) 29.17% 62.5%, var(--awake) 62.5% 87.5%, var(--asleep) 87.5%); }
.ov-hours { grid-column: 2; display: flex; justify-content: space-between; margin-top: -.2rem; font-size: .6875rem; font-weight: 600; color: #475569; }
/* A 2 hour window is 1/12 of the day; translateX(650%) moves it to 13:00 UTC, when all three are at work.
   Absolutely positioned, so it sits over the three bar rows without taking part in grid auto placement. */
.ov-window {
  position: absolute; grid-column: 2; grid-row: 1 / 4; top: -.35rem; bottom: -.35rem; left: 0;
  width: calc(100% / 12);
  border: 3px solid #0F172A; border-radius: 7px; background: rgba(52, 211, 153, .5); box-shadow: inset 0 0 0 2px #34D399;
  transform: translateX(650%);
}
.ov-tag {
  position: absolute; bottom: calc(100% + .4rem); left: 50%; padding: .1rem .5rem;
  border: 2px solid #0F172A; border-radius: 999px; background: #34D399; color: #0F172A;
  font-size: .6875rem; font-weight: 800; white-space: nowrap; transform: translateX(-50%);
}

@media (prefers-reduced-motion: no-preference) {
  .ps-secret { animation: ps-secret 6s var(--ease) infinite; }
  .ps-secret::after { animation: ps-flash 6s linear infinite; }
  .ps-chip { animation: ps-chip 6s var(--ease) infinite; }
  .ps-later > *, .ps-later > *::after { animation-delay: .7s; }
  .ov-window { animation: ov-slide 6s cubic-bezier(.65, 0, .25, 1) infinite; }
  .ov-tag { animation: ov-tag 6s linear infinite; }
}
@keyframes ps-secret { 0%, 40% { opacity: 1; transform: none; } 48%, 92% { opacity: 0; transform: scale(.92); } 100% { opacity: 1; transform: none; } }
@keyframes ps-flash { 0%, 16% { opacity: 0; } 22% { opacity: .55; } 28% { opacity: .1; } 34% { opacity: .55; } 42%, 100% { opacity: 0; } }
@keyframes ps-chip { 0%, 44% { opacity: 0; transform: scale(.6); } 52% { opacity: 1; transform: scale(1.08); } 58%, 90% { opacity: 1; transform: none; } 96%, 100% { opacity: 0; transform: scale(.92); } }
@keyframes ov-slide {
  0% { opacity: 0; transform: translateX(100%); }
  8% { opacity: 1; transform: translateX(100%); }
  24%, 30% { transform: translateX(300%); }
  46%, 92% { opacity: 1; transform: translateX(650%); }
  100% { opacity: 0; transform: translateX(650%); }
}
@keyframes ov-tag { 0%, 48% { opacity: 0; } 54%, 90% { opacity: 1; } 96%, 100% { opacity: 0; } }

/* ---------- the vibe code ---------- */
.section-code { container: how / inline-size; }
.tiles { display: grid; gap: var(--s5); }
@container how (min-width: 34rem) { .tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@container how (min-width: 64rem) { .tiles { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.tile { padding: var(--s5); border: var(--b) solid var(--ink); border-radius: var(--r); background: var(--tile); color: var(--ink); box-shadow: 6px 6px 0 var(--shadow); }
.tile-pink { --tile: var(--pink); }
.tile-lime { --tile: var(--lime); }
.tile-blue { --tile: var(--blue); color: #fff; }
.tile-sun { --tile: var(--sun); }
.tile-icon { display: grid; place-items: center; width: 3rem; height: 3rem; margin-bottom: var(--s4); border: var(--b) solid var(--ink); border-radius: var(--r-sm); background: var(--paper); color: var(--ink); transform: rotate(-6deg); }
.tile:nth-child(even) .tile-icon { transform: rotate(6deg); }
.tile-icon .i { width: 1.5rem; height: 1.5rem; }
.tile h3 { margin-bottom: var(--s2); font-size: var(--fs-20); font-weight: 800; line-height: 1.2; letter-spacing: -.01em; }
.tile p { font-size: var(--fs-16); line-height: 1.55; }

/* ---------- add your app ---------- */
.section-add { container: add / inline-size; }
.add-grid { display: grid; gap: var(--s7); align-items: center; }
@container add (min-width: 50rem) { .add-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 25rem); column-gap: var(--s8); } }
.add-copy .section-intro, .add-copy .section-lede { margin-bottom: 0; }
.add-copy h2 { margin-top: var(--s4); font-size: clamp(1.625rem, 1rem + 2.6vw, 2.75rem); line-height: 1.1; }
.add-copy .facts { margin-top: var(--s5); }
/* Not a link or a button yet: a flat sticker with a dashed edge, so it does not look clickable. */
.soon {
  display: inline-flex; align-items: center; gap: .6rem; margin-top: var(--s6); padding: .7rem 1.1rem;
  border: var(--b) dashed var(--line); border-radius: var(--r-sm);
  font: 800 var(--fs-15)/1.2 var(--display); letter-spacing: -.05em; text-transform: uppercase;
  transform: rotate(-2deg); cursor: default;
}
.soon-dot { width: .75rem; height: .75rem; border: 2px solid var(--ink); border-radius: 50%; background: var(--lime); }

.listing {
  position: relative; display: grid; gap: var(--s4); margin: var(--s4) 0 0; padding: var(--s6) var(--s5) var(--s5);
  background: var(--surface); border: var(--b) dashed var(--line); border-radius: var(--r-lg);
  transform: rotate(1.5deg);
}
.listing-tag {
  position: absolute; top: -1rem; left: 1.25rem; padding: .25rem .75rem;
  border: var(--b) solid var(--ink); border-radius: 999px; background: var(--lime); color: var(--ink);
  font: 800 var(--fs-13)/1.2 var(--display); letter-spacing: -.04em; text-transform: uppercase;
  transform: rotate(-4deg);
}
.listing-logo {
  display: grid; place-items: center; flex: none; width: 3.5rem; height: 3.5rem;
  border: var(--b) solid var(--ink); border-radius: 15px; box-shadow: 4px 4px 0 var(--shadow);
  background: var(--blue); color: #fff; font: 800 1.125rem/1 var(--display); letter-spacing: -.08em;
  transform: rotate(-5deg);
}
.listing-name { font-size: var(--fs-24); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; }
.listing-url { display: flex; align-items: center; gap: .35rem; font-size: var(--fs-14); font-weight: 600; color: var(--text-2); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.listing-url .i { width: 1rem; height: 1rem; }
.listing-shot {
  position: relative; display: grid; place-items: center; aspect-ratio: 16 / 9;
  border: var(--b) solid var(--ink); border-radius: var(--r); background: var(--sun); color: var(--ink); overflow: hidden;
}
.shot-ui { position: absolute; inset: 14% 12% 30%; display: grid; grid-template-columns: 1fr 2fr; gap: .5rem; }
.shot-ui i { border: 2px solid var(--ink); border-radius: 8px; background: var(--paper); }
.shot-ui i:first-child { grid-row: span 2; background: var(--pink); }
.shot-label { position: absolute; left: .75rem; bottom: .65rem; padding: .15rem .55rem; border: 2px solid var(--ink); border-radius: 999px; background: var(--paper); font-size: var(--fs-13); font-weight: 800; }
.listing-pitch { font-size: var(--fs-18); font-weight: 800; line-height: 1.3; }
.listing-open {
  display: inline-flex; align-items: center; justify-self: start; gap: .5rem; padding: .6rem 1rem;
  border: var(--b) solid var(--ink); border-radius: var(--r-sm); background: var(--pink); color: var(--ink); font-weight: 800;
}

/* ---------- footer ---------- */
.foot { display: grid; gap: var(--s6); margin-top: clamp(4rem, 3rem + 4vw, 7rem); padding-block: var(--s6); border-top: var(--b) solid var(--line); font-size: var(--fs-15); }
@media (min-width: 48rem) { .foot { grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); } }
.foot-brand { display: grid; justify-items: start; gap: var(--s2); }
.foot-brand .brand { margin-bottom: var(--s2); }
.foot-fine { color: var(--text-2); font-size: var(--fs-14); }
.love { font-family: var(--display); font-weight: 800; letter-spacing: -.08em; }
.foot-h { margin-bottom: var(--s1); font-size: var(--fs-13); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--text-2); }
.foot-col a { display: inline-flex; align-items: center; min-height: 2.75rem; font-weight: 600; }
.foot-col a:hover { text-decoration-color: var(--pink); text-decoration-thickness: 3px; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .btn, .btn::before, .btn .i, .nav a { transition: none; }
  .ticker-track { width: auto; animation: none; }
  .ticker-list { flex-wrap: wrap; padding-block: .35rem; }
  .ticker-list li { padding-block: .45rem; }
  .ticker-list[aria-hidden="true"], .motion-toggle { display: none; }
}
