:root {
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(29, 29, 31, 0.08);
  --paper: #f4f1ea;
  --card: rgba(255, 255, 255, 0.72);
  --water: #0b1c28;
  --maas: #163044;
  --gold: #e8b86d;
  --gold-soft: #f3d7a4;
  --open: #2f6f4e;
  --closed: #8a5a32;
  --shadow: 0 20px 50px rgba(11, 28, 40, 0.12);
  --sans: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: #fff;
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 999px;
  z-index: 20;
}
.skip:focus { top: 12px; }

.hero {
  position: relative;
  min-height: 72svh;
  overflow: hidden;
  color: #f4f7fa;
  background: var(--water);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 20, 29, 0.7) 0%, rgba(7, 20, 29, 0.25) 46%, transparent 72%);
  pointer-events: none;
}

.scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 120%;
  will-change: transform;
}

.layer-sky {
  background:
    radial-gradient(ellipse 70% 45% at 78% 12%, #4a6d86 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 18% 8%, #1c3344 0%, transparent 60%),
    linear-gradient(180deg, #101c28 0%, #0b1c28 46%, #07141d 100%);
}

.rotterdam-map { opacity: 0.34; }
.river-fill { fill: rgba(186, 210, 224, 0.35); stroke: none; }
.island { fill: rgba(11, 28, 40, 0.35); stroke: rgba(210, 226, 234, 0.45); stroke-width: 1.2; }
.plas { fill: none; stroke: rgba(210, 226, 234, 0.55); stroke-width: 2; }
.haven { fill: none; stroke: rgba(186, 210, 224, 0.45); stroke-width: 7; }
.bridge-mark { fill: none; stroke: rgba(232, 184, 109, 0.55); stroke-width: 2; }
.map-labels {
  fill: rgba(220, 232, 238, 0.4);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
}
.map-shift { animation: mapdrift 42s ease-in-out infinite; }
@keyframes mapdrift {
  50% { transform: translate(-16px, 10px); }
}

.mist {
  fill: rgba(210, 226, 234, 0.08);
  animation: mist 28s ease-in-out infinite;
}
.m2 { animation-duration: 36s; animation-direction: reverse; }
@keyframes mist {
  50% { transform: translateX(40px); opacity: 0.55; }
}

.ripple {
  fill: none;
  stroke: rgba(216, 230, 238, 0.22);
  stroke-width: 1.2;
  animation: wave 16s ease-in-out infinite;
}
.r2 { animation-duration: 22s; }

@keyframes wave {
  50% { transform: translateX(-24px); }
}

.site-head {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(11, 28, 40, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #f4f7fa;
  border-bottom: 1px solid rgba(244, 247, 250, 0.08);
}
.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 58px;
  padding: 8px 5vw;
  font-size: 13px;
  letter-spacing: 0.01em;
}
.mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 560;
  color: inherit;
  text-decoration: none;
  flex: 0 0 auto;
}
.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  background: transparent;
  color: #f4f7fa;
  box-shadow: inset 0 0 0 1px rgba(244, 247, 250, 0.28);
  white-space: nowrap;
}
.menu-toggle-bars {
  width: 16px;
  height: 10px;
  display: block;
  background:
    linear-gradient(#f4f7fa, #f4f7fa) 0 0 / 100% 1.6px no-repeat,
    linear-gradient(#f4f7fa, #f4f7fa) 0 50% / 100% 1.6px no-repeat,
    linear-gradient(#f4f7fa, #f4f7fa) 0 100% / 100% 1.6px no-repeat;
}
.menu-toggle-label {
  font-size: 13px;
  font-weight: 560;
}
.site-menu {
  display: none;
  flex-direction: column;
  flex: 1 0 100%;
  gap: 4px;
  padding: 8px 0 16px;
  background: transparent;
}
body.menu-open .site-menu { display: flex; }
body.menu-open { overflow: hidden; }
.site-menu a {
  display: block;
  padding: 14px 2px;
  color: #f4f7fa;
  text-decoration: none;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  border-bottom: 1px solid rgba(244, 247, 250, 0.08);
}
.site-menu .menu-cta {
  margin-top: 10px;
  border: 0;
  border-radius: 999px;
  text-align: center;
  background: #f4f7fa;
  color: var(--water);
  font-size: 15px;
  font-weight: 560;
}
.site-menu .menu-fine {
  margin: 12px 0 0;
  font-size: 12px;
  color: rgba(244, 247, 250, 0.55);
}
@media (min-width: 880px) {
  .menu-toggle { display: none; }
  .site-menu {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    padding: 0;
    background: transparent;
    margin-left: auto;
  }
  .site-menu a {
    padding: 0;
    border: 0;
    font-size: 14px;
    letter-spacing: -0.01em;
    color: rgba(244, 247, 250, 0.86);
  }
  .site-menu a:hover { color: #fff; }
  .site-menu .menu-cta {
    margin: 0;
    padding: 8px 14px;
    font-size: 13px;
  }
  .site-menu .menu-fine {
    margin: 0 0 0 4px;
    max-width: 11rem;
    line-height: 1.25;
  }
}
.wordmark {
  letter-spacing: -0.05em;
  font-weight: 500;
}
.wm-open { font-weight: 500; }
.wm-sein { font-weight: 600; }
.blossom { fill: currentColor; }
.place {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: -0.02em;
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: min(680px, calc(100% - 12vw));
  margin: 6vh 6vw 0;
  padding-bottom: 10vh;
}
.hero-copy { position: relative; }
.hero-peek {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 22px;
}
.hero-peek[hidden] { display: none; }
@media (min-width: 1100px) {
  .hero-grid {
    width: min(1180px, calc(100% - 10vw));
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 48px;
    align-items: end;
  }
  .hero-peek {
    margin-top: 0;
    gap: 10px;
  }
}
.hero-peek .peek-kicker {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 247, 250, 0.55);
}
.hero-peek .card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  padding: 10px;
  background: rgba(244, 247, 250, 0.08);
  border: 1px solid rgba(244, 247, 250, 0.12);
  box-shadow: none;
  color: #f4f7fa;
}
.hero-peek .card img,
.hero-peek .card .ph {
  width: 88px;
  height: 68px;
  border-radius: 10px;
}
.hero-peek .card h3 {
  font-size: 15px;
  color: #f4f7fa;
}
.hero-peek .price,
.hero-peek .bits { color: rgba(244, 247, 250, 0.72); }
@media (max-width: 1099px) {
  .hero-peek .card {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 10px;
    padding: 8px;
    border-radius: 16px;
  }
  .hero-peek .card img,
  .hero-peek .card .ph {
    width: 64px;
    height: 52px;
    border-radius: 8px;
  }
  .hero-peek .card h3 { font-size: 13px; }
  .hero-peek .price { font-size: 13px; }
  .hero-peek .bits { display: none; }
}
.oai {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: -2px;
  flex: 0 0 auto;
}
.kicker-oai, .oai-inline, .menu-fine {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.menu-fine { display: flex; }
.oai-inline { gap: 5px; }
.derive {
  margin: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: rgba(244, 247, 250, 0.62);
  font-size: 13px;
}
.derive-from, .derive-to { letter-spacing: -0.03em; }
.derive-from { opacity: 0.7; }
.derive-to { color: #f4f7fa; font-weight: 600; }
.derive-arrow { color: var(--gold); }
.kicker, .eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 247, 250, 0.62);
}
.eyebrow { color: var(--muted); }
h1 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.92;
}
h1 .blossom-lg {
  width: clamp(36px, 7vw, 58px);
  height: clamp(36px, 7vw, 58px);
  flex: 0 0 auto;
  fill: currentColor;
}
.slogan {
  margin: 14px 0 0;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 500;
  color: var(--gold);
}
.subhead {
  margin: 8px 0 0;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: rgba(244, 247, 250, 0.88);
}
.lede {
  max-width: 36rem;
  margin: 16px 0 0;
  font-size: 1.05rem;
  color: rgba(244, 247, 250, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}
.btn-light { background: #f4f7fa; color: var(--water); }
.btn-ghost {
  background: transparent;
  color: #f4f7fa;
  box-shadow: inset 0 0 0 1px rgba(244, 247, 250, 0.28);
}

.banner {
  margin-top: 22px;
  max-width: 34rem;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

main { position: relative; z-index: 1; }

.values {
  width: min(1080px, calc(100% - 40px));
  margin: -56px auto 0;
  display: grid;
  gap: 14px;
  position: relative;
}
@media (min-width: 840px) {
  .values { grid-template-columns: repeat(3, 1fr); }
}
.values article {
  background: var(--card);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 22px;
  padding: 22px 22px 20px;
  box-shadow: var(--shadow);
}
.values svg {
  width: 36px;
  height: 36px;
  color: var(--maas);
  margin-bottom: 14px;
}
.values h2 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.values p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.signup-wrap {
  width: min(1080px, calc(100% - 40px));
  margin: 56px auto 0;
}
.signup-head { margin-bottom: 22px; }
.signup-head h2,
.feed h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
  font-weight: 560;
}
.signup-head .channel-lede { margin: 8px 0 0; }
.signup {
  display: grid;
  gap: 0;
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
@media (min-width: 860px) {
  .signup { grid-template-columns: 1.2fr 0.8fr; }
}
.channel { padding: 36px 32px; }
.channel-side {
  background:
    linear-gradient(180deg, rgba(22, 48, 68, 0.04), rgba(22, 48, 68, 0.08)),
    #f7f4ee;
}
.channel h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -0.03em;
  font-weight: 560;
}
.channel-lede, .help {
  color: var(--muted);
  margin: 0 0 18px;
}
.help { margin: 12px 0 0; font-size: 0.94rem; }
.quiet { opacity: 0.75; }
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.84em;
}

label {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
  color: var(--muted);
}
.row { display: flex; gap: 8px; }
input[type="email"] {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfaf7;
  font: inherit;
  font-size: 16px;
}
input[type="email"]:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(232, 184, 109, 0.28);
  border-color: #d7a45a;
}
button {
  height: 48px;
  border: 0;
  border-radius: 14px;
  padding: 0 16px;
  background: var(--water);
  color: #f4f7fa;
  font: inherit;
  font-weight: 560;
  cursor: pointer;
  white-space: nowrap;
}
button:hover { background: #163044; }

.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  opacity: 0;
}

.channels {
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
  align-items: stretch;
}
@media (min-width: 760px) {
  .channels {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 1fr;
  }
}
.channels .ch,
.channels a.ch,
.channels button.ch {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  column-gap: 12px;
  align-items: start;
  height: auto;
  min-height: 120px;
  padding: 16px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(11, 28, 40, 0.05);
  border: 1px solid rgba(29, 29, 31, 0.04);
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  line-height: 1.35;
  white-space: normal;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.channels .ch:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.channels .ch.gag { background: #f7f4ee; }
.ch-ico { grid-row: 1 / span 2; }
.ch-body {
  min-width: 0;
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 72px;
}
.ch-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px 8px;
  min-height: 24px;
  flex-wrap: wrap;
}
.ch-top strong {
  flex: 1 1 8rem;
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
}
.channels strong {
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.channels small {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.ch-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
}
.ch-ico svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.ch-ico.mail { background: #eceff1; color: #37474f; }
.ch-ico.telegram { background: #e4f4fb; color: #229ed9; }
.ch-ico.whatsapp { background: #e8f8ee; color: #128c7e; }
.ch-ico.sms { background: #eeeef6; color: #3d3d7a; }
.ch-ico.push { background: #f3ece4; color: #8a5a32; }
.ch-ico.rss { background: #fbeee4; color: #f26522; }
.ch-ico.signal { background: #e8eef8; color: #3a76f0; }
.ch-ico.discord { background: #eceef8; color: #5865f2; }
.ch-ico.home { background: #eef3ea; color: #3d6b4a; }
.ch-ico.markico { background: #f6eee4; color: #8a5a32; }
.ch-ico.slack { background: #f3eef4; color: #4a154b; }
.ch-ico.janitor { background: #efe8dc; color: #5c4a32; }
.ch-ico.smoke, .ch-ico.bottle, .ch-ico.bird, .ch-ico.taxi { background: #efe8dc; color: #5c4a32; }
.tag {
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 7px;
  border-radius: 999px;
  background: #f0eeea;
  white-space: nowrap;
  flex: 0 0 auto;
}
.tag.live { background: #e5f3ea; color: var(--open); }
.tag.soon { background: #e7eef6; color: #35506a; }
.tag.gag-tag { background: #efe4d2; color: #7a5230; }
.channels a.ch { text-decoration: none; }
.channels .ch-live {
  box-shadow: 0 8px 24px rgba(11, 28, 40, 0.08);
  border-color: rgba(47, 111, 78, 0.18);
}
.channel h2 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.live-logo {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.live-logo svg { width: 18px; height: 18px; }
.mail-logo { background: #eceff1; color: #37474f; }
.mail-logo svg { fill: none; stroke: currentColor; stroke-width: 1.7; }
.tg-logo { background: #229ed9; color: #fff; }
.tg-logo svg { fill: currentColor; }
.btn-telegram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  margin-top: 8px;
  border-radius: 14px;
  background: #229ed9;
  color: #fff;
  text-decoration: none;
  font-weight: 560;
}
.btn-telegram:hover { background: #1b8ec4; }

.coming {
  width: min(1080px, calc(100% - 40px));
  margin: 56px auto 0;
  display: grid;
  gap: 18px;
  padding: 22px 24px;
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
@media (min-width: 840px) {
  .coming { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
}
.coming h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  letter-spacing: -0.03em;
  font-weight: 560;
}
.coming-next p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}
.soon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.soon-list li {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f0eeea;
  color: var(--ink);
  font-size: 13px;
}
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.brand-lockup span {
  color: var(--muted);
  font-size: 13px;
}
.ws-logo {
  display: block;
  height: 28px;
  width: auto;
  color: #0b1c28;
}
.ws-logo.on-paper { color: #0b1c28; }

.feed {
  width: min(1080px, calc(100% - 40px));
  margin: 72px auto 0;
}
.toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 18px;
}
.ticker {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 168px;
  padding: 8px 12px 8px 8px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(11, 28, 40, 0.05);
}
.ticker span, #tick-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
#tick-count {
  font-variant-numeric: tabular-nums;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}
.ring { width: 36px; height: 36px; transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: #ece7dc; stroke-width: 3; }
.ring-fg {
  fill: none;
  stroke: var(--gold);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 94.2;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.2s linear;
}
.list.is-refreshing {
  animation: refreshlist 0.7s ease;
}
@keyframes refreshlist {
  0% { opacity: 0.25; transform: translateY(10px); }
  100% { opacity: 1; transform: none; }
}
.ticker.is-refreshing .ring {
  animation: spinring 0.7s ease;
}
@keyframes spinring {
  from { transform: rotate(-90deg) scale(0.86); }
  to { transform: rotate(270deg) scale(1); }
}
.day-stats {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.01em;
}
.hef-span { animation: hef 7s ease-in-out infinite; }
@keyframes hef {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(36px); }
}

dialog {
  border: 0;
  border-radius: 22px;
  padding: 28px;
  width: min(420px, calc(100% - 32px));
  box-shadow: var(--shadow);
}
dialog::backdrop { background: rgba(11, 28, 40, 0.45); }
dialog h2 { margin: 0 0 8px; }
dialog p { margin: 0 0 18px; color: var(--muted); }
dialog button {
  height: 42px;
  padding: 0 16px;
}
.feed h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
  font-weight: 560;
}
.meta {
  color: var(--muted);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.list { display: grid; gap: 12px; }
.card {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 16px;
  padding: 10px;
  background: #fff;
  border-radius: 22px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 24px rgba(11, 28, 40, 0.05);
  border: 1px solid rgba(29, 29, 31, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.card img {
  width: 148px;
  height: 112px;
  object-fit: cover;
  border-radius: 14px;
  background: linear-gradient(180deg, #d5dee4, #bec8cf);
}
.card h3 {
  margin: 0 0 4px;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}
.price { margin: 0; font-weight: 560; }
.bits { margin: 8px 0 0; color: var(--muted); font-size: 14px; }
.badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.badge.open { background: #e5f3ea; color: var(--open); }
.badge.closed { background: #f3e7db; color: var(--closed); }

footer {
  width: min(1080px, calc(100% - 40px));
  margin: 72px auto 48px;
  padding: 16px 18px;
  color: var(--muted);
  font-size: 14px;
}
.foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin-bottom: 14px;
  color: var(--ink);
}
.foot span { color: var(--gold); }
.foot em {
  font-style: normal;
  color: var(--muted);
}
.foot-brand { margin-left: auto; }
.foot-brand .ws-logo { height: 22px; }
#disclaimer {
  border-radius: 18px;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
#disclaimer.is-lit {
  background: #fff6d4;
  box-shadow: 0 0 0 10px #fff6d4;
}
.egg-toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 40;
  max-width: min(22rem, calc(100% - 32px));
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--water);
  color: #f4f7fa;
  font-size: 13px;
  box-shadow: var(--shadow);
}
.egg-toast[hidden] { display: none; }
.disclaimer {
  max-width: 42rem;
  margin: 0 0 10px;
  line-height: 1.5;
  color: var(--ink);
}
.disclaimer-more {
  max-width: 46rem;
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}

@media (max-width: 640px) {
  .hero-copy { margin-top: 10vh; }
  .card { grid-template-columns: 1fr; }
  .card img { width: 100%; height: 180px; }
  .row { flex-direction: column; }
  .toolbar { flex-direction: column; align-items: start; }
  .channel { padding: 28px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .map-shift, .mist, .ripple, .list.is-refreshing { animation: none !important; }
  .layer { transform: none !important; }
  .card { transition: none; }
}
