/* ============================================================
   Enterprise SaaS landing page
   Direction: GE Healthcare-style product page, restrained B2B.
   ============================================================ */

:root {
    --page: #ffffff;
    --wash: #f6f2fb;
    --wash-2: #faf8fd;
    --ink: #21162f;
    --body: #4f465d;
    --muted: #756c81;
    --line: #e8e1ee;
    --line-strong: #d8cce4;
    --purple: #5f249f;
    --purple-dark: #431273;
    --purple-soft: #efe5f8;
    --gold: #c89000;
    --green: #2f8f6b;
    --blue: #4e7895;
    --radius: 4px;
    --shadow: 0 16px 40px rgba(43, 24, 73, 0.10);
}

/* Final cascade guard: keep the current GE-style landing direction authoritative. */
.lp .lp-display {
    font-size: clamp(2rem, 3.1vw, 3.05rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
    font-weight: 720;
}

.lp .landing-brand,
.lp .landing-nav a {
    text-decoration: none;
}

@media (max-width: 760px) {
    .lp .lp-display {
        font-size: clamp(2.5rem, 12vw, 3.75rem);
        letter-spacing: -0.055em;
    }
}

.lp {
    background: var(--page);
    color: var(--body);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.lp a { text-decoration: none; }
.lp a:hover { text-decoration: none; }

.lp-container {
    width: min(1080px, calc(100% - 40px));
    margin: 0 auto;
}

.lp-narrow {
    max-width: 720px;
}

.lp-section {
    padding: 74px 0;
}

.lp-section-sm {
    padding: 48px 0;
}

.lp-kicker {
    color: var(--purple);
    font-size: 0.78rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.lp h1,
.lp h2,
.lp h3,
.lp h4 {
    color: var(--ink);
}

.lp-display {
    font-size: clamp(2rem, 3.1vw, 3.05rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
    font-weight: 720;
}

.lp-h2 {
    font-size: clamp(1.9rem, 3.2vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 700;
}

.lp-h3 {
    font-size: clamp(1.45rem, 2.15vw, 2rem);
    line-height: 1.14;
    letter-spacing: -0.032em;
    font-weight: 700;
}

.lp-lead {
    color: var(--body);
    font-size: clamp(1rem, 1.35vw, 1.16rem);
    line-height: 1.68;
}

.lp-copy {
    color: var(--body);
    font-size: 0.96rem;
    line-height: 1.72;
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 40px;
    padding: 0.68rem 1rem;
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-weight: 700;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.lp-btn-primary {
    color: #fff;
    background: var(--purple);
    border: 1px solid var(--purple);
}

.lp-btn-primary:hover {
    color: #fff;
    background: var(--purple-dark);
    border-color: var(--purple-dark);
}

.lp-btn-secondary {
    color: var(--purple);
    background: #fff;
    border: 1px solid var(--purple);
}

.lp-btn-secondary:hover {
    color: #fff;
    background: var(--purple);
}

/* Landing header override */
.landing-topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.landing-topbar-inner {
    width: min(1180px, calc(100% - 40px));
    min-height: 58px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.landing-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 740;
    text-decoration: none;
}

.landing-brand:hover {
    color: var(--ink);
    text-decoration: none;
}

.landing-brand .rt-site-logo {
    height: 3rem;
    max-width: min(15rem, 50vw);
}

.landing-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.82rem;
    font-weight: 650;
}

.landing-nav a {
    color: var(--body);
    text-decoration: none;
}

.landing-nav a:hover {
    color: var(--purple);
    text-decoration: none;
}

.landing-nav .landing-login {
    padding: 0.48rem 0.7rem;
    color: #fff;
    background: var(--purple);
    border-radius: var(--radius);
}

.landing-nav .landing-login:hover {
    color: #fff;
    background: var(--purple-dark);
}

/* Hero */
.lp-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(246, 242, 251, 0.96) 0%, rgba(246, 242, 251, 0.72) 42%, rgba(246, 242, 251, 0.1) 72%),
        linear-gradient(180deg, #ffffff, #fbf9fd);
}

.lp-hero-grid {
    min-height: 400px;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: 48px;
    align-items: center;
}

.lp-hero-copy {
    position: relative;
    z-index: 2;
    padding: 46px 0;
}

.lp-hero-copy .lp-lead {
    max-width: 610px;
}

.lp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.hero-media {
    position: relative;
    min-height: 390px;
    align-self: stretch;
}

.hero-photo {
    position: absolute;
    inset: 20px 0 0 14px;
    overflow: hidden;
    border-radius: 0 0 0 72px;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.24), rgba(255,255,255,0)),
        linear-gradient(135deg, #dfe8ec, #f7f4f0 42%, #dde7ea);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.hero-photo::before {
    content: "";
    position: absolute;
    left: 9%;
    top: 10%;
    width: 82%;
    height: 42%;
    border-radius: 14px;
    background:
        repeating-linear-gradient(90deg, rgba(255,255,255,0.5) 0 2px, transparent 2px 62px),
        linear-gradient(180deg, rgba(255,255,255,0.38), rgba(255,255,255,0.1));
    border: 1px solid rgba(255,255,255,0.7);
}

.hero-photo::after {
    content: "";
    position: absolute;
    right: 9%;
    bottom: 14%;
    width: 36%;
    height: 46%;
    border-radius: 42% 42% 6px 6px;
    background:
        radial-gradient(circle at 50% 18%, #f3c7a9 0 17%, transparent 18%),
        linear-gradient(180deg, #ffffff 0 33%, #33475b 34% 100%);
    opacity: 0.92;
    filter: saturate(0.78);
}

.hero-workstation {
    position: absolute;
    right: 12%;
    bottom: 16%;
    width: 44%;
    min-height: 210px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 1rem;
}

.screen {
    border-radius: 8px;
    background: #1f2935;
    min-height: 118px;
    padding: 0.75rem;
}

.screen-row {
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.24);
    margin-bottom: 0.5rem;
}

.screen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.45rem;
    margin-top: 0.8rem;
}

.screen-grid span {
    height: 52px;
    border-radius: 5px;
    background: linear-gradient(180deg, #9fc3d6, #4e7895);
    opacity: 0.8;
}

.hero-card {
    position: absolute;
    left: 8%;
    bottom: 12%;
    width: 250px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 1rem;
}

.hero-card-title {
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 750;
    margin-bottom: 0.75rem;
}

.hero-card-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.42rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.75rem;
}

.hero-card-line strong {
    color: var(--ink);
}

.hero-card-line:last-child {
    border-bottom: 0;
}

/* Summary band */
.summary-band {
    background: var(--wash);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
}

.summary-item {
    min-height: 128px;
    background: var(--wash);
    padding: 1.3rem;
}

.summary-item i {
    color: var(--purple);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.summary-item h3 {
    font-size: 0.96rem;
    line-height: 1.25;
    font-weight: 760;
    margin: 0 0 0.45rem;
}

.summary-item p {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.48;
    margin: 0;
}

/* Text + media sections */
.section-heading {
    max-width: 760px;
    margin-bottom: 44px;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(2rem, 7vw, 6rem);
    align-items: center;
}

.split + .split {
    margin-top: 76px;
}

.split.reverse .media-panel {
    order: -1;
}

.check-list {
    padding-left: 0;
    list-style: none;
    display: grid;
    gap: 0.6rem;
    margin: 1.2rem 0 0;
}

.check-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.55rem;
    color: var(--body);
    font-size: 0.94rem;
    line-height: 1.52;
}

.check-list i {
    color: var(--purple);
    margin-top: 0.2rem;
}

.media-panel {
    background: var(--wash-2);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: clamp(1rem, 2.2vw, 1.6rem);
}

.ui-window {
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 6px;
    overflow: hidden;
}

.ui-toolbar {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0 0.85rem;
    background: #f7f4fa;
    border-bottom: 1px solid var(--line);
}

.ui-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #cfc5da;
}

.ui-title {
    margin-left: 0.45rem;
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 740;
}

.ui-body {
    padding: 1rem;
}

.record-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.8rem;
    padding: 0.78rem 0;
    border-bottom: 1px solid var(--line);
}

.record-row:last-child {
    border-bottom: 0;
}

.record-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--purple-soft);
    color: var(--purple);
    display: grid;
    place-items: center;
    font-size: 0.85rem;
}

.record-title {
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 760;
}

.record-sub {
    color: var(--muted);
    font-size: 0.76rem;
    margin-top: 0.1rem;
}

.record-status {
    color: var(--green);
    font-size: 0.76rem;
    font-weight: 740;
}

.map-view {
    position: relative;
    min-height: 300px;
    background:
        linear-gradient(135deg, rgba(95,36,159,0.08), rgba(78,120,149,0.12)),
        #fff;
    overflow: hidden;
}

.map-view svg {
    width: 100%;
    height: 300px;
    display: block;
}

.map-pin {
    position: absolute;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--purple);
    box-shadow: 0 8px 18px rgba(43, 24, 73, 0.16);
    font-size: 0.8rem;
}

.map-pin.one { left: 22%; top: 62%; }
.map-pin.two { left: 50%; top: 34%; color: var(--green); }
.map-pin.three { right: 18%; top: 50%; color: var(--blue); }

.workflow-wheel {
    aspect-ratio: 1 / 1;
    max-width: 420px;
    margin: 0 auto;
    border-radius: 50%;
    position: relative;
    background:
        radial-gradient(circle at center, #fff 0 24%, transparent 25%),
        conic-gradient(from -35deg, #efe5f8 0 25%, #edf5f3 25% 50%, #f8f1dd 50% 75%, #eef4f9 75% 100%);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.workflow-wheel::before {
    content: "Workflow";
    position: absolute;
    inset: 36%;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--ink);
    font-weight: 760;
    border: 1px solid var(--line);
}

.wheel-step {
    position: absolute;
    width: 104px;
    min-height: 54px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 0.5rem;
    border-radius: 6px;
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--line);
    color: var(--body);
    font-size: 0.76rem;
    font-weight: 700;
    box-shadow: 0 8px 16px rgba(43, 24, 73, 0.08);
}

.wheel-step.one { left: 50%; top: 8%; transform: translateX(-50%); }
.wheel-step.two { right: 4%; top: 48%; transform: translateY(-50%); }
.wheel-step.three { left: 50%; bottom: 8%; transform: translateX(-50%); }
.wheel-step.four { left: 4%; top: 48%; transform: translateY(-50%); }

/* Product module */
.product-card {
    display: grid;
    grid-template-columns: 1fr 0.88fr;
    gap: 2rem;
    align-items: center;
    background: var(--wash);
    border: 1px solid var(--line);
    padding: clamp(1.4rem, 3vw, 2.4rem);
    margin: 52px 0 0;
}

.product-card h3 {
    font-size: 1.3rem;
    line-height: 1.2;
    font-weight: 760;
}

.product-card p {
    color: var(--body);
    font-size: 0.94rem;
    line-height: 1.62;
}

.report-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: var(--shadow);
    padding: 1rem;
}

.report-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid var(--line);
}

.report-head strong {
    color: var(--ink);
    font-size: 0.9rem;
}

.report-line {
    display: flex;
    justify-content: space-between;
    padding: 0.52rem 0;
    border-bottom: 1px solid #f0ebf4;
    color: var(--muted);
    font-size: 0.78rem;
}

.report-line strong {
    color: var(--ink);
}

.report-bars {
    display: flex;
    align-items: end;
    gap: 0.38rem;
    height: 74px;
    margin-top: 0.9rem;
}

.report-bars span {
    flex: 1;
    display: block;
    background: linear-gradient(180deg, var(--purple), #b899d4);
    border-radius: 3px 3px 0 0;
}

/* Resource / buyer cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.info-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 1.35rem;
    min-height: 210px;
    box-shadow: 0 10px 26px rgba(43, 24, 73, 0.05);
}

.info-card i {
    color: var(--purple);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.08rem;
    line-height: 1.25;
    font-weight: 760;
    margin-bottom: 0.55rem;
}

.info-card p {
    color: var(--body);
    font-size: 0.9rem;
    line-height: 1.58;
    margin: 0;
}

/* Compliance / citations */
.standards-panel {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: start;
}

.standard-list {
    display: grid;
    gap: 0.75rem;
}

.standard-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--line);
}

.standard-row i {
    color: var(--purple);
    margin-top: 0.2rem;
}

.standard-row span {
    color: var(--body);
    font-size: 0.9rem;
    line-height: 1.58;
}

.standard-row strong {
    color: var(--ink);
}

.standard-row a {
    color: var(--purple);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* CTA */
.cta-band {
    background: var(--wash);
    border-top: 1px solid var(--line);
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.small-note {
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.55;
}

@media (max-width: 1020px) {
    .lp-hero-grid,
    .split,
    .product-card,
    .standards-panel,
    .cta-grid {
        grid-template-columns: 1fr;
    }

    .hero-media {
        min-height: 420px;
    }

    .split.reverse .media-panel {
        order: initial;
    }

    .summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .lp-container,
    .landing-topbar-inner {
        width: min(100% - 28px, 1080px);
    }

    .landing-brand .rt-site-logo {
        height: 1.65rem;
        max-width: min(9.5rem, 52vw);
    }

    .landing-nav a:not(.landing-login) {
        display: none;
    }

    .lp-section {
        padding: 52px 0;
    }

    .lp-hero-grid {
        gap: 18px;
        min-height: auto;
    }

    .lp-hero-copy {
        padding: 48px 0 20px;
    }

    .lp-display {
        font-size: clamp(2.5rem, 12vw, 3.75rem);
        letter-spacing: -0.055em;
    }

    .hero-media {
        min-height: 350px;
        margin-bottom: 22px;
    }

    .hero-photo {
        inset: 10px 0 0 0;
        border-radius: 0 0 0 42px;
    }

    .hero-card {
        left: 2%;
        bottom: 6%;
        width: 220px;
    }

    .hero-workstation {
        right: 3%;
        bottom: 16%;
        width: 52%;
        min-height: 170px;
    }

    .screen {
        min-height: 92px;
    }

    .summary-grid {
        grid-template-columns: 1fr;
    }

    .feature-strip {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .workflow-wheel {
        max-width: 310px;
    }

    .wheel-step {
        width: 82px;
        font-size: 0.68rem;
    }
}
/* ============================================================
   RADTRACKER landing
   Light enterprise product site: clinical, assured, premium.
   ============================================================ */

:root {
    --rt-ink: #101820;
    --rt-ink-2: #1e2a36;
    --rt-muted: #5f6f7f;
    --rt-soft: #83909e;
    --rt-paper: #fbfaf7;
    --rt-warm: #f4f0e8;
    --rt-panel: #ffffff;
    --rt-line: #e7e0d5;
    --rt-line-strong: #d7cdbc;
    --rt-amber: #fcc741;
    --rt-amber-dark: #bf8500;
    --rt-green: #2f8f6b;
    --rt-blue: #557a95;
    --rt-radius: 28px;
    --rt-radius-sm: 16px;
    --rt-shadow: 0 24px 70px rgba(42, 31, 15, 0.12);
    --rt-shadow-sm: 0 12px 34px rgba(42, 31, 15, 0.08);
}

.lp {
    color: var(--rt-ink);
    background:
        radial-gradient(circle at 12% 0%, rgba(252, 199, 65, 0.18), transparent 32rem),
        linear-gradient(180deg, #fffdf8 0%, var(--rt-paper) 32%, #f7f3ec 100%);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.lp a { text-decoration: none; }
.lp ::selection { background: rgba(252, 199, 65, 0.34); color: var(--rt-ink); }

.lp-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.lp-wide {
    width: min(1320px, calc(100% - 32px));
    margin: 0 auto;
}

.lp-section {
    padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.lp-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--rt-amber-dark);
    font-size: 0.76rem;
    font-weight: 750;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.lp-display {
    color: var(--rt-ink);
    font-size: clamp(3.1rem, 7vw, 6.6rem);
    line-height: 0.93;
    letter-spacing: -0.07em;
    font-weight: 760;
}

.lp-display .accent {
    color: var(--rt-amber-dark);
    letter-spacing: -0.075em;
}

.lp-h2 {
    color: var(--rt-ink);
    font-size: clamp(2.15rem, 4vw, 4rem);
    line-height: 1;
    letter-spacing: -0.055em;
    font-weight: 730;
}

.lp-lead {
    color: var(--rt-muted);
    font-size: clamp(1.03rem, 1.55vw, 1.22rem);
    line-height: 1.68;
}

.lp-copy {
    color: var(--rt-muted);
    font-size: 0.99rem;
    line-height: 1.7;
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border-radius: 999px;
    padding: 0.92rem 1.35rem;
    font-size: 0.94rem;
    font-weight: 720;
    transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.lp-btn:hover { transform: translateY(-1px); }

.lp-btn-primary {
    background: var(--rt-ink);
    color: #fff;
    box-shadow: 0 18px 36px rgba(16, 24, 32, 0.2);
}

.lp-btn-primary:hover { background: #263241; color: #fff; }

.lp-btn-secondary {
    color: var(--rt-ink);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--rt-line-strong);
}

.lp-btn-secondary:hover { background: #fff; color: var(--rt-ink); border-color: #c8baa6; }

.lp-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    padding: 0.42rem 0.76rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--rt-line);
    color: var(--rt-muted);
    font-size: 0.78rem;
    font-weight: 690;
    box-shadow: 0 8px 22px rgba(42, 31, 15, 0.06);
}

.lp-pill i { color: var(--rt-green); }

/* Top navigation */
.landing-topbar {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 253, 248, 0.82);
    border-bottom: 1px solid rgba(215, 205, 188, 0.65);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.landing-topbar-inner {
    width: min(1180px, calc(100% - 40px));
    min-height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.landing-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--rt-ink);
    font-weight: 760;
    letter-spacing: -0.02em;
}

.landing-brand-mark {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: var(--rt-ink);
    background: linear-gradient(135deg, #ffe28a, var(--rt-amber));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 10px 22px rgba(191, 133, 0, 0.2);
}

.landing-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: var(--rt-muted);
    font-size: 0.9rem;
    font-weight: 650;
}

.landing-nav a { color: var(--rt-muted); }
.landing-nav a:hover { color: var(--rt-ink); }

/* Hero */
.lp-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 8vw, 7.5rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.lp-hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -18rem -10%;
    height: 28rem;
    background: radial-gradient(closest-side, rgba(85, 122, 149, 0.14), transparent);
    pointer-events: none;
}

.lp-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    gap: clamp(2.5rem, 6vw, 5.4rem);
    align-items: center;
}

.lp-hero-copy { max-width: 650px; }
.lp-hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }

.lp-hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 2rem;
}

.lp-hero-note {
    margin-top: 1.2rem;
    color: var(--rt-soft);
    font-size: 0.86rem;
    line-height: 1.6;
}

/* Product composition */
.product-stage {
    position: relative;
    min-height: 560px;
}

.product-stage::before {
    content: "";
    position: absolute;
    inset: 8% 4% 6% 4%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(252, 199, 65, 0.22), rgba(85, 122, 149, 0.08) 42%, transparent 70%);
    filter: blur(8px);
}

.product-orbit {
    position: absolute;
    inset: 2.5rem 1rem;
    border: 1px dashed rgba(191, 133, 0, 0.22);
    border-radius: 999px;
    transform: rotate(-11deg);
}

.device-card {
    position: absolute;
    border-radius: 30px;
    background: linear-gradient(145deg, #ffffff, #eee7dc);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: var(--rt-shadow);
    overflow: hidden;
}

.device-card.primary {
    top: 1.5rem;
    left: 1.5rem;
    right: 0.5rem;
    min-height: 320px;
    padding: 1.3rem;
}

.device-card.secondary {
    left: 0;
    bottom: 2rem;
    width: 55%;
    min-height: 210px;
    padding: 1rem;
}

.device-card.tertiary {
    right: 0.7rem;
    bottom: 0;
    width: 48%;
    min-height: 230px;
    padding: 1rem;
}

.device-bezel {
    position: relative;
    border-radius: 24px;
    min-height: 245px;
    background:
        linear-gradient(145deg, rgba(16, 24, 32, 0.9), rgba(69, 83, 96, 0.82)),
        linear-gradient(135deg, #d8dce1, #f8f8f6);
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.device-bezel::before {
    content: "";
    position: absolute;
    inset: 1.2rem 1.4rem 5.3rem;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.2) 0 1px, transparent 1px 44px);
}

.device-bezel::after {
    content: "";
    position: absolute;
    right: 1.3rem;
    bottom: 1.2rem;
    width: 62px;
    height: 62px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 35% 35%, #fff 0 18%, transparent 19%),
        linear-gradient(145deg, #e8edf0, #aeb9c4);
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.65), 0 10px 26px rgba(16,24,32,0.25);
}

.device-screen-line {
    position: absolute;
    left: 2.2rem;
    right: 7.6rem;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.56);
}

.device-screen-line.one { bottom: 3.6rem; }
.device-screen-line.two { bottom: 2.5rem; width: 44%; }

.mini-report {
    background: #fff;
    border: 1px solid #ebe6de;
    border-radius: 18px;
    padding: 1rem;
    height: 100%;
    box-shadow: 0 14px 34px rgba(42, 31, 15, 0.08);
}

.mini-report h4 {
    margin: 0 0 0.85rem;
    color: var(--rt-ink);
    font-size: 0.9rem;
    font-weight: 760;
}

.mini-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee9e0;
    padding: 0.45rem 0;
    color: var(--rt-muted);
    font-size: 0.76rem;
}

.mini-row strong { color: var(--rt-ink); }

.mini-bars {
    display: flex;
    align-items: end;
    gap: 0.32rem;
    height: 54px;
    margin-top: 0.85rem;
}

.mini-bars span {
    flex: 1;
    display: block;
    border-radius: 5px 5px 0 0;
    background: linear-gradient(180deg, var(--rt-blue), #cbd7df);
}

.map-panel {
    background:
        linear-gradient(135deg, rgba(85, 122, 149, 0.18), rgba(47, 143, 107, 0.14)),
        #fff;
    border: 1px solid #ebe6de;
    border-radius: 18px;
    min-height: 176px;
    position: relative;
    overflow: hidden;
}

.map-panel svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.pin {
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #fff;
    box-shadow: 0 10px 22px rgba(16, 24, 32, 0.14);
    color: var(--rt-green);
    font-size: 0.72rem;
}

.pin.one { left: 18%; top: 62%; }
.pin.two { left: 52%; top: 30%; color: var(--rt-amber-dark); }
.pin.three { right: 12%; top: 45%; color: var(--rt-blue); }

.floating-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--rt-line);
    color: var(--rt-ink);
    font-size: 0.78rem;
    font-weight: 720;
    box-shadow: var(--rt-shadow-sm);
}

.floating-chip i { color: var(--rt-green); }
.floating-chip.one { top: 0.2rem; right: 1.4rem; }
.floating-chip.two { left: 1.2rem; bottom: 0.4rem; }

/* Logos / trust */
.trust-panel {
    border-top: 1px solid var(--rt-line);
    border-bottom: 1px solid var(--rt-line);
    background: rgba(255, 255, 255, 0.54);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1.15fr repeat(4, 1fr);
    gap: 1rem;
    align-items: center;
    padding: 1.25rem 0;
}

.trust-label {
    color: var(--rt-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    color: var(--rt-ink-2);
    font-weight: 720;
    font-size: 0.88rem;
    min-height: 50px;
    border-radius: 999px;
    border: 1px solid var(--rt-line);
    background: #fff;
}

.trust-item i { color: var(--rt-amber-dark); }

/* Story sections */
.split {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.panel {
    background: var(--rt-panel);
    border: 1px solid var(--rt-line);
    border-radius: var(--rt-radius);
    box-shadow: var(--rt-shadow-sm);
}

.assurance-board {
    padding: clamp(1.1rem, 2vw, 1.6rem);
    display: grid;
    gap: 0.85rem;
}

.assurance-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.85rem;
    align-items: center;
    padding: 1rem;
    border-radius: 18px;
    background: #fffaf0;
    border: 1px solid #efe2c7;
}

.assurance-row:nth-child(2) {
    background: #f3f8f6;
    border-color: #d8ebe4;
}

.assurance-row:nth-child(3) {
    background: #f3f7fb;
    border-color: #d9e5ed;
}

.assurance-icon {
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--rt-amber-dark);
    box-shadow: 0 8px 18px rgba(42, 31, 15, 0.07);
}

.assurance-row:nth-child(2) .assurance-icon { color: var(--rt-green); }
.assurance-row:nth-child(3) .assurance-icon { color: var(--rt-blue); }

.assurance-title {
    color: var(--rt-ink);
    font-weight: 760;
    font-size: 0.98rem;
}

.assurance-sub {
    color: var(--rt-muted);
    font-size: 0.83rem;
    margin-top: 0.1rem;
}

.assurance-status {
    color: var(--rt-green);
    font-size: 0.78rem;
    font-weight: 760;
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature-card {
    padding: 1.35rem;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--rt-line);
    box-shadow: 0 10px 30px rgba(42, 31, 15, 0.06);
}

.feature-card i {
    color: var(--rt-amber-dark);
    font-size: 1.35rem;
    margin-bottom: 0.9rem;
}

.feature-card h3 {
    color: var(--rt-ink);
    font-size: 1.08rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
    font-weight: 760;
    margin: 0 0 0.45rem;
}

.feature-card p {
    color: var(--rt-muted);
    font-size: 0.91rem;
    line-height: 1.58;
    margin: 0;
}

/* Workflow */
.workflow {
    border-radius: 36px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.84), rgba(255,255,255,0.48)),
        linear-gradient(180deg, #f6efe2, #eef4f1);
    border: 1px solid var(--rt-line);
    box-shadow: var(--rt-shadow);
    padding: clamp(1.4rem, 3vw, 2rem);
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.workflow-step {
    position: relative;
    padding: 1.35rem;
    min-height: 220px;
    border-radius: 26px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(215, 205, 188, 0.68);
}

.workflow-num {
    display: inline-grid;
    place-items: center;
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 999px;
    color: var(--rt-ink);
    background: var(--rt-amber);
    font-weight: 780;
    font-size: 0.9rem;
}

.workflow-step h3 {
    margin: 1.25rem 0 0.55rem;
    color: var(--rt-ink);
    font-size: 1.08rem;
    line-height: 1.25;
    font-weight: 760;
    letter-spacing: -0.02em;
}

.workflow-step p {
    margin: 0;
    color: var(--rt-muted);
    font-size: 0.9rem;
    line-height: 1.58;
}

/* Case studies */
.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.case-card {
    border-radius: 28px;
    background: var(--rt-ink);
    color: #dfe8ef;
    padding: 1.5rem;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 24px 70px rgba(16, 24, 32, 0.18);
}

.case-card:nth-child(2) { background: #223343; }
.case-card:nth-child(3) { background: #304238; }

.case-card h3 {
    color: #fff;
    font-size: 1.3rem;
    line-height: 1.15;
    letter-spacing: -0.035em;
    font-weight: 760;
    margin: 0 0 0.75rem;
}

.case-card p {
    color: rgba(255,255,255,0.74);
    font-size: 0.91rem;
    line-height: 1.6;
}

.case-solution {
    margin-top: 1rem;
    padding: 0.85rem 0.95rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 0.86rem;
    line-height: 1.52;
}

.case-solution strong { color: #fff; }

.lp-cite {
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.13);
    font-size: 0.74rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.58);
}

.lp-cite a { color: rgba(255,255,255,0.82); text-decoration: underline; text-underline-offset: 2px; }
.lp-cite a:hover { color: #fff; }

/* Buyer section */
.buyer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.buyer-card {
    padding: 1.35rem;
    border-radius: 24px;
    border: 1px solid var(--rt-line);
    background: rgba(255, 255, 255, 0.72);
}

.buyer-card i { color: var(--rt-amber-dark); font-size: 1.25rem; }

.buyer-card h3 {
    color: var(--rt-ink);
    margin: 0.9rem 0 0.4rem;
    font-size: 1rem;
    font-weight: 760;
    letter-spacing: -0.02em;
}

.buyer-card p {
    color: var(--rt-muted);
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
}

/* Standards / CTA */
.standards-panel {
    padding: clamp(1.4rem, 3vw, 2rem);
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}

.standards-list {
    display: grid;
    gap: 0.75rem;
}

.standard-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--rt-line);
}

.standard-row i { color: var(--rt-green); margin-top: 0.2rem; }

.standard-row strong { color: var(--rt-ink); }
.standard-row span { color: var(--rt-muted); font-size: 0.92rem; line-height: 1.58; }
.standard-row a { color: var(--rt-ink); text-decoration: underline; text-underline-offset: 2px; }

.cta-panel {
    position: relative;
    overflow: hidden;
    border-radius: 38px;
    background:
        radial-gradient(circle at 84% 18%, rgba(252, 199, 65, 0.28), transparent 20rem),
        linear-gradient(135deg, #172330 0%, #101820 100%);
    color: #fff;
    padding: clamp(2rem, 6vw, 4.5rem);
    box-shadow: 0 30px 80px rgba(16, 24, 32, 0.28);
}

.cta-panel h2 {
    color: #fff;
    font-size: clamp(2.1rem, 4.8vw, 4.6rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    font-weight: 760;
    max-width: 12ch;
}

.cta-panel p {
    color: rgba(255,255,255,0.72);
    max-width: 48ch;
    line-height: 1.7;
}

.cta-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.6rem; }
.cta-panel .lp-btn-secondary { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.18); }
.cta-panel .lp-btn-secondary:hover { background: rgba(255,255,255,0.14); color: #fff; }

@media (max-width: 1100px) {
    .lp-hero-grid,
    .split,
    .standards-panel {
        grid-template-columns: 1fr;
    }

    .product-stage {
        min-height: 520px;
        max-width: 620px;
        margin: 0 auto;
    }

    .workflow-grid,
    .buyer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .lp-container,
    .lp-wide,
    .landing-topbar-inner {
        width: min(100% - 28px, 1180px);
    }

    .landing-nav a:not(.landing-login) {
        display: none;
    }

    .lp-display {
        font-size: clamp(2.65rem, 12.6vw, 3.75rem);
        line-height: 0.96;
    }

    .lp-lead {
        font-size: 1rem;
        line-height: 1.62;
    }

    .lp-hero {
        padding-top: 2.8rem;
    }

    .product-stage {
        min-height: 470px;
    }

    .device-card.primary {
        left: 0;
        right: 0;
        min-height: 275px;
    }

    .device-card.secondary {
        width: 58%;
        bottom: 2.1rem;
    }

    .device-card.tertiary {
        width: 53%;
    }

    .trust-grid,
    .feature-strip,
    .workflow-grid,
    .buyer-grid {
        grid-template-columns: 1fr;
    }

    .trust-label {
        text-align: center;
    }

    .lp-section {
        padding: 4rem 0;
    }
}

/* Final cascade guard: keep the current GE-style landing direction authoritative. */
.lp .lp-display {
    font-size: clamp(2rem, 3.1vw, 3.05rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
    font-weight: 720;
}

.lp .landing-brand,
.lp .landing-nav a {
    text-decoration: none;
}

@media (max-width: 760px) {
    .lp .lp-display {
        font-size: clamp(2.5rem, 12vw, 3.75rem);
        letter-spacing: -0.055em;
    }
}
