@charset "UTF-8";
/* =========================================================
   IMMIX TAXATION OF BENEFITS V1
   Locked Immix style rebuild
   Page-specific CSS by Ken Buis, Fervid Solutions

   Foundation:
   - Inter body/UI
   - Noto Serif display H1
   - 17px minimum readable text
   - Content visible first
   - No fragile hidden primary content
   - Overlap hero pattern
========================================================= */

/* IMMIX-TAXATION-BENEFITS-V1-ACTIVE */


/* =========================================================
   1. PAGE FOUNDATION
========================================================= */

.ixtax-page {
  --ixtax-page: #f7faf6;
  --ixtax-white: #ffffff;
  --ixtax-navy-950: #071f3d;
  --ixtax-navy-900: #092a50;
  --ixtax-navy-800: #12345d;
  --ixtax-navy-700: #16487a;
  --ixtax-green-700: #568f32;
  --ixtax-green-650: #5f9938;
  --ixtax-green-600: #69a63d;
  --ixtax-ink: #23374d;
  --ixtax-muted: #556d83;
  --ixtax-line: rgba(18, 52, 93, 0.09);
  --ixtax-shadow: 0 24px 58px rgba(13, 30, 52, 0.08), 0 8px 22px rgba(13, 30, 52, 0.035);
  --ixtax-shadow-strong: 0 34px 76px rgba(13, 30, 52, 0.13), 0 10px 28px rgba(13, 30, 52, 0.045);
  --ix-font-sans: Inter, Arial, sans-serif;
  --ix-font-serif: "Noto Serif", Georgia, serif;

  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(105, 166, 61, 0.06), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(18, 52, 93, 0.05), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, var(--ixtax-page) 100%);
  color: var(--ixtax-ink);
  font-family: var(--ix-font-sans);
}

.ixtax-page *,
.ixtax-page *::before,
.ixtax-page *::after {
  box-sizing: border-box;
}

.ixtax-wrap {
  width: min(100% - var(--ix-gutter, clamp(22px, 4vw, 72px)), 1240px);
  margin-inline: auto;
}

.ixtax-page p,
.ixtax-page li,
.ixtax-page a,
.ixtax-page span,
.ixtax-page summary,
.ixtax-page strong,
.ixtax-page small {
  font-family: var(--ix-font-sans);
  font-size: 17px;
}

.ixtax-page p,
.ixtax-page li {
  color: #425d76;
  line-height: 1.78;
}

.ixtax-page a {
  transition: color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.ixtax-scrollmeta[hidden] {
  display: none !important;
}

.ixtax-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 0.85rem;
  color: var(--ixtax-green-650);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ixtax-kicker::after {
  content: "";
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: rgba(105, 166, 61, 0.72);
}

.ixtax-btn {
  min-height: 52px;
  padding: 0 1.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
}

.ixtax-btn--primary {
  background: linear-gradient(180deg, #70ab43 0%, var(--ixtax-green-700) 100%);
  color: #ffffff !important;
  box-shadow: 0 16px 34px rgba(105, 166, 61, 0.24);
}

.ixtax-btn--secondary {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ixtax-navy-800) !important;
  border: 1px solid rgba(18, 52, 93, 0.14);
  box-shadow: 0 10px 22px rgba(13, 30, 52, 0.06);
}

.ixtax-btn:hover,
.ixtax-btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}


/* =========================================================
   2. HERO - OVERLAP PATTERN
========================================================= */

.ixtax-hero {
  position: relative;
  width: 100%;
  min-height: clamp(690px, 58vw, 900px);
  margin: 0;
  padding: clamp(52px, 5vw, 86px) 0 clamp(76px, 6vw, 112px);
  overflow: hidden;
  isolation: isolate;
  background: #eef3ef;
}

.ixtax-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  left: 50%;
  width: 100vw;
  min-width: 100vw;
  transform: translateX(-50%);
  overflow: hidden;
  pointer-events: none;
}

.ixtax-hero__media img {
  width: 100vw;
  min-width: 100vw;
  max-width: none;
  height: 100%;
  min-height: clamp(690px, 58vw, 900px);
  display: block;
  object-fit: cover;
  object-position: center center;
}

.ixtax-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(248, 251, 247, 0.995) 0%,
      rgba(248, 251, 247, 0.985) 26%,
      rgba(248, 251, 247, 0.92) 44%,
      rgba(248, 251, 247, 0.56) 70%,
      rgba(248, 251, 247, 0.10) 100%
    );
  pointer-events: none;
}

.ixtax-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(
      180deg,
      rgba(248, 251, 247, 0.14) 0%,
      rgba(248, 251, 247, 0.00) 30%,
      rgba(248, 251, 247, 0.06) 76%,
      rgba(248, 251, 247, 0.22) 100%
    );
  pointer-events: none;
}

.ixtax-hero__inner {
  position: relative;
  z-index: 5;
  width: min(100% - var(--ix-gutter, clamp(22px, 4vw, 72px)), 1360px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(680px, 0.92fr) minmax(380px, 0.48fr);
  gap: 0;
  align-items: center;
  justify-content: center;
}

.ixtax-hero__content {
  position: relative;
  z-index: 2;
  min-height: clamp(500px, 39vw, 660px);
  padding:
    clamp(3rem, 4.5vw, 5rem)
    clamp(8rem, 10vw, 11rem)
    clamp(3rem, 4.5vw, 5rem)
    clamp(3rem, 5vw, 5.4rem);
  border-radius: 38px;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.99) 0%,
      rgba(255, 255, 255, 0.985) 68%,
      rgba(255, 255, 255, 0.91) 100%
    );
  border: 1px solid rgba(18, 58, 102, 0.08);
  box-shadow: var(--ixtax-shadow-strong);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ixtax-hero__content h1 {
  max-width: 8.3ch;
  margin: 0 0 1rem;
  color: var(--ixtax-navy-800);
  font-family: var(--ix-font-serif);
  font-size: clamp(58px, 6.2vw, 96px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.ixtax-hero__lead {
  max-width: 43rem;
  margin: 0 0 1rem;
  color: #405973;
  font-size: clamp(18px, 1.35vw, 23px) !important;
  font-weight: 650;
  line-height: 1.5 !important;
}

.ixtax-hero__content p:not(.ixtax-kicker):not(.ixtax-hero__lead) {
  max-width: 42rem;
  margin: 0;
  color: #536d84;
  font-size: 17px;
  font-weight: 550;
  line-height: 1.76;
}

.ixtax-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.ixtax-hero__panel {
  position: relative;
  z-index: 5;
  width: min(100%, 520px);
  max-width: 520px;
  min-height: clamp(455px, 33vw, 610px);
  justify-self: start;
  align-self: center;
  transform: translateX(clamp(-150px, -8.5vw, -94px));
  padding: clamp(1.45rem, 2.2vw, 2rem);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(105, 166, 61, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(22, 72, 122, 0.99) 0%, rgba(10, 39, 70, 0.995) 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 34px 78px rgba(7, 31, 61, 0.30),
    0 12px 28px rgba(7, 31, 61, 0.16);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.ixtax-hero__panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(5, 21, 38, 0.14) 100%);
}

.ixtax-hero__graphic {
  position: relative;
  z-index: 2;
  margin: 0 0 clamp(1.15rem, 1.6vw, 1.55rem);
  padding: 0.7rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 38px rgba(4, 18, 34, 0.18);
}

.ixtax-hero__graphic img {
  width: 100%;
  height: clamp(142px, 13vw, 215px);
  display: block;
  object-fit: contain;
  object-position: center center;
  border-radius: 18px;
}

.ixtax-hero__panel-kicker {
  position: relative;
  z-index: 2;
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ixtax-hero__panel h2 {
  position: relative;
  z-index: 2;
  max-width: 10ch;
  margin: 0 0 0.85rem;
  color: #ffffff;
  font-family: var(--ix-font-sans);
  font-size: clamp(34px, 2.7vw, 48px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.ixtax-hero__panel p:not(.ixtax-hero__panel-kicker) {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  font-weight: 550;
  line-height: 1.68;
}


/* =========================================================
   3. INTRO
========================================================= */

.ixtax-intro,
.ixtax-map,
.ixtax-advisory,
.ixtax-official,
.ixtax-faq,
.ixtax-cta {
  position: relative;
  overflow: hidden;
}

.ixtax-intro {
  padding: clamp(72px, 7vw, 110px) 0 clamp(56px, 6vw, 86px);
  background:
    radial-gradient(circle at 12% 16%, rgba(105, 166, 61, 0.065), transparent 30%),
    radial-gradient(circle at 86% 20%, rgba(18, 58, 102, 0.04), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fbf7 100%);
}

.ixtax-intro__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: clamp(1.6rem, 4vw, 3.4rem);
  align-items: stretch;
  padding: clamp(1.7rem, 3vw, 2.6rem);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(249,251,248,0.98) 100%);
  border: 1px solid var(--ixtax-line);
  box-shadow: var(--ixtax-shadow);
}

.ixtax-intro__copy h2,
.ixtax-section-head h2,
.ixtax-advisory__content h2,
.ixtax-official__copy h2,
.ixtax-faq__intro h2,
.ixtax-cta__card h2 {
  margin: 0 0 0.85rem;
  color: var(--ixtax-navy-800);
  font-family: var(--ix-font-sans);
  font-size: clamp(34px, 3.4vw, 58px);
  font-weight: 800;
  line-height: 0.99;
  letter-spacing: -0.045em;
}

.ixtax-intro__copy p {
  max-width: 72ch;
  margin: 0 0 0.95rem;
}

.ixtax-intro__copy p:last-child {
  margin-bottom: 0;
}

.ixtax-intro__note {
  padding: 1.35rem 1.25rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(105, 166, 61, 0.12), transparent 34%),
    linear-gradient(180deg, #12345d 0%, #092a50 100%);
  color: #ffffff;
  box-shadow: 0 20px 44px rgba(7, 31, 61, 0.16);
}

.ixtax-intro__note span {
  display: inline-flex;
  margin: 0 0 0.85rem;
  color: #a9d68a;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ixtax-intro__note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}


/* =========================================================
   4. BENEFIT MAP
========================================================= */

.ixtax-map {
  padding: clamp(56px, 6vw, 90px) 0 clamp(74px, 7vw, 112px);
  background:
    radial-gradient(circle at 10% 80%, rgba(105, 166, 61, 0.07), transparent 30%),
    linear-gradient(180deg, #f8fbf7 0%, #ffffff 100%);
}

.ixtax-section-head {
  max-width: 880px;
  margin: 0 auto clamp(2rem, 4vw, 3.4rem);
  text-align: center;
}

.ixtax-section-head .ixtax-kicker {
  justify-content: center;
}

.ixtax-section-head .ixtax-kicker::after {
  display: none;
}

.ixtax-section-head h2 {
  max-width: 15ch;
  margin-inline: auto;
}

.ixtax-section-head p {
  max-width: 68ch;
  margin: 0 auto;
}

.ixtax-group-stack {
  display: grid;
  gap: clamp(1.4rem, 3vw, 2.2rem);
}

.ixtax-treatment {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: clamp(1.3rem, 3vw, 2.4rem);
  align-items: stretch;
  padding: clamp(1.35rem, 2.5vw, 2rem);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(249,251,248,0.98) 100%);
  border: 1px solid var(--ixtax-line);
  box-shadow: var(--ixtax-shadow);
}

.ixtax-treatment__side {
  position: relative;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,255,255,0.11), transparent 30%),
    linear-gradient(180deg, #16487a 0%, #092a50 100%);
  color: #ffffff;
  overflow: hidden;
}

.ixtax-treatment__side::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--ixtax-green-600), rgba(105, 166, 61, 0.26));
}

.ixtax-treatment__side p {
  margin: 0 0 0.7rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.10em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ixtax-treatment__side h3 {
  max-width: 12ch;
  margin: 0 0 1rem;
  color: #ffffff;
  font-family: var(--ix-font-sans);
  font-size: clamp(28px, 2.4vw, 42px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.ixtax-treatment__side span {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
}

.ixtax-treatment__side small {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.62;
}

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

.ixtax-benefit-card {
  min-height: 100%;
  padding: 1.25rem 1.15rem;
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(105, 166, 61, 0.06), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbf7 100%);
  border: 1px solid rgba(18, 52, 93, 0.08);
  box-shadow: 0 10px 24px rgba(13, 30, 52, 0.045);
}

.ixtax-benefit-card h4 {
  margin: 0 0 0.8rem;
  color: var(--ixtax-navy-800);
  font-family: var(--ix-font-sans);
  font-size: clamp(22px, 1.45vw, 28px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.ixtax-benefit-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1.05rem;
}

.ixtax-benefit-card li {
  margin: 0;
  color: #425d76;
}


/* =========================================================
   5. ADVISORY
========================================================= */

.ixtax-advisory {
  padding: clamp(74px, 7vw, 112px) 0;
  background:
    radial-gradient(circle at 90% 14%, rgba(105, 166, 61, 0.10), transparent 30%),
    linear-gradient(135deg, #12345d 0%, #092a50 100%);
}

.ixtax-advisory__shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
  gap: clamp(1.6rem, 4vw, 3.4rem);
  align-items: stretch;
  padding: clamp(1.7rem, 3vw, 2.6rem);
  border-radius: 36px;
  background:
    radial-gradient(circle at 100% 0%, rgba(105, 166, 61, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.065));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 28px 70px rgba(0,0,0,0.20);
}

.ixtax-advisory .ixtax-kicker {
  color: #a9d68a;
}

.ixtax-advisory .ixtax-kicker::after {
  background: rgba(169, 214, 138, 0.76);
}

.ixtax-advisory__content h2 {
  max-width: 14ch;
  color: #ffffff;
}

.ixtax-advisory__content p {
  max-width: 68ch;
  color: rgba(255, 255, 255, 0.80);
}

.ixtax-advisory__checklist {
  padding: 1.35rem 1.25rem;
  border-radius: 26px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.13);
}

.ixtax-advisory__checklist h3 {
  margin: 0 0 1rem;
  color: #ffffff;
  font-family: var(--ix-font-sans);
  font-size: clamp(24px, 1.8vw, 32px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.ixtax-advisory__checklist ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ixtax-advisory__checklist li {
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0.65rem 0.75rem 0.65rem 2.7rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.09);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
  line-height: 1.45;
}

.ixtax-advisory__checklist li::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 30%, #ffffff 0%, #eaf7e4 30%, var(--ixtax-green-600) 100%);
}


/* =========================================================
   6. OFFICIAL SOURCES
========================================================= */

.ixtax-official {
  padding: clamp(74px, 7vw, 112px) 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(105, 166, 61, 0.07), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbf7 100%);
}

.ixtax-official__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: clamp(1.6rem, 4vw, 3.4rem);
  align-items: center;
  padding: clamp(1.7rem, 3vw, 2.6rem);
  border-radius: 34px;
  background: #ffffff;
  border: 1px solid var(--ixtax-line);
  box-shadow: var(--ixtax-shadow);
}

.ixtax-official__copy h2 {
  max-width: 13ch;
}

.ixtax-official__copy p {
  max-width: 60ch;
  margin: 0;
}

.ixtax-source-cards {
  display: grid;
  gap: 0.9rem;
}

.ixtax-source-cards a {
  display: block;
  padding: 1.05rem 1rem;
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(105, 166, 61, 0.07), transparent 34%),
    linear-gradient(180deg, #f9fbf8 0%, #ffffff 100%);
  border: 1px solid rgba(18, 52, 93, 0.08);
  color: var(--ixtax-navy-800);
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(13, 30, 52, 0.035);
}

.ixtax-source-cards a:hover,
.ixtax-source-cards a:focus-visible {
  transform: translateY(-2px);
  outline: none;
  box-shadow: 0 14px 26px rgba(13, 30, 52, 0.07);
}

.ixtax-source-cards span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ixtax-green-650);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ixtax-source-cards strong {
  display: block;
  color: var(--ixtax-navy-800);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}


/* =========================================================
   7. FAQ
========================================================= */

.ixtax-faq {
  padding: clamp(68px, 7vw, 104px) 0;
  background:
    radial-gradient(circle at 90% 20%, rgba(18, 58, 102, 0.05), transparent 34%),
    linear-gradient(180deg, #f8fbf7 0%, #ffffff 100%);
}

.ixtax-faq__shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 3vw, 2.5rem);
  align-items: start;
  padding: clamp(1.7rem, 3vw, 2.6rem);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(249,251,248,0.98) 100%);
  border: 1px solid var(--ixtax-line);
  box-shadow: var(--ixtax-shadow);
}

.ixtax-faq__intro h2 {
  max-width: 11ch;
}

.ixtax-faq__items {
  display: grid;
  gap: 0.85rem;
}

.ixtax-faq__item {
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(18, 52, 93, 0.08);
  box-shadow: 0 8px 18px rgba(13, 30, 52, 0.035);
  overflow: hidden;
}

.ixtax-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1rem;
  color: var(--ixtax-navy-800);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.42;
}

.ixtax-faq__item summary::-webkit-details-marker {
  display: none;
}

.ixtax-faq__answer {
  padding: 0 1rem 1rem;
}

.ixtax-faq__answer p {
  margin: 0;
}


/* =========================================================
   8. CTA
========================================================= */

.ixtax-cta {
  padding: clamp(70px, 7vw, 112px) 0 clamp(84px, 8vw, 128px);
  background:
    radial-gradient(circle at 16% 18%, rgba(105, 166, 61, 0.085), transparent 30%),
    radial-gradient(circle at 86% 78%, rgba(18, 58, 102, 0.05), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7faf6 100%);
}

.ixtax-cta__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.4rem, 3vw, 2.6rem);
  align-items: center;
  padding: clamp(1.8rem, 3vw, 2.8rem);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(105, 166, 61, 0.09), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbf7 100%);
  border: 1px solid var(--ixtax-line);
  box-shadow: var(--ixtax-shadow);
}

.ixtax-cta__card h2 {
  max-width: 14ch;
}

.ixtax-cta__card p {
  max-width: 68ch;
  margin: 0;
}

.ixtax-cta__actions {
  display: grid;
  gap: 0.8rem;
  min-width: 230px;
}


/* =========================================================
   9. RESPONSIVE
========================================================= */

@media (max-width: 1280px) {
  .ixtax-hero__inner {
    grid-template-columns: minmax(620px, 0.92fr) minmax(340px, 0.48fr);
  }

  .ixtax-hero__content {
    padding-right: 7.25rem;
  }

  .ixtax-hero__panel {
    width: min(100%, 455px);
    transform: translateX(-86px);
  }
}

@media (max-width: 1080px) {
  .ixtax-hero {
    min-height: auto;
    padding: 42px 0 72px;
  }

  .ixtax-hero__media img {
    min-height: 820px;
  }

  .ixtax-hero__media::before {
    background:
      linear-gradient(
        180deg,
        rgba(248, 251, 247, 0.985) 0%,
        rgba(248, 251, 247, 0.96) 42%,
        rgba(248, 251, 247, 0.76) 74%,
        rgba(248, 251, 247, 0.28) 100%
      );
  }

  .ixtax-hero__inner {
    width: min(100% - 40px, 860px);
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .ixtax-hero__content,
  .ixtax-hero__panel {
    transform: none;
    width: 100%;
    max-width: none;
    min-height: auto;
    border-radius: 30px;
  }

  .ixtax-hero__content {
    padding: clamp(2rem, 5vw, 3.5rem);
  }

  .ixtax-hero__content h1 {
    max-width: 100%;
  }

  .ixtax-hero__panel {
    padding: 1.35rem;
  }

  .ixtax-hero__graphic img {
    height: 220px;
  }

  .ixtax-intro__card,
  .ixtax-treatment,
  .ixtax-advisory__shell,
  .ixtax-official__grid,
  .ixtax-faq__shell,
  .ixtax-cta__card {
    grid-template-columns: 1fr;
  }

  .ixtax-treatment__cards {
    grid-template-columns: 1fr;
  }

  .ixtax-treatment__side h3,
  .ixtax-advisory__content h2,
  .ixtax-official__copy h2,
  .ixtax-faq__intro h2,
  .ixtax-cta__card h2 {
    max-width: 100%;
  }

  .ixtax-cta__actions {
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .ixtax-wrap,
  .ixtax-hero__inner {
    width: min(100% - 28px, 720px);
  }

  .ixtax-hero {
    padding: 34px 0 58px;
  }

  .ixtax-hero__content,
  .ixtax-hero__panel,
  .ixtax-intro__card,
  .ixtax-treatment,
  .ixtax-treatment__side,
  .ixtax-benefit-card,
  .ixtax-advisory__shell,
  .ixtax-advisory__checklist,
  .ixtax-official__grid,
  .ixtax-source-cards a,
  .ixtax-faq__shell,
  .ixtax-faq__item,
  .ixtax-cta__card {
    border-radius: 24px;
  }

  .ixtax-hero__content {
    padding: 1.45rem 1.2rem;
  }

  .ixtax-hero__content h1 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 0.94;
  }

  .ixtax-hero__lead {
    font-size: 18px !important;
  }

  .ixtax-hero__actions,
  .ixtax-cta__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ixtax-btn {
    width: 100%;
  }

  .ixtax-intro,
  .ixtax-map,
  .ixtax-advisory,
  .ixtax-official,
  .ixtax-faq,
  .ixtax-cta {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .ixtax-intro__card,
  .ixtax-treatment,
  .ixtax-advisory__shell,
  .ixtax-official__grid,
  .ixtax-faq__shell,
  .ixtax-cta__card {
    padding: 1.2rem;
  }

  .ixtax-intro__copy h2,
  .ixtax-section-head h2,
  .ixtax-advisory__content h2,
  .ixtax-official__copy h2,
  .ixtax-faq__intro h2,
  .ixtax-cta__card h2 {
    font-size: clamp(30px, 8vw, 40px);
  }

  .ixtax-hero__graphic img {
    height: 190px;
  }
}

/* =========================================================
   TAXATION OF BENEFITS TYPOGRAPHY HANDOFF + CONSISTENCY PATCH
   Supports /assets/css/immix-locked-typography.css.
   Keep this at the end of immix-taxation-benefits-v1.css.
========================================================= */

.ixtax-page {
  font-family: var(--ix-font-sans, Inter, Arial, Helvetica, sans-serif);
}

/* Keep page typography from leaking into shared header/footer. */
.ixtax-page :where(header, footer, .ixf-footer, .main-header, .main-header-two, .immix-topbar, .main-menu, .main-menu-two),
.ixtax-page :where(header, footer, .ixf-footer, .main-header, .main-header-two, .immix-topbar, .main-menu, .main-menu-two) * {
  font-family: Inter, Arial, Helvetica, sans-serif !important;
}

/* Locked display scale, tuned for the short hero title. */
.ixtax-page .ixtax-hero__content h1,
.ixtax-page .ixtax-hero h1 {
  max-width: 8.6ch !important;
  font-family: var(--ix-font-serif, "Noto Serif", Georgia, serif) !important;
  font-size: clamp(54px, 5.75vw, 90px) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.055em !important;
}

.ixtax-page .ixtax-hero__lead {
  font-size: clamp(18px, 1.22vw, 22px) !important;
  line-height: 1.58 !important;
}

/* Dark surfaces: hero panel, intro note, treatment side cards, advisory section. */
.ixtax-page :is(
  .ixtax-hero__panel,
  .ixtax-intro__note,
  .ixtax-treatment__side,
  .ixtax-advisory,
  .ixtax-advisory__shell,
  .ixtax-advisory__checklist
) {
  color: #ffffff;
}

.ixtax-page :is(
  .ixtax-hero__panel,
  .ixtax-intro__note,
  .ixtax-treatment__side,
  .ixtax-advisory,
  .ixtax-advisory__shell,
  .ixtax-advisory__checklist
) :is(h1, h2, h3, h4, h5, h6, strong) {
  color: #ffffff !important;
}

.ixtax-page :is(
  .ixtax-hero__panel,
  .ixtax-intro__note,
  .ixtax-treatment__side,
  .ixtax-advisory,
  .ixtax-advisory__shell,
  .ixtax-advisory__checklist
) :is(p, li, span, small, a) {
  color: rgba(255, 255, 255, 0.88) !important;
}

.ixtax-page :is(
  .ixtax-hero__panel,
  .ixtax-intro__note,
  .ixtax-treatment__side,
  .ixtax-advisory,
  .ixtax-advisory__shell
) :is(.ixtax-kicker, .ixtax-hero__panel-kicker, [class*="kicker"], [class*="eyebrow"]) {
  color: rgba(199, 232, 179, 0.96) !important;
}

.ixtax-page :is(
  .ixtax-hero__panel,
  .ixtax-intro__note,
  .ixtax-treatment__side,
  .ixtax-advisory,
  .ixtax-advisory__shell
) :is(.ixtax-kicker::after, [class*="kicker"]::after, [class*="eyebrow"]::after) {
  background: rgba(199, 232, 179, 0.72) !important;
}

/* Light sections remain dark-on-light after the typography lock loads. */
.ixtax-page :is(
  .ixtax-hero__content,
  .ixtax-intro__card,
  .ixtax-intro__copy,
  .ixtax-section-head,
  .ixtax-treatment,
  .ixtax-benefit-card,
  .ixtax-official__grid,
  .ixtax-official__copy,
  .ixtax-source-cards a,
  .ixtax-faq__shell,
  .ixtax-faq__item,
  .ixtax-cta__card
) :is(h1, h2, h3, h4, h5, h6, strong, summary) {
  color: var(--ixtax-navy-800, #12345d) !important;
}

.ixtax-page :is(
  .ixtax-hero__content,
  .ixtax-intro__card,
  .ixtax-intro__copy,
  .ixtax-section-head,
  .ixtax-treatment,
  .ixtax-benefit-card,
  .ixtax-official__grid,
  .ixtax-official__copy,
  .ixtax-source-cards a,
  .ixtax-faq__shell,
  .ixtax-faq__item,
  .ixtax-cta__card
) :is(p, li, span, small) {
  color: var(--ixtax-muted, #556d83) !important;
}

.ixtax-page :is(.ixtax-kicker, .ixtax-source-cards span) {
  color: var(--ixtax-green-650, #5f9938) !important;
}

/* Title and card polish for consistency with the newer pages. */
.ixtax-page :is(
  .ixtax-intro__copy h2,
  .ixtax-section-head h2,
  .ixtax-advisory__content h2,
  .ixtax-official__copy h2,
  .ixtax-faq__intro h2,
  .ixtax-cta__card h2
) {
  font-size: clamp(34px, 3.15vw, 54px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.047em !important;
}

.ixtax-page .ixtax-treatment__side h3 {
  font-size: clamp(27px, 2.22vw, 40px) !important;
  line-height: 1.05 !important;
}

.ixtax-page .ixtax-benefit-card h4 {
  font-size: clamp(22px, 1.48vw, 27px) !important;
  line-height: 1.13 !important;
}

/* Button contrast protection */
.ixtax-page .ixtax-btn--primary {
  color: #ffffff !important;
}

.ixtax-page .ixtax-btn--secondary {
  color: var(--ixtax-navy-800, #12345d) !important;
}

/* Footer CTA text and button contrast guard */
:is(
  .ixf-footer .ixf-lead-band,
  footer .ixf-lead-band,
  footer [class*="lead-band"],
  footer [class*="footer-cta"],
  footer [class*="cta"]
) :is(h1, h2, h3, h4, h5, h6, strong) {
  color: #ffffff !important;
}

:is(
  .ixf-footer .ixf-lead-band,
  footer .ixf-lead-band,
  footer [class*="lead-band"],
  footer [class*="footer-cta"],
  footer [class*="cta"]
) :is(p, li, span, a) {
  color: rgba(255, 255, 255, 0.90) !important;
}

:is(
  .ixf-footer .ixf-lead-band__actions a:first-child,
  .ixf-footer .ixf-lead-band__actions a:first-of-type,
  footer .ixf-lead-band__actions a:first-child,
  footer .ixf-lead-band__actions a:first-of-type,
  footer [class*="lead-band"] [class*="actions"] a:first-child,
  footer [class*="lead-band"] [class*="actions"] a:first-of-type
) {
  color: #12345d !important;
  background: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.92) !important;
}

:is(
  .ixf-footer .ixf-lead-band__actions a:first-child *,
  .ixf-footer .ixf-lead-band__actions a:first-of-type *,
  footer .ixf-lead-band__actions a:first-child *,
  footer .ixf-lead-band__actions a:first-of-type *,
  footer [class*="lead-band"] [class*="actions"] a:first-child *,
  footer [class*="lead-band"] [class*="actions"] a:first-of-type *
) {
  color: #12345d !important;
}

:is(
  .ixf-footer .ixf-lead-band__actions a:not(:first-child),
  footer .ixf-lead-band__actions a:not(:first-child),
  footer [class*="lead-band"] [class*="actions"] a:not(:first-child)
),
:is(
  .ixf-footer .ixf-lead-band__actions a:not(:first-child) *,
  footer .ixf-lead-band__actions a:not(:first-child) *,
  footer [class*="lead-band"] [class*="actions"] a:not(:first-child) *
) {
  color: #ffffff !important;
}

@media (max-width: 767px) {
  .ixtax-page .ixtax-hero__content h1,
  .ixtax-page .ixtax-hero h1 {
    max-width: 100% !important;
    font-size: clamp(40px, 11vw, 58px) !important;
    line-height: 1.01 !important;
  }

  .ixtax-page :is(
    p,
    li,
    a,
    summary,
    .ixtax-hero__lead,
    .ixtax-hero__content p,
    .ixtax-hero__panel p,
    .ixtax-intro__copy p,
    .ixtax-intro__note p,
    .ixtax-benefit-card li,
    .ixtax-advisory__content p,
    .ixtax-advisory__checklist li,
    .ixtax-official__copy p,
    .ixtax-faq__answer p,
    .ixtax-cta__card p
  ) {
    font-size: 17px !important;
    line-height: 1.58 !important;
  }
}

/* =========================================================
   TAXATION OF BENEFITS POLISH PASS v2
   Contrast rescue + premium design refinement
   Keeps wording unchanged while restoring dark-card readability.
========================================================= */

main.ixtax-page .ixtax-map {
  background:
    radial-gradient(circle at 12% 14%, rgba(105, 166, 61, 0.06), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(18, 52, 93, 0.055), transparent 26%),
    linear-gradient(180deg, #f7faf6 0%, #f4f8f3 100%);
}

main.ixtax-page .ixtax-group-stack {
  display: grid;
  gap: clamp(1.55rem, 2.8vw, 2.2rem);
}

main.ixtax-page .ixtax-treatment {
  position: relative;
  isolation: isolate;
  gap: clamp(1.2rem, 2.3vw, 1.8rem);
  padding: clamp(1.35rem, 2.4vw, 1.95rem);
  border-radius: 36px;
  background:
    radial-gradient(circle at 100% 0%, rgba(105, 166, 61, 0.065), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.995) 0%, rgba(249,251,248,0.99) 100%);
  border: 1px solid rgba(18, 52, 93, 0.08);
  box-shadow: 0 22px 56px rgba(10, 32, 58, 0.075), 0 8px 22px rgba(10, 32, 58, 0.035);
}

main.ixtax-page .ixtax-treatment__side {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(165, 214, 130, 0.18), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(255,255,255,0.08), transparent 38%),
    linear-gradient(180deg, #1b528a 0%, #103a68 52%, #092a50 100%);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 20px 42px rgba(7, 31, 61, 0.16);
}

main.ixtax-page .ixtax-treatment__side::after {
  content: "";
  position: absolute;
  inset: auto -8% -16% auto;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(169, 214, 138, 0.18) 0%, rgba(169, 214, 138, 0) 70%);
  pointer-events: none;
}

main.ixtax-page .ixtax-treatment__side > p {
  position: relative;
  z-index: 1;
  margin-bottom: 0.9rem;
  color: rgba(191, 227, 165, 0.98) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  letter-spacing: 0.11em !important;
  line-height: 1.28 !important;
  text-transform: uppercase !important;
}

main.ixtax-page .ixtax-treatment__side > h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
  color: #ffffff !important;
  text-shadow: 0 1px 0 rgba(2, 16, 32, 0.18);
  font-size: clamp(27px, 2.08vw, 38px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.038em !important;
}

main.ixtax-page .ixtax-treatment__side > span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.5rem 0.82rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.11) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 1.22 !important;
}

main.ixtax-page .ixtax-treatment__side > small {
  position: relative;
  z-index: 1;
  margin-top: 0.1rem;
  color: rgba(255,255,255,0.92) !important;
  font-size: 16px !important;
  font-weight: 520 !important;
  line-height: 1.64 !important;
}

main.ixtax-page .ixtax-treatment__cards {
  align-items: stretch;
  grid-auto-rows: 1fr;
}

main.ixtax-page .ixtax-benefit-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(105,166,61,0.06), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f9fbf8 100%);
  box-shadow: 0 10px 24px rgba(13, 30, 52, 0.042);
}

main.ixtax-page .ixtax-benefit-card h4 {
  color: #12345d !important;
  font-size: clamp(21px, 1.34vw, 26px) !important;
  line-height: 1.14 !important;
  letter-spacing: -0.024em !important;
}

main.ixtax-page .ixtax-benefit-card ul {
  gap: 0.62rem;
}

main.ixtax-page .ixtax-benefit-card li {
  color: #49627a !important;
  font-size: 17px !important;
  line-height: 1.58 !important;
}

main.ixtax-page .ixtax-intro__note,
main.ixtax-page .ixtax-hero__panel,
main.ixtax-page .ixtax-advisory__shell,
main.ixtax-page .ixtax-advisory__checklist {
  box-shadow: 0 24px 54px rgba(7, 31, 61, 0.17);
}

main.ixtax-page .ixtax-intro__note span,
main.ixtax-page .ixtax-hero__panel-kicker,
main.ixtax-page .ixtax-advisory .ixtax-kicker {
  color: rgba(199, 232, 179, 0.98) !important;
}

main.ixtax-page .ixtax-intro__note p,
main.ixtax-page .ixtax-hero__panel p:not(.ixtax-hero__panel-kicker),
main.ixtax-page .ixtax-advisory__content p,
main.ixtax-page .ixtax-advisory__checklist li {
  color: rgba(255,255,255,0.88) !important;
}

main.ixtax-page .ixtax-intro__note p {
  font-size: 16.5px !important;
  line-height: 1.64 !important;
}

main.ixtax-page .ixtax-advisory__checklist li {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}

main.ixtax-page .ixtax-official__copy h2,
main.ixtax-page .ixtax-faq__intro h2,
main.ixtax-page .ixtax-cta__card h2,
main.ixtax-page .ixtax-section-head h2,
main.ixtax-page .ixtax-intro__copy h2,
main.ixtax-page .ixtax-advisory__content h2 {
  text-wrap: balance;
}

main.ixtax-page .ixtax-official__copy p,
main.ixtax-page .ixtax-faq__intro p,
main.ixtax-page .ixtax-cta__card p,
main.ixtax-page .ixtax-section-head p,
main.ixtax-page .ixtax-intro__copy p {
  max-width: 66ch;
}

@media (max-width: 980px) {
  main.ixtax-page .ixtax-treatment {
    border-radius: 28px;
  }
  main.ixtax-page .ixtax-treatment__side {
    border-radius: 24px;
  }
}

@media (max-width: 767px) {
  main.ixtax-page .ixtax-treatment {
    padding: 1.2rem;
    border-radius: 24px;
  }
  main.ixtax-page .ixtax-treatment__side {
    border-radius: 22px;
  }
  main.ixtax-page .ixtax-treatment__side > h3 {
    max-width: 100%;
    font-size: clamp(24px, 7vw, 32px) !important;
  }
  main.ixtax-page .ixtax-treatment__side > small {
    font-size: 17px !important;
  }
}

/* =========================================================
   v2 polish pass — title rebalancing + dark card contrast
========================================================= */

main.ixtax-page .ixtax-section-head {
  max-width: 780px;
}

main.ixtax-page .ixtax-section-head h2 {
  max-width: 12ch !important;
  font-size: clamp(30px, 2.55vw, 46px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.04em !important;
}

main.ixtax-page .ixtax-faq__intro h2 {
  max-width: 8.3ch !important;
  font-size: clamp(28px, 2.35vw, 42px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.037em !important;
}

main.ixtax-page .ixtax-cta__card h2 {
  max-width: 10.5ch !important;
  font-size: clamp(29px, 2.42vw, 43px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.038em !important;
}

main.ixtax-page .ixtax-intro__copy h2 {
  max-width: 11.5ch !important;
  font-size: clamp(31px, 2.62vw, 47px) !important;
  line-height: 1.04 !important;
}

main.ixtax-page .ixtax-faq__shell {
  align-items: start;
}

main.ixtax-page .ixtax-faq__intro,
main.ixtax-page .ixtax-cta__copy {
  max-width: 560px;
}

main.ixtax-page .ixtax-intro__note {
  background:
    radial-gradient(circle at 100% 0%, rgba(135, 193, 96, 0.22), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(255,255,255,0.08), transparent 38%),
    linear-gradient(180deg, #184c80 0%, #103a68 52%, #0a2d54 100%) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  box-shadow: 0 22px 48px rgba(7, 31, 61, 0.18) !important;
}

main.ixtax-page .ixtax-intro__note span {
  color: rgba(210, 239, 192, 0.98) !important;
}

main.ixtax-page .ixtax-intro__note p,
main.ixtax-page .ixtax-intro__note small,
main.ixtax-page .ixtax-intro__note li,
main.ixtax-page .ixtax-intro__note strong,
main.ixtax-page .ixtax-intro__note em {
  color: rgba(255,255,255,0.94) !important;
}

main.ixtax-page .ixtax-treatment__side {
  background:
    radial-gradient(circle at 100% 0%, rgba(165, 214, 130, 0.18), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(255,255,255,0.08), transparent 38%),
    linear-gradient(180deg, #1b528a 0%, #103a68 52%, #092a50 100%) !important;
}

main.ixtax-page .ixtax-treatment__side > p {
  color: rgba(199, 232, 179, 0.98) !important;
}

main.ixtax-page .ixtax-treatment__side > h3 {
  color: #ffffff !important;
  text-shadow: 0 1px 0 rgba(2, 16, 32, 0.18) !important;
  font-size: clamp(25px, 1.95vw, 35px) !important;
  line-height: 1.05 !important;
}

main.ixtax-page .ixtax-treatment__side > span {
  background: rgba(255,255,255,0.12) !important;
  border-color: rgba(255,255,255,0.18) !important;
  color: #ffffff !important;
}

main.ixtax-page .ixtax-treatment__side > small {
  color: rgba(255,255,255,0.93) !important;
}

main.ixtax-page .ixtax-benefit-card {
  border: 1px solid rgba(18, 52, 93, 0.07) !important;
  box-shadow: 0 10px 26px rgba(13, 30, 52, 0.04) !important;
}

@media (max-width: 980px) {
  main.ixtax-page .ixtax-section-head h2,
  main.ixtax-page .ixtax-faq__intro h2,
  main.ixtax-page .ixtax-cta__card h2,
  main.ixtax-page .ixtax-intro__copy h2 {
    max-width: 100% !important;
    font-size: clamp(27px, 7.4vw, 38px) !important;
    line-height: 1.06 !important;
  }
}
