:root {
    color-scheme: light;
    --nt-ink: #201820;
    --nt-muted: #655766;
    --nt-primary: #9a0086;
    --nt-primary-bright: #c338b4;
    --nt-cyan: #168697;
    --nt-success: #167a55;
    --nt-amber: #b96f0b;
    --nt-bg: #f8f5f8;
    --nt-surface: #fff;
    --nt-line: #ded4df;
    --nt-dark: #1b111b;
    --nt-dark-surface: #261a27;
    --nt-ease-out: cubic-bezier(.16, 1, .3, 1);
    --nt-ease-in-out: cubic-bezier(.77, 0, .175, 1);
}

html {
    scroll-behavior: smooth;
}

html,
body {
    min-height: 100%;
    background: var(--nt-bg);
    color: var(--nt-ink);
    font-family: "Segoe UI Variable", "Segoe UI", Roboto, Arial, sans-serif;
}

body {
    margin: 0;
}

a {
    color: inherit;
}

p {
    text-wrap: pretty;
}

:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--nt-primary) 74%, white);
    outline-offset: 3px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-appbar {
    border-bottom: 1px solid rgba(247, 237, 247, .12);
}

.site-appbar-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 64px;
    padding-inline: clamp(1rem, 3vw, 2rem);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    color: #f7edf7;
    font-weight: 800;
    text-decoration: none;
}

.brand-mark__glyph {
    display: inline-grid;
    width: 2.35rem;
    height: 2.35rem;
    place-items: center;
    border: 1px solid rgba(247, 237, 247, .24);
    border-radius: 8px;
    background: var(--nt-primary);
    color: #fff;
    font-size: .8rem;
}

.brand-mark__text {
    font-size: 1rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    color: #f7edf7;
}

.brand-mark.mud-typography,
.site-nav a,
.site-nav .mud-typography {
    color: #f7edf7 !important;
}

.site-nav a,
.site-nav .mud-typography {
    position: relative;
    font-weight: 650;
    opacity: .9;
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: -.35rem;
    left: 0;
    height: 2px;
    background: var(--nt-primary-bright);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 200ms var(--nt-ease-out);
}

.header-social-link {
    display: inline-grid;
    width: 2.4rem;
    height: 2.4rem;
    place-items: center;
    border: 1px solid rgba(247, 237, 247, .25);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: background-color 180ms ease, border-color 180ms ease, transform 140ms var(--nt-ease-out);
}

.hero-shell {
    position: relative;
    overflow: hidden;
    background: var(--nt-dark);
    color: #fff;
    padding: clamp(2.6rem, 5vw, 4.5rem) 0 clamp(2.2rem, 4vw, 3.5rem);
}

.hero-shell::after {
    position: absolute;
    top: 15%;
    right: -7rem;
    width: 18rem;
    height: 18rem;
    border: 1px solid rgba(188, 75, 179, .3);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(26rem, 1.05fr);
    gap: clamp(2.5rem, 5vw, 5.5rem);
    align-items: center;
    padding-inline: clamp(1rem, 3vw, 2rem);
}

.hero-copy {
    display: grid;
    gap: 1.25rem;
    min-width: 0;
    max-width: 46rem;
}

.hero-copy > .mud-chip-container {
    min-width: 0;
    max-width: 100%;
}

.hero-copy > .mud-chip-container .mud-chip {
    width: fit-content;
    max-width: 100%;
    height: auto;
    min-height: 32px;
}

.hero-copy > .mud-chip-container .mud-chip-content {
    white-space: normal;
    line-height: 1.3;
}

.hero-copy > * {
    animation: heroCopyIn 650ms var(--nt-ease-out) both;
}

.hero-copy > :nth-child(2) {
    animation-delay: 70ms;
}

.hero-copy > :nth-child(3) {
    animation-delay: 130ms;
}

.hero-copy > :nth-child(4) {
    animation-delay: 190ms;
}

.hero-copy > :nth-child(5) {
    animation-delay: 250ms;
}

.hero-copy h1 {
    max-width: 16ch;
    margin: 0;
    font-size: clamp(3rem, 5.6vw, 5.25rem);
    line-height: .98;
    letter-spacing: -.03em;
    text-wrap: balance;
}

.hero-copy h1:focus {
    outline: none;
}

.hero-subtitle {
    max-width: 65ch;
    color: #eaddea;
    font-size: clamp(1.03rem, 1.55vw, 1.22rem);
    line-height: 1.6;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem 1.2rem;
    margin: 0;
    padding: 0;
    color: #f4eaf4;
    list-style: none;
}

.hero-highlights li {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .92rem;
    font-weight: 650;
}

.hero-highlights .mud-icon-root {
    color: #56cfa3;
}

.hero-actions {
    flex-wrap: wrap;
}

.hero-secondary-action.mud-button-outlined {
    border-color: rgba(255, 255, 255, .42) !important;
    color: #fff !important;
}

.hero-secondary-action .mud-icon-root {
    color: #fff !important;
}

.hero-dashboard {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #fcf9fc;
    color: var(--nt-ink);
    padding: clamp(.9rem, 2vw, 1.2rem);
    animation: dashboardEnter 800ms 140ms var(--nt-ease-out) both;
}

.dashboard-topline,
.signal-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.online-chip .mud-icon-root {
    animation: onlinePulse 2.4s ease-in-out infinite;
}

.trace-route {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
    margin-top: .85rem;
    padding: .75rem .25rem .25rem;
}

.trace-route__line {
    position: absolute;
    top: 1.3rem;
    right: 13%;
    left: 13%;
    height: 2px;
    overflow: hidden;
    background: #d8c8d9;
}

.trace-route__line span {
    display: block;
    width: 24%;
    height: 100%;
    background: var(--nt-cyan);
    animation: routeCarrier 2.7s linear infinite;
}

.trace-route__step {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: .35rem;
    color: var(--nt-muted);
    font-size: .72rem;
    font-weight: 700;
    text-align: center;
}

.trace-route__icon {
    display: grid;
    width: 2.35rem;
    height: 2.35rem;
    place-items: center;
    border: 1px solid #cfbfd0;
    border-radius: 50%;
    background: #fff;
    color: var(--nt-primary);
}

.activity-rail {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .35rem;
    margin-top: .65rem;
}

.activity-rail span {
    height: .28rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--nt-primary) 22%, white);
    transform-origin: left center;
    animation: intakePulse 2.8s ease-in-out infinite;
}

.activity-rail span:nth-child(2) { animation-delay: .25s; }
.activity-rail span:nth-child(3) { animation-delay: .5s; }
.activity-rail span:nth-child(4) { animation-delay: .75s; }

.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .65rem;
    margin-top: .75rem;
}

.metric-tile {
    min-height: 5.9rem;
    border: 1px solid var(--nt-line);
    border-radius: 8px;
    background: #fff;
    padding: .7rem;
    transition: transform 180ms var(--nt-ease-out), border-color 180ms ease, background-color 180ms ease;
}

.metric-tile--warning {
    border-color: #dfbd78;
    background: #fff8e9;
}

.metric-tile--success {
    border-color: #b1d9c3;
    background: #edf8f2;
}

.signal-stack {
    min-height: 0;
}

.signal-row {
    align-items: flex-start;
    border: 1px solid var(--nt-line);
    border-radius: 8px;
    background: #fff;
    padding: .55rem .65rem;
    animation: signalSettle 600ms var(--nt-ease-out) both;
}

.signal-row:nth-child(2) { animation-delay: 70ms; }
.signal-row:nth-child(3) { animation-delay: 140ms; }

.signal-row > div {
    min-width: 0;
    flex: 1;
}

.signal-row__source {
    color: var(--nt-primary);
    font-weight: 800;
}

.hero-dashboard .mud-divider {
    margin-block: .7rem !important;
}

.hero-dashboard .mud-typography-body2 {
    font-size: .8rem;
    line-height: 1.3;
}

.hero-dashboard .mud-typography-h5 {
    font-size: 1.25rem;
    line-height: 1.18;
}

.page-flow {
    display: grid;
    gap: clamp(4.5rem, 9vw, 7rem);
    padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 3vw, 2rem);
}

.page-flow--lower {
    padding-top: clamp(4.5rem, 9vw, 7rem);
}

.section-block {
    display: grid;
    gap: clamp(2rem, 4vw, 4rem);
}

.section-block h2,
.contact-band h2,
.workflow-band h2 {
    max-width: 14ch;
    font-size: clamp(2.25rem, 4.8vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: -.03em;
    text-wrap: balance;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(20rem, 1fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: end;
}

.section-heading > p,
.workflow-heading > p,
.trust-heading > p {
    max-width: 65ch;
    color: var(--nt-muted);
    font-size: 1.08rem;
    line-height: 1.7;
}

.support-case-flow {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--nt-line);
    list-style: none;
}

.support-case-step {
    border-bottom: 1px solid var(--nt-line);
    padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.support-case-step__heading {
    display: grid;
    grid-template-columns: 2.25rem 2.5rem minmax(0, 1fr);
    gap: .85rem;
    align-items: center;
    margin-bottom: 1.25rem;
}

.support-case-step__number {
    display: inline-grid;
    width: 2.1rem;
    height: 2.1rem;
    place-items: center;
    border: 1px solid var(--nt-line);
    border-radius: 50%;
    color: var(--nt-muted);
    font-size: .78rem;
    font-weight: 800;
}

.support-case-step__heading > .mud-icon-root {
    color: var(--nt-primary) !important;
}

.support-case-step__heading > .mud-typography-root {
    min-width: 0;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.support-case-step__comparison {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 2.5rem minmax(0, 1fr);
    gap: clamp(.75rem, 2vw, 1.5rem);
    align-items: stretch;
    margin-left: 5.6rem;
}

.support-case-state {
    border: 1px solid var(--nt-line);
    border-radius: 1rem;
    padding: clamp(1.1rem, 2vw, 1.5rem);
}

.support-case-state--before {
    background: var(--nt-bg);
}

.support-case-state--after {
    border-color: color-mix(in srgb, var(--nt-primary) 30%, var(--nt-line));
    background: color-mix(in srgb, var(--nt-primary) 6%, var(--nt-surface));
}

.support-case-state > .mud-typography-overline {
    margin-bottom: .55rem;
    color: var(--nt-muted);
    font-weight: 800;
    letter-spacing: .08em;
}

.support-case-state--after > .mud-typography-overline {
    color: var(--nt-primary);
}

.support-case-state > p {
    color: var(--nt-muted);
    line-height: 1.65;
}

.support-case-step__arrow {
    align-self: center;
    justify-self: center;
    color: var(--nt-primary) !important;
}

.support-case-outcome {
    display: flex;
    gap: .55rem;
    align-items: flex-start;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid color-mix(in srgb, var(--nt-primary) 20%, var(--nt-line));
}

.support-case-outcome > .mud-icon-root {
    flex: 0 0 auto;
    margin-top: .1rem;
    color: var(--nt-primary) !important;
}

.support-case-outcome p {
    color: var(--nt-ink);
    line-height: 1.55;
}

.audience-outcomes {
    padding-top: clamp(1rem, 2vw, 2rem);
    border-top: 1px solid var(--nt-line);
}

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

.audience-outcome {
    min-width: 0;
    border: 1px solid var(--nt-line);
    border-radius: 1.25rem;
    background: var(--nt-surface);
    padding: clamp(1.25rem, 2.5vw, 2rem);
}

.audience-outcome--developer {
    grid-column: 1 / -1;
}

.audience-outcome--planned {
    border-style: dashed;
    background: color-mix(in srgb, var(--nt-primary) 4%, var(--nt-surface));
}

.audience-outcome__header {
    display: grid;
    grid-template-columns: 2.75rem minmax(0, 1fr) auto;
    gap: .85rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.audience-outcome__icon {
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    place-items: center;
    border-radius: .85rem;
    background: color-mix(in srgb, var(--nt-primary) 10%, var(--nt-surface));
    color: var(--nt-primary);
}

.audience-outcome__status {
    border: 1px solid color-mix(in srgb, var(--nt-primary) 28%, var(--nt-line));
    border-radius: 999px;
    padding: .35rem .65rem;
    color: var(--nt-primary);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.audience-outcome--planned .audience-outcome__status {
    border-style: dashed;
}

.audience-outcome__path {
    display: grid;
    gap: 1rem;
    margin: 0;
}

.audience-outcome__path > div {
    padding-top: 1rem;
    border-top: 1px solid var(--nt-line);
}

.audience-outcome__path dt {
    margin-bottom: .35rem;
    color: var(--nt-muted);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.audience-outcome__path dd {
    margin: 0;
    color: var(--nt-muted);
    line-height: 1.6;
}

.audience-outcome__result dd {
    color: var(--nt-ink);
    font-weight: 650;
}

.workflow-shell {
    background: #20202b;
    color: #fff;
}

.workflow-band {
    display: grid;
    grid-template-columns: minmax(18rem, .7fr) minmax(28rem, 1fr);
    gap: clamp(3rem, 8vw, 8rem);
    padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 3vw, 2rem);
}

.workflow-heading {
    align-self: start;
}

.workflow-heading p {
    color: #cbc9d3;
}

.workflow-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.workflow-step {
    display: grid;
    grid-template-columns: 2.25rem 3rem minmax(0, 1fr);
    gap: 1rem;
    border-top: 1px solid #454350;
    padding: 1.7rem 0;
}

.workflow-step:last-child {
    border-bottom: 1px solid #454350;
}

.workflow-step__number {
    color: #7b7783;
    font-variant-numeric: tabular-nums;
}

.workflow-step > .mud-icon-root {
    color: #58c7d5;
}

.workflow-step .mud-typography-caption {
    color: #9ed9e0;
    font-weight: 700;
}

.workflow-step p {
    max-width: 62ch;
    margin-top: .35rem;
    color: #cbc9d3;
    line-height: 1.6;
}

.trust-section {
    grid-template-columns: minmax(18rem, .75fr) minmax(28rem, 1fr);
    align-items: start;
}

.trust-heading {
    position: sticky;
    top: 6rem;
}

.commitment-list {
    border-top: 1px solid var(--nt-line);
}

.commitment-item {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: 1.2rem;
    border-bottom: 1px solid var(--nt-line);
    padding: 1.6rem 0;
}

.commitment-item__icon {
    display: grid;
    width: 2.6rem;
    height: 2.6rem;
    place-items: center;
    border-radius: 8px;
    background: #eee2ef;
    color: var(--nt-primary);
}

.commitment-item p {
    margin-top: .45rem;
    color: var(--nt-muted);
    line-height: 1.65;
}

.comparison-section {
    display: grid;
    gap: clamp(1.25rem, 3vw, 2rem);
}

.comparison-table-wrap {
    overflow: hidden;
    border: 1px solid var(--nt-line);
    border-radius: 8px;
    background: var(--nt-surface);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th,
.comparison-table td {
    padding: clamp(1rem, 2vw, 1.35rem);
    vertical-align: top;
}

.comparison-table thead {
    background: #eee2ef;
}

.comparison-table thead th {
    color: var(--nt-ink);
    font-weight: 700;
}

.comparison-table tbody tr + tr {
    border-top: 1px solid var(--nt-line);
}

.comparison-table tbody th {
    width: 20%;
    color: var(--nt-ink);
}

.comparison-table td {
    color: var(--nt-muted);
    line-height: 1.65;
}

.demo-gallery {
    display: grid;
    border-top: 1px solid var(--nt-line);
}

.demo-item {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(18rem, .7fr);
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: center;
    margin: 0;
    border-bottom: 1px solid var(--nt-line);
    padding-block: clamp(1.5rem, 4vw, 3rem);
}

.demo-item__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid #cfc3d0;
    border-radius: 8px;
    background: #eee7ef;
}

.demo-item__media img,
.demo-item__media object,
.demo-item__media object > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.demo-fallback {
    display: grid;
    width: 100%;
    height: 100%;
    place-content: center;
    justify-items: center;
    gap: .75rem;
    padding: 1.5rem;
    color: var(--nt-muted);
    text-align: center;
}

.demo-fallback .mud-icon-root {
    color: var(--nt-primary);
}

.demo-item figcaption {
    display: grid;
    gap: 1rem;
}

.demo-item figcaption h3 {
    font-size: 2rem;
    line-height: 1.12;
}

.demo-item figcaption p {
    color: var(--nt-muted);
    line-height: 1.7;
}

.demo-item__tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 0;
    margin: 0;
    padding: 0;
    color: var(--nt-primary);
    font-size: .75rem;
    font-weight: 800;
    list-style: none;
    text-transform: uppercase;
}

.demo-item__tags li {
    padding-right: .7rem;
}

.demo-item__tags li + li {
    padding-left: .7rem;
    border-left: 1px solid var(--nt-line);
}

.faq-section {
    grid-template-columns: minmax(18rem, .75fr) minmax(28rem, 1fr);
    align-items: start;
}

.faq-section > .section-heading {
    position: sticky;
    top: 6rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
}

.faq-list {
    border-top: 1px solid var(--nt-line);
}

.faq-item {
    border-bottom: 1px solid var(--nt-line);
}

.faq-item summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 2rem;
    gap: 1rem;
    align-items: center;
    padding: 1.35rem 0;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 750;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary .mud-icon-root {
    color: var(--nt-primary);
    transition: transform 180ms var(--nt-ease-out);
}

.faq-item[open] summary .mud-icon-root {
    transform: rotate(45deg);
}

.faq-item p {
    max-width: 66ch;
    margin: 0;
    padding: 0 3rem 1.5rem 0;
    color: var(--nt-muted);
    line-height: 1.7;
}

.pricing-section {
    display: grid;
    gap: 2rem;
    scroll-margin-top: 5rem;
}

.pricing-heading {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(20rem, 1fr);
    gap: 1rem clamp(2rem, 6vw, 6rem);
    align-items: end;
}

.pricing-eyebrow {
    grid-column: 1 / -1;
    color: var(--nt-primary);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pricing-heading h2 {
    max-width: 13ch;
    font-size: 4rem;
    line-height: 1.02;
    overflow-wrap: anywhere;
}

.pricing-heading p {
    max-width: 65ch;
    color: var(--nt-muted);
    font-size: 1.08rem;
    line-height: 1.7;
}

.pricing-notice {
    display: grid;
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: .9rem;
    align-items: center;
    border-top: 1px solid #97cbd2;
    border-bottom: 1px solid #97cbd2;
    background: #edf7f8;
    color: #184f58;
    padding: 1rem 1.25rem;
    line-height: 1.55;
}

.pricing-notice .mud-icon-root {
    color: var(--nt-cyan);
}

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

.pricing-plan {
    display: grid;
    grid-template-rows: auto auto auto auto 1fr auto;
    gap: 1.15rem;
    min-width: 0;
    border: 1px solid var(--nt-line);
    border-radius: 8px;
    background: var(--nt-surface);
    padding: clamp(1.25rem, 3vw, 2rem);
}

.pricing-plan--recommended {
    border: 2px solid var(--nt-primary);
}

.pricing-plan__topline {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    align-items: center;
    justify-content: space-between;
    min-height: 1.75rem;
    color: var(--nt-muted);
    font-size: .82rem;
    font-weight: 700;
}

.pricing-plan__topline strong {
    color: var(--nt-primary);
    font-size: .75rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.pricing-plan h3 {
    font-size: 2rem;
    line-height: 1;
}

.pricing-plan__description {
    color: var(--nt-muted);
    line-height: 1.65;
}

.pricing-plan__price {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem .75rem;
    align-items: baseline;
    padding-block: .5rem;
}

.pricing-plan__price > span {
    color: var(--nt-ink);
    font-size: 2.75rem;
    font-weight: 850;
    line-height: 1;
}

.pricing-plan__price small {
    color: var(--nt-muted);
    font-size: .9rem;
}

.pricing-plan__features {
    display: grid;
    gap: .75rem;
    align-content: start;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-plan__features li {
    display: grid;
    grid-template-columns: 1.5rem minmax(0, 1fr);
    gap: .55rem;
    align-items: start;
    color: var(--nt-muted);
    line-height: 1.45;
}

.pricing-plan__features .mud-icon-root {
    color: var(--nt-success);
}

.pricing-plan__features strong {
    color: var(--nt-ink);
}

.pricing-plan__cta {
    display: flex;
    min-height: 3rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid var(--nt-primary);
    border-radius: 8px;
    color: var(--nt-primary);
    padding: .75rem 1rem;
    font-weight: 800;
    text-decoration: none;
    transition: background-color 180ms ease, color 180ms ease, transform 140ms var(--nt-ease-out);
}

.pricing-plan--recommended .pricing-plan__cta {
    background: var(--nt-primary);
    color: #fff;
}

.pricing-tax-notice {
    max-width: 80ch;
    margin: -1rem 0 0;
    color: var(--nt-muted);
    font-size: .82rem;
    line-height: 1.6;
}

.pricing-comparison {
    display: grid;
    gap: 1.25rem;
    padding-top: 1rem;
}

.pricing-comparison h3 {
    font-size: 1.75rem;
}

.pricing-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--nt-line);
    border-radius: 8px;
    background: #fff;
}

.pricing-table-wrap table {
    width: 100%;
    min-width: 42rem;
    border-collapse: collapse;
    text-align: left;
}

.pricing-table-wrap th,
.pricing-table-wrap td {
    padding: .9rem 1rem;
    border-bottom: 1px solid var(--nt-line);
}

.pricing-table-wrap thead th {
    background: #f1ebf2;
    color: var(--nt-ink);
    font-size: .82rem;
    text-transform: uppercase;
}

.pricing-table-wrap tbody th {
    width: 42%;
    color: var(--nt-ink);
    font-size: .9rem;
}

.pricing-table-wrap td {
    color: var(--nt-muted);
    font-size: .9rem;
}

.pricing-table-wrap tbody tr:last-child th,
.pricing-table-wrap tbody tr:last-child td {
    border-bottom: 0;
}

.pricing-policies {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--nt-line);
    border-bottom: 1px solid var(--nt-line);
}

.pricing-policy {
    display: grid;
    gap: .75rem;
    align-content: start;
    padding: 1.5rem;
}

.pricing-policy + .pricing-policy {
    border-left: 1px solid var(--nt-line);
}

.pricing-policy > .mud-icon-root {
    color: var(--nt-cyan);
}

.pricing-policy p {
    color: var(--nt-muted);
    line-height: 1.6;
}

.hosting-band {
    grid-template-columns: 4rem minmax(18rem, .9fr) minmax(20rem, 1fr);
    align-items: center;
    border-top: 1px solid var(--nt-line);
    border-bottom: 1px solid var(--nt-line);
    padding-block: clamp(2rem, 5vw, 4rem);
}

.hosting-band__icon {
    display: grid;
    width: 3.3rem;
    height: 3.3rem;
    place-items: center;
    border-radius: 8px;
    background: #e4f2f4;
    color: var(--nt-cyan);
}

.hosting-band h2 {
    max-width: 12ch;
}

.hosting-band p {
    max-width: 62ch;
    color: var(--nt-muted);
    line-height: 1.65;
}

.hosting-stack {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    align-items: center;
    justify-content: flex-end;
}

.hosting-stack span {
    border: 1px solid #c9bdca;
    border-radius: 999px;
    background: #fff;
    padding: .55rem .8rem;
    font-size: .85rem;
    font-weight: 750;
}

.contact-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
    background: var(--nt-dark);
    color: #fff;
    padding: clamp(2rem, 5vw, 4rem);
}

.contact-band__copy p {
    max-width: 62ch;
    color: #dfd2df;
    font-size: 1.08rem;
    line-height: 1.65;
}

.primary-community-link {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    border-radius: 8px;
    background: var(--nt-primary);
    color: #fff;
    padding: .9rem 1.1rem;
    font-weight: 750;
    text-decoration: none;
    transition: background-color 180ms ease, transform 140ms var(--nt-ease-out);
}

.social-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(17rem, 100%), 1fr));
    gap: 1rem;
}

.social-link {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    border: 1px solid var(--nt-line);
    border-radius: 8px;
    background: #fff;
    padding: 1.2rem;
    text-decoration: none;
    transition: transform 200ms var(--nt-ease-out), border-color 200ms ease, background-color 200ms ease;
}

.social-link__icon {
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    border-radius: 8px;
    background: #ede3ee;
    color: var(--nt-primary);
}

.social-link--instagram .social-link__icon {
    background: #f8e9ec;
    color: #ae3655;
}

.social-link--tiktok .social-link__icon {
    background: #e4f3f2;
    color: #126f72;
}

.social-link span:nth-child(2) {
    display: grid;
    gap: .25rem;
}

.social-link strong {
    font-size: 1.05rem;
}

.social-link small {
    color: var(--nt-muted);
    font-size: .9rem;
    line-height: 1.45;
}

.site-footer {
    border-top: 1px solid #372838;
    background: var(--nt-dark);
    color: #d9ccd9;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(16rem, 1fr) auto auto;
    gap: 2rem;
    align-items: center;
    padding: 2rem clamp(1rem, 3vw, 2rem);
}

.brand-mark--footer {
    color: #fff;
}

.site-footer__brand {
    display: grid;
    gap: .75rem;
}

.site-footer p {
    max-width: 66ch;
    margin: 0;
    font-size: .9rem;
    line-height: 1.55;
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1.25rem;
    justify-content: center;
}

.site-footer__links a {
    color: #fff !important;
    font-size: .9rem;
    font-weight: 700;
}

.site-footer__links a:focus-visible,
.site-footer__links a:hover {
    color: #f5a9eb !important;
}

.site-footer__inner > span {
    font-size: .82rem;
    white-space: nowrap;
}

.legal-page {
    min-height: calc(100vh - 4rem);
    background: var(--nt-surface);
    color: var(--nt-text);
}

.legal-hero {
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    background: var(--nt-dark);
    color: #fff;
}

.legal-container {
    padding-inline: clamp(1rem, 3vw, 2rem);
}

.legal-hero .legal-container {
    display: grid;
    gap: 1rem;
    padding-block: clamp(4rem, 9vw, 7rem) clamp(3rem, 7vw, 5rem);
}

.legal-eyebrow {
    color: #f5a9eb;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.legal-hero h1 {
    max-width: 14ch;
    color: #fff;
    font-size: 5rem;
    line-height: .98;
    overflow-wrap: anywhere;
}

.legal-hero h1:focus {
    outline: none;
}

.legal-introduction {
    max-width: 64ch;
    color: #e5d9e5;
    font-size: 1.25rem;
    line-height: 1.65;
}

.legal-updated {
    color: #bcaebc;
    font-size: .82rem;
}

.legal-content {
    padding-block: clamp(2.5rem, 6vw, 5rem);
}

.legal-review {
    display: grid;
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding: 1.25rem;
    border: 1px solid #d5a42f;
    border-radius: 8px;
    background: #fff8e6;
    color: #372b10;
}

.legal-review .mud-icon-root {
    color: #9a6b00;
}

.legal-review strong {
    display: block;
    margin-bottom: .35rem;
    font-size: 1rem;
}

.legal-review p {
    margin: 0;
    line-height: 1.6;
}

.legal-section {
    padding-block: 2rem;
    border-top: 1px solid var(--nt-line);
}

.legal-section h2 {
    margin-bottom: 1.1rem;
    font-size: 2rem;
    line-height: 1.15;
}

.legal-section p {
    max-width: 72ch;
    margin: 0 0 .9rem;
    color: var(--nt-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.legal-placeholder {
    padding: .75rem 1rem;
    border-radius: 6px;
    background: #f4e8f2;
    color: #66105a !important;
    font-weight: 700;
    overflow-wrap: anywhere;
}

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

.motion-ready .motion-reveal:not(.is-visible) {
    opacity: 1;
    transform: translateY(10px);
}

.motion-ready .motion-reveal {
    transition: opacity 560ms var(--nt-ease-out), transform 560ms var(--nt-ease-out);
}

.motion-ready .support-case-step:nth-child(2),
.motion-ready .workflow-step:nth-child(2),
.motion-ready .commitment-item:nth-child(2),
.motion-ready .social-link:nth-child(2) {
    transition-delay: 60ms;
}

.motion-ready .support-case-step:nth-child(3),
.motion-ready .workflow-step:nth-child(3),
.motion-ready .commitment-item:nth-child(3) {
    transition-delay: 120ms;
}

.mud-button-root {
    transition: transform 140ms var(--nt-ease-out), background-color 180ms ease, border-color 180ms ease !important;
}

.mud-button-root:active,
.header-social-link:active,
.primary-community-link:active,
.social-link:active {
    transform: scale(.97);
}

.valid.modified:not([type=checkbox]) { outline: 1px solid #26b050; }
.invalid { outline: 1px solid #e50000; }
.validation-message { color: #e50000; }

.blazor-error-boundary {
    background: #8f2518;
    color: white;
    padding: 1rem;
}

.blazor-error-boundary::after {
    content: "An error has occurred.";
}

@media (hover: hover) and (pointer: fine) {
    .site-nav a:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }

    .header-social-link:hover {
        border-color: rgba(255, 255, 255, .6);
        background: rgba(255, 255, 255, .1);
    }

    .metric-tile:hover {
        border-color: color-mix(in srgb, var(--nt-primary) 42%, var(--nt-line));
        background: #fff;
        transform: translateY(-2px);
    }

    .social-link:hover {
        border-color: color-mix(in srgb, var(--nt-primary) 45%, var(--nt-line));
        transform: translateY(-3px);
    }

    .primary-community-link:hover {
        background: #b2199c;
    }

    .pricing-plan__cta:hover {
        background: var(--nt-primary);
        color: #fff;
        transform: translateY(-2px);
    }
}

@media (max-width: 1100px) {
    .hero-grid,
    .workflow-band,
    .trust-section,
    .faq-section {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        max-width: 15ch;
    }

    .hero-dashboard {
        max-width: 47rem;
    }

    .trust-heading {
        position: static;
    }

    .faq-section > .section-heading {
        position: static;
    }

    .hosting-band {
        grid-template-columns: 4rem minmax(0, 1fr);
    }

    .hosting-stack {
        grid-column: 2;
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .comparison-table-wrap {
        overflow: visible;
        border: 0;
        background: transparent;
    }

    .comparison-table,
    .comparison-table tbody,
    .comparison-table tr,
    .comparison-table th,
    .comparison-table td {
        display: block;
        width: 100%;
    }

    .comparison-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .comparison-table tbody tr {
        overflow: hidden;
        border: 1px solid var(--nt-line);
        border-radius: 8px;
        background: var(--nt-surface);
    }

    .comparison-table tbody tr + tr {
        margin-top: .85rem;
    }

    .comparison-table tbody th,
    .comparison-table td {
        padding: 1rem;
    }

    .comparison-table tbody th {
        width: 100%;
        background: #eee2ef;
    }

    .comparison-table td + td {
        border-top: 1px solid var(--nt-line);
    }

    .comparison-table td::before {
        display: block;
        margin-bottom: .35rem;
        color: var(--nt-ink);
        content: attr(data-label);
        font-weight: 700;
    }

    .site-nav,
    .header-social-link {
        display: none;
    }

    .site-appbar-inner > .mud-button-root .mud-button-label {
        font-size: .78rem;
    }

    .hero-shell::after {
        display: none;
    }

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

    .hero-copy h1 {
        max-width: 100%;
        font-size: clamp(2.25rem, 9.5vw, 3rem);
    }

    .section-heading,
    .contact-band,
    .pricing-heading {
        grid-template-columns: 1fr;
    }

    .pricing-heading h2 {
        max-width: 100%;
        font-size: 2.25rem;
    }

    .pricing-plans,
    .pricing-policies,
    .audience-outcomes__list {
        grid-template-columns: 1fr;
    }

    .audience-outcome--developer {
        grid-column: auto;
    }

    .audience-outcome__header {
        grid-template-columns: 2.75rem minmax(0, 1fr);
    }

    .audience-outcome__status {
        grid-column: 2;
        justify-self: start;
    }

    .pricing-policy + .pricing-policy {
        border-top: 1px solid var(--nt-line);
        border-left: 0;
    }

    .section-block h2,
    .contact-band h2,
    .workflow-band h2 {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .workflow-band {
        grid-template-columns: minmax(0, 1fr);
    }

    .demo-item {
        grid-template-columns: 1fr;
    }

    .demo-item figcaption h3 {
        font-size: 1.5rem;
    }

    .workflow-step {
        grid-template-columns: 1.75rem 2.5rem minmax(0, 1fr);
    }

    .support-case-step__comparison {
        grid-template-columns: 1fr;
        margin-left: 0;
    }

    .support-case-step__arrow {
        transform: rotate(90deg);
    }

    .hosting-band {
        grid-template-columns: 1fr;
    }

    .hosting-stack {
        grid-column: auto;
        justify-content: flex-start;
    }

    .social-list,
    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .site-footer__links {
        justify-content: flex-start;
    }

    .legal-hero h1 {
        max-width: 100%;
        font-size: 2rem;
    }

    .legal-introduction {
        font-size: 1.05rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .site-footer__inner > span {
        white-space: normal;
    }
}

@media (max-width: 520px) {
    .site-appbar-inner {
        gap: .6rem;
    }

    .brand-mark__text {
        display: none;
    }

    .site-appbar-inner > .mud-button-root .mud-icon-root {
        display: none;
    }

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

    .trace-route__step span:last-child {
        font-size: .65rem;
    }

    .signal-row .mud-chip {
        display: none;
    }

    .hosting-stack .mud-icon-root {
        transform: rotate(90deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .motion-ready .motion-reveal:not(.is-visible) {
        opacity: 1;
        transform: none;
    }
}

@keyframes heroCopyIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dashboardEnter {
    from {
        opacity: 0;
        clip-path: inset(0 0 12% 0);
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        clip-path: inset(0 0 0 0);
        transform: translateY(0);
    }
}

@keyframes routeCarrier {
    from { transform: translateX(-110%); }
    to { transform: translateX(520%); }
}

@keyframes onlinePulse {
    0%, 100% { opacity: .55; transform: scale(.88); }
    50% { opacity: 1; transform: scale(1); }
}

@keyframes intakePulse {
    0%, 100% { opacity: .5; transform: scaleX(.72); }
    45% { opacity: 1; transform: scaleX(1); }
}

@keyframes signalSettle {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
