:root {
  --plum: #3b0a24;
  --plum-2: #5c1438;
  --pink: #ff4d88;
  --pink-deep: #e0336f;
  --blush: #ffe4ee;
  --cream: #fff8f5;
  --ink: #1d0f16;
  --ink-soft: #6b5560;
  --line: #f1dde5;
  --radius: 28px;
  --display: "Jost", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: min(1180px, 100% - 32px); margin-inline: auto; }

/* ── Nav ───────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  background: color-mix(in srgb, var(--cream) 78%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
}
.nav .wrap { display: flex; align-items: center; gap: 24px; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font: 700 22px/1 var(--display); letter-spacing: -0.01em; }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.nav-links { display: flex; gap: 22px; margin-left: auto; font-size: 15px; }
.nav-links a { text-decoration: none; color: var(--ink-soft); }
.nav-links a:hover { color: var(--ink); }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px; border: 0;
  font: 600 15px/1 var(--body); text-decoration: none; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-pink { background: var(--pink); color: #fff; box-shadow: 0 10px 24px -10px var(--pink); }
.btn-pink:hover { background: var(--pink-deep); }
.btn-ghost { background: #fff; color: var(--ink); box-shadow: inset 0 0 0 1px var(--line); }
@media (max-width: 760px) { .nav-links { display: none; } .nav .btn { margin-left: auto; } }

/* ── Hero ──────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1200px 600px at 85% -10%, #ff7aa6 0%, transparent 55%),
    radial-gradient(900px 700px at -10% 110%, #7a1b4a 0%, transparent 60%),
    linear-gradient(160deg, var(--plum-2), var(--plum));
  color: #fff;
}
.hero .wrap {
  display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: 40px;
  padding: 72px 0 96px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font: 600 13px/1 var(--body); letter-spacing: .14em; text-transform: uppercase;
  color: #ffc2d6;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 4px #ff4d8840; }
h1 {
  font: 800 clamp(48px, 7.4vw, 96px)/.95 var(--display);
  letter-spacing: -0.035em; margin: 18px 0 20px; text-transform: uppercase;
}
h1 em { font-style: normal; background: linear-gradient(90deg, #ffd166, #ff8fb4 60%, #ff4d88); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lede { font-size: clamp(17px, 1.6vw, 20px); color: #f7dbe6; max-width: 34ch; margin: 0 0 32px; }
.ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.store {
  display: inline-flex; align-items: center; gap: 10px; padding: 10px 18px 10px 14px;
  border-radius: 14px; background: #000; color: #fff; text-decoration: none;
  box-shadow: inset 0 0 0 1px #ffffff30; transition: transform .2s;
}
.store:hover { transform: translateY(-2px); }
.store svg { width: 26px; height: 26px; flex: none; }
.store small { display: block; font-size: 11px; opacity: .8; line-height: 1.1; }
.store b { display: block; font: 600 18px/1.1 var(--body); }
.store.soon { background: #ffffff14; cursor: default; }
.store.soon:hover { transform: none; }
.web-link { color: #fff; font-weight: 600; text-decoration: none; border-bottom: 1px solid #ffffff60; padding-bottom: 2px; }
.web-link:hover { border-color: #fff; }
.micro { margin-top: 18px; font-size: 13px; color: #e8bfd0; }

/* The fan: centre card re-dresses the same twin with a try-on wipe. */
.fan { position: relative; height: min(620px, 62vw); min-height: 440px; perspective: 1400px; }
.card {
  position: absolute; top: 50%; left: 50%;
  width: min(300px, 44%); aspect-ratio: 9 / 16;
  border-radius: 26px; overflow: hidden; background: #f4f1f1;
  box-shadow: 0 40px 80px -30px #0009, 0 0 0 6px #fff;
}
.card img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.card.l { transform: translate(-118%, -46%) rotate(-9deg); animation: floatL 7s ease-in-out infinite; }
.card.r { transform: translate(18%, -46%) rotate(8deg); animation: floatR 8s ease-in-out infinite; }
.card.c { width: min(340px, 50%); transform: translate(-50%, -52%); z-index: 2; animation: floatC 6s ease-in-out infinite; }
.card.c .look { position: absolute; inset: 0; clip-path: inset(0 100% 0 0); }
.card.c .look.on { animation: wipe 1.1s cubic-bezier(.7,0,.2,1) forwards; }
.card.c .scan {
  position: absolute; top: 0; bottom: 0; width: 3px; left: -3px; z-index: 3;
  background: #fff; box-shadow: 0 0 18px 4px #ff4d88cc; opacity: 0;
}
.card.c .scan.go { animation: scan 1.1s cubic-bezier(.7,0,.2,1); }
.tag {
  position: absolute; z-index: 4; left: 50%; bottom: 18px; transform: translateX(-50%);
  background: #fff; color: var(--ink); border-radius: 999px; padding: 8px 14px;
  font: 600 13px/1 var(--body); white-space: nowrap; box-shadow: 0 10px 30px -10px #0006;
}
.sticker {
  position: absolute; z-index: 5; right: 4%; top: 10%;
  background: var(--pink); color: #fff; border-radius: 999px; padding: 9px 14px;
  font: 700 13px/1 var(--body); transform: rotate(6deg); box-shadow: 0 12px 30px -10px #000a;
}
@keyframes wipe { to { clip-path: inset(0 0 0 0); } }
@keyframes scan { 0% { left: -3px; opacity: 1; } 100% { left: 100%; opacity: 1; } }
@keyframes floatC { 50% { transform: translate(-50%, -54.5%); } }
@keyframes floatL { 50% { transform: translate(-118%, -48%) rotate(-10deg); } }
@keyframes floatR { 50% { transform: translate(18%, -44%) rotate(9deg); } }
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; padding: 48px 0 40px; text-align: left; }
  .fan { height: 520px; min-height: 0; }
}
@media (max-width: 480px) { .fan { height: 440px; } }

/* ── Marquee ───────────────────────────────────────── */
.marquee { background: var(--pink); color: #fff; overflow: hidden; white-space: nowrap; padding: 14px 0; }
.marquee div { display: inline-block; animation: marq 38s linear infinite; font: 600 16px/1 var(--display); letter-spacing: .04em; text-transform: uppercase; }
.marquee span { margin: 0 22px; }
.marquee span::after { content: "✦"; margin-left: 44px; opacity: .7; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ── What is Flamingo (definition + facts) ─────────── */
.what { padding: 88px 0 24px; }
.what-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 48px; align-items: start; }
.answer { font-size: 18px; line-height: 1.7; color: #3d2c34; margin: 0; max-width: 62ch; }
.updated { margin: 16px 0 0; font-size: 14px; color: var(--ink-soft); }
.facts { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border-radius: 24px; box-shadow: inset 0 0 0 1px var(--line); font-size: 15px; }
.facts caption { text-align: left; font: 700 20px/1.2 var(--display); padding: 0 0 14px; }
.facts th, .facts td { padding: 13px 18px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.facts tr:last-child th, .facts tr:last-child td { border-bottom: 0; }
.facts th { width: 34%; color: var(--ink-soft); font-weight: 500; }
.facts td { color: var(--ink); font-weight: 500; }
.facts a { color: var(--pink-deep); }
@media (max-width: 860px) { .what-grid { grid-template-columns: 1fr; gap: 32px; } .what { padding-top: 64px; } }

/* ── Sections ──────────────────────────────────────── */
section { padding: 96px 0; }
.kicker { font: 600 13px/1 var(--body); letter-spacing: .14em; text-transform: uppercase; color: var(--pink-deep); }
h2 { font: 800 clamp(34px, 4.6vw, 58px)/1 var(--display); letter-spacing: -0.03em; margin: 14px 0 16px; }
h2 em { font-style: normal; color: var(--pink); }
.sub { color: var(--ink-soft); font-size: 18px; max-width: 56ch; margin: 0; }
.head { margin-bottom: 48px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: inset 0 0 0 1px var(--line); }
.step .n { font: 800 44px/1 var(--display); color: var(--pink); }
.step h3 { font: 700 22px/1.2 var(--display); margin: 14px 0 8px; }
.step p { margin: 0; color: var(--ink-soft); }
.step img { margin-top: 20px; border-radius: 18px; aspect-ratio: 4 / 5; object-fit: cover; object-position: top; width: 100%; background: #f5eef1; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

.gallery-sec { background: linear-gradient(180deg, var(--cream), var(--blush)); }
.gallery {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 8px max(16px, (100vw - 1180px) / 2) 32px; scrollbar-width: none;
}
.gallery::-webkit-scrollbar { display: none; }
.gallery img {
  flex: none; width: clamp(220px, 24vw, 290px); aspect-ratio: 1320 / 2868; height: auto;
  border-radius: 26px; scroll-snap-align: center; box-shadow: 0 30px 60px -30px #5c143866;
}

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: inset 0 0 0 1px var(--line); }
.feature .ic { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: var(--blush); font-size: 22px; }
.feature h3 { font: 700 21px/1.2 var(--display); margin: 18px 0 8px; }
.feature p { margin: 0; color: var(--ink-soft); }
@media (max-width: 960px) { .features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .features { grid-template-columns: 1fr; } }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split .phone { width: min(360px, 100%); margin-inline: auto; border-radius: 40px; overflow: hidden; box-shadow: 0 0 0 10px #1d0f16, 0 50px 90px -40px #3b0a24; }
.bullets { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.bullets li { display: flex; gap: 12px; align-items: flex-start; }
.bullets li::before { content: "✓"; flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--pink); color: #fff; display: grid; place-items: center; font-size: 14px; font-weight: 700; margin-top: 1px; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

.faq { max-width: 820px; }
.faq details { background: #fff; border-radius: 20px; padding: 4px 24px; box-shadow: inset 0 0 0 1px var(--line); margin-bottom: 12px; }
.faq summary { cursor: pointer; list-style: none; padding: 18px 0; font: 600 18px/1.35 var(--body); display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--pink); font-size: 26px; line-height: 1; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 0 0 20px; color: var(--ink-soft); }

.final { background: linear-gradient(160deg, var(--plum-2), var(--plum)); color: #fff; text-align: center; border-radius: 40px; padding: 72px 24px; margin: 0 auto 96px; }
.final h2 { color: #fff; }
.final .ctas { justify-content: center; margin-top: 28px; }
.final p { color: #f1cfdc; margin: 0 auto; max-width: 48ch; }

footer { border-top: 1px solid var(--line); padding: 40px 0 56px; font-size: 14px; color: var(--ink-soft); }
footer .wrap { display: flex; flex-wrap: wrap; gap: 16px 32px; align-items: center; }
footer nav { display: flex; flex-wrap: wrap; gap: 20px; margin-left: auto; }
footer a { text-decoration: none; }
footer a:hover { color: var(--ink); }

/* ── Scroll reveal ─────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .card.c .look { clip-path: none; }
}

/* ── Legal pages (privacy / terms / rules) ─────────── */
.legal { background: #fff; }
.legal .nav-links a[aria-current="page"] { color: var(--pink-deep); font-weight: 600; }
.doc-hero { background: linear-gradient(180deg, var(--blush), #fff); padding: 56px 0 36px; border-bottom: 1px solid var(--line); }
.doc-hero h1 { font: 800 clamp(38px, 6vw, 64px)/1 var(--display); letter-spacing: -0.03em; text-transform: none; color: var(--ink); margin: 12px 0 12px; }
.doc-blurb { font-size: clamp(17px, 2vw, 20px); color: var(--ink-soft); margin: 0; max-width: 52ch; }
.doc-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.pill { display: inline-flex; align-items: center; padding: 8px 14px; border-radius: 999px; background: #fff; box-shadow: inset 0 0 0 1px var(--line); font-size: 14px; color: var(--ink-soft); text-decoration: none; }
.pill-pink { background: var(--pink); color: #fff; box-shadow: none; font-weight: 600; }

.doc-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 56px; align-items: start; }
.toc { position: sticky; top: 84px; padding: 36px 0; max-height: calc(100vh - 84px); overflow-y: auto; }
.toc-box summary { list-style: none; font: 600 13px/1 var(--body); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); padding: 4px 0 12px; cursor: pointer; }
.toc-box summary::-webkit-details-marker { display: none; }
.toc ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.toc a { display: block; padding: 7px 12px; border-radius: 10px; color: var(--ink-soft); text-decoration: none; font-size: 14.5px; line-height: 1.35; border-left: 2px solid transparent; }
.toc a:hover { background: var(--cream); color: var(--ink); }
.toc a[aria-current] { color: var(--pink-deep); background: var(--blush); font-weight: 600; }

.doc { max-width: 720px; padding: 36px 0 72px; font-size: 17px; line-height: 1.7; }
.doc > :first-child { margin-top: 0; }
.doc h2 { position: relative; font: 800 clamp(24px, 3vw, 30px)/1.2 var(--display); letter-spacing: -0.01em; margin: 48px 0 14px; scroll-margin-top: 88px; }
.doc h3 { font: 700 19px/1.3 var(--display); margin: 28px 0 8px; scroll-margin-top: 88px; }
.doc .anchor { position: absolute; left: -1.1em; color: var(--pink); text-decoration: none; opacity: 0; transition: opacity .15s; }
.doc h2:hover .anchor, .doc .anchor:focus { opacity: 1; }
.doc p, .doc li { color: #3d2c34; }
.doc ul, .doc ol { padding-left: 1.3em; }
.doc li { margin: 6px 0; }
.doc strong { color: var(--ink); }
.doc hr { display: none; }
.doc a { color: var(--pink-deep); text-underline-offset: 3px; }
.doc blockquote { margin: 20px 0; padding: 14px 18px; background: var(--cream); border-left: 3px solid var(--pink); border-radius: 0 14px 14px 0; }
.doc .table { overflow-x: auto; margin: 18px 0 24px; border-radius: 16px; box-shadow: inset 0 0 0 1px var(--line); }
.doc table { width: 100%; border-collapse: collapse; font-size: 15px; line-height: 1.5; }
.doc th { background: var(--cream); text-align: left; font-weight: 600; color: var(--ink); }
.doc th, .doc td { padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.doc tr:last-child td { border-bottom: 0; }
.doc-contact { display: flex; flex-wrap: wrap; gap: 6px 10px; margin-top: 48px; padding: 20px 22px; border-radius: 20px; background: var(--blush); font-size: 16px; }

.to-top { position: fixed; right: 20px; bottom: 20px; z-index: 30; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: #fff; text-decoration: none; font-size: 20px; box-shadow: 0 10px 30px -10px #0008; opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity .2s, transform .2s; }
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }

@media (max-width: 999px) {
  .doc-layout { grid-template-columns: 1fr; gap: 0; }
  .toc { position: static; max-height: none; padding: 20px 0 0; overflow: visible; }
  .toc-box { background: var(--cream); border-radius: 18px; padding: 14px 16px; box-shadow: inset 0 0 0 1px var(--line); }
  .toc-box summary { padding: 4px 0; display: flex; justify-content: space-between; }
  .toc-box summary::after { content: "+"; color: var(--pink); font-size: 20px; line-height: .6; }
  .toc-box[open] summary::after { content: "–"; }
  .toc-box[open] ol { margin-top: 10px; }
  .doc { padding-top: 24px; margin-inline: auto; }
}
@media (max-width: 640px) {
  .doc { font-size: 16px; }
  .doc-hero { padding: 36px 0 26px; }
  /* Tables become one card per row: "Partner: AWS / Purpose: …" */
  .doc .table { box-shadow: none; overflow: visible; }
  .doc table, .doc tbody, .doc tr, .doc td { display: block; width: 100%; }
  .doc thead { display: none; }
  .doc tr { background: var(--cream); border-radius: 16px; padding: 6px 14px; margin-bottom: 10px; box-shadow: inset 0 0 0 1px var(--line); }
  .doc td { border: 0; padding: 6px 0; }
  .doc td::before { content: attr(data-label); display: block; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
  .doc td:first-child { font-weight: 600; color: var(--ink); }
  .to-top { right: 14px; bottom: 14px; }
}

/* ── Guides + site footer ─────────────────────────── */
.doc .lead { font-size: 19px; line-height: 1.7; color: var(--ink); }
.doc-cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; margin-top: 48px; padding: 24px; border-radius: 24px; background: linear-gradient(160deg, var(--plum-2), var(--plum)); color: #fff; }
.doc-cta strong { font: 700 20px/1.2 var(--display); display: block; }
.doc-cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.doc-cta .btn-ghost { background: #ffffff1a; color: #fff; box-shadow: inset 0 0 0 1px #ffffff40; }
footer .footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 24px 32px; align-items: start; }
footer nav { display: flex; flex-direction: column; gap: 8px; margin: 0; }
footer nav strong { color: var(--ink); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 4px; }
footer .brand { font-size: 18px; }
footer .brand img { width: 28px; height: 28px; }
.muted-foot { margin: 10px 0 0; font-size: 14px; }
footer .copy { margin-top: 28px; font-size: 13px; }
@media (max-width: 760px) { footer .footer-grid { grid-template-columns: 1fr 1fr; } footer .footer-grid > div:first-child { grid-column: 1 / -1; } }
.learn { display: inline-block; margin-top: 12px; color: var(--pink-deep); font-weight: 600; text-decoration: none; font-size: 15px; }
.learn:hover { text-decoration: underline; }
.doc .doc-cta strong, .doc .doc-cta { color: #fff; }
.doc .doc-cta .btn-pink, .doc .doc-cta .btn-ghost { color: #fff; text-decoration: none; }
footer .copy { display: block; }

/* ── Social, share, blog ───────────────────────────── */
.store .store-name { display: block; font: 600 18px/1.1 var(--body); }
.social { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.social a { display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; border-radius: 999px; background: #fff; box-shadow: inset 0 0 0 1px var(--line); color: var(--ink); font-size: 13px; text-decoration: none; }
.social a:hover { box-shadow: inset 0 0 0 1px var(--pink); color: var(--pink-deep); }
.share { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 24px; font-size: 14px; }
.share span { color: var(--ink-soft); font-weight: 600; margin-right: 4px; }
.share a, .share button { padding: 7px 14px; border-radius: 999px; border: 0; background: var(--cream); box-shadow: inset 0 0 0 1px var(--line); color: var(--ink); font: 500 14px/1 var(--body); text-decoration: none; cursor: pointer; }
.share a:hover, .share button:hover { box-shadow: inset 0 0 0 1px var(--pink); }
.doc .share a { color: var(--ink); }
.share-light { justify-content: center; margin-top: 22px; }
.share-light span { color: #f1cfdc; }
.share-light a, .share-light button { background: #ffffff1a; color: #fff; box-shadow: inset 0 0 0 1px #ffffff40; }
.doc-layout.no-toc { grid-template-columns: minmax(0, 1fr); }
.doc-layout.no-toc .doc { margin-inline: auto; }
.post-figure { margin: 28px 0; }
.post-figure img { width: min(360px, 100%); height: auto; border-radius: 24px; margin-inline: auto; box-shadow: 0 30px 60px -30px #5c143866; }
.post-figure figcaption { text-align: center; font-size: 13px; color: var(--ink-soft); margin-top: 10px; }
.post-list { display: grid; gap: 20px; margin-top: 24px; }
.post-card { display: grid; grid-template-columns: 120px 1fr; gap: 20px; align-items: start; padding: 18px; border-radius: 22px; background: var(--cream); box-shadow: inset 0 0 0 1px var(--line); }
.post-card img { width: 120px; height: 160px; object-fit: cover; object-position: top; border-radius: 14px; }
.post-card h2 { font-size: 20px; margin: 0 0 6px; }
.post-card h2 a { color: var(--ink); text-decoration: none; }
.post-card p { margin: 0; }
#blog .feature h3 a { color: var(--ink); text-decoration: none; }
#blog .feature h3 a:hover { color: var(--pink-deep); }
@media (max-width: 560px) { .post-card { grid-template-columns: 1fr; } .post-card img { width: 100%; height: 220px; } }
.doc .anchor::before { content: "#"; }
footer .brand { display: flex; align-items: center; gap: 10px; font: 700 18px/1 var(--display); }
