:root {
  --content-navy: #0d2038;
  --content-red: #d52b1e;
  --content-cream: #f7f3ea;
  --content-gold: #d8ae58;
  --content-ink: #182333;
  --content-muted: #5e6875;
}

body.content-page {
  background: var(--content-cream);
  color: var(--content-ink);
}

.content-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 70px;
  padding: 0.75rem max(1rem, calc((100vw - 1180px) / 2));
  background: rgba(13, 32, 56, 0.97);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.16);
}

.content-brand {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.content-brand span {
  display: inline-grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: var(--content-red);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.content-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.content-nav a {
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  color: #e7edf5;
  font-size: 0.85rem;
  text-decoration: none;
}

.content-nav a:hover,
.content-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.article-hero {
  padding: clamp(4.5rem, 8vw, 8rem) 1rem clamp(3rem, 6vw, 5.5rem);
  background:
    linear-gradient(125deg, rgba(8, 25, 45, 0.98), rgba(18, 54, 82, 0.92)),
    url("https://images.unsplash.com/photo-1586801121213-19b73a545d29?auto=format&fit=crop&w=1800&q=78") center/cover;
  color: #fff;
}

.article-hero-inner,
.article-layout,
.related-inner,
.content-contact-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 1rem;
  color: #f3ca7a;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.35rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.article-deck {
  max-width: 790px;
  margin: 1.5rem 0 0;
  color: #e4edf7;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.verified-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.25rem;
  margin-top: 1.75rem;
  color: #c8d5e3;
  font-size: 0.9rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3rem, 6vw, 6rem) 1rem;
}

.article-body {
  min-width: 0;
  font-size: 1.05rem;
  line-height: 1.78;
}

.answer-box,
.source-box,
.warning-box,
.conversion-box {
  margin: 0 0 2rem;
  padding: 1.4rem 1.5rem;
  border-radius: 18px;
}

.answer-box {
  border-left: 5px solid var(--content-red);
  background: #fff;
  box-shadow: 0 16px 45px rgba(17, 35, 55, 0.08);
}

.answer-box p,
.warning-box p,
.source-box p {
  margin: 0;
}

.warning-box {
  border: 1px solid #ead4a5;
  background: #fff8e8;
}

.source-box {
  border: 1px solid #d8e1ea;
  background: #f4f8fb;
  font-size: 0.94rem;
}

.article-body h2 {
  margin: 3.2rem 0 1rem;
  color: var(--content-navy);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.article-body h3 {
  margin: 2rem 0 0.7rem;
  color: var(--content-navy);
  font-size: 1.25rem;
}

.article-body a {
  color: #9f2219;
  text-underline-offset: 3px;
}

.article-body table {
  width: 100%;
  margin: 1.5rem 0 2rem;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(17, 35, 55, 0.07);
  font-size: 0.92rem;
}

.article-body th,
.article-body td {
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid #e6ebf0;
  text-align: left;
  vertical-align: top;
}

.article-body th {
  background: var(--content-navy);
  color: #fff;
}

.article-body details {
  margin: 0.8rem 0;
  padding: 1rem 1.1rem;
  border: 1px solid #dfe5eb;
  border-radius: 12px;
  background: #fff;
}

.article-body summary {
  cursor: pointer;
  color: var(--content-navy);
  font-weight: 750;
}

.article-aside {
  align-self: start;
  position: sticky;
  top: 94px;
}

.aside-card {
  padding: 1.35rem;
  border-radius: 18px;
  background: var(--content-navy);
  color: #e9f0f8;
  box-shadow: 0 18px 48px rgba(17, 35, 55, 0.16);
}

.aside-card h2 {
  margin: 0 0 0.7rem;
  color: #fff;
  font-size: 1.25rem;
}

.aside-card p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.6;
}

.aside-card .btn {
  width: 100%;
  text-align: center;
}

.related-content {
  padding: 4rem 1rem;
  background: #fff;
}

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

.related-card {
  display: block;
  padding: 1.3rem;
  border: 1px solid #e0e6ec;
  border-radius: 16px;
  color: var(--content-ink);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(17, 35, 55, 0.1);
}

.related-card strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--content-navy);
}

.content-contact {
  padding: 5rem 1rem;
  background: #e9eef2;
}

.content-contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 3rem;
  align-items: start;
}

.content-contact-copy h2 {
  margin-top: 0;
  color: var(--content-navy);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.content-breadcrumb {
  margin-bottom: 1rem;
  color: #c4d0dd;
  font-size: 0.9rem;
}

.content-breadcrumb a {
  color: #fff;
}

@media (max-width: 900px) {
  .article-layout,
  .content-contact-inner {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .content-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .content-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .content-nav a {
    white-space: nowrap;
  }

  .article-body table {
    display: block;
    overflow-x: auto;
  }
}

/* =========================================================
   Premium homepage — scoped to the Portuguese decision hub
   ========================================================= */

.home-premium {
  --home-midnight: #0b2135;
  --home-river: #1c4d69;
  --home-red: #d63b32;
  --home-gold: #d6a84e;
  --home-paper: #f3f0e7;
  --home-white: #fcfbf8;
  --home-ink: #172635;
  --home-muted: #586773;
  --font-serif: "Newsreader", Georgia, serif;
  --font-sans: "Manrope", ui-sans-serif, system-ui, sans-serif;
  background: var(--home-paper);
}

.home-premium .home-header {
  min-height: 76px;
  padding-block: 0.8rem;
  background: rgba(11, 33, 53, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 36px rgba(4, 18, 30, 0.18);
}

.home-premium .content-brand {
  flex: 0 0 auto;
  color: #fff;
  font-weight: 500;
}

.home-premium .content-brand b {
  margin-right: 0.25em;
  color: #fff;
  font-weight: 800;
}

.home-premium .content-brand span {
  background: var(--home-red);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.06);
}

.home-premium .home-primary-nav {
  display: flex;
  gap: 1.4rem;
  margin-right: 1rem;
  margin-left: auto;
}

.home-premium .home-primary-nav a {
  position: relative;
  color: #dbe5eb;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.home-premium .home-primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  background: var(--home-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.home-premium .content-nav {
  flex: 0 0 auto;
}

.home-premium .content-nav a {
  font-weight: 600;
}

.home-premium .content-nav a[aria-current="page"] {
  background: var(--home-white);
  color: var(--home-midnight);
}

.home-premium .home-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 14% 15%, rgba(38, 87, 114, 0.48), transparent 34%),
    linear-gradient(135deg, #081b2c 0%, var(--home-midnight) 55%, #123b53 100%);
}

.home-premium .home-hero::before {
  content: "";
  position: absolute;
  top: -10rem;
  left: -13rem;
  width: 31rem;
  height: 31rem;
  border: 1px solid rgba(214, 168, 78, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(255, 255, 255, 0.018), 0 0 0 10rem rgba(255, 255, 255, 0.012);
  pointer-events: none;
}

.home-premium .home-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
  gap: clamp(2.5rem, 5vw, 5.75rem);
  align-items: center;
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: clamp(4.25rem, 8vw, 7.5rem) 1.25rem clamp(5.6rem, 9vw, 8.5rem);
}

.home-premium .home-hero-copy,
.home-premium .home-hero-visual {
  animation: home-rise 680ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-premium .home-hero-visual {
  animation-delay: 110ms;
}

.home-premium .home-hero .eyebrow,
.home-premium .compass-intro .eyebrow {
  margin-bottom: 1.15rem;
  color: #edcb84;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
}

.home-premium .home-hero h1 {
  max-width: 10ch;
  margin: 0;
  color: #fff;
  font-size: clamp(3.7rem, 6.7vw, 6.9rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.home-premium .home-hero h1 span {
  display: block;
  color: #f2d89e;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.home-premium .home-hero-deck {
  max-width: 650px;
  margin: 1.75rem 0 0;
  color: #d7e2e9;
  font-size: clamp(1.04rem, 1.5vw, 1.24rem);
  line-height: 1.65;
}

.home-premium .home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.home-premium .home-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0.88rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.home-premium .home-button-primary {
  color: #fff;
  background: var(--home-red);
  box-shadow: 0 12px 34px rgba(214, 59, 50, 0.24);
}

.home-premium .home-button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.05);
}

.home-premium .home-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.15rem;
  margin-top: 1.45rem;
  color: #adbec9;
  font-size: 0.74rem;
}

.home-premium .home-proof span::before {
  content: "✓";
  margin-right: 0.35rem;
  color: var(--home-gold);
}

.home-premium .home-hero-visual {
  position: relative;
  min-height: 570px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 180px 180px 20px 20px;
  background: var(--home-river);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.3);
}

.home-premium .home-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
  object-position: 50% center;
}

.home-premium .home-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 23, 38, 0.02) 42%, rgba(4, 18, 30, 0.82) 100%);
  pointer-events: none;
}

.home-premium .home-hero-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 1.4rem;
  bottom: 1.2rem;
  left: 1.4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #fff;
  font-size: 0.7rem;
}

.home-premium .home-hero-visual figcaption a {
  color: #dce7ec;
}

.home-premium .home-hero-note {
  position: absolute;
  z-index: 3;
  top: 51%;
  left: 1rem;
  width: min(286px, 72%);
  padding: 1.15rem 1.2rem;
  color: var(--home-midnight);
  border-left: 4px solid var(--home-red);
  background: var(--home-white);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.home-premium .home-hero-note strong,
.home-premium .home-hero-note span {
  display: block;
}

.home-premium .home-hero-note strong {
  color: var(--home-midnight);
  font-family: var(--font-serif);
  font-size: 1.08rem;
}

.home-premium .home-hero-note span {
  margin-top: 0.35rem;
  color: #53616c;
  font-size: 0.76rem;
  line-height: 1.5;
}

.home-premium .investment-compass {
  position: relative;
  z-index: 4;
  margin-top: -3.8rem;
  padding: 0 1rem 4rem;
}

.home-premium .investment-compass-inner {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 1.7rem;
  background: var(--home-white);
  box-shadow: 0 28px 70px rgba(17, 35, 55, 0.14);
}

.home-premium .compass-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.45rem 0.55rem 1.45rem;
}

.home-premium .compass-intro .eyebrow {
  flex: 0 0 220px;
  margin: 0;
  color: #9c2e28;
}

.home-premium .compass-intro h2 {
  max-width: 690px;
  margin: 0;
  color: var(--home-midnight);
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.home-premium .compass-routes {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #dcd8ce;
}

.home-premium .compass-routes::before {
  content: "";
  position: absolute;
  top: -4px;
  right: 0;
  left: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--home-red) 0 33%, #f5f2e9 33% 66%, var(--home-river) 66%);
  transform: scaleY(0.22);
}

.home-premium .compass-route {
  min-width: 0;
  padding: 1.4rem 1rem;
  border-right: 1px solid #e4e0d7;
  color: var(--home-midnight);
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.home-premium .compass-route:last-child {
  border-right: 0;
}

.home-premium .compass-route span,
.home-premium .compass-route strong,
.home-premium .compass-route b,
.home-premium .compass-route small {
  display: block;
}

.home-premium .compass-route span {
  color: #6d7881;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-premium .compass-route strong {
  margin-top: 0.7rem;
  color: var(--home-midnight);
  font-family: var(--font-serif);
  font-size: 1.28rem;
  line-height: 1.15;
}

.home-premium .compass-route b {
  margin-top: 0.25rem;
  color: var(--home-red);
  font-size: 1.04rem;
}

.home-premium .compass-route small {
  margin-top: 0.65rem;
  color: #5e6b75;
  line-height: 1.5;
}

.home-premium .home-evidence {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 1px;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 3.5rem;
  overflow: hidden;
  border: 1px solid #d9d5ca;
  background: #d9d5ca;
}

.home-premium .home-evidence-item {
  padding: 1.05rem 1.25rem;
  background: #f9f7f1;
  font-size: 0.81rem;
  line-height: 1.6;
}

.home-premium .home-evidence-item strong {
  color: var(--home-midnight);
}

.home-premium .home-evidence-rule {
  background: #edf2f4;
}

.home-premium .legacy-guide {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 3rem;
}

.home-premium .legacy-guide > article {
  display: grid;
  grid-template-columns: minmax(0, 780px) 270px;
  column-gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.home-premium .legacy-guide .toc {
  grid-column: 2;
  grid-row: 1;
  position: sticky;
  top: 96px;
  align-self: start;
  margin: 0;
  padding: 1.3rem 1.25rem;
  border: 0;
  border-top: 4px solid var(--home-gold);
  border-radius: 0;
  background: #e8ecec;
}

.home-premium .legacy-guide .toc h2 {
  color: var(--home-midnight);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-premium .legacy-guide .toc ol {
  columns: 1;
  padding-left: 1.05rem;
  font-size: 0.78rem;
}

.home-premium .legacy-guide .toc ol li {
  margin: 0.44rem 0;
}

.home-premium .guide-reading {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}

.home-premium .guide-reading .block {
  max-width: 760px;
  padding: 4.75rem 0 3.75rem;
  border-color: #d8d3c7;
  scroll-margin-top: 100px;
}

.home-premium .guide-reading .block:first-child {
  padding-top: 0;
}

.home-premium .guide-reading .block h2 {
  color: var(--home-midnight);
  font-size: clamp(1.9rem, 3.4vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.home-premium .guide-reading .block > p {
  max-width: 72ch;
}

.home-premium .guide-reading .lead {
  color: var(--home-muted);
  font-size: 1.04rem;
}

.home-premium .guide-reading .card,
.home-premium .guide-reading .stat,
.home-premium .guide-reading .faq-item,
.home-premium .related-card {
  border-color: #dcd8cf;
  border-radius: 8px;
  box-shadow: none;
}

.home-premium .guide-reading .card-highlight {
  border-color: var(--home-gold);
  background: #fffaf0;
}

.home-premium .guide-reading .stat {
  border-left-color: var(--home-river);
  background: var(--home-white);
}

.home-premium .guide-reading .stat-value,
.home-premium .guide-reading .card h3 {
  color: var(--home-river);
}

.home-premium .guide-reading .tax-table th,
.home-premium .guide-reading .compare-table th {
  background: var(--home-midnight);
}

.home-premium .guide-reading .inline-img {
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(17, 35, 55, 0.12);
}

.home-premium .guide-reading .inline-img figcaption {
  font-size: 0.75rem;
}

.home-premium .guide-reading .inline-img figcaption a {
  color: #fff;
}

.home-premium .guide-reading .expert-quote {
  border-radius: 8px;
  border-left-color: var(--home-gold);
  background: var(--home-white);
}

.home-premium .related-content {
  padding-block: clamp(4rem, 7vw, 6rem);
  background: var(--home-white);
}

.home-premium .related-inner h2 {
  color: var(--home-midnight);
  font-size: clamp(2rem, 4vw, 3rem);
}

.home-premium .related-card {
  padding: 1.45rem;
}

.home-premium .content-contact {
  background: #dfe7e8;
}

.home-premium .content-contact-inner {
  width: min(1120px, 100%);
}

.home-premium .content-contact-copy h2 {
  max-width: 8ch;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  letter-spacing: -0.045em;
}

.home-premium .contact-form {
  border-radius: 10px;
  box-shadow: 0 24px 55px rgba(17, 35, 55, 0.12);
}

.home-premium .contact-form .btn-primary {
  color: #fff;
  background: var(--home-red);
}

.home-premium .site-footer {
  background: #071827;
}

.home-premium .wa-fab {
  display: flex;
  width: auto;
  min-width: 142px;
  height: 48px;
  gap: 0.5rem;
  padding: 0 1rem;
  border-radius: 999px;
  color: #073e23;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.home-premium .wa-icon {
  width: 21px;
  height: 21px;
  color: #fff;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-premium :focus-visible {
  outline: 3px solid var(--home-gold);
  outline-offset: 4px;
}

@keyframes home-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (hover: hover) {
  .home-premium .home-primary-nav a:hover::after {
    transform: scaleX(1);
  }

  .home-premium .home-button:hover,
  .home-premium .compass-route:hover {
    transform: translateY(-3px);
  }

  .home-premium .compass-route:hover {
    background: #f5f1e8;
  }
}

@media (max-width: 980px) {
  .home-premium .home-primary-nav {
    display: none;
  }

  .home-premium .home-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  }

  .home-premium .home-hero h1 {
    font-size: clamp(3.3rem, 8vw, 5.2rem);
  }

  .home-premium .compass-routes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-premium .compass-route:nth-child(2) {
    border-right: 0;
  }

  .home-premium .legacy-guide > article {
    display: block;
  }

  .home-premium .legacy-guide .toc {
    position: static;
    margin-bottom: 3rem;
  }

  .home-premium .legacy-guide .toc ol {
    columns: 2;
    column-gap: 2rem;
  }
}

@media (max-width: 680px) {
  .home-premium .content-header {
    flex-direction: row;
    align-items: center;
    min-height: 64px;
    padding: 0.65rem 0.8rem;
  }

  .home-premium .content-brand {
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .home-premium .content-brand b {
    display: none;
  }

  .home-premium .content-brand span {
    width: 1.85rem;
    height: 1.85rem;
    margin-right: 0.4rem;
    font-size: 0.68rem;
  }

  .home-premium .content-nav {
    width: auto;
    margin-left: auto;
    padding: 0;
    overflow: visible;
    gap: 0;
  }

  .home-premium .content-nav a {
    padding: 0.42rem 0.44rem;
    font-size: 0.73rem;
    white-space: nowrap;
  }

  .home-premium .home-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 2.75rem;
    padding: 3.5rem 1rem 5.7rem;
  }

  .home-premium .home-hero h1 {
    max-width: 9ch;
    font-size: clamp(3.15rem, 16.5vw, 4.4rem);
  }

  .home-premium .home-hero-deck {
    font-size: 1rem;
  }

  .home-premium .home-actions {
    display: grid;
  }

  .home-premium .home-button {
    width: 100%;
  }

  .home-premium .home-proof {
    display: grid;
  }

  .home-premium .home-hero-visual {
    width: 100%;
    min-height: 390px;
    border-radius: 120px 120px 14px 14px;
  }

  .home-premium .home-hero-visual img {
    min-height: 390px;
  }

  .home-premium .home-hero-note {
    top: auto;
    bottom: 3.1rem;
    left: 0.8rem;
  }

  .home-premium .investment-compass {
    margin-top: -2.2rem;
    padding-right: 0.7rem;
    padding-left: 0.7rem;
  }

  .home-premium .investment-compass-inner {
    padding: 1rem 0.5rem 0.5rem;
  }

  .home-premium .compass-intro {
    display: block;
    padding: 0.45rem 0.6rem 1rem;
  }

  .home-premium .compass-intro .eyebrow {
    margin-bottom: 0.7rem;
  }

  .home-premium .compass-routes {
    display: flex;
    gap: 0.65rem;
    padding: 0.7rem 0.6rem 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .home-premium .compass-route {
    flex: 0 0 78%;
    border: 1px solid #dedad1;
    scroll-snap-align: start;
  }

  .home-premium .home-evidence {
    grid-template-columns: 1fr;
    margin-bottom: 2.8rem;
  }

  .home-premium .legacy-guide .toc ol {
    columns: 1;
  }

  .home-premium .guide-reading .block {
    padding: 3.5rem 0 2.8rem;
  }

  .home-premium .guide-reading .cards {
    grid-template-columns: 1fr;
  }

  .home-premium .guide-reading .tax-table,
  .home-premium .guide-reading .compare-table {
    display: block;
    overflow-x: auto;
    background-image: linear-gradient(90deg, rgba(214, 168, 78, 0.16), transparent 34px);
  }

  .home-premium .content-contact-copy h2 {
    max-width: 10ch;
  }

  .home-premium .wa-fab {
    width: 48px;
    min-width: 48px;
    height: 48px;
    padding: 0;
  }

  .home-premium .wa-fab span {
    display: none;
  }

}

@media (prefers-reduced-motion: reduce) {
  .home-premium *,
  .home-premium *::before,
  .home-premium *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
