.rpt-public {
    --rpt-ink: #07111f;
    --rpt-muted: #5b6878;
    --rpt-paper: #ffffff;
    --rpt-line: rgba(148, 163, 184, .28);
    --rpt-blue: #0056a0;
    --rpt-blue-dark: #002b5c;
    --rpt-cyan: #4cc9ff;
    --rpt-green: #20b486;
    --rpt-bg: #f5f8fc;
    --rpt-shadow: 0 28px 80px rgba(7, 17, 31, .18);
    min-height: 100vh;
    color: var(--rpt-ink);
    background: var(--rpt-bg);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    line-height: 1.55;
}

.rpt-public * {
    box-sizing: border-box;
}

.rpt-public a {
    color: inherit;
    text-decoration: none;
}

.rpt-public p {
    margin: 0;
    color: var(--rpt-muted);
}

.rpt-public h1,
.rpt-public h2,
.rpt-public h3,
.rpt-public h4 {
    margin: 0;
    line-height: 1.04;
    letter-spacing: 0;
}

.rpt-public h1 {
    font-size: clamp(2.02rem, 4.16vw, 4.16rem);
    max-width: 780px;
}

.rpt-public h2 {
    font-size: clamp(1.17rem, 1.63vw, 1.5rem);
    max-width: 680px;
}

.rpt-public h3 {
    font-size: clamp(1.69rem, 3.12vw, 3.45rem);
    max-width: 920px;
}

.rpt-public h4 {
    font-size: 1.01rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.rpt-nav {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(3, 11, 22, .84);
    border-bottom: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(18px);
}

.rpt-nav-inner {
    width: min(1220px, calc(100% - 32px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.rpt-brand {
    color: #fff;
    font-size: 1.45rem;
    font-weight: 950;
}

.rpt-brand .rpt-brand-mark {
    color: #9ed6ff;
}

.rpt-brand .rpt-brand-rest {
    color: #fff;
}

.rpt-nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 4px;
}

.rpt-nav-links a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 11px;
    border-radius: 8px;
    color: rgba(255,255,255,.82);
    font-size: .88rem;
    font-weight: 850;
}

.rpt-nav-links a:hover,
.rpt-nav-links .active {
    background: rgba(255,255,255,.12);
    color: #fff;
}

.rpt-login-link {
    background: #fff;
    color: var(--rpt-blue-dark) !important;
}

.rpt-shell {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
}

.rpt-hero {
    width: 100%;
    background:
        linear-gradient(rgba(76,201,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(76,201,255,.08) 1px, transparent 1px),
        radial-gradient(circle at 76% 18%, rgba(76,201,255,.24), transparent 26rem),
        linear-gradient(135deg, #0b3f78 0%, #075fa8 44%, #003b75 100%);
    background-size: 34px 34px, 34px 34px, auto, auto;
    color: #fff;
}

.rpt-hero-inner {
    width: min(1420px, calc(100% - 32px));
    min-height: calc(100vh - 76px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(560px, 1.18fr);
    gap: clamp(28px, 4vw, 58px);
    align-items: start;
    padding: clamp(28px, 4vw, 55px) 0 clamp(58px, 8vw, 110px);
}

.rpt-hero-copy {
    display: grid;
    gap: 22px;
}

.rpt-kicker {
    color: var(--rpt-cyan);
    font-size: .78rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.rpt-hero h2,
.rpt-hero p,
.rpt-hero li {
    color: #dcecff;
}

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

.rpt-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 8px;
    font-weight: 950;
    border: 1px solid transparent;
}

.rpt-btn-primary {
    background: var(--rpt-cyan);
    color: #031020;
}

.rpt-btn-secondary {
    border-color: rgba(255,255,255,.34);
    color: #fff;
}

.rpt-btn-light {
    background: #fff;
    color: var(--rpt-blue-dark);
}

.rpt-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.rpt-list li {
    position: relative;
    padding-left: 24px;
}

.rpt-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .62em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rpt-green);
}

.rpt-command-panel {
    margin-top: clamp(20px, 4vh, 48px);
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.08);
    box-shadow: var(--rpt-shadow);
    border-radius: 10px;
    overflow: hidden;
}

.rpt-panel-bar {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.07);
}

.rpt-panel-bar strong {
    color: #fff;
}

.rpt-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 16px;
}

.rpt-panel-grid .rpt-overview-card {
    min-height: 135px;
    align-content: start;
    background: rgba(3, 11, 22, .72);
    border-color: rgba(255,255,255,.16);
    box-shadow: none;
    color: #fff;
}

.rpt-panel-grid .rpt-overview-card .rpt-kicker {
    color: #a9c9e8;
}

.rpt-panel-grid .rpt-overview-card h4 {
    color: #fff;
}

.rpt-panel-grid .rpt-overview-card p {
    color: #dcecff;
}

.rpt-panel-grid .rpt-ai-card {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(76,201,255,.16), rgba(32,180,134,.14));
}

.rpt-section {
    padding: clamp(54px, 9vw, 106px) 0;
}

.rpt-section + .rpt-section {
    border-top: 1px solid var(--rpt-line);
}

.rpt-public main > .rpt-section:first-child {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: clamp(54px, 8vw, 96px) max(16px, calc((100% - 1220px) / 2));
    background:
        linear-gradient(rgba(76,201,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(76,201,255,.08) 1px, transparent 1px),
        radial-gradient(circle at 76% 18%, rgba(76,201,255,.18), transparent 24rem),
        linear-gradient(135deg, #0b3f78 0%, #075fa8 48%, #003b75 100%);
    background-size: 34px 34px, 34px 34px, auto, auto;
    color: #fff;
}

.rpt-public main > .rpt-section:first-child .rpt-section-heading h3,
.rpt-public main > .rpt-section:first-child .rpt-section-heading h4,
.rpt-public main > .rpt-section:first-child .rpt-section-heading p {
    color: #fff;
}

.rpt-public main > .rpt-section:first-child .rpt-kicker {
    color: var(--rpt-cyan);
}

.rpt-public main > .rpt-section:first-child .rpt-section-heading p {
    color: #dcecff;
}

.rpt-public main > .rpt-section:first-child > .rpt-grid,
.rpt-public main > .rpt-section:first-child > .rpt-section-heading + .rpt-grid {
    margin-top: 0;
}

.rpt-public main > .rpt-section:first-child .rpt-card {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.16);
    box-shadow: var(--rpt-shadow);
    color: #fff;
}

.rpt-public main > .rpt-section:first-child .rpt-card h4,
.rpt-public main > .rpt-section:first-child .rpt-card strong {
    color: #fff;
}

.rpt-public main > .rpt-section:first-child .rpt-card p,
.rpt-public main > .rpt-section:first-child .rpt-card li {
    color: #dcecff;
}

.rpt-public main > .rpt-section:first-child .rpt-pricing-row {
    border-bottom-color: rgba(255,255,255,.18);
}

.rpt-public main > .rpt-section:first-child .rpt-pricing-row strong {
    color: var(--rpt-cyan);
}

.rpt-public main > .rpt-section:first-child table th,
.rpt-public main > .rpt-section:first-child table td {
    color: #fff;
    border-bottom-color: rgba(255,255,255,.18);
}

.rpt-public main > .rpt-section:first-child thead th {
    background: rgba(255,255,255,.12);
}

.rpt-public main > .rpt-section:first-child .rpt-cta {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: var(--rpt-shadow);
}

.rpt-public main > .rpt-section:first-child .rpt-cta h3,
.rpt-public main > .rpt-section:first-child .rpt-cta p {
    color: #eaf6ff;
}

.rpt-public main > .rpt-section:first-child .rpt-cta .rpt-btn-light {
    background: var(--rpt-cyan);
    color: #031020;
}

.rpt-section-heading {
    display: grid;
    gap: 14px;
    margin-bottom: clamp(26px, 5vw, 50px);
}

.rpt-followup {
    margin-top: 32px;
    margin-bottom: 0;
}

.rpt-center {
    text-align: center;
    justify-items: center;
}

.rpt-grid {
    display: grid;
    gap: 16px;
}

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

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

.rpt-card {
    background: var(--rpt-paper);
    border: 1px solid var(--rpt-line);
    border-radius: 10px;
    padding: clamp(20px, 3vw, 32px);
    box-shadow: 0 14px 36px rgba(7, 17, 31, .08);
    display: grid;
    gap: 12px;
}

.rpt-card h4,
.rpt-card strong {
    color: var(--rpt-ink);
}

.rpt-dark-card {
    background: linear-gradient(135deg, #06182c, #003b75);
    color: #fff;
}

.rpt-dark-card p,
.rpt-dark-card li,
.rpt-dark-card h3,
.rpt-dark-card h4 {
    color: #eaf6ff;
}

.rpt-pricing-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 11px 0;
    border-bottom: 1px solid var(--rpt-line);
}

.rpt-pricing-row strong {
    color: var(--rpt-blue-dark);
}

.rpt-price-support {
    margin-top: 16px;
}

.rpt-table-wrap {
    overflow-x: auto;
}

.rpt-table-wrap table {
    width: 100%;
    min-width: 420px;
    border-collapse: collapse;
}

.rpt-table-wrap th,
.rpt-table-wrap td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--rpt-line);
}

.rpt-table-wrap thead th {
    background: #edf5fc;
    color: var(--rpt-blue-dark);
}

.rpt-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
    padding: clamp(28px, 5vw, 54px);
    border-radius: 10px;
    background: linear-gradient(135deg, #06182c, #0056a0);
    color: #fff;
}

.rpt-cta-copy {
    display: grid;
    gap: 14px;
}

.rpt-cta p,
.rpt-cta h3 {
    color: #eaf6ff;
}

.rpt-footer {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 34px 0 48px;
}

.rpt-scope {
    text-align: right;
}

.rpt-scope span {
    display: block;
    color: var(--rpt-blue);
    font-size: .78rem;
    font-weight: 950;
    text-transform: uppercase;
}

@media (max-width: 980px) {
    .rpt-nav-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 16px 0;
    }

    .rpt-nav-links {
        justify-content: flex-start;
    }

    .rpt-hero-inner,
    .rpt-grid-3,
    .rpt-grid-2,
    .rpt-cta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .rpt-shell,
    .rpt-hero-inner,
    .rpt-footer {
        width: min(100% - 22px, 1220px);
    }

    .rpt-panel-grid {
        grid-template-columns: 1fr;
    }

    .rpt-actions,
    .rpt-footer {
        flex-direction: column;
    }

    .rpt-btn {
        width: 100%;
    }

    .rpt-scope {
        text-align: left;
    }
}
