:root {
  /* Deep Teal & Mint — light mode */
  --ink: #002329;
  --muted: #5D6E70;
  --line: rgba(0, 35, 41, 0.10);
  --paper: #F4F2EB;
  --wash: #FAF8F1;
  --soft: #FAF8F1;
  --navy: #002329;
  --navy-soft: #03313A;
  --navy-edge: rgba(0, 35, 41, 0.18);
  --sky: #1F8B5C;
  --blue: #002329;
  --blue-deep: #001A1E;
  --teal: #0E7A75;
  --green: #2F9467;
  --coral: #DF6655;
  --mint: #1F8B5C;
  --white: #FFFFFF;
  --surface: #FFFFFF;
  --shadow: 0 14px 34px rgba(0, 35, 41, 0.07);
  --wc-page-width: min(1180px, calc(100% - 64px));
  --wc-hero-title: clamp(2rem, 3vw, 2.72rem);
  --wc-hero-lede: clamp(1rem, 1.45vw, 1.16rem);
  --wc-breadcrumb: 0.72rem;
  --wc-hero-top: clamp(42px, 5.5vw, 62px);
  --wc-hero-bottom: clamp(34px, 4.5vw, 48px);
}

[data-theme="dark"] {
  /* Deep Teal & Mint — dark mode (default brand feel) */
  --ink: #F0EDE5;
  --muted: #8FA09A;
  --line: rgba(255, 255, 255, 0.08);
  --paper: #002329;
  --wash: #042F37;
  --soft: #042F37;
  --navy: #002329;
  --navy-soft: #03313A;
  --navy-edge: rgba(255, 255, 255, 0.08);
  --sky: #5BE89C;
  --blue: #5BE89C;
  --blue-deep: #3FD080;
  --teal: #5BBCB6;
  --green: #5EBA8C;
  --coral: #ED8A7A;
  --mint: #5BE89C;
  --surface: #042F37;
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Geist", "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

button,
input,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(16px, 4vw, 42px) 14px;
  background: #002329;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  justify-content: center;
}

.brand-logo {
  display: block;
  width: min(264px, 36vw);
  height: auto;
}

.brand-mark {
  display: block;
}

.brand-mark svg,
.tool-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(240, 237, 229, 0.85);
  font-size: 0.88rem;
  font-weight: 640;
}

.nav a:hover {
  color: var(--sky);
}

main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 52px 0 42px;
  text-align: center;
}

.topline-copy {
  width: 100%;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.82rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.topline-subhead {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

h2 {
  margin: 0;
  font-size: 1.38rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.search-wrap {
  width: min(100%, 560px);
  margin: 0 auto 36px;
  text-align: center;
}

.search-wrap label,
.field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 750;
}

.search-wrap input,
.field input,
.field select {
  width: 100%;
  height: 37px;
  padding: 0 24px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
  box-shadow: none;
}

.search-wrap input[type="search"] {
  font-size: 1.08rem;
}

.search-wrap input:focus,
.field input:focus,
.field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(50, 103, 246, 0.14);
}

.tool-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  padding: 12px 0 34px;
}

.directory,
.calculator-panel,
.about {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: none;
}

.directory {
  position: static;
  padding: 14px 16px 12px;
}

.section-heading {
  margin-bottom: 14px;
}

.directory .section-heading {
  text-align: center;
}

.tool-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 240px));
  justify-content: center;
  gap: 10px;
}

.tool-button {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 44px;
  padding: 7px 10px;
  color: var(--ink);
  text-align: left;
  background: var(--surface);
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
}

.tool-button:hover,
.tool-button.is-active {
  border-color: var(--line);
  background: var(--soft);
}

.tool-button.is-active {
  box-shadow: none;
}

.tool-button strong {
  display: block;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 740;
  line-height: 1.18;
  white-space: normal;
}

.tool-copy {
  min-width: 0;
}

.tool-category {
  display: block;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 580;
}

.tool-button .tool-icon {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  color: var(--blue);
  background: linear-gradient(180deg, #FAF8F1, #F4F2EB);
  border-radius: 8px;
}

.calculator-panel {
  min-height: 540px;
  padding: clamp(18px, 3vw, 28px);
}

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

#tool-summary {
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--muted);
}

.secondary-button {
  min-width: 84px;
  height: 37px;
  color: var(--white);
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 750;
}

.secondary-button:hover {
  background: var(--blue-deep);
}

.calculator-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 22px;
  align-items: start;
  padding-top: 20px;
}

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

.field.full {
  grid-column: 1 / -1;
}

.hint {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.results-panel {
  min-height: 300px;
  padding: 16px;
  color: #F0EDE5;
  background: linear-gradient(180deg, #03313A, #002329);
  border: 1px solid rgba(91, 232, 156, 0.18);
  border-radius: 12px;
  box-shadow: none;
}

.primary-result {
  margin: 12px 0;
  color: #5BE89C;
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.result-note {
  min-height: 40px;
  margin: 0 0 14px;
  color: rgba(231, 240, 255, 0.78);
}

.breakdown {
  display: grid;
  gap: 8px;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid rgba(218, 229, 255, 0.12);
}

.breakdown-row strong {
  text-align: right;
}

.popular {
  padding: 18px 0 24px;
}

.guides {
  padding: 6px 0 24px;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.guide-card {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 170px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
}

.guide-card:hover {
  transform: translateY(-2px);
  border-color: var(--line);
  box-shadow: none;
}

.guide-card span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
}

.guide-card strong {
  font-size: 0.94rem;
  line-height: 1.22;
}

.guide-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

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

.popular-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 126px;
  padding: 14px;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

a.popular-card {
  cursor: pointer;
}

.popular-card:hover {
  transform: translateY(-2px);
  border-color: var(--line);
  box-shadow: none;
}

.popular-card span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
}

.popular-card strong {
  font-size: 1rem;
  line-height: 1.2;
}

.about {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
  margin: 18px 0 30px;
  padding: clamp(16px, 4vw, 28px);
}

.about p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 28px clamp(16px, 4vw, 42px) 32px;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  border-top: 1px solid var(--navy-edge);
}

.site-footer p {
  margin: 0;
  color: rgba(240, 237, 229, 0.78);
  font-size: 0.88rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
}

.footer-logo {
  display: block;
  width: min(184px, 42vw);
  height: auto;
}

.site-footer a:hover {
  color: var(--sky);
}

.hidden {
  display: none;
}

.article-shell {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 34px;
}

.article-hero,
.article-body,
.article-aside {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
}

.article-hero {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin-top: 10px;
  padding: clamp(26px, 4vw, 40px) 0 clamp(22px, 3vw, 30px);
}

.article-hero p:last-child,
.article-body p:last-child,
.article-aside p:last-child {
  margin-bottom: 0;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 18px;
  margin-top: 16px;
}

.article-body {
  padding: clamp(22px, 4vw, 34px);
}

.article-body h2 {
  margin: 26px 0 10px;
}

.article-body h3 {
  margin: 18px 0 8px;
  font-size: 1.02rem;
}

.article-body p,
.article-body li {
  color: var(--muted);
}

.article-body ul,
.article-body ol {
  padding-left: 22px;
}

.article-callout,
.article-aside {
  padding: 16px;
}

.article-callout {
  margin: 20px 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-callout strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1.02rem;
}

.article-links {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.article-links a {
  color: var(--blue);
  font-weight: 700;
}

.breadcrumb {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.88rem;
}

.breadcrumb a {
  color: var(--blue);
}

.simple-page {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 34px;
}

.about-hero-band {
  margin: 0 0 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.about-hero-band img {
  display: block;
  width: 100%;
  height: auto;
}

.about-hero-band picture {
  display: block;
}


.simple-page > .page-hero {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0 0 26px;
}

.simple-page--about {
  padding-top: 0;
}

.simple-page--about > .page-hero {
  padding: var(--wc-hero-top) 0 var(--wc-hero-bottom);
}

.simple-page > .page-hero p:last-child {
  max-width: 760px;
}

.simple-page section:not(.page-hero) {
  margin-bottom: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
}

.simple-page p,
.simple-page li {
  color: var(--muted);
}

.simple-page ul {
  padding-left: 22px;
}

@media (max-width: 920px) {
  .brand-logo {
    width: min(232px, 58vw);
  }

  .topline,
  .calculator-grid,
  .about {
    grid-template-columns: 1fr;
  }

  .topline {
    gap: 18px;
    padding: 40px 0 32px;
  }

  h1 {
    font-size: 1.56rem;
  }

  h2 {
    font-size: 1.36rem;
  }

  .popular-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guides-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  main {
    width: min(100% - 24px, 1080px);
  }

  .brand-logo {
    width: min(194px, 62vw);
  }

  .search-wrap input {
    height: 32px;
    padding: 0 18px;
  }

  .calculator-head,
  .site-footer {
    flex-direction: column;
  }

  .calculator-form,
  .popular-grid {
    grid-template-columns: 1fr;
  }

  .tool-list {
    grid-template-columns: 1fr;
  }

  .primary-result {
    font-size: 1.72rem;
  }

  .topline {
    padding: 30px 0 24px;
  }

  h1 {
    font-size: 1.32rem;
    line-height: 1.12;
  }

  h2 {
    font-size: 1.2rem;
  }
}


/* Dedicated calculator landing pages */
.calculator-page-shell {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 34px;
}

.calculator-page-shell .calculator-panel {
  margin: 16px 0;
}

.calculator-content-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
}

.calculator-content-card p,
.calculator-content-card li {
  color: var(--muted);
}

.related-calculator-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.related-calculator-grid a {
  display: block;
  padding: 14px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 750;
}

.related-calculator-grid span {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 0.76rem;
  text-transform: uppercase;
}

@media (max-width: 620px) {
  .related-calculator-grid {
    grid-template-columns: 1fr;
  }
}

/* Space above "Important note" h2 (always follows the related calculators grid) */
.related-calculator-grid + h2 {
  margin-top: 2.5rem;
}

.article-hero h1 {
  max-width: none;
  margin: 0;
}

.article-hero .lede {
  max-width: none;
  margin: 12px 0 0;
}

.calculator-content-card > p:first-child {
  margin-top: 0;
}


/* WalletCalcs decision-tool upgrade */
.clarity-strip {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.clarity-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.clarity-card.featured {
  background: linear-gradient(135deg, rgba(30, 114, 255, 0.1), rgba(72, 214, 255, 0.12)), var(--surface);
}

.clarity-card span {
  display: block;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.clarity-card strong {
  display: block;
  font-size: 1.06rem;
  margin-bottom: 8px;
}

.clarity-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.signup-section {
  width: min(1120px, calc(100% - 32px));
  margin: 38px auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 28px;
  align-items: center;
}

.signup-copy h2 {
  margin: 0 0 10px;
}

.signup-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.signup-form label {
  display: block;
  font-weight: 800;
  margin-bottom: 8px;
}

.signup-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.signup-row input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  height: 37px;
  padding: 0 16px;
  font: inherit;
  box-sizing: border-box;
}

.signup-row button {
  height: 37px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  padding: 0 18px;
  font-weight: 800;
  cursor: pointer;
  box-sizing: border-box;
}

.signup-form p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

@media (max-width: 820px) {
  .clarity-strip,
  .signup-section {
    grid-template-columns: 1fr;
  }

  .signup-row {
    grid-template-columns: 1fr;
  }
}

.report-actions{display:flex;flex-wrap:wrap;gap:.75rem;margin-top:1.25rem;padding-top:1rem;border-top:1px solid rgba(15,23,42,.12)}
/* Print summary frame: hidden in normal viewing; shown alone during print.
   Injected by app.js when the user clicks "Print summary" and removed after
   the print dialog closes. The body gets .is-printing-summary while active,
   which gates the @media print rule that hides the rest of the page. */
.summary-print-frame { display: none; }

@media print {
  .site-header, .site-footer, .directory, .calculator-form,
  .report-actions, .guides, .signup-band { display: none !important; }
  .calculator-panel, .results-panel { box-shadow: none !important; border: none !important; }

  /* When the user clicked "Print summary" specifically, hide everything else
     and show only the injected summary frame. */
  body.is-printing-summary > *:not(.summary-print-frame) { display: none !important; }
  body.is-printing-summary { background: #fff !important; }
  .summary-print-frame {
    display: block !important;
    padding: 32px;
    max-width: 760px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    line-height: 1.5;
    color: #111827;
    background: #fff;
  }
  .summary-print-frame h1 { font-size: 24px; margin: 0 0 16px; }
  .summary-print-frame pre {
    white-space: pre-wrap;
    font-family: inherit;
    font-size: 14px;
    margin: 0;
  }
}

/* WalletCalcs unified header / hero system
   One clean system for page headers. Popular Calculators is the positioning reference
   for interior page hero height. Breadcrumbs are removed per final notes. */
main,
.article-shell,
.simple-page,
.calculator-page-shell {
  width: var(--wc-page-width);
  margin-left: auto;
  margin-right: auto;
}

.page-hero {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: var(--wc-hero-top) 0 var(--wc-hero-bottom);
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.page-hero > * {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-hero .topline-copy {
  width: 100%;
  max-width: none;
}

.page-hero h1 {
  max-width: 980px;
  margin-top: 0;
  margin-bottom: 0;
  color: var(--ink);
  font-size: var(--wc-hero-title);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.028em;
}

.page-hero .lede,
.page-hero h1 + p:not(.breadcrumb):not(.eyebrow) {
  max-width: 960px;
  margin-top: 20px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: var(--wc-hero-lede);
  font-weight: 500;
  line-height: 1.55;
  text-wrap: balance;
}


.page-hero .eyebrow {
  display: block;
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--blue);
}

.page-hero .search-wrap {
  max-width: 760px;
  margin: 28px auto 0;
}

/* Guides and About must visually follow Popular Calculators. */
.guides-page .page-hero,
.simple-page--about > .page-hero {
  padding-top: var(--wc-hero-top);
  padding-bottom: var(--wc-hero-bottom);
}


.simple-page--about {
  padding-top: 0;
}

.contact-page .simple-page {
  padding-top: 0;
}

.contact-page .page-hero--boxed {
  max-width: none;
  margin: 0 auto;
  padding: var(--wc-hero-top) 0 var(--wc-hero-bottom);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.contact-email {
  max-width: 960px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: var(--wc-hero-lede);
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

.guides .section-heading,
.popular .section-heading,
.article-body,
.calculator-content-card,
.simple-page section:not(.page-hero) {
  text-align: left;
}

@media (max-width: 920px) {
  :root {
    --wc-page-width: min(100% - 40px, 1180px);
    --wc-hero-title: clamp(1.82rem, 6vw, 2.25rem);
    --wc-hero-lede: 1rem;
    --wc-hero-top: 38px;
    --wc-hero-bottom: 34px;
  }
}

@media (max-width: 620px) {
  :root {
    --wc-page-width: min(100% - 24px, 1180px);
    --wc-hero-title: 1.6rem;
    --wc-hero-lede: 0.95rem;
    --wc-breadcrumb: 0.68rem;
    --wc-hero-top: 30px;
    --wc-hero-bottom: 28px;
  }

  .contact-page .page-hero--boxed {
    padding: var(--wc-hero-top) 0 var(--wc-hero-bottom);
  }
}

/* WalletCalcs editorial trust additions */
.footer-links { margin-top: 18px; font-size: 0.88rem; line-height: 1.8; }
.footer-links a { color: inherit; text-decoration: none; opacity: 0.86; }
.footer-links a:hover { text-decoration: underline; opacity: 1; }
.article-meta a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.editorial-note, .author-card, .article-sources, .affiliate-note {
  border: 1px solid rgba(13, 34, 51, 0.1);
  background: rgba(245, 248, 251, 0.86);
  border-radius: 18px;
  padding: 20px;
  margin: 24px 0;
}
.editorial-note p, .author-card p, .article-sources p, .affiliate-note p { margin-bottom: 0; }
.article-sources ul { margin-bottom: 0; }
.article-sources a { color: var(--mint); font-weight: 700; }
.author-card { display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: 16px; align-items: start; }
.author-avatar { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--mint)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; letter-spacing: 0.04em; }
.author-card h2, .author-card h3 { margin-top: 0; }
.trust-list li { margin-bottom: 10px; }
@media (max-width: 620px) { .author-card { grid-template-columns: 1fr; } }

/* WalletCalcs final unified action button system
   Master style: Get Early Access button treatment. */
:root {
  --wc-action-button-bg: #5BE89C;
  --wc-action-button-color: #002329;
  --wc-action-button-shadow: 0 8px 22px rgba(0, 0, 0, 0.10);
  --wc-action-button-shadow-hover: 0 10px 26px rgba(91, 232, 156, 0.22);
}

button,
input[type="button"],
input[type="submit"],
input[type="reset"],
.primary-button,
.secondary-button,
.button,
.btn,
a.primary-button,
a.secondary-button,
a.button,
a.btn,
.signup-row button,
.wc-waitlist-form button,
.report-actions button,
.report-actions a {
  min-height: 48px !important;
  height: 48px !important;
  padding: 0 20px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--wc-action-button-bg) !important;
  color: var(--wc-action-button-color) !important;
  font-family: "Geist", "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: 0.01em !important;
  box-shadow: var(--wc-action-button-shadow) !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
.primary-button:hover,
.secondary-button:hover,
.button:hover,
.btn:hover,
a.primary-button:hover,
a.secondary-button:hover,
a.button:hover,
a.btn:hover,
.signup-row button:hover,
.wc-waitlist-form button:hover,
.report-actions button:hover,
.report-actions a:hover {
  background: var(--wc-action-button-bg) !important;
  color: var(--wc-action-button-color) !important;
  box-shadow: var(--wc-action-button-shadow-hover) !important;
  filter: brightness(1.03) !important;
  transform: translateY(-1px) !important;
}

button:focus-visible,
input[type="button"]:focus-visible,
input[type="submit"]:focus-visible,
input[type="reset"]:focus-visible,
.primary-button:focus-visible,
.secondary-button:focus-visible,
.button:focus-visible,
.btn:focus-visible,
a.primary-button:focus-visible,
a.secondary-button:focus-visible,
a.button:focus-visible,
a.btn:focus-visible,
.signup-row button:focus-visible,
.wc-waitlist-form button:focus-visible,
.report-actions button:focus-visible,
.report-actions a:focus-visible {
  outline: 2px solid rgba(94, 167, 255, 0.45) !important;
  outline-offset: 2px !important;
}

/* Calculator selector cards are cards, not CTA buttons. Keep their layout,
   but normalize the typography so they do not feel mismatched. */
.tool-button {
  font-family: "Geist", "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}
.tool-button strong {
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 0.01em !important;
}

@media (max-width: 620px) {
  .wc-waitlist-form button,
  .signup-row button,
  .primary-button,
  .secondary-button,
  .button,
  .btn,
  a.primary-button,
  a.secondary-button,
  a.button,
  a.btn {
    width: 100% !important;
  }

  .calculator-head .secondary-button,
  .report-actions .secondary-button,
  .report-actions button,
  .report-actions a {
    width: auto !important;
  }
}

/* 2026-05-10 cleanup: consistent header/nav + matching blue feature cards */
.clarity-strip {
  align-items: stretch;
}

.clarity-card,
.clarity-card.featured {
  height: 100%;
  background: var(--surface);
  border-color: var(--line);
}

.clarity-card span,
.clarity-card.featured span {
  color: var(--blue);
}

@media (max-width: 720px) {
  .site-footer {
    padding: 26px 18px 30px;
  }

  .footer-links {
    font-size: 0.84rem;
  }
}


/* 2026-05-10 footer alignment cleanup */
.site-footer .footer-brand,
.site-footer p,
.site-footer .footer-links,
.site-footer .saasbrowser-badge {
  width: 100%;
  text-align: center;
}

.site-footer .saasbrowser-badge img {
  display: inline-block;
  max-width: 200px;
  height: auto;
}

.footer-note { max-width: 860px; margin-left: auto !important; margin-right: auto !important; }


/* 2026-05-10 footer logo centering fix */
.site-footer .footer-brand {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100%;
}

.site-footer .footer-logo {
  display: block;
  margin-left: auto !important;
  margin-right: auto !important;
}


/* 2026-05-12 Money Moments architecture */
.money-moment-hero {
  padding-top: clamp(54px, 7vw, 88px);
  padding-bottom: clamp(28px, 5vw, 54px);
}
.money-moment-hero h1 {
  max-width: 980px;
  font-size: clamp(2.2rem, 5.4vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-wrap: balance;
}
.money-moment-hero .lede,
.money-moment-hero h1 + p.lede,
.money-moment-hero h1 + p:not(.breadcrumb):not(.eyebrow) {
  max-width: 620px;
  margin: 20px auto 0;
  font-size: clamp(1.02rem, 1.7vw, 1.28rem);
}
.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.primary-button,
.secondary-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
}
.primary-button {
  color: #002329;
  background: #5BE89C;
  box-shadow: 0 12px 30px rgba(91, 232, 156, 0.22);
}
.secondary-link-button {
  color: var(--blue);
  background: var(--surface);
  border: 1px solid var(--line);
}
.money-moment-featured {
  padding-top: clamp(48px, 6vw, 88px);
  margin-bottom: 16px;
}
.money-moments-section {
  padding: clamp(20px, 4vw, 44px) 0 26px;
}
.center-heading {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.center-heading p:last-child {
  color: var(--muted);
  margin: 10px auto 0;
}
.money-moment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.moment-card {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.moment-card:hover {
  transform: translateY(-3px);
  border-color: rgba(91, 232, 156, 0.30);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}
.moment-card span {
  display: inline-flex;
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  color: #1F8B5C;
  background: rgba(91, 232, 156, 0.14);
  font-size: 0.72rem;
  font-weight: 850;
}
.moment-card strong {
  font-size: 1.08rem;
  line-height: 1.18;
  color: var(--ink);
}
.moment-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.48;
}
.featured-moment {
  border-color: rgba(91, 232, 156, 0.35);
  box-shadow: 0 0 0 1px rgba(91, 232, 156, 0.12), 0 18px 38px rgba(0, 0, 0, 0.15);
}
.warm-about,
.trust-band {
  margin-top: 20px;
}
.trust-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
  margin-bottom: 20px;
  padding: clamp(16px, 4vw, 28px);
  border-radius: 18px;
  background: linear-gradient(135deg, #002329, #03313A);
  color: #F0EDE5;
}
.trust-band p { margin: 0; color: rgba(240, 237, 229, 0.76); }
.trust-band h2 { color: #fff; }
.hub-shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.hub-hero { padding: clamp(38px, 6vw, 76px) 0 clamp(20px, 4vw, 36px); text-align: center; }
.hub-hero h1 { font-size: clamp(2rem, 4.6vw, 4rem); line-height: 1; letter-spacing: -0.055em; }
.hub-hero .lede { max-width: 760px; margin: 18px auto 0; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.18rem); }
.hub-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin: 20px auto 28px; max-width: 920px; }
.hub-grid > .hub-card { flex: 0 1 calc((100% - 14px) / 2); min-width: 0; }
.hub-card { display: grid; gap: 8px; min-height: 160px; padding: 18px; border-radius: 16px; background: var(--surface); border: 1px solid var(--line); }
.hub-card span { color: var(--blue); font-size: .72rem; font-weight: 850; }
.hub-card strong { font-size: 1rem; line-height: 1.22; }
.hub-card p { color: var(--muted); margin: 0; font-size: .88rem; }
.hub-copy-card { display: grid; grid-template-columns: .9fr 1.1fr; gap: 18px; margin: 0 0 34px; padding: clamp(18px, 4vw, 30px); border-radius: 18px; border: 1px solid var(--line); background: var(--surface); }
.hub-copy-card p, .hub-copy-card li { color: var(--muted); }

/* Long-form editorial section inside a Money Moments page. */
.hub-content {
  max-width: 760px;
  margin: 8px auto 32px;
  padding: 0 clamp(12px, 3vw, 24px);
}
.hub-content h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.hub-content h3 {
  font-size: 1.1rem;
  line-height: 1.3;
  margin: 28px 0 10px;
  color: var(--ink);
}
.hub-content p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 14px;
  font-size: 1rem;
}

/* Question/answer list under a Money Moments page. */
.hub-faq {
  max-width: 760px;
  margin: 8px auto 36px;
  padding: clamp(18px, 4vw, 28px);
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.hub-faq h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.hub-faq-list { margin: 0; }
.hub-faq-list dt {
  font-weight: 650;
  color: var(--ink);
  margin-top: 18px;
  font-size: 1rem;
}
.hub-faq-list dt:first-child { margin-top: 0; }
.hub-faq-list dd {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.97rem;
}
@media (max-width: 920px) {
  .money-moment-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-band, .hub-copy-card { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .money-moment-grid { grid-template-columns: 1fr; }
  .hub-grid > .hub-card { flex-basis: 100%; }
  .moment-card { min-height: auto; }
  .hero-actions a { width: 100%; }
  .hub-shell { width: min(100% - 28px, 1120px); }
}

/* ============================================================
   Theme toggle button (injected into .site-header by app.js)
   ============================================================ */
.site-header { position: sticky; }

.theme-toggle {
  position: absolute;
  top: 22px;
  right: clamp(16px, 4vw, 42px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
}
.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-1px);
}
.theme-toggle:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 2px;
}
.theme-toggle svg { display: block; }
.theme-toggle .sun-icon { display: none; }
.theme-toggle .moon-icon { display: block; }
[data-theme="dark"] .theme-toggle .sun-icon { display: block; }
[data-theme="dark"] .theme-toggle .moon-icon { display: none; }

/* Smooth color transitions when toggling themes */
body, .calculator-panel, .results-panel, .calculator-content-card,
.hub-card, .hub-copy-card, .article-callout, input, select, button {
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

/* ============================================================
   Slider + number input combo (used by every calculator)
   ============================================================ */
.field-with-slider {
  display: grid;
  gap: 10px;
}
.slider-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}
.slider-row .calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--line);
  border-radius: 999px;
  outline: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.slider-row .calc-slider::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background: var(--line);
}
.slider-row .calc-slider::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: var(--line);
}
.slider-row .calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--mint);
  border: 2px solid var(--surface);
  border-radius: 50%;
  cursor: grab;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  margin-top: -8px;
  transition: transform 0.12s ease;
}
.slider-row .calc-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: var(--mint);
  border: 2px solid var(--surface);
  border-radius: 50%;
  cursor: grab;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  transition: transform 0.12s ease;
}
.slider-row .calc-slider:active::-webkit-slider-thumb { cursor: grabbing; transform: scale(1.12); }
.slider-row .calc-slider:active::-moz-range-thumb { cursor: grabbing; transform: scale(1.12); }
.slider-row .calc-slider:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 6px;
  border-radius: 999px;
}
.slider-row .slider-number {
  width: 120px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  border-radius: 10px;
  font: inherit;
  font-weight: 600;
  text-align: right;
  -moz-appearance: textfield;
}
.slider-row .slider-number::-webkit-outer-spin-button,
.slider-row .slider-number::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.slider-row .slider-number:focus {
  outline: none;
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(91, 232, 156, 0.22);
}
[data-theme="dark"] .slider-row .slider-number:focus {
  box-shadow: 0 0 0 3px rgba(91, 232, 156, 0.28);
}

@media (max-width: 480px) {
  .slider-row { grid-template-columns: 1fr; gap: 8px; }
  .slider-row .slider-number { width: 100%; text-align: left; }
}

/* ============================================================
   Dark-mode polish for spots that had hardcoded blue tints
   ============================================================ */
[data-theme="dark"] body { background: var(--paper); color: var(--ink); }
[data-theme="dark"] .hub-card,
[data-theme="dark"] .hub-copy-card { border-color: var(--line); }
[data-theme="dark"] .editorial-note,
[data-theme="dark"] .author-card,
[data-theme="dark"] .article-sources,
[data-theme="dark"] .affiliate-note {
  background: var(--surface);
  border-color: var(--line);
}
[data-theme="dark"] .trust-band { background: linear-gradient(135deg, var(--navy), var(--navy-soft)) !important; }

/* ============================================================
   Moment-card / clarity-card photo placeholders
   Full-bleed image at top of card, breaks out of card padding
   ============================================================ */
.card-photo {
  display: block;
  width: calc(100% + 40px);
  margin: -20px -20px 14px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 17px 17px 0 0;
  background: #032A30;
}
.clarity-card,
.moment-card,
.clarity-card.featured {
  overflow: hidden;
}

/* ============================================================
   Tools we trust — affiliate partner block on moment pages
   ============================================================ */
.trust-section {
  margin-top: 36px;
  padding: 36px 0 20px;
}
.trust-section .section-heading {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 28px;
}
.trust-section .section-heading p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  margin-top: 10px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.trust-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 22px 24px;
}
.trust-logo {
  height: 56px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.trust-logo span {
  color: var(--mint);
  opacity: 0.92;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
}
.trust-tag {
  display: inline-flex;
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  color: #1F8B5C;
  background: rgba(91, 232, 156, 0.14);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.trust-card strong {
  display: block;
  font-size: 1.12rem;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 8px;
}
.trust-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  flex: 1;
}
.trust-disclosure {
  margin: 28px auto 0;
  max-width: 720px;
  text-align: center;
  color: rgba(240, 237, 229, 0.55);
  font-size: 0.78rem;
  line-height: 1.55;
}
.trust-disclosure a {
  color: rgba(240, 237, 229, 0.85);
  text-decoration: underline;
}
@media (max-width: 720px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Read-more cue on moment + clarity cards
   Makes it obvious the whole card is a clickable link
   ============================================================ */
.moment-card,
.clarity-card {
  position: relative;
  text-decoration: none;
}
.moment-card::after,
.clarity-card::after {
  content: "Read more →";
  display: block;
  margin-top: 14px;
  color: var(--mint);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform .18s ease, color .18s ease;
}
.moment-card:hover::after,
.clarity-card:hover::after {
  transform: translateX(3px);
}

/* Hide forced lede line-breaks below desktop width — let text wrap naturally */
@media (max-width: 1180px) {
  .desktop-br { display: none; }
}

/* "Part of [Moment]" link beneath related calculator grid */
.calculator-content-card .related-moment {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  font-size: 0.94rem;
  color: var(--muted);
}
.calculator-content-card .related-moment a {
  color: var(--mint);
  text-decoration: none;
  font-weight: 600;
  margin-left: 4px;
}
.calculator-content-card .related-moment a:hover { text-decoration: underline; }

/* ============================================================
   Breadcrumb navigation (calculator pages)
   ============================================================ */
.breadcrumb-nav {
  max-width: 1120px;
  margin: 24px auto 0;
  padding: 0 clamp(16px, 3vw, 28px);
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.breadcrumb-nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color .15s ease;
}
.breadcrumb-nav a:hover { color: var(--mint); }
.breadcrumb-nav span[aria-current="page"] { color: var(--ink); }
.breadcrumb-nav span[aria-hidden="true"] { margin: 0 8px; opacity: 0.5; }

/* ============================================================
   Author byline + last-updated (E-E-A-T signal)
   ============================================================ */
.page-hero .byline {
  margin: 16px 0 0;
  font-size: 0.88rem;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.page-hero .byline a {
  color: var(--mint);
  text-decoration: none;
  font-weight: 600;
}
.page-hero .byline a:hover { text-decoration: underline; }

/* ============================================================
   FAQ accordion (details/summary)
   ============================================================ */
.calculator-content-card .faq-item {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.calculator-content-card .faq-item:last-of-type {
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.calculator-content-card .faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.04rem;
  line-height: 1.35;
  list-style: none;
  position: relative;
  padding-right: 32px;
  color: var(--ink);
}
.calculator-content-card .faq-item summary::-webkit-details-marker { display: none; }
.calculator-content-card .faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--mint);
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform .2s ease;
  line-height: 1;
}
.calculator-content-card .faq-item[open] summary::after {
  content: "−";
}
.calculator-content-card .faq-item summary:hover { color: var(--mint); }
.calculator-content-card .faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}
.calculator-content-card .faq-item a {
  color: var(--mint);
  text-decoration: none;
  font-weight: 600;
}
.calculator-content-card .faq-item a:hover { text-decoration: underline; }

/* ============================================================
   Cookie consent banner — fixed bottom, dismissible
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 680px;
  margin: 0 auto;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner--visible {
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner p {
  margin: 0;
  flex: 1 1 280px;
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.5;
}
.cookie-banner a {
  color: var(--mint);
  text-decoration: none;
  font-weight: 600;
}
.cookie-banner a:hover { text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  transition: background 0.15s, border-color 0.15s, opacity 0.15s;
}
.cookie-btn:hover { border-color: var(--mint); }
.cookie-accept {
  background: var(--mint);
  color: #00352a;
  border-color: var(--mint);
}
.cookie-accept:hover { opacity: 0.9; }
@media (max-width: 620px) {
  .cookie-banner {
    bottom: 8px;
    left: 8px;
    right: 8px;
    padding: 14px 16px;
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner p {
    flex: 0 0 auto;
  }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; }
}

/* ============================================================
   Homepage hero — image as full backdrop, sized to viewport
   Stops just above the fold so featured strip starts below
   ============================================================ */
.page-hero--home.money-moment-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: min(88vh, 780px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: clamp(60px, 8vw, 110px);
  padding-bottom: clamp(48px, 7vw, 90px);
  padding-left: calc(clamp(16px, 4vw, 42px) + min(74px, 10vw));
  padding-right: clamp(16px, 4vw, 42px);
  background-image:
    linear-gradient(90deg, rgba(2, 28, 28, 0.78) 0%, rgba(2, 28, 28, 0.55) 35%, rgba(2, 28, 28, 0.25) 65%, rgba(2, 28, 28, 0.30) 100%),
    linear-gradient(180deg, rgba(2, 28, 28, 0.25) 0%, rgba(2, 28, 28, 0.20) 55%, rgba(2, 28, 28, 0.65) 100%),
    url('img/hero-home.jpg?v=3');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Hero content sits above the gradient overlay */
.page-hero--home .topline-copy {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 880px;
  margin: 0;
}

.page-hero--home.money-moment-hero .topline-copy h1,
.page-hero--home.money-moment-hero .topline-copy .lede,
.page-hero--home.money-moment-hero .topline-copy .eyebrow,
.page-hero--home.money-moment-hero .topline-copy h1 + p:not(.breadcrumb):not(.eyebrow) {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

/* Text contrast — slight shadow on H1 for legibility against image */
.page-hero--home.money-moment-hero h1 {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.page-hero--home .hero-actions {
  justify-content: flex-start;
}

/* Tablet — image stays as backdrop, hero a bit shorter, stronger left wash */
@media (max-width: 920px) {
  .page-hero--home.money-moment-hero {
    min-height: min(78vh, 620px);
    background-position: 70% center;
    background-image:
      linear-gradient(90deg, rgba(2, 28, 28, 0.85) 0%, rgba(2, 28, 28, 0.65) 40%, rgba(2, 28, 28, 0.35) 70%, rgba(2, 28, 28, 0.45) 100%),
      linear-gradient(180deg, rgba(2, 28, 28, 0.30) 0%, rgba(2, 28, 28, 0.30) 50%, rgba(2, 28, 28, 0.75) 100%),
      url('img/hero-home.jpg?v=3');
  }
}

/* Mobile — switch to smaller image file + heavier overlay for legibility */
@media (max-width: 620px) {
  .page-hero--home.money-moment-hero {
    min-height: 540px;
    padding-left: clamp(16px, 5vw, 28px);
    padding-right: clamp(16px, 5vw, 28px);
    background-position: 65% center;
    background-image:
      linear-gradient(180deg, rgba(2, 28, 28, 0.55) 0%, rgba(2, 28, 28, 0.65) 45%, rgba(2, 28, 28, 0.92) 100%),
      url('img/hero-home-mobile.jpg?v=3');
  }
}

/* Very small phones — slightly shorter hero, content stays tight */
@media (max-width: 380px) {
  .page-hero--home.money-moment-hero {
    min-height: 480px;
  }
}

/* ============================================================
   Primary nav dropdowns
   ============================================================ */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-item .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(240, 237, 229, 0.85);
  text-decoration: none;
  transition: color .15s ease;
}
.nav-item .nav-link:hover,
.nav-item .nav-link:focus-visible {
  color: var(--mint);
}
.nav-chevron {
  font-size: 0.7em;
  opacity: 0.7;
  transition: transform .2s ease;
  display: inline-block;
}

/* Dropdown menu */
.nav-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  padding: 8px;
  background: var(--surface, #0c2424);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .15s ease, transform .15s ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
/* Invisible bridge — covers the visual gap between trigger and menu so the
   mouse stays inside the hover zone while traveling down to dropdown links.
   Without this, :hover is lost in the gap and the menu closes prematurely. */
.nav-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
}

/* Show on hover (desktop) or focus-within (keyboard) */
@media (hover: hover) {
  .nav-item--dropdown:hover > .nav-menu,
  .nav-item--dropdown:focus-within > .nav-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-item--dropdown:hover > .nav-link .nav-chevron,
  .nav-item--dropdown:focus-within > .nav-link .nav-chevron {
    transform: rotate(180deg);
  }
}

/* Click-toggled state for touch devices (set by JS) */
.nav-item--dropdown.open > .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-item--dropdown.open > .nav-link .nav-chevron {
  transform: rotate(180deg);
}

/* Menu items */
.nav-menu-item,
.nav-menu-all {
  display: block;
  padding: 10px 14px;
  color: rgba(240, 237, 229, 0.92);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 8px;
  white-space: nowrap;
  transition: background .12s ease, color .12s ease;
}
.nav-menu-item:hover,
.nav-menu-item:focus-visible {
  background: rgba(86, 217, 158, 0.08);
  color: var(--mint);
}
.nav-menu-all {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--mint);
  font-weight: 600;
  border-radius: 0 0 8px 8px;
}
.nav-menu-all:hover {
  background: rgba(86, 217, 158, 0.08);
}

/* Mobile — collapse dropdowns inline below each trigger */
/* ============================================================
   Hamburger menu button + slide-in nav (tablet/mobile)
   ============================================================ */
/* IMPORTANT: A generic `button { ... !important }` rule earlier in this file
   applies action-button styling (mint pill) to every <button> element. The
   !important declarations below are needed to defeat that cascade for the
   nav-toggle specifically. Without them the hamburger renders as a mint
   green circle on all viewports. */
.nav-toggle {
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  min-height: 44px !important;
  padding: 0 !important;
  margin-left: auto !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 10px !important;
  background: transparent !important;
  color: var(--ink) !important;
  cursor: pointer !important;
  transition: background 0.15s ease, border-color 0.15s ease !important;
  z-index: 101 !important;
  position: relative !important;
  box-shadow: none !important;
  font-size: 14px !important;
  font-weight: 400 !important;
}
.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 2px;
}
.nav-toggle-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 20px;
  align-items: stretch;
}
.nav-toggle-icon > span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transform-origin: center;
  transition: transform 0.22s ease, opacity 0.15s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon > span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon > span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon > span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Backdrop overlay (hidden on desktop, fades in when nav opens) */
.nav-backdrop {
  display: none;
}

/* Tablet zone (901-1100px) — compress nav so it stays inline next to logo.
   Hamburger DOES NOT show at this width — only true narrow widths get it. */
@media (max-width: 1100px) and (min-width: 901px) {
  .site-header {
    gap: 14px;
    padding: 14px clamp(14px, 3vw, 32px) 12px;
  }
  .brand-logo {
    width: min(200px, 22vw);
  }
  .nav {
    flex-wrap: nowrap;
    gap: 10px;
    font-size: 0.80rem;
  }
  .nav-item .nav-link {
    white-space: nowrap;
    gap: 2px;
  }
  .nav-chevron {
    font-size: 0.65em;
  }
  .nav-menu {
    min-width: 220px;
  }
}

/* Hamburger active zone: only at narrow widths (≤900px) — true tablet/mobile */
@media (max-width: 900px) {
  /* CRITICAL: Remove backdrop-filter from header on mobile.
     backdrop-filter creates a containing block for position:fixed descendants,
     which traps the slide-in nav inside the header (~70px tall) instead of
     letting it escape to the viewport. The header is opaque anyway, so the
     blur effect adds nothing on mobile. */
  .site-header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .nav-toggle {
    display: inline-flex !important;
  }

  /* Nav becomes a fixed slide-in panel from the right.
     Closed state uses visibility:hidden + pointer-events:none to ensure
     it cannot intercept touches on iOS Safari, which can incorrectly
     hit-test fixed elements even when visually translated off-screen. */
  .nav {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: min(340px, 86vw) !important;
    max-width: 360px !important;
    background: var(--surface) !important;
    border-left: 1px solid var(--line);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.32, 0.72, 0.27, 1), visibility 0s linear 0.3s;
    visibility: hidden;
    pointer-events: none;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    padding: 80px 20px 32px !important;
    overflow-y: auto;
    z-index: 100;
    font-size: 0.95rem;
    color: var(--ink) !important;
  }
  .nav.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.3s cubic-bezier(0.32, 0.72, 0.27, 1), visibility 0s linear 0s;
  }

  /* Backdrop — sits BELOW the header (z:10) so the nav, which lives inside
     the header's stacking context, can paint and hit-test above it. Earlier
     z:99 put the backdrop above the header context, intercepting every tap
     inside the open menu and closing it without navigating. Page content
     (non-positioned) still gets tinted because it stacks below the backdrop. */
  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 5;
  }
  .nav-backdrop.open {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

  /* Nav items become full-width rows */
  .nav-item {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    position: static;
  }
  .nav-item .nav-link {
    width: 100%;
    padding: 16px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    justify-content: space-between;
    color: var(--ink) !important;
    font-weight: 600;
    font-size: 1rem;
  }
  .nav-item .nav-link:active {
    background: rgba(91, 232, 156, 0.06);
  }
  .nav-chevron {
    font-size: 0.8em;
    margin-left: auto;
    opacity: 1 !important;
    color: var(--mint);
  }

  /* Dropdowns are COLLAPSED by default on mobile. Tapping a section header
     (.nav-link) toggles its .nav-item--dropdown.open class via cookies.js,
     which reveals only that section's sub-items. One section open at a time
     (closeAllDropdowns enforces accordion behavior). */
  .nav-menu {
    position: static;
    min-width: 0;
    width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 4px 0 12px 14px;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    flex-direction: column;
    gap: 0;
    display: none !important;
  }
  .nav-item--dropdown.open > .nav-menu {
    display: flex !important;
  }
  .nav-menu::before {
    display: none;
  }
  /* Chevron is visible on mobile and rotates 180° when section is open. */
  .nav-chevron {
    display: inline-block !important;
    transition: transform 0.2s ease;
  }
  .nav-item--dropdown.open > .nav-link .nav-chevron {
    transform: rotate(180deg);
  }
  .nav-menu-item,
  .nav-menu-all {
    padding: 12px 14px;
    font-size: 0.95rem;
    border-radius: 6px;
    color: var(--ink) !important;
  }
  .nav-menu-all {
    color: var(--mint) !important;
  }
  .nav-menu-item:active {
    background: rgba(91, 232, 156, 0.08);
  }

  /* Disable hover-to-open at hamburger widths (rely on click-toggle only) */
  .nav-item--dropdown:hover > .nav-menu,
  .nav-item--dropdown:focus-within > .nav-menu {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-item--dropdown:not(.open):hover > .nav-menu,
  .nav-item--dropdown:not(.open):focus-within > .nav-menu {
    display: none;
  }

  /* Hide the header bottom border when nav is open (avoid double line) */
  body.nav-open {
    overflow: hidden;
  }
}

/* Homepage H1 accent — "Made Simple." in mint green */
.page-hero--home h1 .h1-accent {
  color: var(--mint);
}

/* ============================================================
   Footer newsletter signup — quiet on-brand capture
   ============================================================ */
.footer-newsletter {
  width: 100%;
  display: grid;
  gap: 16px;
  padding: 24px 0 28px;
  margin: 0 0 28px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr;
  text-align: center;
  align-items: center;
}

@media (min-width: 760px) {
  .footer-newsletter {
    grid-template-columns: 1fr auto;
    text-align: left;
    gap: 32px;
  }
}

.footer-newsletter-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-newsletter-heading {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.footer-newsletter-sub {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-newsletter-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-newsletter-form input[type="email"] {
  flex: 1 1 240px;
  min-width: 200px;
  max-width: 320px;
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.92rem;
  font-family: inherit;
  transition: border-color .15s ease;
}

.footer-newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--mint);
}

.footer-newsletter-form button {
  padding: 10px 22px;
  background: var(--mint);
  color: #002329;
  border: none;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: opacity .15s ease;
  white-space: nowrap;
}

.footer-newsletter-form button:hover { opacity: 0.9; }
.footer-newsletter-form button:disabled { opacity: 0.6; cursor: not-allowed; }

.footer-newsletter-status {
  margin: 0;
  grid-column: 1 / -1;
  min-height: 1.4em;
  font-size: 0.85rem;
  text-align: center;
  color: var(--muted);
}

.footer-newsletter-status.is-success { color: var(--mint); }
.footer-newsletter-status.is-error { color: #ff8e8e; }

/* ============================================================
   Money moments grid — distinct from Editor's Picks above
   Square photos + inverted (light) section background
   ============================================================ */
.moment-card .card-photo {
  aspect-ratio: 1 / 1;
}

.money-moments-section {
  position: relative;
  background: #F4F2EB;
  color: #002329;
  padding: clamp(60px, 7vw, 96px) clamp(20px, 4vw, 48px) clamp(60px, 7vw, 96px);
  margin-top: clamp(40px, 6vw, 80px);
  margin-bottom: clamp(40px, 6vw, 80px);
  border-radius: clamp(20px, 3vw, 32px);
}

/* Section heading on the cream band gets dark text */
.money-moments-section .section-heading h2,
.money-moments-section h2 {
  color: #002329;
}
.money-moments-section .section-heading .eyebrow,
.money-moments-section .eyebrow {
  color: #1F8B5C;
}
.money-moments-section .section-heading p:not(.eyebrow),
.money-moments-section .lede {
  color: #4A5856;
}

/* Cards stay dark — they pop nicely against the cream band */

/* ============================================================
   Newsletter band — prominent pre-footer signup
   Full-bleed, mint-tinted accent so people can't miss it
   ============================================================ */
.newsletter-band {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: clamp(40px, 6vw, 80px);
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 64px);
  background: linear-gradient(180deg, var(--surface) 0%, var(--paper) 100%);
  border-top: 1px solid rgba(91, 232, 156, 0.15);
  border-bottom: 1px solid rgba(91, 232, 156, 0.15);
}

.newsletter-band-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.newsletter-band-eyebrow {
  margin: 0;
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(91, 232, 156, 0.14);
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newsletter-band h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.newsletter-band-lead {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
}

/* Accessibility utility: visually hidden but kept in DOM for screen readers */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.newsletter-band-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 540px;
}

.newsletter-band-form input[type="email"] {
  flex: 1 1 260px;
  min-width: 240px;
  padding: 14px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color .15s ease;
}

.newsletter-band-form input[type="email"]:focus {
  outline: none;
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(91, 232, 156, 0.18);
}

.newsletter-band-form button {
  padding: 14px 30px;
  background: var(--mint);
  color: #002329;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: opacity .15s ease, transform .12s ease;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(91, 232, 156, 0.20);
}

.newsletter-band-form button:hover { opacity: 0.92; transform: translateY(-1px); }
.newsletter-band-form button:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.newsletter-band-status {
  margin: 4px 0 0;
  min-height: 1.4em;
  font-size: 0.92rem;
  color: var(--muted);
}

.newsletter-band-status.is-success { color: var(--mint); font-weight: 600; }
.newsletter-band-status.is-error { color: #ff8e8e; }


/* Money Moments — 3-card featured variant (homepage) */
.money-moment-grid--featured {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 880px) {
  .money-moment-grid--featured { grid-template-columns: 1fr; max-width: 540px; }
}

/* "More life stages" link strip under the featured cards */
.moment-more {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 14px;
  margin-top: clamp(28px, 3.5vw, 44px);
  padding: 0 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.moment-more-label {
  color: #4A5856;
  font-weight: 600;
  margin-right: 4px;
}
.moment-more a {
  color: #002329;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.moment-more a:hover,
.moment-more a:focus-visible {
  color: #1F8B5C;
  border-bottom-color: #1F8B5C;
}
.moment-more-sep {
  color: #8FA09A;
  opacity: 0.7;
  user-select: none;
}
