/* ============================================================
   Feasy Pro Landing — Shared inner-page template styles
   Used by all 24 sub-pages (not the homepage).
   ============================================================ */

/* ── Page hero ──────────────────────────────────────────────── */
.page-hero {
  background: var(--ink-deep);
  color: var(--text-on-dark);
  padding: clamp(80px, 12vw, 130px) 0 clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 55% at 50% 40%, rgba(10, 132, 134, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 80% 85%, rgba(255, 204, 188, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.page-hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(10, 132, 134, 0.35);
  background: rgba(10, 132, 134, 0.1);
  font: 600 0.78rem/1 var(--font-ui);
  color: var(--teal-bright);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.page-h1 {
  font: 700 clamp(2rem, 4.5vw, 3.25rem)/1.1 var(--font-heading);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.page-h1 em {
  font-style: italic;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-sub {
  font: 400 1.1rem/1.7 var(--font-body);
  color: var(--text-on-dark-soft);
  margin: 0 0 32px;
  max-width: 52ch;
}

.page-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Empty placeholder kept in markup for older pages; never shown. */
.page-hero-visual {
  display: none;
}

/* ── Stat strip ────────────────────────────────────────────────── */
.stat-strip {
  background: var(--linen);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
}

.stat-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 16px 24px;
  border-right: 1px solid var(--line);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font: 700 2.5rem/1 var(--font-heading);
  color: var(--teal-bright);
  display: block;
  margin-bottom: 6px;
}

.stat-label {
  font: 400 0.875rem/1.4 var(--font-body);
  color: var(--text-soft);
}

/* ── Content blocks ────────────────────────────────────────────── */
.content-section {
  padding: clamp(60px, 9vw, 110px) 0;
}

.content-section:nth-child(even) {
  background: var(--linen-tint);
}

.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.content-block.reverse {
  direction: rtl;
}

.content-block.reverse > * {
  direction: ltr;
}

.content-block-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.content-block-eyebrow {
  font: 700 0.75rem/1 var(--font-ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-bright);
}

.content-block-h2 {
  font: 700 clamp(1.6rem, 2.8vw, 2.2rem)/1.15 var(--font-heading);
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.02em;
}

.content-block-body {
  font: 400 1rem/1.75 var(--font-body);
  color: var(--text-soft);
  margin: 0;
}

.content-block-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Absolute checkmark + padding so link/text nodes stay in normal flow.
   A 2-col grid was collapsing trailing text into the 22px icon column. */
.content-block-list li {
  position: relative;
  padding-left: 34px;
  font: 400 0.95rem/1.55 var(--font-body);
  color: var(--text-soft);
}

.content-block-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a8486' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center 51%/12px no-repeat,
    rgba(10, 132, 134, 0.1);
}

.content-block-list li strong {
  font: 600 0.95rem/1.35 var(--font-ui);
  color: var(--ink);
}

/* Label + description as separate nodes → neat two-line rows */
.content-block-list li:has(> span) > strong {
  display: block;
}

.content-block-list li > span {
  display: block;
  font: 400 0.9rem/1.5 var(--font-body);
  color: var(--text-soft);
  margin-top: 2px;
}

.content-block-list li a {
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}

.content-block-list li a:hover {
  color: var(--teal-bright);
  text-decoration: underline;
}

.content-block-visual {
  position: relative;
  /* Grid children default to min-width:auto, which lets a wide app mock
     blow out of its column instead of shrinking. */
  min-width: 0;
}

.content-block-copy { min-width: 0; }

/* Content image — never stretch; keep natural proportions */
.content-img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

/* Wide report mock inside a generic showcase: flat & proportionate
   (homepage .report-showcase keeps the intentional 3D paper stack) */
.showcase .report-stage {
  transform: none;
  margin-top: clamp(28px, 4vw, 48px);
}

.showcase .report-pages {
  transform-style: flat;
  min-height: 440px;
}

.showcase .report-sheet--cover,
.showcase .report-sheet--pnl {
  transform: none;
}

.showcase .report-sheet--cover {
  top: 32px;
  left: 12px;
  box-shadow: var(--shadow-md);
}

.showcase .report-sheet--pnl {
  top: 0;
  right: 0;
}

.showcase-tilt:has(.report-stage) {
  transform: none;
  will-change: auto;
}

/* ── Related links block ────────────────────────────────────── */
.related-links {
  padding: clamp(48px, 7vw, 80px) 0;
  background: var(--linen-tint);
}

.related-links-heading {
  font: 700 1.1rem/1 var(--font-ui);
  color: var(--ink);
  margin: 0 0 24px;
  text-align: center;
}

.related-links-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.related-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 210px;
  max-width: 260px;
  padding: 20px 22px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--white);
  text-decoration: none;
  transition: box-shadow 160ms, transform 160ms, border-color 160ms;
}

.related-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(10, 132, 134, 0.28);
}

.related-card-label {
  font: 600 0.9rem/1.25 var(--font-ui);
  color: var(--ink);
}

.related-card-desc {
  font: 400 0.82rem/1.45 var(--font-body);
  color: var(--text-soft);
}

/* ── Testimonial (single) ───────────────────────────────────── */
.page-testimonial {
  padding: clamp(60px, 9vw, 110px) 0;
  background:
    radial-gradient(ellipse 55% 70% at 50% 40%, rgba(10, 132, 134, 0.06) 0%, transparent 65%);
}

.page-quote-card {
  max-width: 720px;
  margin: 0 auto;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 241, 232, 0.9) 100%);
  border-radius: var(--r-xl);
  padding: clamp(36px, 5vw, 52px) clamp(32px, 5vw, 56px) clamp(32px, 4vw, 44px);
  position: relative;
  border: 1px solid rgba(10, 132, 134, 0.14);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 18px 48px -28px rgba(45, 41, 38, 0.35);
  overflow: hidden;
}

.page-quote-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  left: 28px;
  font: 700 7rem/0.8 var(--font-heading);
  color: var(--teal-bright);
  opacity: 0.14;
  pointer-events: none;
}

.page-quote-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--teal-bright), rgba(10, 132, 134, 0.35));
}

.page-quote-text {
  position: relative;
  font: 400 clamp(1.15rem, 2vw, 1.35rem)/1.7 var(--font-heading);
  font-style: italic;
  color: var(--ink);
  margin: 12px 0 28px;
  letter-spacing: -0.01em;
}

.page-quote-author {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(45, 41, 38, 0.08);
}

.page-quote-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(10, 132, 134, 0.35);
  box-shadow: 0 0 0 4px rgba(10, 132, 134, 0.08);
}

.page-quote-name {
  font: 600 0.95rem/1.25 var(--font-ui);
  color: var(--ink);
}

.page-quote-role {
  font: 400 0.82rem/1.3 var(--font-body);
  color: var(--text-soft);
}

/* ── Mini FAQ ─────────────────────────────────────────────────
   Scoped under .mini-faq so homepage <details.faq-item> styles
   in components.css don't steal padding from these accordion rows. */
.mini-faq {
  padding: clamp(60px, 9vw, 110px) 0;
  background: var(--linen);
}

.mini-faq-heading {
  font: 700 clamp(1.4rem, 2.5vw, 2rem)/1.15 var(--font-heading);
  color: var(--ink);
  margin: 0 0 28px;
  text-align: center;
}

.mini-faq .faq-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: none;
}

.mini-faq .faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 180ms, border-color 180ms;
}

.mini-faq .faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: rgba(0, 91, 92, 0.32);
  box-shadow: var(--shadow-md);
}

.mini-faq .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  background: none;
  border: none;
  cursor: pointer;
  font: 600 1.02rem/1.45 var(--font-ui);
  color: var(--ink);
  text-align: left;
  gap: 20px;
}

.mini-faq .faq-question svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 200ms;
  color: var(--teal);
}

.mini-faq .faq-question[aria-expanded="true"] svg {
  transform: rotate(45deg);
}

.mini-faq .faq-answer {
  font: 400 0.98rem/1.7 var(--font-body);
  color: var(--text-soft);
  padding: 0 32px 28px;
  margin: 0;
}

/* ── CTA band ───────────────────────────────────────────────── */
.cta-band {
  background: var(--ink-deep);
  color: var(--text-on-dark);
  padding: clamp(72px, 11vw, 128px) 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(10, 132, 134, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
}

.cta-eyebrow {
  font: 600 0.8rem/1 var(--font-ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin: 0 0 16px;
}

.cta-heading {
  font: 700 clamp(1.8rem, 3.5vw, 2.8rem)/1.15 var(--font-heading);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.cta-sub {
  font: 400 1.05rem/1.7 var(--font-body);
  color: var(--text-on-dark-soft);
  margin: 0 0 32px;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.cta-footnote {
  font: 400 0.8rem/1 var(--font-body);
  color: var(--text-on-dark-faint);
  margin: 0;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .content-block {
    grid-template-columns: 1fr;
  }

  .content-block.reverse { direction: ltr; }

  .stat-strip-inner {
    grid-template-columns: 1fr;
  }

  .stat-item { border-right: none; border-bottom: 1px solid var(--line); }
  .stat-item:last-child { border-bottom: none; }

}

@media (max-width: 600px) {
  .page-quote-card { padding: 28px 24px; }
}

/* ── Scroll-rail active tracking ────────────────────────────── */
/* Managed by JS in main.js */

/* ── Guides hub ─────────────────────────────────────────────── */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 2.4vw, 30px);
}

.guide-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}

.guide-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.guide-card-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.guide-card-body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: clamp(20px, 2.4vw, 26px);
}

.guide-card-kicker {
  font: 700 10.5px/1 var(--font-ui);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.guide-card-title {
  font: 700 clamp(1.1rem, 1.5vw, 1.3rem)/1.3 var(--font-heading);
  letter-spacing: -0.015em;
  color: var(--ink);
}

.guide-card-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-soft);
}

.guide-card-more {
  margin-top: 4px;
  font: 600 0.87rem/1 var(--font-ui);
  color: var(--teal-bright);
}

/* ── Legal pages ────────────────────────────────────────────── */
.page-hero--legal .page-sub {
  max-width: 42rem;
}

.legal-meta {
  font: 500 0.92rem/1.55 var(--font-ui);
  color: var(--text-faint);
  margin: 0 !important;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
}

.legal-meta strong {
  color: var(--text-soft);
  font-weight: 600;
}

.legal-table-wrap {
  overflow-x: auto;
  margin-top: 1.2em;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.45);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font: 400 0.92rem/1.5 var(--font-body);
}

.legal-table th,
.legal-table td {
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
}

.legal-table th {
  font: 600 0.78rem/1.2 var(--font-ui);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  background: rgba(0, 91, 92, 0.04);
}

.legal-table tr:last-child td {
  border-bottom: none;
}

/* ── Guide article ──────────────────────────────────────────── */
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.article-body {
  max-width: 68ch;
  min-width: 0;
}

.article-body > * + * { margin-top: 1.1em; }

.article-body h2 {
  margin-top: 2em;
  font: 700 clamp(1.4rem, 2.2vw, 1.85rem)/1.25 var(--font-heading);
  letter-spacing: -0.02em;
  color: var(--ink);
}

.article-body h3 {
  margin-top: 1.6em;
  font: 700 clamp(1.08rem, 1.5vw, 1.22rem)/1.35 var(--font-heading);
  letter-spacing: -0.01em;
  color: var(--ink);
}

.article-body p,
.article-body li {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.article-body strong { color: var(--ink); font-weight: 600; }

.article-body ul,
.article-body ol {
  padding-left: 1.3em;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }

.article-body a {
  color: var(--teal-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-callout {
  padding: 18px 22px;
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  background: rgba(0, 91, 92, 0.05);
}

.article-callout p { color: var(--ink); }

.article-figure { margin-top: 2em; }

.article-figure img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

.article-figure figcaption {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--text-faint);
  text-align: center;
}

/* Sticky "on this page" rail */
.page-rail {
  position: sticky;
  top: 104px;
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.page-rail-title {
  font: 700 10.5px/1 var(--font-ui);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 14px;
}

.page-rail-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-rail-links a {
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 160ms;
}

.page-rail-links a:hover { color: var(--ink); }

.page-rail-links a.is-active {
  color: var(--teal-bright);
  font-weight: 600;
}

@media (max-width: 980px) {
  .article-layout { grid-template-columns: minmax(0, 1fr); }
  .page-rail { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .guide-card { transition: none; }
  .guide-card:hover { transform: none; }
  .page-rail-links a { transition: none; }
}

/* ── Plan comparison table ──────────────────────────────────── */
.plan-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.plan-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.plan-table th,
.plan-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.plan-table thead th {
  position: sticky;
  top: 0;
  background: var(--ink-deep);
  color: var(--text-on-dark);
  font: 700 0.8rem/1.3 var(--font-ui);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: none;
}

.plan-table thead th:not(:first-child),
.plan-table td:not(:first-child) {
  text-align: center;
  width: 140px;
}

.plan-table tbody th {
  font: 600 0.92rem/1.4 var(--font-ui);
  color: var(--ink);
}

.plan-table tr.plan-group th {
  background: var(--linen-tint);
  font: 700 0.74rem/1.3 var(--font-ui);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.plan-table tbody tr:last-child th,
.plan-table tbody tr:last-child td { border-bottom: none; }

.plan-yes { color: var(--teal-bright); font-weight: 700; }
.plan-no { color: var(--text-faint); }

.plan-note {
  margin-top: 18px;
  font-size: 0.88rem;
  color: var(--text-soft);
  text-align: center;
}

/* ── Customer stories ───────────────────────────────────────── */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(20px, 2.4vw, 30px);
}

.story-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.story-role {
  font: 700 10.5px/1 var(--font-ui);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.story-headline {
  font: 700 clamp(1.15rem, 1.6vw, 1.4rem)/1.28 var(--font-heading);
  letter-spacing: -0.015em;
  color: var(--ink);
}

.story-body {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-soft);
}

.story-body + .story-body { margin-top: -4px; }

.story-quote {
  margin: 0;
  padding-left: 16px;
  border-left: 3px solid var(--peach);
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--ink);
}

.story-who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.story-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}

.story-name {
  font: 600 0.95rem/1.3 var(--font-ui);
  color: var(--ink);
}

.story-meta {
  font-size: 0.82rem;
  color: var(--text-faint);
}

@media (prefers-reduced-motion: reduce) {
  .story-card { transition: none; }
  .story-card:hover { transform: none; }
}

/* ── Business Brief mock ────────────────────────────────────── */
.brief-ui {
  background: var(--linen);
  padding: 26px 28px 22px;
  font-family: var(--font-body);
  color: var(--ink);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brief-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.brief-kicker {
  font: 700 10px/1 var(--font-ui);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 6px;
}

.brief-head h4 {
  font: 700 24px/1.1 var(--font-heading);
  letter-spacing: -0.02em;
  margin: 0;
}

.brief-stamp {
  flex: none;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  background: #dceceb;
  border: 1px solid rgba(0, 91, 92, 0.22);
  font: 600 11px/1 var(--font-ui);
  color: var(--teal);
  white-space: nowrap;
}

.brief-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.brief-card {
  padding: 13px 15px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brief-card-label {
  font: 700 10px/1 var(--font-ui);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin: 0;
}

.brief-card-text {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}

.brief-tag {
  align-self: flex-start;
  margin-top: 2px;
  padding: 3px 9px;
  border-radius: var(--r-pill);
  background: #f5e6df;
  font: 600 10px/1.4 var(--font-ui);
  color: var(--terracotta);
}

.brief-figures {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.brief-figure {
  padding: 11px 13px;
  border-radius: 12px;
  background: var(--linen-tint);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.brief-figure em {
  font: 700 9.5px/1 var(--font-ui);
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.brief-figure strong {
  font: 700 19px/1 var(--font-heading);
  letter-spacing: -0.02em;
  color: var(--ink);
}

.brief-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.brief-foot-note {
  font-size: 11.5px;
  color: var(--text-soft);
}

.brief-foot-cta {
  padding: 7px 14px;
  border-radius: 10px;
  background: var(--teal);
  font: 600 11.5px/1 var(--font-ui);
  color: #fff;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .brief-grid,
  .brief-figures { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ── Homepage "Learn more" section links ────────────────────── */
.section-more {
  display: flex;
  justify-content: center;
  margin-top: clamp(32px, 5vw, 52px);
}

.section-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-strong);
  background: transparent;
  font: 600 0.9rem/1 var(--font-ui);
  color: var(--ink);
  text-decoration: none;
  transition: gap 160ms, border-color 160ms, background 160ms, color 160ms;
}

.section-more-link:hover {
  gap: 12px;
  border-color: var(--teal-bright);
  background: rgba(10, 132, 134, 0.06);
  color: var(--teal-bright);
}

.section-more-link svg { flex-shrink: 0; }

/* On dark sections */
.on-dark .section-more-link {
  border-color: var(--line-on-dark);
  color: var(--text-on-dark);
}

.on-dark .section-more-link:hover {
  border-color: var(--teal-bright);
  background: rgba(10, 132, 134, 0.14);
  color: var(--teal-bright);
}

@media (prefers-reduced-motion: reduce) {
  .section-more-link { transition: none; }
}
