:root {
  --lu-bg: #f3ece1;
  --lu-bg-warm: #e8dccb;
  --lu-surface: #fffaf3;
  --lu-surface-2: #f7efe4;
  --lu-ink: #1c1712;
  --lu-ink-soft: #4a4036;
  --lu-muted: #7a6e62;
  --lu-line: #e2d4c2;
  --lu-teal: #0f766e;
  --lu-teal-deep: #0b4f4a;
  --lu-teal-soft: #d7efe8;
  --lu-coral: #e24b3a;
  --lu-coral-deep: #b43326;
  --lu-coral-soft: #fde3dc;
  --lu-sand: #c9864a;
  --lu-sand-soft: #f6e4cc;
  --lu-sky: #2a6f9b;
  --lu-sky-soft: #d7e8f3;
  --lu-display: "Fraunces", ui-serif, Georgia, serif;
  --lu-sans: "Figtree", ui-sans-serif, system-ui, sans-serif;
  --lu-shadow: 0 0 0 1px rgb(28 23 18 / 0.06), 0 1px 2px rgb(28 23 18 / 0.04), 0 8px 20px -12px rgb(28 23 18 / 0.12);
  --lu-shadow-hover: 0 0 0 1px rgb(28 23 18 / 0.08), 0 2px 4px rgb(28 23 18 / 0.05), 0 16px 28px -14px rgb(28 23 18 / 0.18);
  --lu-pop: 0 0 0 1px rgb(28 23 18 / 0.08), 0 18px 40px -18px rgb(28 23 18 / 0.28);
}

.lumen-body,
.lumen-root {
  background: var(--lu-bg);
  color: var(--lu-ink);
  font-family: var(--lu-sans);
  line-height: 1.55;
  margin: 0;
  min-height: 100%;
}

.lumen-root * { box-sizing: border-box; }
.lumen-root a { color: inherit; text-decoration: none; }
.lumen-root img { max-width: 100%; display: block; }
.lumen-root h1, .lumen-root h2, .lumen-root h3 {
  font-family: var(--lu-display);
  letter-spacing: -0.03em;
  line-height: 1.12;
  font-weight: 560;
  text-wrap: balance;
  margin: 0;
}

.lumen-wrap { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }
.lumen-kicker { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--lu-muted); margin: 0 0 0.4rem; }
.lumen-lede { font-size: 1.1rem; color: var(--lu-ink-soft); max-width: 40rem; }
.lumen-meta { color: var(--lu-muted); font-size: 0.85rem; }
.lumen-hide-sm { display: none; }
@media (min-width: 720px) { .lumen-hide-sm { display: inline; } }

.lumen-strip {
  display: flex; gap: 0.75rem; justify-content: center; align-items: center;
  background: #1c1712 !important;
  color: #fffaf3 !important;
  padding: 0.55rem 1rem;
  font-size: 0.85rem; text-align: center;
}
.lumen-root a.lumen-strip,
.lumen-root a.lumen-strip:hover,
.lumen-root a.lumen-strip:visited,
.lumen-root a.lumen-strip span,
.lumen-root a.lumen-strip u {
  color: #fffaf3 !important;
  text-decoration-color: #fffaf3;
}
.lumen-strip u { text-underline-offset: 3px; color: #fffaf3 !important; }

.lumen-header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--lu-bg) 85%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid color-mix(in srgb, var(--lu-line) 80%, transparent);
}
.lumen-header__inner { display: flex; align-items: center; gap: 0.75rem; height: 56px; }
.lumen-wordmark {
  display: flex; align-items: center; gap: 0.4rem;
  flex: 0 0 auto; min-width: 11.5rem;
  font-family: var(--lu-display); line-height: 1;
  background: none; border: 0; box-shadow: none;
}
.lumen-mark {
  width: 36px; height: 40px;
  border: 0; border-radius: 0;
  background: none; box-shadow: none; outline: 0;
  display: block; overflow: visible; flex: 0 0 auto;
  object-fit: contain; object-position: center;
}
.lumen-mark img, .lumen-mark svg { display: none; }
.lumen-logotype {
  font-size: clamp(1.15rem, 4vw, 1.65rem);
  letter-spacing: -0.04em; white-space: nowrap;
}
.lumen-logotype em { font-style: normal; color: var(--lu-teal); }
.lumen-tld { font-style: normal; color: var(--lu-coral); font-size: 0.62em; letter-spacing: 0; }
@media (min-width: 720px) {
  .lumen-header__inner { height: 60px; }
  .lumen-wordmark { min-width: 14.5rem; gap: 0.5rem; }
  .lumen-mark { width: 48px; height: 52px; }
}
.lumen-nav { display: none; gap: 0.15rem; margin-left: 0.5rem; }
.lumen-nav a { padding: 0.5rem 0.75rem; border-radius: 999px; color: var(--lu-ink-soft); font-size: 0.92rem; font-weight: 500; }
.lumen-nav a:hover { background: var(--lu-bg-warm); color: var(--lu-ink); }
.lumen-search { margin-left: auto; display: none; }
.lumen-search input, .lumen-hero-search input, .lumen-filters input, .lumen-filters select, .lumen-form input, .lumen-form select, .lumen-form textarea {
  width: 100%; border: 0; background: var(--lu-surface); box-shadow: var(--lu-shadow);
  border-radius: 999px; padding: 0.7rem 1rem; font: inherit; color: var(--lu-ink);
}
.lumen-form textarea, .lumen-form select { border-radius: 1rem; }
.lumen-search input { width: 220px; height: 34px; padding: 0.28rem 0.85rem; font-size: 0.86rem; }
.lumen-header__inner .lumen-btn--sm {
  white-space: nowrap; padding: 0 0.85rem; height: 34px;
  color: #ffffff !important; text-transform: lowercase; font-weight: 500; font-size: 0.86rem;
}
.lumen-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.35rem;
  height: 44px; padding: 0 1.15rem; border: 0; border-radius: 999px; cursor: pointer;
  background: var(--lu-teal); color: #f4fffb; font: inherit; font-weight: 600;
}
.lumen-btn:hover { background: var(--lu-teal-deep); }
.lumen-btn--ghost { background: var(--lu-surface); color: var(--lu-ink); box-shadow: var(--lu-shadow); }
.lumen-btn--ghost:hover { background: var(--lu-surface-2); }
.lumen-btn--sm { height: 40px; padding: 0 0.95rem; font-size: 0.9rem; }
.lumen-btn--block { width: 100%; }
.lumen-btn--danger { background: var(--lu-coral); }
.lumen-burger { margin-left: auto; width: 40px; height: 40px; border: 0; border-radius: 999px; background: transparent; cursor: pointer; z-index: 50; position: relative; }
.lumen-burger span, .lumen-burger span:before, .lumen-burger span:after {
  display: block; width: 16px; height: 2px; background: var(--lu-ink); position: relative; margin: auto;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}
.lumen-burger span:before, .lumen-burger span:after { content: ""; position: absolute; left: 0; }
.lumen-burger span:before { top: -5px; }
.lumen-burger span:after { top: 5px; }
.lumen-root.is-menu .lumen-burger span { background: transparent; }
.lumen-root.is-menu .lumen-burger span:before { top: 0; transform: rotate(45deg); }
.lumen-root.is-menu .lumen-burger span:after { top: 0; transform: rotate(-45deg); }

.lumen-scrim {
  display: none;
}

@media (max-width: 899px) {
  .lumen-nav {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    position: fixed;
    top: 0;
    right: 0;
    width: min(86vw, 320px);
    height: 100dvh;
    margin: 0;
    padding: 5rem 1.15rem 1.75rem;
    background: var(--lu-surface);
    box-shadow: -18px 0 40px -18px rgb(28 23 18 / 0.28);
    z-index: 45;
    transform: translateX(105%);
    transition: transform 0.28s cubic-bezier(0.2, 0, 0, 1);
    overflow-y: auto;
  }
  .lumen-nav.is-open { display: flex; transform: translateX(0); top: 0; left: auto; right: 0; border: 0; }
  .lumen-nav a {
    padding: 0.85rem 0.95rem;
    font-size: 1.05rem;
    font-weight: 500;
    border-radius: 12px;
  }
  .lumen-scrim {
    display: block;
    position: fixed;
    inset: 0;
    background: rgb(28 23 18 / 0.38);
    z-index: 35;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
  }
  .lumen-root.is-menu .lumen-scrim,
  body.is-menu .lumen-scrim {
    opacity: 1;
    pointer-events: auto;
  }
  .lumen-scrim[hidden] { display: block; }
}

@media (min-width: 900px) {
  .lumen-nav, .lumen-search { display: flex; }
  .lumen-burger, .lumen-scrim { display: none !important; }
  .lumen-header__inner .lumen-btn { margin-left: 0; }
}

.lumen-hero { padding: 2.5rem 0 3.5rem; }
.lumen-hero__grid { display: grid; gap: 2.5rem; align-items: center; }
.lumen-hero h1 { font-size: clamp(2.4rem, 1.4rem + 4vw, 4.2rem); }
.lumen-hero h1 span { color: var(--lu-teal); }
.lumen-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--lu-teal-soft); color: var(--lu-teal-deep);
  border-radius: 999px; padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 700;
}
.lumen-pill__star { width: 14px; height: 14px; flex: 0 0 auto; }
.lumen-hero-search { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1.5rem; position: relative; }
.lumen-search { position: relative; }
.lumen-filters { position: relative; }
.lumen-suggest-host { position: relative; }
.lumen-suggest {
  position: absolute; z-index: 40; top: calc(100% + 6px);
  left: 0; right: 0;
  background: var(--lu-surface);
  border-radius: 1rem;
  box-shadow: var(--lu-pop);
  padding: 0.35rem;
  max-height: min(22rem, 70vh);
  overflow: auto;
}
.lumen-search .lumen-suggest {
  left: auto; right: 0; width: min(22rem, 80vw);
}
.lumen-suggest__row,
.lumen-suggest__more {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.55rem 0.65rem; border-radius: 0.75rem;
  color: var(--lu-ink);
}
.lumen-suggest__row img,
.lumen-suggest__mark {
  width: 28px; height: 28px; border-radius: 8px; flex: 0 0 auto;
  background: var(--lu-surface-2);
}
.lumen-suggest__mark {
  display: grid; place-items: center;
  font-weight: 700; color: var(--lu-teal); font-size: 0.85rem;
}
.lumen-suggest__row span { min-width: 0; }
.lumen-suggest__row strong {
  display: block; font-size: 0.95rem; letter-spacing: -0.02em;
}
.lumen-suggest__row em {
  display: block; font-style: normal; font-size: 0.78rem;
  color: var(--lu-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.lumen-suggest__row:hover,
.lumen-suggest__row.is-on { background: var(--lu-bg-warm); }
.lumen-suggest__more {
  margin-top: 0.15rem; font-size: 0.82rem; font-weight: 600;
  color: var(--lu-teal);
}
.lumen-hero-search input { height: 48px; }
.lumen-quick { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.lumen-quick a { background: var(--lu-surface); box-shadow: var(--lu-shadow); border-radius: 999px; padding: 0.35rem 0.75rem; font-size: 0.78rem; }
.lumen-hero__art { position: relative; }
.lumen-hero__scene {
  width: 100%; height: auto; display: block;
  aspect-ratio: 4/3; border-radius: 1.5rem;
  box-shadow: var(--lu-pop); background: #0b4f4a;
}
.lumen-hero__art img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: 32% 42%; border-radius: 1.5rem; box-shadow: var(--lu-pop); }
.lumen-hero__art aside {
  position: absolute; left: 1rem; right: 1rem; bottom: -1rem;
  background: color-mix(in srgb, var(--lu-surface) 95%, transparent);
  backdrop-filter: blur(8px); border-radius: 1rem; padding: 0.9rem 1rem; box-shadow: var(--lu-pop);
}
.lumen-week-line { margin: 0.2rem 0 0; font-size: 1.05rem; color: var(--lu-ink); }
.lumen-week-line strong { font-family: var(--lu-display); font-size: 1.35rem; font-weight: 560; margin-right: 0.25rem; }
@media (min-width: 900px) {
  .lumen-hero__grid { grid-template-columns: 1.1fr 0.9fr; padding-top: 1.5rem; }
  .lumen-hero-search { flex-direction: row; align-items: center; }
  .lumen-hero-search input { flex: 1; }
  .lumen-hero__art aside { left: auto; right: 1.5rem; width: 16rem; }
}

.lumen-section { padding: 3.5rem 0 1rem; }
.lumen-section__head { display: flex; justify-content: space-between; align-items: end; gap: 1rem; margin-bottom: 1.25rem; }
.lumen-section__head a, .lumen-section h2 + a { color: var(--lu-teal); font-size: 0.92rem; }
.lumen-section h2 { font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.2rem); }

.lumen-cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.lumen-cat {
  background: var(--lu-surface); box-shadow: var(--lu-shadow); border-radius: 1rem; padding: 1rem;
  display: flex; flex-direction: column; gap: 0.15rem; transition: box-shadow .2s;
}
.lumen-cat:hover { box-shadow: var(--lu-shadow-hover); }
.lumen-cat strong { font-family: var(--lu-display); font-size: 1.15rem; }
.lumen-cat span:last-child { color: var(--lu-muted); font-size: 0.78rem; }
.lumen-cat--lg { padding: 1.25rem; }
.lumen-cat__icon {
  width: 2.55rem; height: 2.55rem; border-radius: 0.8rem; margin-bottom: 0.55rem;
  display: grid; place-items: center;
}
.lumen-cat__icon svg { width: 1.25rem; height: 1.25rem; display: block; }
.lumen-cat--lg .lumen-cat__icon { width: 3.1rem; height: 3.1rem; border-radius: 0.95rem; }
.lumen-cat--lg .lumen-cat__icon svg { width: 1.5rem; height: 1.5rem; }
.lumen-tint-teal { background: var(--lu-teal-soft); color: var(--lu-teal-deep); }
.lumen-tint-coral { background: var(--lu-coral-soft); color: var(--lu-coral-deep); }
.lumen-tint-sky { background: var(--lu-sky-soft); color: var(--lu-sky); }
.lumen-tint-sand { background: var(--lu-sand-soft); color: #8a4e16; }
.lumen-tint-ink { background: var(--lu-ink); color: #fffaf3; }
@media (min-width: 700px) { .lumen-cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) {
  .lumen-cat-grid { grid-template-columns: repeat(5, 1fr); }
  .lumen-cat-grid--wide { grid-template-columns: repeat(2, 1fr); }
}

.lumen-tool-grid { display: grid; gap: 1rem; }
.lumen-tool-grid--3 { }
@media (min-width: 700px) { .lumen-tool-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .lumen-tool-grid { grid-template-columns: repeat(3, 1fr); }
  .lumen-tool-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.lumen-card-tool, .lumen-card, .lumen-plan, .lumen-review {
  background: var(--lu-surface); box-shadow: var(--lu-shadow); border-radius: 1rem; padding: 1rem;
}
.lumen-card-tool { display: flex; flex-direction: column; gap: 0.75rem; height: 100%; min-height: 168px; transition: box-shadow .2s, transform .2s; }
.lumen-card-tool:hover { box-shadow: var(--lu-shadow-hover); }
.lumen-card-tool__top { display: flex; gap: 0.75rem; }
.lumen-card-tool__top img { width: 40px; height: 40px; border-radius: 10px; background: var(--lu-surface-2); }
.lumen-card-tool h3 { font-size: 1.15rem; }
.lumen-card-tool h3 em {
  font-style: normal; font-family: var(--lu-sans); font-size: 11px; font-weight: 700;
  background: #c5ebe4; color: #083d39; border-radius: 999px;
  padding: 0.18rem 0.5rem; vertical-align: middle; letter-spacing: 0.01em;
}
.lumen-card-tool p { margin: 0.2rem 0 0; color: var(--lu-ink-soft); font-size: 0.92rem; }
.lumen-card-tool__meta { display: flex; flex-wrap: wrap; gap: 0.4rem; font-size: 0.75rem; color: var(--lu-muted); margin-top: auto; }
.lumen-chip { display: inline-flex; align-items: center; border-radius: 999px; padding: 0.15rem 0.55rem; background: var(--lu-surface-2); }
.lumen-chip--free { background: var(--lu-teal-soft); color: var(--lu-teal-deep); }
.lumen-chip--freemium { background: var(--lu-sky-soft); color: var(--lu-sky); }
.lumen-chip--paid { background: var(--lu-sand-soft); color: #7a4a1a; }
.lumen-chip--open-source { background: #e8f0e4; color: #2f7d4a; }
.lumen-sponsored { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lu-teal-deep); background: var(--lu-teal-soft); border-radius: 999px; padding: 0.15rem 0.5rem; width: fit-content; }

.lumen-banner {
  display: flex; flex-direction: column; gap: 0.75rem;
  border-radius: 1rem; padding: 1.25rem; margin: 1.25rem 0;
  color: #fffaf3;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.lumen-banner .lumen-kicker,
.lumen-banner p.lumen-kicker {
  color: #ffffff !important;
  opacity: 1;
}
.lumen-root a.lumen-banner,
.lumen-root a.lumen-banner:hover,
.lumen-root a.lumen-banner:visited,
.lumen-root a.lumen-banner h3,
.lumen-root a.lumen-banner p {
  color: #fffaf3;
}
.lumen-root a.lumen-banner .lumen-kicker,
.lumen-root a.lumen-banner p.lumen-kicker {
  color: #ffffff !important;
}
.lumen-root a.lumen-banner .lumen-banner__cta {
  color: var(--lu-ink);
  background: #fffaf3;
}
.lumen-banner__cta {
  align-self: flex-start; border-radius: 999px; padding: 0.5rem 1rem; font-weight: 600;
  background: #fffaf3; color: var(--lu-ink);
}
.lumen-banner--teal { background: var(--lu-teal); color: #f4fffb; }
.lumen-banner--coral { background: var(--lu-coral); color: #fff7f4; }
.lumen-banner--ink { background: var(--lu-ink); color: #fffaf3; }
.lumen-banner--sand { background: #c46a28; color: #fffaf3; }
@media (min-width: 700px) {
  .lumen-banner:not(.lumen-banner--tile) { flex-direction: row; align-items: center; justify-content: space-between; }
}

.lumen-banner--tile {
  margin: 0;
  padding: 1rem;
  height: 100%;
  min-height: 168px;
  box-shadow: var(--lu-shadow);
  justify-content: flex-start;
  flex-direction: column;
}
.lumen-banner--tile h3 { font-size: 1.15rem; line-height: 1.2; }
.lumen-banner--tile p { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.lumen-banner--tile .lumen-banner__cta { margin-top: auto; height: 36px; display: inline-flex; align-items: center; padding: 0 0.9rem; font-size: 0.88rem; }

.lumen-tool__side { display: grid; gap: 1rem; }
.lumen-tool__side .lumen-banner,
.lumen-banner--sidebar {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  margin: 0;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 0;
  padding: 1rem;
  overflow: hidden;
  box-shadow: var(--lu-shadow);
}
.lumen-tool__side .lumen-banner h3,
.lumen-banner--sidebar h3 { font-size: 1.15rem; }
.lumen-tool__side .lumen-banner__cta,
.lumen-banner--sidebar .lumen-banner__cta {
  align-self: stretch;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

.lumen-split { display: grid; gap: 2rem; }
.lumen-stack { display: grid; gap: 0.75rem; }
@media (min-width: 900px) { .lumen-split { grid-template-columns: 1fr 1fr; } }

.lumen-filters { display: grid; gap: 0.5rem; margin: 1.25rem 0; }
@media (min-width: 800px) { .lumen-filters { grid-template-columns: 2fr 1fr 1fr 1fr auto; align-items: center; } }
.lumen-pager {
  display: flex; flex-wrap: nowrap; align-items: center; justify-content: center;
  gap: 0.35rem; margin: 2rem 0 1.25rem; overflow-x: auto; max-width: 100%;
  padding: 8px 6px; scrollbar-width: thin;
}
.lumen-pager a, .lumen-pager span {
  min-width: 40px; height: 40px; padding: 0 0.35rem; display: grid; place-items: center;
  border-radius: 999px; background: var(--lu-surface);
  box-shadow: 0 0 0 1px rgb(28 23 18 / 0.08), 0 1px 2px rgb(28 23 18 / 0.04);
  font-size: 0.92rem; flex: 0 0 auto;
}
.lumen-pager a.is-on { background: var(--lu-teal); color: #fff; }
.lumen-pager__nav { padding: 0 0.95rem; width: auto; min-width: 0; font-weight: 600; }
.lumen-pager__nav.is-off { opacity: 0.38; box-shadow: none; background: transparent; }
.lumen-pager__gap { background: transparent; box-shadow: none; color: var(--lu-muted); min-width: 1.4rem; }

.lumen-claim { margin-top: 2.25rem; padding: 1.15rem 1.15rem 1.15rem; }
.lumen-claim summary {
  cursor: pointer; font-weight: 650; padding: 0.15rem 0 0.15rem;
  list-style-position: outside;
}
.lumen-claim[open] summary { margin-bottom: 1rem; }
.lumen-claim .lumen-form { margin-top: 0.25rem; }

.lumen-tool { display: grid; gap: 1.5rem; }
@media (min-width: 900px) { .lumen-tool { grid-template-columns: 1.4fr 0.7fr; align-items: start; } }
.lumen-tool__title { display: flex; gap: 0.9rem; align-items: center; margin: 0.5rem 0 1rem; }
.lumen-tool__title img { width: 56px; height: 56px; border-radius: 14px; background: var(--lu-surface); box-shadow: var(--lu-shadow); }
.lumen-tool h1 { font-size: clamp(2rem, 1.4rem + 2vw, 3rem); }
.lumen-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0; list-style: none; }
.lumen-pills li { background: var(--lu-surface); box-shadow: var(--lu-shadow); border-radius: 999px; padding: 0.3rem 0.7rem; font-size: 0.85rem; }
.lumen-tool dl { display: grid; gap: 0.7rem; margin: 1rem 0 0; }
.lumen-tool dt { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lu-muted); }
.lumen-tool dd { margin: 0.15rem 0 0; }
.lumen-history { padding-left: 1.1rem; }
.lumen-form { display: grid; gap: 0.75rem; }
.lumen-form label { display: grid; gap: 0.3rem; font-size: 0.88rem; }
.lumen-narrow { max-width: 40rem; }
.lumen-flash { background: var(--lu-teal-soft); color: var(--lu-teal-deep); border-radius: 0.8rem; padding: 0.7rem 1rem; }

.lumen-plan-grid { display: grid; gap: 1rem; margin-top: 1.5rem; }
@media (min-width: 900px) { .lumen-plan-grid { grid-template-columns: repeat(3, 1fr); } }
.lumen-plan { display: flex; flex-direction: column; gap: 0; border-radius: 1.4rem; padding: 0 0 1.35rem; overflow: hidden; }
.lumen-plan__art { height: 132px; }
.lumen-plan__art svg { display: block; width: 100%; height: 132px; }
.lumen-plan__body { padding: 1.15rem 1.35rem 0; display: flex; flex-direction: column; gap: 0.45rem; flex: 1; }
.lumen-plan form { padding: 0.85rem 1.35rem 0; }
.lumen-plan.is-featured { box-shadow: var(--lu-shadow), 0 0 0 2px var(--lu-teal); }
.lumen-price { font-family: var(--lu-display); font-size: 2.4rem; margin: 0.4rem 0; }
.lumen-price small { font-family: var(--lu-sans); font-size: 1rem; color: var(--lu-muted); }
.lumen-plan ul { padding: 0; list-style: none; flex: 1; }
.lumen-plan li { padding: 0.25rem 0 0.25rem 1.2rem; position: relative; }
.lumen-plan li:before { content: ""; position: absolute; left: 0; top: 0.7rem; width: 0.45rem; height: 0.45rem; border-radius: 99px; background: var(--lu-teal); }
.lumen-row-between { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; }
.lumen-compare { display: grid; gap: 1rem; }
@media (min-width: 800px) { .lumen-compare { grid-template-columns: repeat(3, 1fr); } }

.lumen-footer { margin-top: 4rem; border-top: 1px solid var(--lu-line); padding: 2rem 0 3rem; }
.lumen-footer__inner { display: flex; flex-direction: column; gap: 1rem; }
.lumen-footer nav { display: flex; flex-wrap: wrap; gap: 0.8rem 1.2rem; }
.lumen-footer p { color: var(--lu-muted); margin: 0.3rem 0 0; }
@media (min-width: 700px) { .lumen-footer__inner { flex-direction: row; justify-content: space-between; align-items: start; } }

@media (prefers-reduced-motion: reduce) {
  .lumen-root * { transition: none !important; }
}

.lumen-discover-h { font-size: clamp(1.4rem, 1.1rem + 1.2vw, 1.9rem); margin: 0 0 0.85rem; }
.lumen-discover-block { margin-top: 2.75rem; padding-top: 0.25rem; }
.lumen-discover-block + .lumen-discover-block {
  margin-top: 3rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--lu-line);
}
.lumen-card-tool__go { margin: 0.75rem 0 0; }
.lumen-card-tool__go a { color: var(--lu-teal); font-size: 0.9rem; font-weight: 600; }
