.rs-underwriting-page {
    --rs-bg: #06121b;
    --rs-bg-2: #0a1c28;
    --rs-card: #0f2232;
    --rs-card-2: #152a3b;
    --rs-teal: #43e2d4;
    --rs-cyan: #67e8f9;
    --rs-text: #ffffff;
    --rs-muted: #8ea7be;
    --rs-border: rgba(255, 255, 255, 0.16);
    --rs-border-soft: rgba(255, 255, 255, 0.09);
    --rs-shadow: 0 26px 80px rgba(0, 0, 0, 0.52);
    min-height: 100vh;
    color: var(--rs-text);
    background:
        radial-gradient(circle at top left, rgba(45, 212, 191, 0.12), transparent 28%),
        linear-gradient(90deg, #06121b 0%, #071722 50%, #0a1c28 100%);
    overflow-x: hidden;
}

body.body-map-full-page.rs-underwriting-full-page {
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
}

.rs-underwriting-page * {
    box-sizing: border-box;
}

.rs-shell {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
}

.rs-eyebrow {
    margin: 0 0 18px;
    color: var(--rs-teal);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.rs-section-title {
    margin: 0 0 22px;
    font-size: clamp(2rem, 5.4vw, 3.85rem);
    line-height: 1.07;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-family: var(--site-ff) !important;
    color: white;
    letter-spacing: -2.5px;
    word-spacing: 2px;
}

.rs-body-copy {
    margin: 0;
    color: #b4c9dd;
    font-size: 1.02rem;
    line-height: 1.8;
    font-weight: 600;
}

.rs-sub-copy {
    margin: 0;
    color: var(--rs-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 600;
}

.rs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 21px !important;
    border-radius: 16px;
    font-size: 0.96rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.rs-btn-primary {
    border: 1px solid transparent;
    color: #032934;
    background: var(--rs-teal);
}

.rs-btn-primary:hover {
    color: #032934;
    background: #60ebe0;
}

.rs-btn-secondary {
    border: 1px solid var(--rs-border);
    color: #d9e6f4;
    background: rgba(255, 255, 255, 0.04);
}

.rs-btn-secondary:hover {
    color: #ffffff;
    border-color: rgba(67, 226, 212, 0.5);
    background: rgba(67, 226, 212, 0.12);
}

/* Header */
.rs-underwriting-header {
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    background: rgba(7, 19, 27, 0.9);
}

.rs-underwriting-nav {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.rs-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
}

.rs-brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #052129;
    background: linear-gradient(135deg, #99f6e4, #67e8f9);
    box-shadow: 0 0 45px rgba(45, 212, 191, 0.38);
}

.rs-brand-name {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.rs-nav-links,
.rs-nav-actions {
    display: flex;
    align-items: center;
}

.rs-nav-links {
    gap: 28px;
}

.rs-nav-actions {
    gap: 10px;
}

.rs-nav-links a {
    color: #d2dfec;
    font-weight: 600;
    text-decoration: none;
}

.rs-nav-links a:hover {
    color: #ffffff;
}

.rs-nav-product-wrap {
    position: relative;
}

.rs-product-menu {
    position: absolute;
    top: calc(100% + 22px);
    left: 50%;
    width: min(980px, 65vw);
    transform: translateX(-50%) translateY(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 100;
    padding-top: 12px;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.rs-nav-product-wrap:hover .rs-product-menu,
.rs-nav-product-wrap:focus-within .rs-product-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.rs-product-menu-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 26px;
    background:
        radial-gradient(circle at top left, rgba(45, 212, 191, 0.14), transparent 32%),
        rgba(7, 19, 27, 0.98);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(18px);
}

.rs-product-menu-card {
    display: block;
    min-height: 142px;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.035);
    color: #eaf6ff;
    text-decoration: none;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.rs-product-menu-card:hover {
    transform: translateY(-2px);
    border-color: rgba(67, 226, 212, 0.45);
    background: rgba(67, 226, 212, 0.08);
    color: #eaf6ff;
}

.rs-product-menu-card.is-featured {
    border-color: rgba(67, 226, 212, 0.45);
    background: rgba(67, 226, 212, 0.08);
}

.rs-product-menu-kicker {
    display: block;
    margin-bottom: 9px;
    color: #43e2d4;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.rs-product-menu-card strong {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.2;
    font-weight: 900;
}

.rs-product-menu-card p {
    margin: 0;
    color: #9fb7cc;
    font-size: 0.9rem;
    line-height: 1.55;
    font-weight: 600;
}

/* Hero */
.rs-underwriting-hero {
    padding: 92px 0 0;
    border-bottom: 1px solid var(--rs-border-soft);
}

.rs-underwriting-hero-grid {
    display: grid;
    min-height: 640px;
    grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
    align-items: center;
    gap: 70px;
}

.rs-underwriting-hero-copy {
    position: relative;
    z-index: 2;
}

.rs-underwriting-hero-title {
    max-width: 600px;
    margin: 0 0 24px;
    font-size: clamp(3.9rem, 3.6vw, 6rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-transform: uppercase;
}


.rs-underwriting-hero-title-base, .rs-underwriting-hero-title-accent {
    display: inline;
    max-width: none;
    font: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    font-weight: 800;
    font-family: var(--site-ff);
}

.rs-underwriting-hero-title-base {
    color: #ffffff;
}

.rs-underwriting-hero-title-accent {
    background: linear-gradient(90deg, #5eead4 0%, #22d3ee 48%, #60a5fa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.rs-gradient-text {
    background: linear-gradient(90deg, #5eead4 0%, #22d3ee 48%, #60a5fa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.rs-underwriting-hero-description {
    max-width: 720px;
    color: #c6d8ea;
    font-size: 1.05rem;
    line-height: 1.75;
    font-weight: 700;
}

.rs-underwriting-hero-actions {
    margin: 28px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.rs-underwriting-hero-visual {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rs-underwriting-hero-glow {
    position: absolute;
    inset: 8% 5%;
    filter: blur(54px);
    background: radial-gradient(circle, rgba(67, 226, 212, 0.24), transparent 64%);
}

/* Hero mockup */
.rs-underwriting-mockup-card {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 620px;
    padding: 26px;
    border-radius: 34px;
    border: 1px solid var(--rs-border);
    background:
        linear-gradient(180deg, rgba(6, 18, 27, 0.86), rgba(6, 18, 27, 0.95)),
        var(--rs-underwriting-mockup-image, none) center / cover no-repeat,
        linear-gradient(180deg, rgba(13, 31, 47, 0.96), rgba(7, 20, 32, 0.98));
    box-shadow: var(--rs-shadow);
}

.rs-underwriting-mockup-header,
.rs-underwriting-timeline-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.rs-mockup-eyebrow {
    margin: 0;
    color: #7ad7d0;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.72rem;
    font-weight: 800;
}

.rs-mockup-title {
    margin: 5px 0 0;
    color: #ffffff;
    font-size: 2.35rem;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
}

.rs-underwriting-mockup-stats {
    display: flex;
    align-items: stretch;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.rs-underwriting-mockup-stats span {
    min-width: 116px;
    text-align: center;
    padding: 9px 12px;
    border-radius: 14px;
    border: 1px solid var(--rs-border-soft);
    color: #ecf6ff;
    font-size: 1.28rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.03);
}

.rs-doc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-radius: 14px;
    padding: 12px 13px;
    border: 1px solid var(--rs-border-soft);
    background: rgba(255, 255, 255, 0.03);
}

.rs-doc-row + .rs-doc-row {
    margin-top: 8px;
}

.rs-doc-row-copy {
    min-width: 0;
}

.rs-doc-row-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
}

.rs-doc-row-meta {
    margin: 3px 0 0;
    font-size: 0.82rem;
    font-weight: 700;
    color: #9fb4ca;
}

/* Status pills */
.rs-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.69rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.rs-status-pill-progress {
    color: #7dd3fc;
    border: 1px solid rgba(125, 211, 252, 0.45);
    background: rgba(125, 211, 252, 0.15);
}

.rs-status-pill-ready {
    color: #67e8f9;
    border: 1px solid rgba(103, 232, 249, 0.48);
    background: rgba(103, 232, 249, 0.14);
}

.rs-status-pill-sent {
    color: #fcd34d;
    border: 1px solid rgba(252, 211, 77, 0.45);
    background: rgba(252, 211, 77, 0.14);
}

.rs-status-pill-signed,
.rs-status-pill-live {
    color: #5eead4;
    border: 1px solid rgba(94, 234, 212, 0.48);
    background: rgba(94, 234, 212, 0.16);
}

/* Floating hero pills */
.rs-floating-pill {
    position: absolute;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid rgba(67, 226, 212, 0.42);
    background: rgba(13, 31, 47, 0.96);
    padding: 13px 19px;
    font-size: 0.92rem;
    font-weight: 800;
    color: #e1f0fd;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42);
}

.rs-pill-icon {
    display: inline-flex;
    color: var(--rs-teal);
}

.rs-floating-pill-one {
    top: 5%;
    left: 14%;
    animation: floatOne 8s ease-in-out infinite;
}

.rs-floating-pill-two {
    top: 7%;
    right: -4%;
    animation: floatTwo 9.5s ease-in-out infinite;
}

.rs-floating-pill-three {
    top: 48%;
    left: -12%;
    animation: floatThree 10.5s ease-in-out infinite;
}

.rs-floating-pill-four {
    top: 70%;
    right: -20%;
    animation: floatFour 8.8s ease-in-out infinite;
}

.rs-floating-pill-five {
    bottom: 10%;
    left: 43%;
    animation: floatFive 11.2s ease-in-out infinite;
}

@keyframes floatOne {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(-4px, -10px, 0); }
}

@keyframes floatTwo {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(6px, -12px, 0); }
}

@keyframes floatThree {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(-5px, 11px, 0); }
}

@keyframes floatFour {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(4px, 9px, 0); }
}

@keyframes floatFive {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(2px, -11px, 0); }
}

/* Full viewport rolling feature track */
.rs-underwriting-track {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-top: 1px solid var(--rs-border-soft);
    border-bottom: 1px solid var(--rs-border-soft);
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.rs-underwriting-track-viewport {
    width: 100vw;
    overflow: hidden;
    padding: 16px 0;
}

.rs-underwriting-track-scroll {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 18px;
    will-change: transform;
    animation: rsFeatureTrack 36s linear infinite;
}

.rs-underwriting-track:hover .rs-underwriting-track-scroll {
    animation-play-state: paused;
}

.rs-track-spacer {
    display: none;
}

.rs-track-pill {
    flex: 0 0 auto;
    min-width: max-content;
    border-radius: 999px;
    border: 1px solid var(--rs-border-soft);
    background: rgba(23, 42, 58, 0.92);
    color: #d8e8f9;
    font-weight: 800;
    font-size: 0.86rem;
    padding: 13px 26px;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

@keyframes rsFeatureTrack {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(calc(-33.333% - 12px), 0, 0);
    }
}

/* Section spacing */
.rs-underwriting-timeline,
.rs-underwriting-features,
.rs-underwriting-comparison,
.rs-underwriting-final-cta {
    padding: 86px 0;
}

/* Timeline */
.rs-underwriting-timeline-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 40px;
}

.rs-underwriting-timeline-copy .rs-section-title,
.rs-underwriting-features-intro .rs-section-title {
    text-transform: none;
    color: #f2f8ff;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.rs-underwriting-timeline-copy .rs-body-copy {
    max-width: 520px;
    color: #b9cee1;
    font-size: 1.08rem;
}

.rs-underwriting-timeline-pills {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rs-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid rgba(67, 226, 212, 0.42);
    background: rgba(67, 226, 212, 0.14);
    padding: 8px 13px;
    color: #bff8ef;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.rs-underwriting-timeline-card {
    border-radius: 24px;
    border: 1px solid var(--rs-border);
    background: linear-gradient(180deg, rgba(21, 42, 59, 0.94) 0%, rgba(14, 31, 46, 0.94) 100%);
    padding: 18px;
    box-shadow: var(--rs-shadow);
}

.rs-underwriting-timeline-list {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.rs-underwriting-timeline-row {
    position: relative;
    display: flex;
    gap: 12px;
    padding: 0 0 12px;
}

.rs-underwriting-timeline-row:last-child {
    padding-bottom: 0;
}

.rs-underwriting-timeline-row:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 9px;
    top: 22px;
    width: 1px;
    height: calc(100% - 10px);
    background: rgba(255, 255, 255, 0.16);
}

.rs-underwriting-timeline-marker {
    margin-top: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 900;
    color: rgba(148, 163, 184, 0.8);
    flex-shrink: 0;
}

.rs-underwriting-timeline-row.is-active .rs-underwriting-timeline-marker {
    border-color: rgba(67, 226, 212, 0.72);
    background: rgba(67, 226, 212, 0.94);
    color: #032128;
}

.rs-underwriting-timeline-content {
    flex: 1;
    border-radius: 14px;
    padding: 11px 12px;
    border: 1px solid var(--rs-border-soft);
    background: rgba(0, 0, 0, 0.18);
}

.rs-underwriting-timeline-row-title {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #8da7bf;
}

.rs-underwriting-timeline-row-description {
    margin: 3px 0 0;
    color: #e7f1fc;
    font-size: 0.97rem;
    font-weight: 800;
}

/* Features */
.rs-underwriting-features-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.9fr);
    gap: 24px;
}

.rs-underwriting-features-intro .rs-section-title,
.rs-underwriting-features-intro .rs-body-copy {
    max-width: 520px;
}

.rs-underwriting-features-intro .rs-section-title {
    color: #f2f8ff;
}

.rs-underwriting-features-intro .rs-body-copy {
    color: #b9cee1;
    font-size: 1.08rem;
}

.rs-underwriting-feature-cards {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rs-feature-card {
    border: 1px solid var(--rs-border);
    border-radius: 20px;
    padding: 18px;
    background: linear-gradient(180deg, rgba(21, 39, 55, 0.94) 0%, rgba(16, 32, 47, 0.94) 100%);
}

.rs-feature-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    border: 1px solid rgba(67, 226, 212, 0.28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 13px;
    color: #46ded2;
    background: rgba(67, 226, 212, 0.12);
    font-size: 10px;
}

.rs-feature-card-title {
    margin: 0 0 8px;
    font-size: 2rem;
    line-height: 1;
    font-weight: 900;
    color: #f3f9ff;
}

.rs-feature-card-description {
    margin: 0;
    color: #c6d8ea;
    line-height: 1.72;
    font-size: 0.96rem;
    font-weight: 700;
}

/* Comparison */
.rs-underwriting-comparison .rs-eyebrow,
.rs-underwriting-comparison .rs-section-title,
.rs-underwriting-comparison .rs-body-copy,
.rs-underwriting-comparison .rs-underwriting-comparison-actions {
    text-align: center;
    justify-content: center;
}

.rs-underwriting-comparison-title {
    text-transform: none;
}

.rs-underwriting-comparison-actions {
    margin: 28px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.rs-underwriting-comparison-table-wrap {
    border: 1px solid var(--rs-border);
    border-radius: 22px;
    overflow: hidden;
    background: rgba(9, 22, 33, 0.86);
}

.rs-underwriting-comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.rs-underwriting-comparison-table thead th {
    text-align: left;
    font-size: 0.92rem;
    color: #e6f2ff;
    background: rgba(27, 42, 57, 0.92);
    padding: 15px 16px;
    border-left: 1px solid var(--rs-border-soft);
}

.rs-underwriting-comparison-table thead th:first-child {
    border-left: none;
}

.rs-underwriting-comparison-table thead .rs-comparison-col-rs {
    background: rgba(67, 226, 212, 0.18);
}

.rs-col-pill {
    display: inline-flex;
    margin-left: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(67, 226, 212, 0.35);
    background: rgba(67, 226, 212, 0.14);
    color: #7cebd8;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.rs-col-pill-muted {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #a6bbce;
}

.rs-underwriting-comparison-table tbody th,
.rs-underwriting-comparison-table tbody td {
    vertical-align: top;
    text-align: left;
    padding: 14px 16px;
    border-top: 1px solid var(--rs-border-soft);
    border-left: 1px solid var(--rs-border-soft);
    font-size: 0.95rem;
    line-height: 1.6;
}

.rs-underwriting-comparison-table tbody th {
    width: 31%;
    color: #ffffff;
    font-weight: 800;
    border-left: none;
}

.rs-underwriting-comparison-table tbody td {
    width: 34.5%;
    color: #bfd3e6;
    font-weight: 600;
}

.rs-underwriting-comparison-table tbody .rs-comparison-col-rs {
    background: rgba(67, 226, 212, 0.10);
}

.rs-underwriting-comparison-table tbody .rs-comparison-col-competitor {
    background: rgba(9, 22, 33, 0.24);
}

.rs-check-icon {
    color: #44f2dc;
    font-weight: 900;
    margin-right: 8px;
}

.rs-highlight-row {
    background: rgba(67, 226, 212, 0.11);
}

.rs-highlight-row .rs-comparison-col-rs {
    background: rgba(67, 226, 212, 0.17);
}

.rs-underwriting-comparison-mobile {
    display: none;
    margin-top: 12px;
}

.rs-underwriting-comparison-mobile-card {
    border-radius: 18px;
    border: 1px solid var(--rs-border);
    background: rgba(10, 23, 32, 0.9);
    padding: 16px;
}

.rs-underwriting-comparison-mobile-card + .rs-underwriting-comparison-mobile-card {
    margin-top: 10px;
}

.rs-comparison-mobile-title {
    margin: 0 0 8px;
    font-size: 1rem;
    font-weight: 800;
}

.rs-underwriting-comparison-mobile-card p {
    margin: 0;
    color: #bad0e4;
    font-size: 0.88rem;
    line-height: 1.58;
}

.rs-underwriting-comparison-mobile-card p + p {
    margin-top: 6px;
}

.rs-comparison-footnote {
    margin: 14px 0 0;
    font-size: 0.8rem;
    color: #89a4bc;
    font-weight: 600;
}

/* Final CTA */
.rs-underwriting-final-cta {
    padding-top: 40px;
}

.rs-underwriting-final-cta-shell {
    border: 1px solid var(--rs-border);
    border-radius: 28px;
    padding: 36px 40px;
    background:
        radial-gradient(circle at 10% 0%, rgba(67, 226, 212, 0.12), transparent 40%),
        rgba(9, 24, 36, 0.9);
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
}

.rs-underwriting-final-cta-copy .rs-section-title {
    max-width: 840px;
    text-transform: none;
    color: white;
    font-family: var(--site-ff) !important;
    font-size: 3rem;
    letter-spacing: normal;
}

.rs-underwriting-final-cta-actions {
    justify-content: flex-end;
}

/* Footer */
.nlp-footer {
    padding: 48px 24px;
    border-top: 1px solid var(--rs-border);
    color: #ffffff;
    backdrop-filter: blur(22px);
    background:
        radial-gradient(circle at 100% 100%, rgba(67, 226, 212, 0.18), transparent 45%),
        linear-gradient(to top left, #06121b, #07121a);
}

.nlp-footer__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.nlp-footer__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.nlp-footer__brand-name {
    font-size: 1.25rem;
    font-weight: 700;
}

.nlp-footer__tagline {
    color: #d1d5db;
    font-size: 0.95rem;
}

.nlp-footer__heading {
    margin: 0 0 12px;
    font-size: 1rem;
    font-weight: 700;
}

.nlp-footer__links,
.nlp-footer__legal {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.nlp-footer__links a,
.nlp-footer__legal a {
    color: #d1d5db;
    text-decoration: none;
}

.nlp-footer__links a:hover,
.nlp-footer__legal a:hover {
    color: #ffffff;
}

.nlp-footer__socials {
    display: flex;
    gap: 12px;
}

.nlp-footer__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.nlp-footer__social:hover {
    transform: scale(1.05);
}

.nlp-footer__social:first-child {
    background: #2563eb;
}

.nlp-footer__social:last-child {
    background: #dc2626;
}

.nlp-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--rs-border);
    color: #9ca3af;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1199px) {
    .rs-underwriting-hero-grid,
    .rs-underwriting-timeline-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .rs-underwriting-hero-visual {
        min-height: 520px;
    }

    .rs-underwriting-features-shell {
        grid-template-columns: 1fr;
    }

    .rs-floating-pill {
        display: none;
    }
}

@media (max-width: 900px) {
    .rs-shell {
        width: min(1240px, calc(100% - 28px));
    }

    .rs-nav-links {
        display: none;
    }

    .rs-product-menu {
        display: none;
    }

    .rs-nav-actions .rs-btn {
        min-height: 42px;
        padding: 0 16px;
    }

    .rs-underwriting-hero,
    .rs-underwriting-timeline,
    .rs-underwriting-features,
    .rs-underwriting-comparison,
    .rs-underwriting-final-cta {
        padding: 66px 0;
    }

    .rs-underwriting-feature-cards {
        grid-template-columns: 1fr;
    }

    .rs-underwriting-comparison-table-wrap {
        display: none;
    }

    .rs-underwriting-comparison-mobile {
        display: block;
    }

    .rs-underwriting-final-cta-shell {
        grid-template-columns: 1fr;
        padding: 26px;
    }

    .rs-underwriting-final-cta-actions {
        justify-content: flex-start;
    }

    .nlp-footer__grid,
    .nlp-footer__bottom {
        grid-template-columns: 1fr;
        display: grid;
    }

    .nlp-footer__legal {
        gap: 8px;
    }
}

@media (max-width: 680px) {
    .rs-underwriting-hero {
        padding-top: 64px;
    }

    .rs-underwriting-hero-title {
        font-size: clamp(2.55rem, 11vw, 4rem);
    }

    .rs-underwriting-hero-title-base,
    .rs-underwriting-hero-title-accent {
        max-width: none;
    }

    .rs-feature-card-title {
        font-size: 1.55rem;
    }

    .rs-mockup-title {
        font-size: 1.6rem;
    }

    .rs-underwriting-mockup-stats span {
        font-size: 1.15rem;
    }

    .rs-btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rs-underwriting-track-scroll,
    .rs-floating-pill {
        animation: none !important;
        transform: none !important;
    }
}
