/* Landing, remade to the app's shadcn design system (2026-08-21).
 *
 * Loaded AFTER landing-v2.css, so it keeps that file's LAYOUT and overrides only the LANGUAGE of the
 * design: the exact oklch tokens from packages/ui/src/styles/globals.css (dark), the app's three
 * fonts, and the component look (cards, buttons, badges, radii). Everything is scoped under .lp so
 * the app itself is untouched. The goal is that a visitor cannot tell the marketing page and the
 * product were styled by two different hands — because now they were not.
 */

/* The app's fonts, self-hosted — the EXACT woff2 next/font emits for the /next frontend, copied to
 * public/fonts with stable names. Self-hosted because the landing CSP is `font-src 'self'` (no Google
 * Fonts), and these are the same files the app serves, so the two are byte-identical faces. Variable
 * (weight 100–900), Latin subset. */
@font-face { font-family: 'Roboto'; font-style: normal; font-weight: 100 900; font-display: swap; src: url('/fonts/roboto-latin.woff2') format('woff2'); }
@font-face { font-family: 'Nunito Sans'; font-style: normal; font-weight: 100 900; font-display: swap; src: url('/fonts/nunito-sans-latin.woff2') format('woff2'); }
@font-face { font-family: 'Geist Mono'; font-style: normal; font-weight: 100 900; font-display: swap; src: url('/fonts/geist-mono-latin.woff2') format('woff2'); }

.lp {
  /* PURE BLACK AND WHITE (operator: the homepage should be black, monochrome, matching the mark).
     The palette is a true greyscale — no hue — so it sits on the same black as the brand icon. The
     shadcn SHAPES stay (radii, card borders, button forms); only the colour leaves the mauve family
     for black/white, which is the look angular.dev also runs and the operator pointed at. */
  --bg: #000000;
  --surface: #0a0a0a;                              /* cards: a hair off black so the border reads */
  --surface2: #161616;                            /* controls / chips */
  --border: rgba(255, 255, 255, 0.14);
  --border-soft: rgba(255, 255, 255, 0.07);
  --text: #ffffff;
  --muted: #a1a1a1;                               /* grey body / captions */
  /* No colour accent. The "highlight" is simply brighter white; links and kickers use it, and the
     hero's second line is white too. Primary buttons invert to white-on-black. */
  --accent: #ffffff;
  --accent-ink: #ffffff;
  --accent-wash: #0a0a0a;
  --accent-tint: rgba(255, 255, 255, 0.10);
  --accent-line: rgba(255, 255, 255, 0.30);
  --primary: #ffffff;
  --primary-ink: #000000;
  --ring: rgba(255, 255, 255, 0.55);

  --radius: 0.625rem;                             /* 10px, the app's --radius */
  --radius-lg: 0.875rem;                          /* cards */

  --font-heading: 'Roboto', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font: 'Nunito Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'Geist Mono', ui-monospace, 'Cascadia Code', 'JetBrains Mono', monospace;

  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  letter-spacing: 0;
}

/* Headings: Roboto, tighter tracking than the old condensed face wanted. */
.lp h1, .lp h2, .lp h3, .lp .lp-lockup-word { font-family: var(--font-heading); letter-spacing: -0.01em; }
.lp h1 { font-weight: 800; }
.lp h2 { font-weight: 700; }
.lp h3 { font-weight: 600; }

/* The mono kickers/labels lose the wide letter-spacing the condensed look needed. */
.lp .lp-kicker, .lp .lp-brand-sub, .lp-trust li { letter-spacing: 0.04em; }
.lp .lp-lockup-word { letter-spacing: 0.06em; }

/* ---- components, restyled to shadcn --------------------------------------------------------- */

/* Buttons. Primary = near-white with dark ink; ghost/outline = a hairline border on transparent —
   exactly the app's Button variants. Radius and weight match. */
.lp .btn {
  border-radius: var(--radius); font-family: var(--font); font-weight: 600; font-size: 14px;
  padding: 0.55rem 1rem; border: 1px solid var(--border); background: transparent; color: var(--text);
  transition: background .15s, border-color .15s, opacity .15s; letter-spacing: 0;
}
.lp .btn:hover { background: color-mix(in srgb, var(--text) 8%, transparent); }
.lp .btn-primary { background: var(--primary); color: var(--primary-ink); border-color: transparent; }
.lp .btn-primary:hover { background: color-mix(in srgb, var(--primary) 90%, #000); opacity: 1; }
.lp .btn.ghost { border-color: transparent; }
.lp .btn.ghost:hover { background: color-mix(in srgb, var(--text) 8%, transparent); }

/* Cards / panels — the card token, a 1px border, a larger radius, no heavy shadow. This is the class
   the app's <Card> renders, so every panel on the page now shares its silhouette. */
.lp .lp-feat-grid > article,
.lp .lp-blocks > *,
.lp .lp-vs-col,
.lp .lp-build article,
.lp .lp-scan-in,
.lp .lp-pay .lp-feat-grid > article,
.lp .lp-tier {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: none;
}
.lp .lp-feat-grid > article { padding: 20px; }

/* The demo/terminal panel and the hero illustration: card surface, app radius. */
.lp .lp-demo, .lp .lp-hero-demo, .lp .lp-approve, .lp .lp-code {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
}

/* Inputs, code chips, badges. */
.lp code, .lp kbd { font-family: var(--mono); background: var(--surface2); border-radius: 6px; padding: 0.1em 0.4em; color: var(--accent-ink); }
.lp .badge, .lp .lp-badge {
  display: inline-flex; align-items: center; gap: 0.35em; border: 1px solid var(--border);
  border-radius: 999px; padding: 0.2em 0.7em; font-size: 12px; color: var(--muted); background: var(--surface2);
}
.lp .badge.warn { color: color-mix(in srgb, var(--accent) 70%, #fff); border-color: var(--accent-line); }

/* Nav, ticker, footer: subtle borders in the token, not the old harder line. */
/* A solid, near-opaque bar rather than a live backdrop-filter: blurring everything behind a sticky
   element repaints on every scroll frame and is what actually stalled the compositor. */
.lp .lp-nav { border-bottom: 1px solid var(--border); background: #000; }
.lp .lp-ticker { border-bottom: 1px solid var(--border); background: var(--surface); }
.lp .lp-foot { border-top: 1px solid var(--border); }
.lp section { border-color: var(--border) !important; }

/* Links carry the brand tint; underline on hover, the app's habit. */
.lp a:not(.btn):not(.lp-lockup):hover { color: var(--accent-ink); }
.lp .lp-links a { color: var(--muted); }
.lp .lp-links a:hover { color: var(--text); }

/* The hero's second line was a saturated purple; keep a highlight but in the new hue. */
.lp .lp-hero h1 .lp-accent, .lp .lp-hero h1 em { color: var(--accent); font-style: normal; }

/* Selection + focus rings match the app. */
.lp ::selection { background: color-mix(in srgb, var(--accent) 30%, transparent); }
.lp .btn:focus-visible, .lp a:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; }

/* ============================================================================================
   Creative pass (2026-08-21): pure black can read as empty, so this adds DEPTH without colour —
   a faint dot-grid ground, a soft white glow behind the hero, cards that lift on hover, section
   labels, and a few richer layouts. All greyscale, all on-brand.
   ============================================================================================ */

/* A barely-there dot grid — the texture a black canvas needs so it feels made, not blank. Painted
   directly as the body's background (NOT a fixed/masked layer): a fixed full-viewport pseudo-element
   with a mask forces its own compositor layer that repaints on every scroll — enough to jank a weak
   device and to freeze a screenshot mid-frame. As a plain tiled background it costs nothing. */
.lp {
  background-color: #000;
  background-image: radial-gradient(rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 34px 34px;
}

/* A soft glow behind the hero. A wide, low-opacity radial gradient does the job with no filter:
   `blur()` on a large box is the single most expensive thing you can put on a hero and was the other
   half of the compositor stall. */
.lp-hero { position: relative; }
.lp-hero::before {
  content: ""; position: absolute; top: -160px; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 560px; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 50% at center, rgba(255,255,255,0.08), rgba(255,255,255,0.03) 40%, transparent 72%);
}
.lp-hero > * { position: relative; z-index: 1; }
.lp-hero h1 { font-size: clamp(44px, 6vw, 74px); line-height: 1.02; }

/* Cards lift and their hairline brightens on hover — the small motion that makes a grid feel alive. */
.lp-feat-grid > article, .lp-vs-col, .lp-build article, .lp-tier, .lp-use, .lp-scan-in {
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.lp-feat-grid > article:hover, .lp-build article:hover, .lp-use:hover {
  transform: translateY(-3px); border-color: rgba(255,255,255,0.28);
  background: color-mix(in srgb, #fff 4%, var(--surface));
}

/* A small dot before each feature heading — cheap iconography that gives every card an anchor. */
.lp-feat-grid > article h3 { position: relative; padding-left: 18px; }
.lp-feat-grid > article h3::before {
  content: ""; position: absolute; left: 0; top: 0.5em; width: 8px; height: 8px; border-radius: 2px;
  background: #fff; box-shadow: 0 0 12px rgba(255,255,255,0.5);
}

/* Section headings get a hairline "eyebrow" rule so each block announces itself. */
.lp-feat > h2::before, .lp-pay > h2::before, .lp-use-wrap > h2::before, .lp-faq > h2::before {
  content: ""; display: block; width: 40px; height: 2px; background: #fff; margin-bottom: 14px; opacity: .6;
}

/* ---- stats band ------------------------------------------------------------------------------ */
.lp-stats { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.lp-stats-in { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border); }
.lp-stat { background: var(--bg); padding: 28px 22px; text-align: center; }
.lp-stat b { display: block; font-family: var(--font-heading); font-weight: 800; font-size: clamp(30px, 4vw, 46px); line-height: 1; }
.lp-stat span { display: block; margin-top: 8px; font-size: 13px; color: var(--muted); }

/* ---- use-cases ------------------------------------------------------------------------------- */
.lp-use-wrap { padding: 56px 28px; border-top: 1px solid var(--border); }
.lp-use-wrap h2 { text-align: left; font-size: 26px; margin: 0 auto 24px; max-width: 1100px; }
.lp-use-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.lp-use { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; }
.lp-use h3 { font-size: 16px; margin: 0 0 8px; }
.lp-use p { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0; }
.lp-use .lp-use-tag { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; color: var(--muted); text-transform: uppercase; }

/* ---- FAQ ------------------------------------------------------------------------------------- */
.lp-faq { padding: 56px 28px; border-top: 1px solid var(--border); }
.lp-faq h2 { max-width: 800px; margin: 0 auto 20px; font-size: 26px; }
.lp-faq-list { max-width: 800px; margin: 0 auto; }
.lp-faq details { border-bottom: 1px solid var(--border); padding: 4px 0; }
.lp-faq summary { cursor: pointer; list-style: none; padding: 16px 0; font-family: var(--font-heading);
  font-weight: 600; font-size: 16px; display: flex; justify-content: space-between; align-items: center; }
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after { content: "+"; font-size: 22px; color: var(--muted); font-weight: 400; }
.lp-faq details[open] summary::after { content: "\2212"; }
.lp-faq details p { color: var(--muted); font-size: 14.5px; line-height: 1.65; margin: 0 0 18px; max-width: 68ch; }

/* ---- trust strip ----------------------------------------------------------------------------- */
.lp-trust-strip { border-top: 1px solid var(--border); padding: 40px 28px; }
.lp-trust-in { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px; }
.lp-trust-item { display: flex; gap: 12px; align-items: flex-start; }
.lp-trust-item svg { width: 22px; height: 22px; flex-shrink: 0; stroke: #fff; opacity: .85; }
.lp-trust-item b { display: block; font-family: var(--font-heading); font-size: 14px; }
.lp-trust-item span { color: var(--muted); font-size: 13px; line-height: 1.5; }

@media (max-width: 720px) { .lp-stats-in { grid-template-columns: repeat(2, 1fr); } }
/* the trust-strip icons need their stroke set (SVGs above carry no colour of their own) */
.lp-trust-item svg { stroke: #fff; fill: none; }
/* nav links to the new sections */

/* ============================================================================================
   REWORK (2026-08-21): a real structural change, not a restyle. The old stacked hero + 3-block +
   flat feature list is replaced by a hero and a BENTO grid — the modern, scannable layout where the
   product's highlights sit in tiles of different sizes, the live terminal being the largest. The
   comprehensive feature list still follows below for depth.
   ============================================================================================ */
.lp-hero2 { max-width: 900px; margin: 0 auto; padding: 72px 28px 40px; text-align: center; position: relative; }
.lp-hero2 .lp-kicker { justify-content: center; }
.lp-hero2 h1 { font-size: clamp(46px, 6.5vw, 82px); line-height: 1.0; font-weight: 800; margin: 14px 0 18px; }
.lp-hero2 .lp-lede { margin: 0 auto 26px; max-width: 60ch; font-size: 17px; }
.lp-hero2 .lp-cta { justify-content: center; }
.lp-hero2 .lp-trust { justify-content: center; margin-top: 22px; }

.lp-bento-wrap { max-width: 1140px; margin: 0 auto; padding: 8px 20px 64px; }
.lp-bento {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 168px; gap: 14px;
}
.lp-bento-cell {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 22px; display: flex; flex-direction: column; overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
a.lp-bento-cell { text-decoration: none; color: inherit; }
.lp-bento-cell:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.28); background: color-mix(in srgb, #fff 4%, var(--surface)); }
.lp-bento-lg { grid-column: span 2; grid-row: span 2; padding: 0; }         /* the terminal */
.lp-bento-tall { grid-row: span 2; }
.lp-bento-wide { grid-column: span 2; }
.lp-bento-cell h3 { font-size: 17px; margin: 0 0 6px; }
.lp-bento-cell p { color: var(--muted); font-size: 13.5px; line-height: 1.5; margin: 0; }
.lp-bento-num { font-family: var(--font-heading); font-weight: 800; font-size: clamp(34px, 4vw, 52px); line-height: 1; margin-bottom: 8px; }
.lp-bento-cell .lp-bento-arrow { margin-top: auto; font-size: 13px; color: var(--text); opacity: .8; }
/* the demo card fills its big tile edge to edge */
.lp-bento-lg .lp-demo { border: 0; border-radius: var(--radius-lg); height: 100%; margin: 0; }

@media (max-width: 900px) {
  .lp-bento { grid-template-columns: repeat(2, 1fr); }
  .lp-bento-lg { grid-column: span 2; grid-row: span 2; }
  .lp-bento-wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .lp-bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .lp-bento-cell { min-height: 150px; }
  .lp-bento-lg, .lp-bento-wide, .lp-bento-tall { grid-column: auto; grid-row: auto; }
}

/* ---- extended security-scan showcase (2026-08-21) ------------------------------------------- */
.lp-scan { padding-bottom: 56px; }
.lp-scan-steps {
  max-width: 1080px; margin: 32px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.lp-scan-step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 18px; }
.lp-scan-n { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 8px;
  background: #fff; color: #000; font-family: var(--font-heading); font-weight: 800; font-size: 14px; margin-bottom: 10px; }
.lp-scan-step b { display: block; font-family: var(--font-heading); font-size: 15px; margin-bottom: 5px; }
.lp-scan-step p { color: var(--muted); font-size: 13px; line-height: 1.5; margin: 0; }

.lp-scan-checks { max-width: 1080px; margin: 36px auto 0; text-align: center; }
.lp-scan-checks .lp-kicker { justify-content: center; }
.lp-scan-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 14px; }
.lp-chip { border: 1px solid var(--border); border-radius: 999px; padding: 6px 13px; font-size: 13px;
  color: var(--muted); background: var(--surface); }
.lp-chip:hover { color: var(--text); border-color: rgba(255,255,255,0.3); }

.lp-scan-finding { max-width: 1080px; margin: 36px auto 0; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; }
.lp-scan-finding-head { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-bottom: 1px solid var(--border);
  flex-wrap: wrap; }
.lp-sev { font-family: var(--font-heading); font-weight: 800; font-size: 11px; letter-spacing: .08em; padding: 3px 9px; border-radius: 6px; }
.lp-sev-crit { background: #fff; color: #000; }               /* monochrome: critical = full invert */
.lp-scan-finding-head .lp-mono { font-size: 13px; flex: 1; min-width: 200px; }
.lp-scan-fixed { font-size: 12px; color: var(--text); border: 1px solid var(--accent-line); border-radius: 999px; padding: 2px 10px; }
.lp-scan-finding-body { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.lp-scan-finding-body > div { padding: 16px 18px; }
.lp-scan-finding-body > div:first-child { border-right: 1px solid var(--border); }
.lp-scan-flabel { font-family: var(--mono); font-size: 11px; letter-spacing: .06em; color: var(--muted); margin: 0 0 8px; }
.lp-scan-finding-body pre { font-size: 12px; line-height: 1.55; white-space: pre-wrap; word-break: break-word;
  background: var(--surface2); border-radius: 8px; padding: 12px; margin: 0 0 10px; color: var(--text); overflow-x: auto; }
.lp-scan-fnote { font-size: 12px; color: var(--muted); margin: 0; }

@media (max-width: 820px) {
  .lp-scan-steps { grid-template-columns: repeat(2, 1fr); }
  .lp-scan-finding-body { grid-template-columns: 1fr; }
  .lp-scan-finding-body > div:first-child { border-right: 0; border-bottom: 1px solid var(--border); }
}

/* ---- failover + open-alternative sections (2026-08-21) --------------------------------------- */
.lp-fo { padding: 56px 28px; border-top: 1px solid var(--border); }
.lp-fo-in { max-width: 1040px; margin: 0 auto; }
.lp-fo-in h2 { font-size: clamp(26px, 3.4vw, 38px); margin: 10px 0 12px; }
.lp-fo-in .lp-lede { max-width: 72ch; }
.lp-fo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 24px 0 22px; }
.lp-fo-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 18px; }
.lp-fo-card b { display: block; font-family: var(--font-heading); font-size: 15px; margin-bottom: 6px; }
.lp-fo-card p { color: var(--muted); font-size: 13.5px; line-height: 1.55; margin: 0; }

.lp-alt { padding: 56px 28px; border-top: 1px solid var(--border); }
.lp-alt > h2 { max-width: 1100px; margin: 0 auto 10px; font-size: clamp(24px, 3.2vw, 34px); }
.lp-alt > .lp-lede { max-width: 1100px; margin: 0 auto 26px; }
.lp-alt-cols { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lp-alt-col { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; }
.lp-alt-col h3 { font-size: 15px; margin: 0 0 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.lp-alt-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.lp-alt-col li { font-size: 13.5px; line-height: 1.5; color: var(--muted); padding-left: 16px; position: relative; }
.lp-alt-col li::before { content: ""; position: absolute; left: 0; top: 7px; width: 5px; height: 5px; background: #fff; border-radius: 1px; }
.lp-alt-col b { color: var(--text); font-weight: 600; }

@media (max-width: 900px) {
  .lp-fo-grid, .lp-alt-cols { grid-template-columns: 1fr; }
}

/* ---- embedded downdetector (homepage) --------------------------------------------------------- */
.lp-dd { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 16px 18px; margin: 4px 0 22px; }
.lp-dd-head { display: flex; align-items: center; gap: 10px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.lp-dd-head b { font-family: var(--font-heading); font-size: 14.5px; }
.lp-dd-more { margin-left: auto; font-size: 12.5px; color: var(--muted); text-decoration: none; }
.lp-dd-more:hover { color: var(--text); }
.lp-dd-rows { display: grid; gap: 0; }
.lp-dd-row { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--border-soft); }
.lp-dd-row:last-child { border-bottom: 0; }
.lp-dd-name { font-size: 13.5px; }
.lp-dd-note { margin-left: auto; color: var(--muted); font-size: 12.5px; text-align: right; }
.lp-dd-meta { font-family: var(--mono); font-size: 11px; color: var(--muted); margin: 10px 0 0; }
/* Same monochrome shape language as /status: meaning is carried by the shape, not by colour. */
.lp-dd-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.lp-dd-up { background: #fff; }
.lp-dd-degraded { background: transparent; border: 2px solid #fff; }
.lp-dd-down { background: transparent; border: 2px solid #fff; position: relative; }
.lp-dd-down::after { content: ""; position: absolute; inset: 2px; background: #fff; border-radius: 50%; }
.lp-dd-idle, .lp-dd-unknown { background: transparent; border: 2px dotted rgba(255,255,255,.5); }

/* ---- browser-extension download block (homepage) ---------------------------------------------- */
.lp-ext { padding: 56px 28px; border-top: 1px solid var(--border); }
.lp-ext-in { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1.35fr 1fr; gap: 34px; align-items: start; }
.lp-ext-copy h2 { font-size: clamp(24px, 3.2vw, 34px); margin: 10px 0 12px; }
.lp-ext-pts { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 9px; }
.lp-ext-pts li { color: var(--muted); font-size: 13.5px; line-height: 1.55; padding-left: 16px; position: relative; }
.lp-ext-pts li::before { content: ""; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; background: #fff; border-radius: 1px; }
.lp-ext-cards { display: grid; gap: 12px; }
.lp-ext-card { display: block; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 18px 20px; text-decoration: none; color: inherit;
  transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.lp-ext-card:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.28); background: color-mix(in srgb, #fff 4%, var(--surface)); }
.lp-ext-card b { display: block; font-family: var(--font-heading); font-size: 16px; }
.lp-ext-card span { display: block; color: var(--muted); font-size: 12.5px; font-family: var(--mono); margin-top: 3px; }
.lp-ext-go { display: block; margin-top: 12px; font-style: normal; font-weight: 600; font-size: 13.5px; }
.lp-ext-help { font-size: 13px; color: var(--muted); text-decoration: none; }
.lp-ext-help:hover { color: var(--text); }
@media (max-width: 860px) { .lp-ext-in { grid-template-columns: 1fr; } }
