/* PingBack landing page — 2026-09-03 redesign.
 *
 * Scoped to the home page only. index.html links THIS file instead of
 * /styles.css, so the privacy policy, billing return, /what-works/,
 * /linkedin-account-risk/ and /thanks/ pages are untouched by the redesign.
 *
 * Three constraints from deploy/_headers shaped every decision here:
 *   default-src 'none'   -> zero JavaScript. All motion is CSS
 *                           (animation-timeline: view(), position: sticky).
 *   img-src 'self' data: -> no stock photography, no CDN images. Every visual
 *                           is drawn in CSS or is an inline data: URI.
 *   font-src 'self'      -> no Google Fonts. Geist is named first so it is
 *                           picked up where the OS has it, then a system stack.
 * Do not "fix" this by loosening the CSP; the closed policy is a CASA AL1
 * deliverable (docs/security/casa-al1-readiness.md G2).
 */

*, *::before, *::after { box-sizing: border-box; }

:root {
  --ink: #0a0a0f;
  --ink-2: #121219;
  --paper: #faf8f5;
  --paper-2: #f0ece6;
  --line-dark: #23232f;
  --line-light: #ddd6cc;
  --fg-dark: #f4f2ef;
  --fg-dark-dim: #a2a0ac;
  --fg-light: #16161c;
  --fg-light-dim: #5d5a55;
  --brand: #4f46e5;
  --brand-soft: #a5b4fc;
  --shell: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --chapter: clamp(6rem, 13vw, 11rem);
  --radius: 18px;
  --font: Geist, "Geist Sans", ui-sans-serif, system-ui, -apple-system,
          "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--ink);
  color: var(--fg-dark);
  line-height: 1.6;
  font-size: 17px;
  letter-spacing: -0.011em;
  overflow-x: hidden;
}

main { overflow-x: hidden; width: 100%; max-width: 100%; }

h1, h2, h3 { letter-spacing: -0.035em; line-height: 1.04; margin: 0; font-weight: 600; }
p { margin: 0 0 1.1em; }
a { color: inherit; }
em { font-style: normal; color: var(--brand-soft); }

.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 var(--gutter); }
.chapter { padding: var(--chapter) 0; position: relative; }
.light { background: var(--paper); color: var(--fg-light); }
.light em { color: var(--brand); }
/* Two light chapters run back to back (qualification, then pricing); the
 * second sits a shade warmer so the break is still visible. */
.light.alt { background: var(--paper-2); }
/* :not(.pro) matters — the Pro card is deliberately dark and carries light
 * text; without the exclusion this rule repainted it white and left dim grey
 * copy on white, which fails contrast outright. */
.light.alt .panel, .light.alt .plan:not(.pro) { background: #ffffff; }

/* Ambient ground: a grain sheet over the radial washes. The grain is an
 * inline data: URI because img-src forbids any external host. */
.grain::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}

/* ---------------------------------------------------------------- nav */

.nav {
  position: sticky; top: 14px; z-index: 60;
  display: flex; justify-content: center;
  padding: 14px var(--gutter) 0;
  pointer-events: none;
}

.nav-pill {
  pointer-events: auto;
  display: flex; align-items: center; gap: clamp(14px, 3vw, 34px);
  width: 100%; max-width: 860px;
  padding: 9px 9px 9px 20px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  background: rgba(14,14,20,0.72);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 18px 50px -28px rgba(0,0,0,0.9);
}

.wordmark {
  display: flex; align-items: center; gap: 9px;
  font-weight: 600; letter-spacing: -0.03em; font-size: 1.02rem;
  text-decoration: none; margin-right: auto;
}
/* The rail: the product is a slim bar on the right edge of a profile page.
 * It is the identity mark, so it appears in the wordmark too. */
.rail-mark {
  width: 7px; height: 20px; border-radius: 4px;
  background: linear-gradient(180deg, var(--brand-soft), var(--brand));
  box-shadow: 0 0 16px -2px var(--brand);
}

.nav-links { display: flex; gap: 22px; font-size: 0.9rem; color: var(--fg-dark-dim); }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--fg-dark); }
@media (max-width: 720px) { .nav-links { display: none; } }

/* --------------------------------------------------------------- CTAs */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600; font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), background-color .3s, border-color .3s;
}
.btn:hover { transform: translateY(-2px); }
/* Contrast is stated on both sides of every pair: solid brand carries white
 * text, outline carries the surface's own foreground. Never inherited. */
.btn-primary { background: var(--brand); color: #ffffff; }
.btn-primary:hover { background: #4338ca; }
.nav .btn-primary { padding: 11px 20px; font-size: 0.9rem; }
.btn-ghost { color: var(--fg-dark); border-color: rgba(255,255,255,0.22); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.light .btn-ghost { color: var(--fg-light); border-color: rgba(0,0,0,0.18); }
.light .btn-ghost:hover { border-color: rgba(0,0,0,0.42); background: rgba(0,0,0,0.04); }
.btn-invert { background: var(--paper); color: var(--ink); }
.btn-invert:hover { background: #ffffff; }

a:focus-visible, summary:focus-visible { outline: 3px solid var(--brand-soft); outline-offset: 3px; border-radius: 6px; }

/* --------------------------------------------------------------- hero */

.hero {
  position: relative;
  padding: clamp(4rem, 9vw, 8rem) 0 clamp(5rem, 10vw, 9rem);
  background:
    radial-gradient(900px 620px at 78% 8%, rgba(79,70,229,0.30), transparent 68%),
    radial-gradient(760px 520px at 6% 62%, rgba(120,90,255,0.14), transparent 70%),
    var(--ink);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; } }

/* THE 2-LINE RULE. The headline sits ABOVE the split, across the full 1200px
 * shell, rather than inside the narrow left column — measured at 1440px it
 * renders in two lines. Putting it in the column gave four, which is the
 * failure this layout exists to avoid. */
.hero-head { margin-bottom: clamp(34px, 4vw, 54px); }
.hero h1 {
  max-width: 24ch;
  font-size: clamp(2.6rem, 5.2vw, 4.6rem);
  line-height: 1.02;
}
@media (max-width: 960px) { .hero h1 { max-width: 100%; } }

/* Inline typographic chips: small CSS-drawn contact avatars sitting inside
 * the sentence, standing in for the people the headline is about. */
.chips { display: inline-flex; align-items: center; vertical-align: -0.3em; margin: 0 0.16em; }
.chip {
  width: 0.86em; height: 0.86em; border-radius: 999px;
  border: 2px solid var(--ink);
  margin-left: -0.28em;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}
.chip:first-child { margin-left: 0; }
/* Below the split breakpoint the chips land on their own wrapped line and
 * read as an orphan, so the headline drops them and stays typographic. */
@media (max-width: 720px) { .chips { display: none; } }
.chip-a { background: linear-gradient(135deg,#5b53ff,#a5b4fc); }
.chip-b { background: linear-gradient(135deg,#c2410c,#fbbf24); }
.chip-c { background: linear-gradient(135deg,#0f766e,#5eead4); }

.hero .lede {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: var(--fg-dark-dim);
  max-width: 54ch;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero .fine { font-size: 0.9rem; color: var(--fg-dark-dim); max-width: 52ch; margin: 0; }

/* ------------------------------------------------ the CSS product mock */
/* No screenshot file exists in deploy/ and img-src blocks a hosted one, so
 * the sidebar is drawn. It also stays truthful for free: if the product's
 * fields change, this is markup, not a stale PNG. */

.mock {
  position: relative;
  border-radius: 22px;
  border: 1px solid var(--line-dark);
  background: linear-gradient(180deg, #14141c, #0d0d13);
  box-shadow: 0 60px 120px -60px rgba(0,0,0,1), 0 0 0 1px rgba(255,255,255,0.03);
  overflow: hidden;
}
.mock-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 14px; border-bottom: 1px solid var(--line-dark);
  background: rgba(255,255,255,0.02);
}
.dot { width: 9px; height: 9px; border-radius: 50%; background: #2e2e3c; }
.mock-url { margin-left: 10px; font-family: var(--mono); font-size: 0.72rem; color: #6f6d7e; letter-spacing: 0; }
.mock-body { display: grid; grid-template-columns: minmax(0,1fr) 230px; min-height: 330px; }
.mock-page { padding: 22px; border-right: 1px solid var(--line-dark); }
.skel { height: 9px; border-radius: 5px; background: #1e1e29; margin-bottom: 11px; }
.skel.w70 { width: 70%; }
.skel.w45 { width: 45%; }
.skel.w90 { width: 90%; }
.skel.w60 { width: 60%; }
.skel.face { height: 46px; width: 46px; border-radius: 50%; margin-bottom: 16px; }

/* The panel. Indigo edge on the left mirrors the real rail. */
.mock-panel { padding: 18px 16px; background: #0f0f16; border-left: 2px solid var(--brand); }
.panel-name { font-size: 0.92rem; font-weight: 600; margin-bottom: 2px; }
.panel-role { font-size: 0.74rem; color: var(--fg-dark-dim); margin-bottom: 14px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.tag {
  font-size: 0.68rem; padding: 4px 9px; border-radius: 999px;
  background: rgba(79,70,229,0.18); color: var(--brand-soft);
  border: 1px solid rgba(79,70,229,0.35);
}
.note-card {
  font-size: 0.78rem; line-height: 1.5; color: #cfcddb;
  background: rgba(255,255,255,0.035); border: 1px solid var(--line-dark);
  border-radius: 10px; padding: 10px 11px; margin-bottom: 9px;
}
.note-card time { display: block; font-size: 0.66rem; color: #6f6d7e; margin-bottom: 4px; font-family: var(--mono); }
.saved { font-size: 0.7rem; color: #6ee7b7; font-family: var(--mono); }

/* Chosen motion 1 — scale + fade on scroll. Behind @supports so browsers
 * without scroll-driven animations render the finished state; nothing here
 * is load-bearing for reading the page. */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .mock { animation: scalefade linear both; animation-timeline: view(); animation-range: entry 4% exit 96%; }
    /* Range is entry-relative on BOTH ends on purpose. An end expressed in
     * `cover` is proportional to the subject's own height, so a tall block
     * (the bento, the plan pair) stayed at opacity 0 for hundreds of pixels
     * of scroll after it was already on screen — invisible copy on a page
     * whose job is to be read. Entry-to-entry finishes as the block finishes
     * arriving, whatever its height. */
    .reveal { animation: rise linear both; animation-timeline: view(); animation-range: entry 0% entry 80%; }
  }
}
@keyframes scalefade {
  0%   { transform: scale(0.84); opacity: 0.25; }
  26%  { transform: scale(1); opacity: 1; }
  74%  { transform: scale(1); opacity: 1; }
  100% { transform: scale(0.94); opacity: 0.22; }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(34px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ------------------------------------------------------------ marquee */

.marquee {
  border-block: 1px solid var(--line-dark);
  padding: 20px 0; overflow: hidden; background: var(--ink-2);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
/* The track holds the five items twice and travels exactly -50%, so the loop
 * is seamless. Spacing is padding rather than `gap` on purpose: a gap would
 * put half a gap at the midpoint and make the loop visibly jump. */
.marquee-track { display: flex; width: max-content; animation: slide 36s linear infinite; }
.marquee span {
  display: inline-flex; align-items: center; gap: 22px; padding-right: 22px;
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--fg-dark-dim); white-space: nowrap; letter-spacing: -0.02em;
}
.marquee span::after { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--brand); }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------------------------------------------------------- editorial */

.kicker {
  font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brand-soft); margin-bottom: 20px;
}
.light .kicker { color: var(--brand); }

.h2 { font-size: clamp(2.1rem, 4.4vw, 3.5rem); max-width: 20ch; margin-bottom: 28px; }
.h2.wide { max-width: 26ch; }

.essay { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.15fr); gap: clamp(40px, 6vw, 90px); }
@media (max-width: 900px) { .essay { grid-template-columns: 1fr; } }
.essay-body { font-size: clamp(1.02rem, 1.35vw, 1.16rem); color: var(--fg-dark-dim); max-width: 58ch; }
.essay-body strong { color: var(--fg-dark); font-weight: 600; }
.essay-body .turn {
  font-size: clamp(1.3rem, 2.3vw, 1.75rem); line-height: 1.3;
  color: var(--fg-dark); letter-spacing: -0.03em; margin-top: 1.4em;
}

/* --------------------------------------------------------- bento grid */
/* 4 columns x 3 rows = 12 cells. Occupancy: A 2x2 (4) + B 2x1 (2) +
 * C 1x1 + D 1x1 + E 4x1 (4) = 12. Exactly full, no void cells.
 * grid-auto-flow: dense is set anyway so a future card cannot open a hole. */
.bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(190px, auto);
  grid-auto-flow: dense;
  gap: 14px;
}
.card {
  position: relative; overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: #ffffff;
  padding: clamp(22px, 2.4vw, 32px);
  display: flex; flex-direction: column;
  transition: transform .5s cubic-bezier(.2,.7,.3,1), box-shadow .5s, border-color .5s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -40px rgba(0,0,0,0.45); border-color: #c6bcae; }
.card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.card p { color: var(--fg-light-dim); font-size: 0.96rem; margin: 0; }
.card .step {
  font-family: var(--mono); font-size: 0.74rem; color: var(--brand);
  letter-spacing: 0.1em; margin-bottom: auto; padding-bottom: 26px;
}
.a { grid-column: span 2; grid-row: span 2; background: var(--ink-2); color: var(--fg-dark); border-color: var(--line-dark); }
.a p { color: var(--fg-dark-dim); }
.a h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.a .step { color: var(--brand-soft); }
.a:hover { border-color: #3a3a4c; }
.b { grid-column: span 2; }
.c { grid-column: span 1; }
.d { grid-column: span 1; }
.e { grid-column: span 4; flex-direction: row; align-items: center; gap: 30px; flex-wrap: wrap; background: var(--paper-2); }
.e h3 { flex: 0 1 26ch; }
.e p { flex: 1 1 320px; }
@media (max-width: 860px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .a, .b, .c, .d, .e { grid-column: span 1; grid-row: span 1; }
  .e { flex-direction: column; align-items: flex-start; gap: 12px; }
  .a .step { padding-bottom: 40px; }
}

/* Miniature of the rail, drawn inside card A. */
.mini-rail { display: flex; gap: 8px; align-items: stretch; margin-top: 24px; min-height: 118px; }
.mini-page { flex: 1; border-radius: 10px; border: 1px solid var(--line-dark); background: #101017; padding: 14px; }
.mini-panel { width: 78px; border-radius: 10px; border: 1px solid var(--line-dark); border-left: 2px solid var(--brand); background: #0d0d13; }

/* ----------------------------------------------- refusals: card stack */
/* Chosen motion 2 — sticky card stacking. Each panel pins under the one
 * before it, so the five refusals accumulate instead of scrolling past. */
.stack { display: grid; gap: 18px; }
.stack-item {
  position: sticky;
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
  background: linear-gradient(180deg, #16161f, #101017);
  padding: clamp(26px, 3.4vw, 44px);
  display: grid; grid-template-columns: 78px minmax(0,1fr); gap: clamp(18px, 3vw, 40px);
}
@media (max-width: 720px) { .stack-item { grid-template-columns: 1fr; gap: 12px; } }
.stack-item:nth-child(1) { top: 92px; }
.stack-item:nth-child(2) { top: 112px; }
.stack-item:nth-child(3) { top: 132px; }
.stack-item:nth-child(4) { top: 152px; }
.stack-item:nth-child(5) { top: 172px; }
.stack-num { font-family: var(--mono); font-size: 0.8rem; color: var(--brand-soft); padding-top: 6px; }
.stack-item h3 { font-size: clamp(1.4rem, 2.6vw, 2.05rem); margin-bottom: 12px; }
.stack-item p { color: var(--fg-dark-dim); max-width: 62ch; margin: 0; font-size: 1rem; }
.stack-item p + p { margin-top: 0.8em; }
.stack-foot { margin-top: 34px; color: var(--fg-dark-dim); font-size: 0.98rem; max-width: 66ch; }
.stack-foot a { color: var(--brand-soft); }

/* ---------------------------------------------------------- fit split */

.split { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }
.panel { border: 1px solid var(--line-light); border-radius: var(--radius); padding: clamp(24px, 3vw, 40px); background: #fff; }
.panel.no { background: var(--paper-2); }
.panel h3 { font-size: 1.3rem; margin-bottom: 14px; }
.panel p { color: var(--fg-light-dim); font-size: 0.98rem; }
.panel p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------ pricing */

.plans { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; align-items: start; }
@media (max-width: 800px) { .plans { grid-template-columns: 1fr; } }
.plan { border: 1px solid var(--line-light); border-radius: var(--radius); background: #fff; padding: clamp(26px, 3vw, 40px); }
.plan.pro { background: var(--ink-2); color: var(--fg-dark); border-color: var(--line-dark); }
.plan-name { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-light-dim); }
.plan.pro .plan-name { color: var(--brand-soft); }
.price { font-size: clamp(2.6rem, 5vw, 3.8rem); letter-spacing: -0.045em; line-height: 1; margin: 14px 0 4px; font-weight: 600; }
.price small { font-size: 1rem; font-weight: 400; letter-spacing: -0.01em; color: var(--fg-light-dim); }
.plan.pro .price small { color: var(--fg-dark-dim); }
.plan ul { list-style: none; padding: 0; margin: 22px 0 0; }
.plan li { padding: 11px 0; border-top: 1px solid var(--line-light); font-size: 0.95rem; color: var(--fg-light-dim); }
.plan.pro li { border-color: var(--line-dark); color: var(--fg-dark-dim); }
.plan li strong { color: var(--fg-light); font-weight: 600; }
.plan.pro li strong { color: var(--fg-dark); }
.pricing-notes { margin-top: 40px; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
@media (max-width: 800px) { .pricing-notes { grid-template-columns: 1fr; } }
.pricing-notes div { border-top: 2px solid var(--fg-light); padding-top: 14px; }
.pricing-notes h4 { margin: 0 0 6px; font-size: 0.98rem; letter-spacing: -0.02em; }
.pricing-notes p { margin: 0; font-size: 0.92rem; color: var(--fg-light-dim); }

/* ------------------------------------------------------------ founder */

.founder { display: grid; grid-template-columns: 132px minmax(0,1fr); gap: clamp(24px, 4vw, 54px); align-items: start; }
@media (max-width: 720px) { .founder { grid-template-columns: 1fr; } }
.avatar {
  width: 132px; height: 132px; border-radius: 26px;
  background: linear-gradient(140deg, var(--brand), #7c6cff 55%, #1b1b25);
  display: grid; place-items: center;
  font-size: 2.6rem; font-weight: 600; color: #fff; letter-spacing: -0.04em;
}
.founder-body { font-size: clamp(1.02rem, 1.35vw, 1.14rem); color: var(--fg-dark-dim); max-width: 60ch; }
.founder-body strong { color: var(--fg-dark); }
.founder-body a { color: var(--brand-soft); }

/* ---------------------------------------------------------------- faq */

.faq { border-top: 1px solid var(--line-dark); }
.faq details { border-bottom: 1px solid var(--line-dark); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 26px 44px 26px 0; position: relative;
  font-size: clamp(1.05rem, 1.9vw, 1.32rem); letter-spacing: -0.03em; font-weight: 500;
  transition: color .3s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brand-soft); }
.faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--brand-soft); font-weight: 300;
}
.faq details[open] summary::after { content: "\2013"; }
.faq details p { color: var(--fg-dark-dim); max-width: 74ch; font-size: 1rem; }
.faq details a { color: var(--brand-soft); }
.faq details > p:last-child { padding-bottom: 22px; margin-bottom: 0; }
.faq code { font-family: var(--mono); font-size: 0.88em; background: rgba(255,255,255,0.07); padding: 2px 6px; border-radius: 5px; }

/* ---------------------------------------------------------- final CTA */

.finale {
  text-align: center;
  background:
    radial-gradient(760px 420px at 50% 0%, rgba(79,70,229,0.34), transparent 70%),
    var(--ink);
}
.finale h2 { font-size: clamp(2.6rem, 7vw, 5.4rem); max-width: 16ch; margin: 0 auto 30px; }
.finale .hero-actions { justify-content: center; margin-bottom: 0; }
.finale .fine { color: var(--fg-dark-dim); font-size: 0.92rem; margin-top: 22px; }

footer { border-top: 1px solid var(--line-dark); padding: 44px 0 60px; color: var(--fg-dark-dim); font-size: 0.9rem; }
.foot { display: flex; flex-wrap: wrap; gap: 16px 28px; justify-content: space-between; align-items: baseline; }
.foot p { margin: 0; }
.foot-links { display: flex; flex-wrap: wrap; gap: 20px; }
footer a { text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
footer a:hover { color: var(--fg-dark); border-color: var(--brand-soft); }
