/* Exact rules shared by: brokers.css, carriers.css, home.css, security-issue.css. Page variants remain in their page assets. */

body {
    font-family: var(--body);
    color: var(--ink-900);
    background: var(--paper);
    line-height: 1.55;
    font-size: 16px;
    overflow-x: hidden;
  }

::selection {
    background: var(--emerald-500);
    color: white;
  }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--emerald-600);
  }

.btn-primary {
    background: var(--emerald-500);
    color: white;
    box-shadow: 0 1px 0 rgba(255, 255, 255, .18) inset, 0 10px 30px -8px rgba(31, 166, 122, .5);
  }

.btn-ghost {
    background: rgba(255, 255, 255, .05);
    color: white;
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(10px);
  }

.hero-grid-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
      linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 80%);
    animation: grid-pan 30s linear infinite;
  }

.orb-1 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(31, 166, 122, .5) 0%, transparent 60%);
    right: -120px;
    top: 25%;
    animation: drift1 14s ease-in-out infinite alternate;
  }

.orb-2 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(105, 224, 176, .35) 0%, transparent 60%);
    left: -80px;
    bottom: -40px;
    animation: drift2 16s ease-in-out infinite alternate;
  }

.section-head .left {
    max-width: 760px;
  }

.reveal.reveal-armed:not(.visible) {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  }

.reveal-stagger.reveal-armed:not(.visible)>* {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  }

.reveal-stagger.visible>*:nth-child(2) {
    transition-delay: .08s;
  }

.reveal-stagger.visible>*:nth-child(3) {
    transition-delay: .16s;
  }

.reveal-stagger.visible>*:nth-child(4) {
    transition-delay: .24s;
  }

.reveal-stagger.visible>*:nth-child(5) {
    transition-delay: .32s;
  }

.reveal-stagger.visible>*:nth-child(6) {
    transition-delay: .4s;
  }

.form-progress {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
  }

.step-pane {
    display: none;
  }

.step-pane.active {
    display: block;
    animation: stepIn .4s var(--ease-out);
  }

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
  }

.opt-text {
    flex: 1;
  }

.field {
    margin-bottom: 18px;
  }

.form-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 8px;
  }

.success-pane {
    text-align: center;
    padding: 20px 0;
  }

.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(60% 40% at 50% 20%, rgba(31, 166, 122, .4) 0%, transparent 60%),
      radial-gradient(40% 30% at 30% 80%, rgba(31, 166, 122, .25) 0%, transparent 60%);
    pointer-events: none;
  }

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

/* Exact keyframes shared by brokers.css, carriers.css, home.css, security-issue.css. */

@keyframes mesh-shift {
      0% {
        filter: hue-rotate(0deg) saturate(1);
      }

      100% {
        filter: hue-rotate(-8deg) saturate(1.15);
      }
    }

@keyframes grid-pan {
      from {
        background-position: 0 0;
      }

      to {
        background-position: 64px 64px;
      }
    }

@keyframes drift1 {
      0% {
        transform: translate(0, 0) scale(1);
      }

      100% {
        transform: translate(-50px, 40px) scale(1.15);
      }
    }

@keyframes drift2 {
      0% {
        transform: translate(0, 0) scale(1);
      }

      100% {
        transform: translate(40px, -30px) scale(1.1);
      }
    }

@keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(16px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

/* Three-page landing rules retained after the component duplicate cleanup. :where() keeps the original selector specificity. */

:where(.page-id-8, .page-id-43, .page-id-50) .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: -0.005em;
    transition: transform .25s var(--ease-out), box-shadow .25s, background .2s, color .2s;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
  }

:where(.page-id-8, .page-id-43, .page-id-50) .stat-card .desc {
    color: var(--ink-500);
    font-size: 14.5px;
    line-height: 1.5;
  }

:where(.page-id-8, .page-id-43, .page-id-50) .lead::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--emerald-700) 0%, transparent 60%);
    filter: blur(80px);
    top: 50%;
    left: -200px;
    opacity: .4;
    transform: translateY(-50%);
  }

:where(.page-id-8, .page-id-43, .page-id-50) .lead::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--emerald-500) 0%, transparent 60%);
    filter: blur(80px);
    top: -100px;
    right: -100px;
    opacity: .25;
  }

:where(.page-id-8, .page-id-43, .page-id-50) .opt-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r-md);
    cursor: pointer;
    transition: border-color .2s, background .2s, transform .15s;
    text-align: left;
    width: 100%;
  }

:where(.page-id-8, .page-id-43, .page-id-50) .final-cta p {
    color: rgba(255, 255, 255, .65);
    font-size: 18px;
    max-width: 560px;
    margin: 0 auto 40px;
  }

/* Exact landing primitives shared by Home, Brokers, Carriers and Security Issue. */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

img,
  svg {
    display: block;
    max-width: 100%;
  }

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

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 32px;
  }

.eyebrow .dot {
    width: 6px;
    height: 6px;
    background: var(--emerald-500);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(31, 166, 122, .18);
    animation: pulse 2.4s ease-in-out infinite;
  }

.btn-outline {
    background: transparent;
    color: var(--ink-900);
    border: 1px solid var(--ink-200);
  }

.btn-outline:hover {
    border-color: var(--ink-900);
    transform: translateY(-2px);
  }

.arrow-svg {
    transition: transform .25s var(--ease-out);
  }

.btn:hover .arrow-svg {
    transform: translateX(4px);
  }

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: -1;
  }

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

.reveal-stagger.visible>*:nth-child(1) {
    transition-delay: 0s;
  }

.reveal-stagger.visible>* {
    opacity: 1;
    transform: translateY(0);
  }

/* Exact landing rules shared by page subsets. :where() preserves original specificity. */

:where(.page-id-43, .page-id-50, .page-id-490) .h-display {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: -0.028em;
    line-height: 1.05;
    font-variation-settings: "opsz" 144;
  }

:where(.page-id-43, .page-id-50) .nav-wrap {
    position: fixed;
    top: 18px;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    pointer-events: none;
    transition: transform .4s var(--ease-out), opacity .3s;
  }

:where(.page-id-43, .page-id-50) .nav-wrap.hidden {
    transform: translateY(-100%);
    opacity: 0;
  }

:where(.page-id-43, .page-id-50, .page-id-490) .nav {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px 10px 22px;
    background: rgba(11, 17, 15, 0.6);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 999px;
    box-shadow: 0 20px 60px -20px rgba(0, 0, 0, .4);
    transition: background .3s;
  }

:where(.page-id-43, .page-id-50, .page-id-490) .nav.scrolled {
    background: rgba(5, 8, 7, .85);
  }

:where(.page-id-43, .page-id-50) .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: -0.02em;
    padding-right: 6px;
    font-family: var(--body);
  }

:where(.page-id-43, .page-id-50) .nav-logo .logo-mark {
    width: 30px;
    height: 30px;
  }

:where(.page-id-43, .page-id-50) .nav-logo .u {
    color: var(--emerald-400);
  }

:where(.page-id-43, .page-id-50, .page-id-490) .nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0 6px 0 18px;
  }

:where(.page-id-43, .page-id-50, .page-id-490) .nav-link {
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    transition: background .2s, color .2s;
  }

:where(.page-id-43, .page-id-50, .page-id-490) .nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, .08);
  }

:where(.page-id-43, .page-id-50, .page-id-490) .nav-cta {
    font-size: 14px;
    padding: 10px 18px;
  }

:where(.page-id-43, .page-id-50) .persona-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--mono);
    font-size: 10px;
    background: rgba(31, 166, 122, .18);
    border: 1px solid rgba(31, 166, 122, .3);
    color: var(--emerald-300);
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-left: 8px;
  }

:where(.page-id-43, .page-id-50, .page-id-490) .hero-mesh {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
      radial-gradient(70% 60% at 18% 20%, rgba(31, 166, 122, 0.45) 0%, transparent 60%),
      radial-gradient(60% 50% at 88% 30%, rgba(105, 224, 176, 0.22) 0%, transparent 60%),
      radial-gradient(80% 70% at 50% 100%, rgba(18, 138, 95, 0.32) 0%, transparent 70%),
      linear-gradient(180deg, #061a14 0%, #08231b 60%, #050d0b 100%);
    animation: mesh-shift 18s ease-in-out infinite alternate;
  }

:where(.page-id-43, .page-id-50) .hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 72px;
    align-items: center;
  }

:where(.page-id-43, .page-id-50) .eyebrow.hero-eyebrow {
    color: var(--emerald-300);
    margin-bottom: 28px;
  }

:where(.page-id-43, .page-id-50) .hero-sub {
    font-size: 19px;
    line-height: 1.55;
    color: rgba(255, 255, 255, .7);
    max-width: 560px;
    margin-bottom: 36px;
  }

:where(.page-id-43, .page-id-50) .hero-sub strong {
    color: white;
    font-weight: 600;
  }

:where(.page-id-43, .page-id-50) .hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }

:where(.page-id-43, .page-id-50) .hero-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

:where(.page-id-43, .page-id-50) .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 6px 12px;
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 11px;
    color: rgba(255, 255, 255, .7);
    letter-spacing: 0.06em;
  }

:where(.page-id-43, .page-id-50) .hero-tag::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--emerald-400);
    box-shadow: 0 0 6px var(--emerald-400);
  }

:where(.page-id-43, .page-id-50) .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, .08);
  }

:where(.page-id-43, .page-id-50) .hero-stats .stat-num {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 400;
    color: white;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 6px;
  }

:where(.page-id-43, .page-id-50) .hero-stats .stat-num em {
    color: var(--emerald-400);
    font-style: normal;
  }

:where(.page-id-43, .page-id-50) .hero-stats .stat-label {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .55);
  }

:where(.page-id-43, .page-id-50) section.block {
    position: relative;
  }

:where(.page-id-43, .page-id-50) .section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 64px;
  }

:where(.page-id-43, .page-id-50, .page-id-490) .section-head h2 {
    font-size: clamp(36px, 5vw, 60px);
    margin-top: 18px;
  }

:where(.page-id-43, .page-id-50) .section-head p {
    color: var(--ink-500);
    font-size: 17px;
    max-width: 520px;
    margin-top: 18px;
    line-height: 1.55;
  }

:where(.page-id-43, .page-id-50) .pillars {
    background: var(--paper);
  }

:where(.page-id-43, .page-id-50) .pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

:where(.page-id-43, .page-id-50) .pillar-card:hover {
    border-color: var(--emerald-300);
    transform: translateY(-6px);
    box-shadow: 0 24px 50px -20px rgba(31, 166, 122, .22);
  }

:where(.page-id-43, .page-id-50) .pillar-card .p-num {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--emerald-600);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }

:where(.page-id-43, .page-id-50) .pillar-card .p-anim {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--emerald-50), var(--emerald-100));
    border: 1px solid var(--emerald-200);
    border-radius: 14px;
    margin-bottom: 18px;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
  }

:where(.page-id-43, .page-id-50) .pillar-card .p-anim svg {
    width: 28px;
    height: 28px;
    color: var(--emerald-600);
    position: relative;
    z-index: 1;
  }

:where(.page-id-43, .page-id-50) .pillar-card .p-anim::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(31, 166, 122, .18), transparent 60%);
    transition: opacity .4s;
    opacity: 0;
  }

:where(.page-id-43, .page-id-50) .pillar-card:hover .p-anim::after {
    opacity: 1;
  }

:where(.page-id-43, .page-id-50) .pillar-card:hover .p-anim svg {
    animation: pillar-pop .6s var(--ease-spring);
  }

:where(.page-id-43, .page-id-50) .pillar-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--ink-1000);
    margin-bottom: 10px;
  }

:where(.page-id-43, .page-id-50) .pillar-card p {
    color: var(--ink-500);
    font-size: 14.5px;
    line-height: 1.6;
    flex: 1;
  }

:where(.page-id-43, .page-id-50) .pillar-card .p-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--emerald-600);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 14px;
    transition: gap .25s;
  }

:where(.page-id-43, .page-id-50) .pillar-card:hover .p-cta {
    gap: 10px;
  }

/* Carriers and Brokers run .pillars straight into .shift on the same --paper, so 120px of one
   band's bottom padding meets 120px of the next band's top with nothing marking the join: 240px
   of cream that reads as one section with too much air under its cards, not as two sections.
   A 1px --ink-100 rule is the site's own answer to that seam - survey-section-backgrounds.ts
   finds it on Investors' supporters band and Features' payments strip, and nothing heavier
   anywhere between two light bands. Full-bleed rather than inset to the container, because it
   is a band edge and not a rule between two pieces of content. */
:where(.page-id-43, .page-id-50) .shift {
    background: var(--paper);
    border-top: var(--ub-seam-light);
  }

:where(.page-id-43, .page-id-50) .shift-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

:where(.page-id-43, .page-id-50) .shift-card {
    padding: 40px;
    border-radius: var(--r-lg);
    position: relative;
    overflow: hidden;
  }

:where(.page-id-43, .page-id-50) .shift-card.before {
    background: var(--ink-50);
    border: 1px solid var(--ink-100);
  }

:where(.page-id-43, .page-id-50) .shift-card.after {
    background: linear-gradient(135deg, var(--emerald-800) 0%, var(--emerald-950) 100%);
    color: white;
    box-shadow: 0 0 0 1px rgba(31, 166, 122, .18), 0 30px 80px -20px rgba(31, 166, 122, .35);
  }

:where(.page-id-43, .page-id-50) .shift-card.after::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 50% at 80% 20%, rgba(31, 166, 122, .3) 0%, transparent 60%);
    pointer-events: none;
  }

:where(.page-id-43, .page-id-50) .shift-card .tag {
    display: inline-block;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 24px;
  }

:where(.page-id-43, .page-id-50) .shift-card.before .tag {
    background: white;
    color: var(--ink-500);
    border: 1px solid var(--ink-100);
  }

:where(.page-id-43, .page-id-50) .shift-card.after .tag {
    background: rgba(31, 166, 122, .15);
    color: var(--emerald-300);
    border: 1px solid rgba(31, 166, 122, .3);
  }

:where(.page-id-43, .page-id-50) .shift-card h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
  }

:where(.page-id-43, .page-id-50) .shift-card.before h3 {
    color: var(--ink-500);
  }

:where(.page-id-43, .page-id-50) .shift-list {
    list-style: none;
    position: relative;
    z-index: 1;
  }

:where(.page-id-43, .page-id-50) .shift-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    font-size: 15px;
    border-bottom: 1px dashed currentColor;
    border-color: rgba(0, 0, 0, .08);
  }

:where(.page-id-43, .page-id-50) .shift-card.after .shift-list li {
    border-color: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .85);
  }

:where(.page-id-43, .page-id-50) .shift-list li:last-child {
    border-bottom: none;
  }

:where(.page-id-43, .page-id-50) .shift-list .icn {
    flex-shrink: 0;
    margin-top: 2px;
  }

:where(.page-id-43, .page-id-50) .shift-card.before .icn {
    color: var(--coral);
  }

:where(.page-id-43, .page-id-50) .shift-card.after .icn {
    color: var(--emerald-300);
  }

:where(.page-id-43, .page-id-50) .int-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 64px;
    align-items: center;
  }

:where(.page-id-43, .page-id-50) .int-bullets li:last-child {
    border-bottom: none;
  }

/* The same seam, and easy to miss when reading the stylesheet: .stats does carry a gradient,
   but it starts at --paper, so its top edge is the same colour as the --paper band before it
   - Carriers' .compliance, Brokers' .integrations - and the join is just as invisible. The
   tint only arrives a few hundred pixels down. The border paints over the gradient's first
   pixel, which is --paper anyway. */
:where(.page-id-43, .page-id-50) .stats {
    background: linear-gradient(180deg, var(--paper) 0%, var(--emerald-100) 100%);
    border-top: var(--ub-seam-light);
    position: relative;
  }

:where(.page-id-43, .page-id-50) .stats-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

:where(.page-id-43, .page-id-50) .stat-card {
    background: white;
    padding: 36px 28px;
    border-radius: var(--r-lg);
    border: 1px solid var(--emerald-200);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset, 0 8px 28px -8px rgba(6, 26, 20, .18);
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
  }

:where(.page-id-43, .page-id-50) .stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px -20px rgba(31, 166, 122, .3);
  }

:where(.page-id-43, .page-id-50) .stat-card .big {
    font-family: var(--font-display);
    font-size: clamp(48px, 5.5vw, 72px);
    font-weight: 400;
    color: var(--ink-1000);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 12px;
  }

:where(.page-id-43, .page-id-50) .stat-card .big .accent {
    color: var(--emerald-500);
    font-style: italic;
  }

:where(.page-id-43, .page-id-50) .stat-card .corner {
    position: absolute;
    top: 18px;
    right: 18px;
    font-family: var(--mono);
    font-size: 10px;
    color: var(--emerald-700);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

:where(.page-id-43, .page-id-50) .testimonial-q {
    background: var(--paper);
    text-align: center;
  }

:where(.page-id-43, .page-id-50) .testimonial-q .quote-mark {
    display: block;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 80px;
    color: var(--emerald-500);
    line-height: 0;
    margin-bottom: 18px;
  }

:where(.page-id-43, .page-id-50) .testimonial-q blockquote {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.4vw, 42px);
    font-weight: 400;
    line-height: 1.22;
    letter-spacing: -0.02em;
    color: var(--ink-1000);
    max-width: 920px;
    margin: 0 auto 32px;
  }

:where(.page-id-43, .page-id-50) .testimonial-q blockquote em {
    font-style: italic;
    color: var(--emerald-600);
  }

:where(.page-id-43, .page-id-50) .testimonial-q .author {
    display: inline-flex;
    align-items: center;
    gap: 14px;
  }

:where(.page-id-43, .page-id-50) .testimonial-q .author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--emerald-400), var(--emerald-700));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
  }

:where(.page-id-43, .page-id-50) .testimonial-q .author-info {
    text-align: left;
  }

:where(.page-id-43, .page-id-50) .testimonial-q .author-info .name {
    font-weight: 500;
  }

:where(.page-id-43, .page-id-50) .testimonial-q .author-info .role {
    color: var(--ink-500);
    font-size: 13.5px;
  }

:where(.page-id-43, .page-id-50) .lead {
    background: var(--ink-1000);
    color: white;
    position: relative;
    overflow: hidden;
  }

:where(.page-id-43, .page-id-50) .lead-info h2 {
    font-size: clamp(36px, 4.5vw, 54px);
    color: white;
    margin-bottom: 24px;
  }

:where(.page-id-43, .page-id-50, .page-id-490) .final-cta {
    background: var(--ink-1000);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

:where(.page-id-43, .page-id-50) .final-cta>.container {
    position: relative;
    z-index: 1;
  }

:where(.page-id-43, .page-id-50) .final-cta h2 {
    font-size: clamp(40px, 5.6vw, 80px);
    margin-bottom: 28px;
    color: white;
  }

:where(.page-id-43, .page-id-50, .page-id-490) .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }

:where(.page-id-43, .page-id-50, .page-id-490) .footer-brand {
    max-width: 320px;
  }

:where(.page-id-43, .page-id-50, .page-id-490) .footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
  }

:where(.page-id-43, .page-id-50, .page-id-490) .footer-brand .tag {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--emerald-400);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

:where(.page-id-43, .page-id-50, .page-id-490) .footer-brand p {
    font-size: 14.5px;
    line-height: 1.6;
    margin-top: 16px;
  }

:where(.page-id-43, .page-id-50) .footer-col h5 {
    color: white;
    font-size: 13px;
    font-family: var(--mono);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 18px;
  }

:where(.page-id-43, .page-id-50, .page-id-490) .footer-col ul {
    list-style: none;
  }

:where(.page-id-43, .page-id-50, .page-id-490) .footer-col li {
    padding: 6px 0;
  }

:where(.page-id-43, .page-id-50, .page-id-490) .footer-col a {
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
    transition: color .2s;
  }

:where(.page-id-43, .page-id-50, .page-id-490) .footer-col a:hover {
    color: var(--emerald-400);
  }

:where(.page-id-43, .page-id-50, .page-id-490) .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    flex-wrap: wrap;
    gap: 16px;
  }

:where(.page-id-43, .page-id-50, .page-id-490) .footer-bottom a {
    color: rgba(255, 255, 255, .5);
    margin-left: 18px;
    transition: color .2s;
  }

:where(.page-id-43, .page-id-50, .page-id-490) .footer-bottom a:hover {
    color: white;
  }

:where(.page-id-43, .page-id-50, .page-id-490) .compliance-row {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
  }

:where(.page-id-43, .page-id-50, .page-id-490) .compliance-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    font-family: var(--mono);
    font-size: 11px;
    color: rgba(255, 255, 255, .7);
    letter-spacing: 0.06em;
  }

/* Exact responsive landing rules in their proven shared cascade order. */

@media (max-width:600px) {
.container {
            padding: 0 20px;
        }
}

@media (max-width:920px) {
:where(.page-id-43, .page-id-50, .page-id-490) .nav-links {
      display: none;
    }

:where(.page-id-43, .page-id-50, .page-id-490) .nav {
      padding: 8px 8px 8px 16px;
    }
}

@media (max-width:720px) {
:where(.page-id-8, .page-id-43, .page-id-50) .hero-stats {
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
}

@media (max-width:1024px) {
:where(.page-id-43, .page-id-50) .pillars-grid {
      grid-template-columns: repeat(2, 1fr);
    }

:where(.page-id-43, .page-id-50) .int-grid {
      grid-template-columns: 1fr;
      gap: 48px;
    }
}

@media (max-width:900px) {
:where(.page-id-43, .page-id-50) .stats-cards {
      grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:480px) {
.options-grid {
            grid-template-columns: 1fr;
        }

:where(.page-id-8, .page-id-50, .page-id-490) .field-row {
            grid-template-columns: 1fr;
        }
}

@media (max-width:900px) {
:where(.page-id-43, .page-id-50, .page-id-490) .footer-grid {
      grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:540px) {
:where(.page-id-43, .page-id-50, .page-id-490) .footer-grid {
      grid-template-columns: 1fr;
    }
}

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