:root {
    --rp-page: #eef6f7;
    --rp-page-2: #f8fbff;
    --rp-ink: #0f172a;
    --rp-muted: #587086;
    --rp-line: #c6d8e4;
    --rp-soft-line: #dce9f0;
    --rp-surface: #ffffff;
    --rp-primary: #0f5da8;
    --rp-primary-strong: #12325a;
    --rp-accent: #0f766e;
    --rp-accent-soft: #c9f3eb;
    --rp-sky: #4ea8de;
    --rp-success: #079455;
    --rp-shadow: 0 24px 64px rgba(15, 50, 90, 0.16);
}

html[data-bs-theme="dark"] {
    --rp-page: #07111f;
    --rp-page-2: #0c1728;
    --rp-ink: #f8fafc;
    --rp-muted: #9fb2c5;
    --rp-line: #274057;
    --rp-soft-line: #20364d;
    --rp-surface: #101d2d;
    --rp-primary: #60a5fa;
    --rp-primary-strong: #dbeafe;
    --rp-accent: #2dd4bf;
    --rp-accent-soft: rgba(45, 212, 191, 0.18);
    --rp-sky: #7dd3fc;
    --rp-success: #34d399;
    --rp-shadow: 0 26px 72px rgba(2, 6, 23, 0.46);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    background:
        linear-gradient(135deg, rgba(15, 118, 110, 0.08), transparent 32%),
        linear-gradient(225deg, rgba(78, 168, 222, 0.12), transparent 36%),
        linear-gradient(180deg, var(--rp-page), var(--rp-page-2));
    color: var(--rp-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

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

h1,
h2,
h3,
p,
dl,
dd {
    margin-top: 0;
}

.rp-topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 72px;
    padding: 0 clamp(18px, 5vw, 72px);
    border-bottom: 1px solid color-mix(in srgb, var(--rp-line) 72%, transparent);
    background: color-mix(in srgb, var(--rp-page-2) 88%, transparent);
    backdrop-filter: blur(16px);
}

.rp-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    color: var(--rp-ink);
    font-weight: 850;
}

.rp-brand__mark {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border: 1px solid color-mix(in srgb, var(--rp-primary) 30%, var(--rp-line));
    border-radius: 8px;
    background: linear-gradient(135deg, var(--rp-primary), var(--rp-accent));
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(15, 93, 168, 0.22);
}

.rp-brand small {
    display: block;
    margin-top: 2px;
    color: var(--rp-muted);
    font-size: 12px;
    font-weight: 700;
}

.rp-nav-actions,
.rp-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.rp-btn,
.rp-theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

.rp-btn {
    padding: 10px 15px;
    border: 1px solid transparent;
}

.rp-theme-toggle {
    width: 40px;
    padding: 0;
    border: 1px solid var(--rp-line);
    background: color-mix(in srgb, var(--rp-surface) 74%, transparent);
    color: var(--rp-ink);
    cursor: pointer;
}

.rp-theme-toggle [data-theme-icon] {
    font-size: 18px;
    line-height: 1;
}

.rp-theme-toggle:hover,
.rp-btn:hover {
    transform: translateY(-1px);
}

.rp-btn--primary {
    background: var(--rp-primary-strong);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(18, 50, 90, 0.22);
}

html[data-bs-theme="dark"] .rp-btn--primary {
    background: var(--rp-primary);
    color: #07111f;
}

.rp-btn--secondary {
    border-color: var(--rp-line);
    background: color-mix(in srgb, var(--rp-surface) 68%, transparent);
    color: var(--rp-ink);
}

.rp-hero {
    position: relative;
    min-height: calc(100svh - 72px);
    isolation: isolate;
    overflow: hidden;
}

.rp-hero__texture {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 16% 22%, rgba(15, 118, 110, 0.16), transparent 28%),
        radial-gradient(circle at 76% 20%, rgba(78, 168, 222, 0.2), transparent 30%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.68), transparent 42%);
}

html[data-bs-theme="dark"] .rp-hero__texture {
    background:
        radial-gradient(circle at 16% 22%, rgba(45, 212, 191, 0.12), transparent 30%),
        radial-gradient(circle at 76% 20%, rgba(96, 165, 250, 0.16), transparent 31%);
}

.rp-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
    align-items: center;
    gap: clamp(30px, 5vw, 70px);
    min-height: min(760px, calc(100svh - 72px));
    padding: clamp(46px, 6vw, 78px) clamp(18px, 5vw, 72px) clamp(38px, 5vw, 58px);
}

.rp-hero__copy {
    width: min(100%, 760px);
}

.rp-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    border: 1px solid color-mix(in srgb, var(--rp-primary) 22%, var(--rp-line));
    border-radius: 8px;
    background: color-mix(in srgb, var(--rp-accent-soft) 58%, transparent);
    color: var(--rp-primary-strong);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

html[data-bs-theme="dark"] .rp-eyebrow {
    color: var(--rp-primary);
}

.rp-eyebrow--ink {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.24);
}

h1 {
    max-width: 740px;
    margin: 18px 0 16px;
    color: var(--rp-ink);
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: 0;
}

.rp-hero p {
    max-width: 680px;
    margin-bottom: 26px;
    color: var(--rp-muted);
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.65;
}

.rp-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.rp-hero__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 7px 10px;
    border: 1px solid color-mix(in srgb, var(--rp-line) 82%, transparent);
    border-radius: 8px;
    background: color-mix(in srgb, var(--rp-surface) 58%, transparent);
    color: var(--rp-muted);
    font-size: 13px;
    font-weight: 750;
}

.rp-hero-graphic {
    position: relative;
    min-height: 520px;
}

.rp-cockpit {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-rows: auto 1fr;
    border: 1px solid color-mix(in srgb, var(--rp-line) 82%, transparent);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(232, 244, 249, 0.7));
    box-shadow: var(--rp-shadow);
    overflow: hidden;
}

html[data-bs-theme="dark"] .rp-cockpit {
    background: linear-gradient(145deg, rgba(16, 29, 45, 0.92), rgba(10, 23, 39, 0.84));
}

.rp-cockpit::before {
    content: "";
    position: absolute;
    inset: 44px 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--rp-sky), transparent);
    animation: rp-scan 4s ease-in-out infinite;
}

.rp-cockpit__chrome {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 48px;
    padding: 0 16px;
    border-bottom: 1px solid color-mix(in srgb, var(--rp-line) 75%, transparent);
    background: color-mix(in srgb, var(--rp-surface) 65%, transparent);
}

.rp-cockpit__chrome span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--rp-sky);
}

.rp-cockpit__chrome span:nth-child(2) {
    background: var(--rp-accent);
}

.rp-cockpit__chrome span:nth-child(3) {
    background: var(--rp-primary);
}

.rp-cockpit__chrome strong {
    margin-left: 7px;
    color: var(--rp-muted);
    font-size: 12px;
    text-transform: uppercase;
}

.rp-cockpit__surface {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(150px, 0.65fr);
    gap: 16px;
    min-height: 0;
    padding: 18px;
}

.rp-cockpit__main,
.rp-cockpit__side,
.rp-portal-preview,
.rp-activity-rail {
    min-width: 0;
}

.rp-kpi-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.rp-kpi-strip div,
.rp-portal-preview,
.rp-activity-rail {
    border: 1px solid color-mix(in srgb, var(--rp-line) 72%, transparent);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(8px);
}

html[data-bs-theme="dark"] .rp-kpi-strip div,
html[data-bs-theme="dark"] .rp-portal-preview,
html[data-bs-theme="dark"] .rp-activity-rail {
    background: rgba(255, 255, 255, 0.05);
}

.rp-kpi-strip div {
    padding: 12px;
}

.rp-kpi-strip span,
.rp-portal-preview span,
.rp-activity-rail span {
    color: var(--rp-muted);
    font-size: 12px;
    font-weight: 750;
}

.rp-kpi-strip strong,
.rp-portal-preview strong {
    display: block;
    margin-top: 6px;
    color: var(--rp-ink);
    font-size: 18px;
}

.rp-live-chart {
    display: flex;
    align-items: end;
    gap: 11px;
    height: 150px;
    margin-top: 18px;
    padding: 18px;
    border-radius: 8px;
    background:
        repeating-linear-gradient(0deg, transparent 0 31px, color-mix(in srgb, var(--rp-line) 54%, transparent) 32px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.16));
}

.rp-live-chart span {
    flex: 1;
    min-width: 12px;
    height: var(--bar);
    border-radius: 8px 8px 3px 3px;
    background: linear-gradient(180deg, var(--rp-sky), var(--rp-primary));
    transform-origin: bottom;
    animation: rp-bar-breathe 3s ease-in-out infinite;
}

.rp-live-chart span:nth-child(even) {
    background: linear-gradient(180deg, var(--rp-accent), #66d8ca);
    animation-delay: -1.2s;
}

.rp-revenue-path {
    position: relative;
    min-height: 150px;
    margin-top: 18px;
}

.rp-path-line {
    position: absolute;
    top: 76px;
    left: 6%;
    right: 6%;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--rp-primary), var(--rp-accent), var(--rp-sky));
}

.rp-path-pulse {
    position: absolute;
    top: 67px;
    left: 5%;
    width: 22px;
    height: 22px;
    border: 4px solid #ffffff;
    border-radius: 50%;
    background: var(--rp-accent);
    box-shadow: 0 0 24px rgba(15, 118, 110, 0.5);
    animation: rp-path-travel 5.5s ease-in-out infinite;
}

.rp-path-node {
    position: absolute;
    display: grid;
    gap: 4px;
    min-width: 112px;
    padding: 10px 12px;
    border: 1px solid color-mix(in srgb, var(--rp-primary) 22%, var(--rp-line));
    border-radius: 8px;
    background: color-mix(in srgb, var(--rp-surface) 72%, transparent);
    box-shadow: 0 16px 36px rgba(15, 50, 90, 0.12);
    animation: rp-float 5s ease-in-out infinite;
}

.rp-path-node b {
    color: var(--rp-ink);
}

.rp-path-node small {
    color: var(--rp-muted);
    font-weight: 750;
}

.rp-path-node--lead {
    top: 18px;
    left: 2%;
}

.rp-path-node--quote {
    top: 92px;
    left: 37%;
    animation-delay: -1.3s;
}

.rp-path-node--invoice {
    top: 18px;
    right: 1%;
    animation-delay: -2.1s;
}

.rp-cockpit__side {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 14px;
}

.rp-activity-rail {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 14px;
}

.rp-activity-rail span {
    display: block;
    min-height: 34px;
    padding: 9px 10px 9px 22px;
    border-left: 3px solid var(--rp-accent);
    border-radius: 6px;
    background: color-mix(in srgb, var(--rp-surface) 58%, transparent);
    animation: rp-activity 4.2s ease-in-out infinite;
}

.rp-activity-rail span:nth-child(2) {
    animation-delay: -1.4s;
}

.rp-activity-rail span:nth-child(3) {
    animation-delay: -2.8s;
}

.rp-portal-preview {
    padding: 14px;
}

.rp-portal-preview span {
    display: block;
    margin-top: 9px;
    padding-top: 9px;
    border-top: 1px solid color-mix(in srgb, var(--rp-line) 70%, transparent);
}

.rp-section {
    padding: clamp(34px, 5vw, 66px) clamp(18px, 5vw, 72px);
}

.rp-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.rp-section-head > div:first-child {
    max-width: 760px;
}

h2 {
    margin-bottom: 8px;
    color: var(--rp-ink);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
    letter-spacing: 0;
}

.rp-section-head p,
.rp-access-copy p,
.rp-module-lane p {
    margin-bottom: 0;
    color: var(--rp-muted);
    line-height: 1.65;
}

.rp-section--flow {
    position: relative;
}

.rp-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
    padding: 18px 0 0;
    margin: 0;
    list-style: none;
}

.rp-timeline::before {
    content: "";
    position: absolute;
    top: 34px;
    left: 5%;
    right: 5%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--rp-primary), var(--rp-accent), var(--rp-sky));
}

.rp-timeline li {
    position: relative;
    display: grid;
    gap: 16px;
    padding-inline: 10px;
}

.rp-timeline li > span {
    display: grid;
    place-items: center;
    z-index: 1;
    width: 34px;
    height: 34px;
    border: 3px solid var(--rp-page-2);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rp-primary), var(--rp-accent));
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 0 0 5px color-mix(in srgb, var(--rp-accent-soft) 64%, transparent);
    animation: rp-node-pop 4.5s ease-in-out infinite;
    animation-delay: calc(var(--step) * -0.42s);
}

.rp-timeline h3 {
    margin-bottom: 6px;
    color: var(--rp-ink);
    font-size: 16px;
}

.rp-timeline p {
    margin-bottom: 0;
    color: var(--rp-muted);
    font-size: 14px;
    line-height: 1.55;
}

.rp-access-band {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 26px;
    padding: clamp(24px, 4vw, 38px);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(18, 50, 90, 0.98), rgba(15, 118, 110, 0.92)),
        var(--rp-primary-strong);
    color: #ffffff;
    box-shadow: var(--rp-shadow);
    overflow: hidden;
}

.rp-access-copy h2 {
    color: #ffffff;
}

.rp-access-copy p {
    color: rgba(255, 255, 255, 0.76);
    margin-bottom: 20px;
}

.rp-access-data {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.rp-counter-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
}

.rp-counter-row div {
    padding: 14px;
    background: rgba(255, 255, 255, 0.08);
}

.rp-counter-row strong {
    display: block;
    margin-bottom: 4px;
    font-size: 24px;
}

.rp-counter-row span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    font-weight: 750;
}

.rp-credentials {
    display: grid;
    gap: 1px;
    overflow: hidden;
    margin-bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
}

.rp-credentials div {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 14px;
    padding: 13px 14px;
    background: rgba(255, 255, 255, 0.08);
}

.rp-credentials dt {
    color: #ffffff;
    font-weight: 850;
}

.rp-credentials dd {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0;
    min-width: 0;
}

.rp-credentials code {
    color: rgba(255, 255, 255, 0.78);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    font-size: 12px;
    overflow-wrap: anywhere;
}

.rp-module-lanes {
    display: grid;
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--rp-soft-line);
    border-radius: 8px;
    background: var(--rp-soft-line);
}

.rp-module-lane {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
    align-items: center;
    gap: 22px;
    padding: 20px;
    background: color-mix(in srgb, var(--rp-page-2) 82%, transparent);
}

.rp-module-lane > div {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 0 16px;
    align-items: start;
}

.rp-module-lane span {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--rp-primary), var(--rp-accent));
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
}

.rp-module-lane h3 {
    margin-bottom: 6px;
    color: var(--rp-ink);
    font-size: 18px;
}

.rp-module-lane nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.rp-module-lane a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 10px;
    border: 1px solid color-mix(in srgb, var(--rp-primary) 18%, var(--rp-line));
    border-radius: 8px;
    background: color-mix(in srgb, var(--rp-surface) 54%, transparent);
    color: var(--rp-primary-strong);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
}

html[data-bs-theme="dark"] .rp-module-lane a {
    color: var(--rp-primary);
}

.rp-module-lane a:hover {
    border-color: var(--rp-accent);
    color: var(--rp-accent);
}

.rp-section--portal {
    padding-bottom: clamp(52px, 7vw, 90px);
}

.rp-portal-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    padding: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--rp-soft-line);
    border-radius: 8px;
    background: var(--rp-soft-line);
    list-style: none;
}

.rp-portal-strip li {
    position: relative;
    min-height: 134px;
    padding: 22px 22px 22px 42px;
    background: color-mix(in srgb, var(--rp-page-2) 84%, transparent);
    color: var(--rp-muted);
    line-height: 1.58;
}

.rp-portal-strip li::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 20px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--rp-success);
    box-shadow: 0 0 0 6px color-mix(in srgb, var(--rp-success) 14%, transparent);
}

.rp-footer {
    padding: 28px clamp(18px, 5vw, 72px);
    border-top: 1px solid var(--rp-line);
    background: color-mix(in srgb, var(--rp-page-2) 84%, transparent);
    color: var(--rp-muted);
    font-size: 14px;
}

[data-reveal] {
    opacity: 1;
    transform: none;
}

[data-reveal].is-visible {
    animation: rp-reveal-rise 0.46s ease both;
}

@keyframes rp-reveal-rise {
    0% {
        opacity: 0.92;
        transform: translateY(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rp-scan {
    0% {
        opacity: 0;
        transform: translateX(-18%);
    }

    35%,
    70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(18%);
    }
}

@keyframes rp-bar-breathe {
    0%,
    100% {
        transform: scaleY(0.84);
        opacity: 0.76;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes rp-path-travel {
    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(clamp(220px, 31vw, 410px));
    }
}

@keyframes rp-float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes rp-activity {
    0%,
    100% {
        border-left-color: var(--rp-accent);
        transform: translateX(0);
    }

    50% {
        border-left-color: var(--rp-sky);
        transform: translateX(4px);
    }
}

@keyframes rp-node-pop {
    0%,
    100% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.08);
    }
}

@media (max-width: 1120px) {
    .rp-hero__inner {
        grid-template-columns: 1fr;
    }

    .rp-hero-graphic {
        min-height: 500px;
    }

    .rp-timeline {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 26px 0;
    }

    .rp-timeline::before {
        display: none;
    }

    .rp-access-band,
    .rp-module-lane {
        grid-template-columns: 1fr;
    }

    .rp-module-lane nav {
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .rp-topbar {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .rp-nav-actions,
    .rp-actions {
        width: 100%;
    }

    .rp-nav-actions {
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr);
    }

    .rp-nav-actions .rp-theme-toggle {
        width: 44px;
    }

    .rp-nav-actions .rp-btn--primary {
        grid-column: 1 / -1;
    }

    .rp-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .rp-nav-actions .rp-btn,
    .rp-actions .rp-btn {
        min-width: 0;
        width: 100%;
        padding-right: 10px;
        padding-left: 10px;
    }

    .rp-hero__meta {
        display: grid;
        grid-template-columns: 1fr;
    }

    .rp-hero__meta span {
        justify-content: center;
        width: 100%;
    }

    .rp-hero,
    .rp-hero__inner {
        min-height: auto;
    }

    .rp-hero__inner {
        padding-top: 50px;
    }

    h1 {
        font-size: 38px;
    }

    .rp-hero-graphic {
        min-height: 620px;
    }

    .rp-cockpit__surface,
    .rp-counter-row,
    .rp-portal-strip,
    .rp-kpi-strip,
    .rp-timeline {
        grid-template-columns: 1fr;
    }

    .rp-revenue-path {
        min-height: 230px;
    }

    .rp-path-line,
    .rp-path-pulse {
        display: none;
    }

    .rp-path-node {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        margin-bottom: 10px;
    }

    .rp-section-head {
        display: grid;
        align-items: start;
    }

    .rp-credentials div {
        grid-template-columns: 1fr;
    }

    .rp-module-lane {
        padding: 16px;
    }

    .rp-module-lane > div {
        grid-template-columns: 1fr;
    }

    .rp-module-lane span {
        margin-bottom: 10px;
    }
}

@media (max-width: 460px) {
    .rp-hero-graphic {
        min-height: 690px;
    }

    .rp-live-chart {
        gap: 7px;
        padding: 14px;
    }
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
