/* Softentgroup Experience OS: scoped interior-page layer. */

.osi-page {
    --osi-paper: #f5f1e9;
    --osi-paper-soft: #eee9df;
    --osi-surface: #fffdf9;
    --osi-ink: #17212d;
    --osi-ink-soft: #52606f;
    --osi-paper-line: rgba(23, 33, 45, 0.14);
    min-width: 320px;
    background: var(--osi-paper);
    color: var(--osi-ink);
}

.osi-page :is(button, input, select, textarea, summary) {
    font: inherit;
}

.osi-page main {
    display: block;
}

.osi-page :is(input, select, textarea, button) {
    letter-spacing: 0;
}

.osi-shell {
    width: min(calc(100% - 32px), var(--os-shell));
    margin-inline: auto;
}

.osi-header {
    position: sticky;
    top: 0;
    z-index: 80;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(5, 10, 18, 0.94);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.osi-header__inner {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.osi-brand {
    display: inline-flex;
    min-width: 0;
    flex: 0 0 auto;
    align-items: center;
    gap: 11px;
}

.osi-brand__logo {
    width: 138px;
    height: 38px;
    object-fit: contain;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.28));
}

.osi-brand__descriptor {
    padding-left: 11px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    color: #aeb9c8;
    font-family: "Teko", "Arial Narrow", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
}

.osi-nav {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.osi-nav a {
    position: relative;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: #aeb9c8;
    font-size: 13px;
    font-weight: 650;
    white-space: nowrap;
}

.osi-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 2px;
    background: var(--os-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 160ms ease;
}

.osi-nav a:hover,
.osi-nav a[aria-current="page"] {
    color: var(--os-text);
}

.osi-nav a:hover::after,
.osi-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

.osi-header__actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
}

.osi-lang {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 5px;
    color: var(--os-muted);
    font-size: 13px;
    font-weight: 700;
}

.osi-lang a {
    display: inline-flex;
    min-width: 24px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.osi-lang a:hover,
.osi-lang a[aria-current="page"] {
    color: var(--os-gold-light);
}

.osi-lang__divider {
    color: rgba(255, 255, 255, 0.25);
}

.osi-header__cta,
.osi-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 11px 17px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-weight: 650;
    line-height: 1.25;
    text-align: center;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.osi-header__cta {
    min-height: 44px;
    padding: 9px 14px;
    border-color: var(--os-line-strong);
    color: var(--os-gold-light);
    font-size: 13px;
}

.osi-header__cta:hover {
    border-color: var(--os-gold);
    background: rgba(243, 165, 49, 0.08);
}

.osi-button:hover {
    transform: translateY(-2px);
}

.osi-button--primary {
    background: var(--os-gold);
    color: #111720;
}

.osi-button--primary:hover {
    background: var(--os-gold-light);
}

.osi-button--secondary {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.035);
    color: var(--os-text);
}

.osi-button--secondary:hover {
    border-color: rgba(255, 255, 255, 0.46);
    background: rgba(255, 255, 255, 0.07);
}

.osi-button--dark {
    border-color: rgba(23, 33, 45, 0.25);
    color: var(--osi-ink);
}

.osi-button--dark:hover {
    border-color: rgba(23, 33, 45, 0.5);
    background: rgba(23, 33, 45, 0.045);
}

.osi-mobile-menu {
    position: relative;
    display: none;
}

.osi-mobile-menu > summary {
    display: grid;
    width: 44px;
    height: 44px;
    cursor: pointer;
    list-style: none;
    place-items: center;
    border: 1px solid var(--os-line);
    border-radius: 4px;
    color: var(--os-text);
}

.osi-mobile-menu > summary::-webkit-details-marker {
    display: none;
}

.osi-mobile-menu[open] > summary {
    border-color: var(--os-line-strong);
    background: rgba(243, 165, 49, 0.07);
}

.osi-menu-icon,
.osi-menu-icon::before,
.osi-menu-icon::after {
    display: block;
    width: 19px;
    height: 2px;
    background: currentColor;
}

.osi-menu-icon {
    position: relative;
}

.osi-menu-icon::before,
.osi-menu-icon::after {
    content: "";
    position: absolute;
    left: 0;
}

.osi-menu-icon::before {
    top: -6px;
}

.osi-menu-icon::after {
    top: 6px;
}

.osi-mobile-menu__panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(320px, calc(100vw - 24px));
    padding: 12px;
    border: 1px solid var(--os-line);
    border-radius: 6px;
    background: #08111e;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
}

.osi-mobile-menu__panel nav {
    display: grid;
}

.osi-mobile-menu__panel nav a {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #c2ccda;
    font-size: 15px;
    font-weight: 600;
}

.osi-mobile-menu__panel nav a[aria-current="page"] {
    color: var(--os-gold-light);
}

.osi-mobile-menu__cta {
    width: 100%;
    margin-top: 12px;
}

.osi-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 96px 0 102px;
    border-bottom: 1px solid rgba(243, 165, 49, 0.2);
    background:
        linear-gradient(rgba(119, 212, 208, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(119, 212, 208, 0.045) 1px, transparent 1px),
        linear-gradient(145deg, #050a12 0%, #08111e 58%, #07101b 100%);
    background-size: 44px 44px, 44px 44px, auto;
    color: var(--os-text);
}

.osi-page .osi-hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 50%;
    right: -118px;
    width: min(610px, 52vw);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(243, 165, 49, 0.82) 0 2px, transparent 3px),
        radial-gradient(circle at 26% 42%, rgba(119, 212, 208, 0.72) 0 2px, transparent 3px),
        radial-gradient(circle at 73% 30%, rgba(255, 208, 123, 0.58) 0 2px, transparent 3px),
        linear-gradient(32deg, transparent 49.7%, rgba(119, 212, 208, 0.16) 50%, transparent 50.3%),
        linear-gradient(146deg, transparent 49.75%, rgba(243, 165, 49, 0.2) 50%, transparent 50.25%),
        radial-gradient(circle at center, rgba(243, 165, 49, 0.12), transparent 54%);
    opacity: 0.66;
    transform: translateY(-50%);
    pointer-events: none;
}

.osi-page .osi-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 50%;
    right: -118px;
    width: min(610px, 52vw);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle at center,
            transparent 0 25%,
            rgba(255, 208, 123, 0.32) 25.2% 25.7%,
            transparent 26% 42%,
            rgba(119, 212, 208, 0.24) 42.2% 42.65%,
            transparent 43% 59%,
            rgba(243, 165, 49, 0.2) 59.2% 59.6%,
            transparent 60%);
    -webkit-mask-image: conic-gradient(from 18deg, #000 0 16%, transparent 16% 25%, #000 25% 52%, transparent 52% 64%, #000 64% 86%, transparent 86% 100%);
    mask-image: conic-gradient(from 18deg, #000 0 16%, transparent 16% 25%, #000 25% 52%, transparent 52% 64%, #000 64% 86%, transparent 86% 100%);
    opacity: 0.82;
    transform: translateY(-50%);
    pointer-events: none;
}

.osi-hero__layout {
    display: grid;
    align-items: center;
    gap: 52px;
}

.osi-hero__copy {
    min-width: 0;
}

.osi-eyebrow,
.osi-label {
    font-family: "Teko", "Arial Narrow", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

.osi-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--os-gold-light);
    font-size: 17px;
}

.osi-eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    flex: 0 0 auto;
    background: var(--os-gold);
}

.osi-hero h1 {
    max-width: 850px;
    margin-bottom: 22px;
    color: var(--os-text);
    font-size: 48px;
    font-weight: 720;
    line-height: 1.08;
}

.osi-hero__lead {
    max-width: 760px;
    margin-bottom: 30px;
    color: #bdc8d7;
    font-size: 18px;
    line-height: 1.72;
}

.osi-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.osi-actions .osi-button {
    min-width: 190px;
}

.osi-hero__panel {
    min-width: 0;
    padding: 24px;
    border: 1px solid rgba(243, 165, 49, 0.2);
    border-radius: 6px;
    background: rgba(9, 17, 30, 0.84);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.osi-label {
    display: block;
    margin-bottom: 15px;
    color: var(--os-gold-light);
    font-size: 15px;
}

.osi-route-map {
    display: grid;
    gap: 10px;
}

.osi-route-map__item {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 62px;
    padding: 10px 12px;
    border-left: 2px solid var(--os-gold);
    background: rgba(255, 255, 255, 0.035);
}

.osi-route-map__item:last-child {
    border-left-color: var(--os-cyan);
}

.osi-route-map__item span {
    color: var(--os-muted);
    font-family: "Teko", "Arial Narrow", sans-serif;
    font-size: 16px;
}

.osi-route-map__item strong {
    color: var(--os-text);
    font-size: 14px;
    line-height: 1.4;
}

.osi-signal-list,
.osi-detail-list,
.osi-footer__nav,
.osi-faq-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.osi-signal-list {
    display: grid;
    gap: 10px;
    color: #c3cddb;
}

.osi-signal-list li {
    position: relative;
    padding-left: 20px;
}

.osi-signal-list li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 9px;
    height: 1px;
    background: var(--os-cyan);
}

.osi-hero__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin: 26px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid var(--os-line);
    color: var(--os-muted);
    list-style: none;
}

.osi-hero__highlights li {
    position: relative;
    padding-left: 14px;
    font-size: 14px;
}

.osi-hero__highlights li::before {
    content: "";
    position: absolute;
    top: 0.65em;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--os-gold);
}

.osi-section {
    padding: 88px 0;
    background: var(--osi-paper);
}

.osi-section--soft {
    background: var(--osi-paper-soft);
}

.osi-section--dark {
    border-block: 1px solid var(--os-line);
    background: #08111e;
    color: var(--os-text);
}

.osi-section__heading {
    max-width: 780px;
    margin-bottom: 42px;
}

.osi-section__heading--center {
    margin-inline: auto;
    text-align: center;
}

.osi-section__heading .osi-eyebrow {
    color: #a96810;
}

.osi-section--dark .osi-section__heading .osi-eyebrow {
    color: var(--os-gold-light);
}

.osi-section__heading h2,
.osi-final h2 {
    margin-bottom: 16px;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.14;
}

.osi-section__heading > p:last-child,
.osi-final__copy > p:last-child {
    margin-bottom: 0;
    color: var(--osi-ink-soft);
    font-size: 17px;
    line-height: 1.7;
}

.osi-section--dark .osi-section__heading > p:last-child,
.osi-final__copy > p:last-child {
    color: #b8c4d3;
}

.osi-offer-stack {
    display: grid;
    gap: 18px;
}

.osi-offer {
    display: grid;
    min-width: 0;
    gap: 28px;
    padding: 30px;
    border: 1px solid var(--osi-paper-line);
    border-top: 3px solid var(--os-gold);
    border-radius: 6px;
    background: rgba(255, 253, 249, 0.78);
}

.osi-offer--product {
    border-top-color: #3d9d99;
}

.osi-offer__head {
    min-width: 0;
}

.osi-offer__index {
    display: block;
    margin-bottom: 12px;
    color: #8c5a15;
    font-family: "Teko", "Arial Narrow", sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.osi-offer--product .osi-offer__index {
    color: #287f7b;
}

.osi-offer h3 {
    margin-bottom: 0;
    font-size: 27px;
    line-height: 1.18;
}

.osi-offer__body > p {
    margin-bottom: 20px;
    color: var(--osi-ink-soft);
    line-height: 1.72;
}

.osi-detail-list {
    display: grid;
}

.osi-detail-list li {
    position: relative;
    padding: 12px 0 12px 20px;
    border-top: 1px solid var(--osi-paper-line);
    color: #354352;
    line-height: 1.62;
}

.osi-detail-list li::before {
    content: "";
    position: absolute;
    top: 1.52em;
    left: 0;
    width: 9px;
    height: 2px;
    background: var(--os-gold);
}

.osi-offer--product .osi-detail-list li::before {
    background: #3d9d99;
}

.osi-detail-list a,
.osi-inline-link {
    color: #82500c;
    font-weight: 650;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.osi-detail-list a:hover,
.osi-inline-link:hover {
    color: #4d2e05;
}

.osi-decision-grid {
    display: grid;
    gap: 14px;
}

.osi-card {
    min-width: 0;
    padding: 24px;
    border: 1px solid var(--os-line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.035);
}

.osi-card :is(h2, h3) {
    margin-bottom: 12px;
    color: var(--os-text);
    font-size: 20px;
    line-height: 1.3;
}

.osi-card p {
    margin-bottom: 0;
    color: #aebaca;
    line-height: 1.65;
}

.osi-card::before {
    content: "";
    display: block;
    width: 26px;
    height: 2px;
    margin-bottom: 18px;
    background: var(--os-gold);
}

.osi-card:nth-child(even)::before {
    background: var(--os-cyan);
}

.osi-final {
    padding: 78px 0;
    border-top: 1px solid var(--os-line);
    background:
        linear-gradient(90deg, rgba(243, 165, 49, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(243, 165, 49, 0.06) 1px, transparent 1px),
        #08111e;
    background-size: 42px 42px, 42px 42px, auto;
    color: var(--os-text);
}

.osi-final__inner {
    display: grid;
    gap: 28px;
    padding-left: 22px;
    border-left: 2px solid var(--os-gold);
}

.osi-final__copy {
    max-width: 720px;
}

.osi-final__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.osi-diagnosis-layout {
    display: grid;
    align-items: start;
    gap: 48px;
}

.osi-diagnosis-copy {
    min-width: 0;
}

.osi-diagnosis-copy .osi-section__heading {
    margin-bottom: 30px;
}

.osi-side-note {
    padding: 24px 0 4px 22px;
    border-left: 2px solid var(--os-gold);
}

.osi-side-note h3 {
    margin-bottom: 14px;
    font-size: 21px;
}

.osi-side-note .osi-signal-list {
    color: var(--osi-ink-soft);
}

.osi-side-note p {
    margin: 20px 0 0;
    color: var(--osi-ink-soft);
    font-size: 14px;
}

.osi-form {
    min-width: 0;
    padding: 30px;
    border: 1px solid var(--osi-paper-line);
    border-radius: 8px;
    background: var(--osi-surface);
    box-shadow: 0 24px 70px rgba(30, 38, 48, 0.08);
}

.osi-fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.osi-fieldset + .osi-fieldset {
    margin-top: 34px;
    padding-top: 30px;
    border-top: 1px solid var(--osi-paper-line);
}

.osi-fieldset legend {
    display: block;
    width: 100%;
    margin: 0 0 5px;
    padding: 0;
    color: var(--osi-ink);
    font-size: 21px;
    font-weight: 700;
}

.osi-fieldset__note {
    margin: 0 0 22px;
    color: var(--osi-ink-soft);
    font-size: 14px;
}

.osi-form-grid {
    display: grid;
    gap: 20px;
}

.osi-field {
    min-width: 0;
}

.osi-field label {
    display: block;
    margin-bottom: 8px;
    color: #263443;
    font-size: 14px;
    font-weight: 650;
}

.osi-field :is(input, select, textarea) {
    width: 100%;
    min-width: 0;
    border: 1px solid #c8cdd2;
    border-radius: 4px;
    background: #fff;
    color: var(--osi-ink);
    transition: border-color 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
}

.osi-field :is(input, select) {
    min-height: 52px;
    padding: 11px 13px;
}

.osi-field textarea {
    min-height: 154px;
    resize: vertical;
    padding: 13px;
    line-height: 1.55;
}

.osi-field :is(input, textarea)::placeholder {
    color: #808b97;
    opacity: 1;
}

.osi-field :is(input, select, textarea):focus {
    border-color: #a76b18;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(243, 165, 49, 0.2);
}

.osi-field :is(input, select, textarea):user-invalid {
    border-color: #a53c35;
    box-shadow: 0 0 0 3px rgba(165, 60, 53, 0.12);
}

.osi-form__submit {
    display: grid;
    gap: 14px;
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid var(--osi-paper-line);
}

.osi-form__submit .osi-button {
    width: 100%;
    min-height: 54px;
    cursor: pointer;
    font-size: 16px;
}

.osi-privacy-note {
    margin: 0;
    color: var(--osi-ink-soft);
    font-size: 13px;
    line-height: 1.6;
}

.osi-privacy-note a {
    color: #79500f;
    font-weight: 650;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.osi-faq-grid {
    display: grid;
    gap: 14px;
}

.osi-faq-item {
    min-width: 0;
    padding: 24px;
    border-top: 2px solid var(--os-gold);
    background: rgba(255, 253, 249, 0.72);
}

.osi-faq-item:nth-child(even) {
    border-top-color: #3d9d99;
}

.osi-faq-item h3 {
    margin-bottom: 10px;
    font-size: 19px;
    line-height: 1.35;
}

.osi-faq-item p {
    margin-bottom: 0;
    color: var(--osi-ink-soft);
    line-height: 1.65;
}

.osi-footer {
    padding: 30px 0;
    border-top: 1px solid var(--os-line);
    background: #04080e;
    color: var(--os-muted);
}

.osi-footer__inner {
    display: grid;
    gap: 20px;
}

.osi-footer__brand {
    margin: 0;
    color: var(--os-muted);
    font-size: 13px;
}

.osi-footer__brand strong {
    color: var(--os-text);
}

.osi-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 2px 18px;
}

.osi-footer__nav a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: #aeb9c8;
    font-size: 13px;
}

.osi-footer__nav a:hover,
.osi-footer__nav a[aria-current="page"] {
    color: var(--os-text);
}

.osi-footer__meta {
    margin: 0;
    color: #748195;
    font-size: 12px;
}

.osi-pattern-list {
    display: grid;
    gap: 20px;
}

.osi-pattern {
    display: grid;
    min-width: 0;
    gap: 26px;
    padding: 30px;
    border: 1px solid var(--osi-paper-line);
    border-top: 3px solid var(--os-gold);
    border-radius: 6px;
    background: rgba(255, 253, 249, 0.78);
}

.osi-pattern:nth-child(even) {
    border-top-color: #3d9d99;
    background: rgba(238, 233, 223, 0.64);
}

.osi-pattern__head {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
}

.osi-pattern__number {
    display: inline-flex;
    min-width: 38px;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--os-gold);
    color: #8c5a15;
    font-family: "Teko", "Arial Narrow", sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.osi-pattern:nth-child(even) .osi-pattern__number {
    border-bottom-color: #3d9d99;
    color: #287f7b;
}

.osi-pattern__head .osi-label {
    margin-bottom: 10px;
    color: #7a5318;
}

.osi-pattern__head h2 {
    margin-bottom: 0;
    font-size: 27px;
    line-height: 1.2;
}

.osi-pattern__action {
    margin-top: 24px;
}

.osi-pattern__details {
    display: grid;
    min-width: 0;
    margin: 0;
    gap: 0 28px;
}

.osi-pattern__details > div {
    min-width: 0;
    padding: 14px 0;
    border-top: 1px solid var(--osi-paper-line);
}

.osi-pattern__details dt {
    margin-bottom: 5px;
    color: #7a4d0c;
    font-size: 13px;
    font-weight: 750;
    text-transform: uppercase;
}

.osi-pattern:nth-child(even) .osi-pattern__details dt {
    color: #216f6c;
}

.osi-pattern__details dd {
    margin: 0;
    color: #465463;
    line-height: 1.65;
}

.osi-process {
    position: relative;
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
}

.osi-process::before {
    content: "";
    position: absolute;
    top: 28px;
    bottom: 28px;
    left: 25px;
    width: 1px;
    background: linear-gradient(var(--os-gold), #3d9d99);
}

.osi-process__item {
    position: relative;
    display: grid;
    min-width: 0;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 18px;
    padding: 0 0 34px;
}

.osi-process__item:last-child {
    padding-bottom: 0;
}

.osi-process__number {
    position: relative;
    z-index: 1;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid var(--os-line-strong);
    border-radius: 50%;
    background: #08111e;
    color: var(--os-gold-light);
    font-family: "Teko", "Arial Narrow", sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.osi-process__title {
    min-width: 0;
    padding-top: 7px;
}

.osi-process__title :is(h2, h3) {
    margin-bottom: 6px;
    font-size: 26px;
    line-height: 1.2;
}

.osi-process__title span {
    color: #8c5a15;
    font-family: "Teko", "Arial Narrow", sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.osi-process__details {
    display: grid;
    min-width: 0;
    gap: 10px;
    margin-top: 16px;
}

.osi-process__details p {
    min-width: 0;
    margin: 0;
    padding: 14px;
    border-left: 2px solid rgba(243, 165, 49, 0.52);
    background: rgba(255, 253, 249, 0.68);
    color: var(--osi-ink-soft);
    line-height: 1.62;
}

.osi-process__details p:nth-child(2) {
    border-left-color: rgba(61, 157, 153, 0.68);
}

.osi-process__details strong {
    display: block;
    margin-bottom: 4px;
    color: var(--osi-ink);
    font-size: 13px;
    text-transform: uppercase;
}

.osi-process-notes,
.osi-resource-notes {
    display: grid;
    gap: 14px;
}

.osi-section__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.osi-resource-grid {
    display: grid;
    gap: 18px;
}

.osi-resource {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 28px;
    border: 1px solid var(--osi-paper-line);
    border-top: 3px solid var(--os-gold);
    border-radius: 6px;
    background: rgba(255, 253, 249, 0.82);
}

.osi-resource:nth-child(2) {
    border-top-color: #3d9d99;
}

.osi-resource:nth-child(3) {
    border-top-color: #b96754;
}

.osi-resource .osi-label {
    margin-bottom: 12px;
    color: #7a5318;
}

.osi-resource:nth-child(2) .osi-label {
    color: #287f7b;
}

.osi-resource:nth-child(3) .osi-label {
    color: #9b4635;
}

.osi-resource h2 {
    margin-bottom: 20px;
    font-size: 25px;
    line-height: 1.22;
}

.osi-resource__details {
    display: grid;
    margin: 0;
}

.osi-resource__details > div {
    padding: 12px 0;
    border-top: 1px solid var(--osi-paper-line);
}

.osi-resource__details dt {
    margin-bottom: 4px;
    color: #344251;
    font-size: 13px;
    font-weight: 750;
}

.osi-resource__details dd {
    margin: 0;
    color: var(--osi-ink-soft);
    line-height: 1.62;
}

.osi-resource__action {
    margin-top: auto;
    padding-top: 22px;
}

.osi-resource__action .osi-button {
    width: 100%;
}

.osi-error {
    min-height: calc(100vh - 76px);
    display: grid;
    align-items: center;
}

.osi-error__layout {
    display: grid;
    align-items: center;
    gap: 36px;
}

.osi-error__code {
    display: block;
    color: rgba(255, 208, 123, 0.78);
    font-family: "Teko", "Arial Narrow", sans-serif;
    font-size: 150px;
    font-weight: 600;
    line-height: 0.72;
    text-align: center;
}

.osi-error__copy > p:last-of-type {
    max-width: 690px;
    color: #aebaca;
}

.osi-error__routes {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.osi-error__routes .osi-button {
    width: 100%;
}

/* Static Experience OS signature: content remains primary on focused pages. */
.osi-page:has(.osi-process) .osi-hero::before,
.osi-page:has(.osi-resource-grid) .osi-hero::before {
    opacity: 0.42;
}

.osi-page:has(.osi-process) .osi-hero::after,
.osi-page:has(.osi-resource-grid) .osi-hero::after {
    opacity: 0.54;
}

.osi-page:has(.osi-form) .osi-hero::before {
    opacity: 0.24;
}

.osi-page:has(.osi-form) .osi-hero::after {
    opacity: 0.3;
}

.osi-page--privacy .osi-hero::before {
    opacity: 0.2;
}

.osi-page--privacy .osi-hero::after {
    opacity: 0.24;
}

.osi-page .osi-error::before {
    right: -70px;
    width: min(460px, 46vw);
    opacity: 0.42;
}

.osi-page .osi-error::after {
    right: -70px;
    width: min(460px, 46vw);
    opacity: 0.52;
}

.osi-privacy-date {
    margin-top: -10px;
    color: #d9e1eb;
    font-size: 15px;
}

.osi-privacy-facts {
    display: grid;
    gap: 14px;
    margin: 22px 0 0;
}

.osi-privacy-facts div {
    padding-top: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.osi-privacy-facts dt {
    margin-bottom: 4px;
    color: var(--os-muted);
    font-size: 13px;
    font-weight: 650;
    text-transform: uppercase;
}

.osi-privacy-facts dd {
    margin: 0;
    color: var(--os-text);
}

.osi-privacy-facts a {
    color: var(--os-gold-light);
    overflow-wrap: anywhere;
}

.osi-section--privacy {
    background: var(--osi-paper);
}

.osi-privacy-layout {
    display: grid;
    grid-template-columns: minmax(190px, 250px) minmax(0, 1fr);
    align-items: start;
    gap: clamp(34px, 6vw, 84px);
}

.osi-privacy-nav {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 2px;
    padding: 22px 20px;
    border: 1px solid var(--osi-paper-line);
    border-left: 3px solid var(--os-gold);
    background: rgba(255, 253, 249, 0.7);
}

.osi-privacy-nav .osi-label {
    margin-bottom: 8px;
    color: #8b5b13;
}

.osi-privacy-nav a {
    display: flex;
    min-height: 42px;
    align-items: center;
    border-bottom: 1px solid rgba(23, 33, 45, 0.08);
    color: var(--osi-ink-soft);
    font-size: 14px;
    font-weight: 600;
}

.osi-privacy-nav a:last-child {
    border-bottom: 0;
}

.osi-privacy-nav a:hover {
    color: #8b5b13;
}

.osi-privacy-content {
    min-width: 0;
}

.osi-privacy-section {
    padding: 0 0 54px;
    scroll-margin-top: 104px;
}

.osi-privacy-section + .osi-privacy-section {
    padding-top: 54px;
    border-top: 1px solid var(--osi-paper-line);
}

.osi-privacy-section .osi-label {
    margin-bottom: 10px;
    color: #8b5b13;
}

.osi-privacy-section h2 {
    max-width: 760px;
    margin-bottom: 22px;
    color: var(--osi-ink);
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.15;
}

.osi-privacy-section h3 {
    margin: 28px 0 9px;
    color: var(--osi-ink);
    font-size: 19px;
    line-height: 1.3;
}

.osi-privacy-section :is(p, li) {
    color: var(--osi-ink-soft);
    font-size: 16px;
    line-height: 1.76;
}

.osi-privacy-section p + p {
    margin-top: 15px;
}

.osi-privacy-section ul {
    display: grid;
    gap: 8px;
    margin: 16px 0 0;
    padding-left: 22px;
}

.osi-privacy-section a {
    color: #80520f;
    font-weight: 650;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    overflow-wrap: anywhere;
}

.osi-privacy-section code {
    padding: 2px 5px;
    border-radius: 3px;
    background: rgba(23, 33, 45, 0.08);
    color: var(--osi-ink);
}

.osi-privacy-callout {
    margin-top: 30px;
    padding: 22px 24px;
    border-left: 3px solid var(--os-cyan);
    background: rgba(119, 212, 208, 0.09);
}

.osi-privacy-callout h3 {
    margin-top: 0;
}

.osi-privacy-provider-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 26px 0;
}

.osi-privacy-provider-grid .osi-card {
    min-height: 0;
}

.osi-privacy-provider-grid .osi-card h3 {
    margin-top: 0;
}

.osi-privacy-provider-grid .osi-card p {
    font-size: 15px;
    line-height: 1.65;
}

.osi-privacy-table-wrap {
    margin: 24px 0;
    overflow-x: auto;
    border: 1px solid var(--osi-paper-line);
    background: var(--osi-surface);
}

.osi-privacy-table-wrap:focus-visible {
    outline: 3px solid rgba(243, 165, 49, 0.72);
    outline-offset: 3px;
}

.osi-privacy-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
}

.osi-privacy-table :is(th, td) {
    padding: 15px 17px;
    border-bottom: 1px solid var(--osi-paper-line);
    text-align: left;
    vertical-align: top;
}

.osi-privacy-table th {
    background: #17212d;
    color: #fff9ed;
    font-size: 14px;
}

.osi-privacy-table td {
    color: var(--osi-ink-soft);
    font-size: 14px;
    line-height: 1.55;
}

.osi-privacy-table tr:last-child td {
    border-bottom: 0;
}

@media (min-width: 640px) {
    .osi-shell {
        width: min(calc(100% - 48px), var(--os-shell));
    }

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

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

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

    .osi-pattern__details,
    .osi-process__details,
    .osi-error__routes {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .osi-pattern__detail--wide,
    .osi-process__details p:last-child {
        grid-column: 1 / -1;
    }

    .osi-footer__inner {
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
    }

    .osi-footer__nav {
        justify-content: flex-end;
    }

    .osi-footer__meta {
        grid-column: 1 / -1;
    }
}

@media (min-width: 900px) {
    .osi-hero__layout {
        grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.75fr);
    }

    .osi-offer {
        grid-template-columns: minmax(230px, 0.55fr) minmax(0, 1.45fr);
        padding: 34px;
    }

    .osi-decision-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .osi-final__inner {
        grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
        align-items: end;
    }

    .osi-final__actions {
        justify-content: flex-end;
    }

    .osi-diagnosis-layout {
        grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    }

    .osi-diagnosis-copy {
        position: sticky;
        top: 112px;
    }

    .osi-pattern {
        grid-template-columns: minmax(240px, 0.66fr) minmax(0, 1.34fr);
        padding: 34px;
    }

    .osi-pattern__action {
        margin-top: auto;
        padding-top: 26px;
    }

    .osi-process__item {
        grid-template-columns: 52px minmax(190px, 0.55fr) minmax(0, 1.45fr);
        gap: 22px;
        padding-bottom: 28px;
    }

    .osi-process__details {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin-top: 0;
    }

    .osi-process__details p:last-child {
        grid-column: auto;
    }

    .osi-process-notes,
    .osi-resource-notes,
    .osi-faq-grid--three,
    .osi-resource-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .osi-error__layout {
        grid-template-columns: minmax(0, 1fr) minmax(180px, 0.42fr);
    }
}

@media (max-width: 1120px) {
    .osi-brand__descriptor {
        display: none;
    }

    .osi-nav {
        gap: 12px;
    }

    .osi-nav a {
        font-size: 12px;
    }

    .osi-header__cta {
        padding-inline: 11px;
        font-size: 12px;
    }
}

@media (max-width: 900px) {
    .osi-nav {
        display: none;
    }

    .osi-mobile-menu {
        display: block;
    }

    .osi-hero {
        padding: 78px 0 84px;
    }

    .osi-hero h1 {
        font-size: 42px;
    }

    .osi-hero__panel {
        max-width: 620px;
    }

    .osi-page .osi-hero::before,
    .osi-page .osi-hero::after {
        right: -150px;
        width: min(520px, 70vw);
        opacity: 0.34;
    }

    .osi-page .osi-hero::after {
        opacity: 0.42;
    }

    .osi-page:has(.osi-form) .osi-hero::before,
    .osi-page--privacy .osi-hero::before {
        opacity: 0.14;
    }

    .osi-page:has(.osi-form) .osi-hero::after,
    .osi-page--privacy .osi-hero::after {
        opacity: 0.18;
    }

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

    .osi-privacy-nav {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .osi-privacy-nav .osi-label {
        grid-column: 1 / -1;
    }

    .osi-section {
        padding: 76px 0;
    }
}

@media (max-width: 639px) {
    .osi-shell {
        width: min(calc(100% - 24px), var(--os-shell));
    }

    .osi-header__inner {
        min-height: 68px;
        gap: 10px;
    }

    .osi-brand__logo {
        width: 118px;
        height: 34px;
    }

    .osi-header__actions {
        gap: 6px;
    }

    .osi-header__cta {
        display: none;
    }

    .osi-lang {
        gap: 2px;
        font-size: 12px;
    }

    .osi-lang a {
        min-width: 21px;
    }

    .osi-hero {
        padding: 64px 0 70px;
        background-size: 34px 34px, 34px 34px, auto;
    }

    .osi-page .osi-hero::before {
        top: auto;
        right: -70px;
        bottom: -150px;
        width: 300px;
        opacity: 0.18;
        transform: none;
    }

    .osi-page .osi-hero::after {
        display: none;
    }

    .osi-page--privacy .osi-hero::before,
    .osi-page:has(.osi-form) .osi-hero::before {
        opacity: 0.1;
    }

    .osi-hero__layout {
        gap: 34px;
    }

    .osi-eyebrow {
        margin-bottom: 14px;
        font-size: 15px;
    }

    .osi-hero h1 {
        margin-bottom: 18px;
        font-size: 34px;
        line-height: 1.1;
    }

    .osi-hero__lead {
        margin-bottom: 24px;
        font-size: 16px;
        line-height: 1.65;
    }

    .osi-actions {
        display: grid;
    }

    .osi-actions .osi-button {
        width: 100%;
        min-width: 0;
    }

    .osi-hero__panel {
        padding: 20px;
    }

    .osi-hero__highlights {
        display: grid;
        gap: 8px;
    }

    .osi-section {
        padding: 62px 0;
    }

    .osi-section__heading {
        margin-bottom: 32px;
    }

    .osi-section__heading h2,
    .osi-final h2 {
        font-size: 31px;
    }

    .osi-section__heading > p:last-child,
    .osi-final__copy > p:last-child {
        font-size: 16px;
    }

    .osi-offer {
        gap: 20px;
        padding: 24px 20px;
    }

    .osi-offer h3 {
        font-size: 24px;
    }

    .osi-card,
    .osi-faq-item {
        padding: 21px 19px;
    }

    .osi-final {
        padding: 62px 0;
    }

    .osi-final__inner {
        padding-left: 16px;
    }

    .osi-final__actions {
        display: grid;
    }

    .osi-final__actions .osi-button {
        width: 100%;
    }

    .osi-diagnosis-layout {
        gap: 38px;
    }

    .osi-side-note {
        padding-left: 17px;
    }

    .osi-form {
        padding: 24px 18px;
    }

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

    .osi-field--full {
        grid-column: auto;
    }

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

    .osi-pattern,
    .osi-resource {
        padding: 24px 20px;
    }

    .osi-pattern__head h2 {
        font-size: 24px;
    }

    .osi-pattern__action,
    .osi-section__actions {
        display: grid;
    }

    .osi-pattern__action .osi-button,
    .osi-section__actions .osi-button {
        width: 100%;
    }

    .osi-process__title :is(h2, h3) {
        font-size: 23px;
    }

    .osi-process__details p {
        padding: 12px;
    }

    .osi-resource h2 {
        font-size: 23px;
    }

    .osi-error {
        min-height: calc(100vh - 68px);
    }

    .osi-error__code {
        font-size: 92px;
        text-align: left;
    }

    .osi-privacy-nav {
        display: none;
    }

    .osi-privacy-section {
        padding-bottom: 42px;
    }

    .osi-privacy-section + .osi-privacy-section {
        padding-top: 42px;
    }

    .osi-privacy-section h2 {
        font-size: 29px;
    }

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

    .osi-privacy-callout {
        padding: 19px 18px;
    }
}

@media (max-width: 380px) {
    .osi-brand__logo {
        width: 108px;
    }

    .osi-mobile-menu__panel {
        right: -2px;
    }

    .osi-hero h1 {
        font-size: 31px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .osi-page .osi-nav a::after,
    .osi-page .osi-header__cta,
    .osi-page .osi-button,
    .osi-page .osi-field :is(input, select, textarea) {
        transition: none;
    }

    .osi-page .osi-button:hover {
        transform: none;
    }
}
