*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --lr-navy: #081847;
    --lr-blue: #163c79;
    --lr-cobalt: #255f9f;
    --lr-sky: #c6e0f0;
    --lr-ice: #f3f8fc;
    --lr-mist: #e3eef7;
    --lr-teal: #2f7f8f;
    --lr-green: #2f8a70;
    --lr-text: #172033;
    --lr-muted: #5d6b7a;
    --lr-line: #dce7f0;
    --lr-white: #fff;
    --lr-shadow: 0 22px 60px rgba(8, 24, 71, 0.13);
    --lr-soft-shadow: 0 12px 36px rgba(8, 24, 71, 0.08);
}

html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    color: var(--lr-text);
    background: var(--lr-ice);
    font-family: "Montserrat", sans-serif;
}

body {
    overflow-x: hidden;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.landing-container {
    width: 100%;
    overflow: hidden;
}

.main-landing section {
    width: 100%;
    padding: 4.5rem 1.25rem;
    scroll-margin-top: 70px;
}

.top-landing-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 66px;
    padding: 0.65rem 1rem;
    border-bottom: 1px solid rgba(220, 231, 240, 0.92);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(8, 24, 71, 0.08);
    backdrop-filter: blur(14px);
}

.logo-landing {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 7px;
    border-radius: 11px;
    background: var(--lr-navy);
}

.logo-mark img {
    width: 100%;
    height: 100%;
}

.logo-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-copy strong {
    color: var(--lr-navy);
    font-family: "Sansation", sans-serif;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}

.logo-copy small {
    margin-top: 0.25rem;
    color: var(--lr-muted);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 9px;
    color: var(--lr-navy);
    background: var(--lr-ice);
    cursor: pointer;
}

.landing-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 0.75rem 1rem 1rem;
    border-bottom: 1px solid var(--lr-line);
    background: white;
    box-shadow: 0 18px 36px rgba(8, 24, 71, 0.12);
}

.top-landing-nav.open .landing-menu {
    display: block;
}

.top-landing-middle,
.top-landing-right {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.top-landing-middle a,
.top-landing-right a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    color: var(--lr-text);
    font-size: 0.84rem;
    font-weight: 600;
    text-decoration: none;
}

.top-landing-middle a:hover,
.top-landing-middle a.active {
    color: var(--lr-blue);
    background: var(--lr-ice);
}

.top-landing-right .nav-demo-button {
    margin-top: 0.35rem;
    color: white;
    background: var(--lr-navy);
}

.landing-home {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 3rem;
    min-height: calc(100vh - 66px);
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 16%, rgba(198, 224, 240, 0.24), transparent 27%),
        radial-gradient(circle at 8% 92%, rgba(47, 127, 143, 0.16), transparent 24%),
        linear-gradient(135deg, #07143c 0%, #102c60 53%, #285a7a 100%);
}

.landing-home::before {
    position: absolute;
    top: -25%;
    right: 6%;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    content: "";
}

.hero-copy,
.hero-product {
    position: relative;
    z-index: 1;
}

.hero-copy {
    max-width: 730px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 1.25rem;
    padding: 0.5rem 0.7rem;
    border: 1px solid rgba(198, 224, 240, 0.25);
    border-radius: 8px;
    color: #e7f6ff;
    background: rgba(198, 224, 240, 0.12);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-eyebrow .material-symbols-outlined {
    color: #8ed9cd;
    font-size: 1.05rem;
}

.hero-copy h1 {
    max-width: 680px;
    margin: 0 0 1.25rem;
    color: white;
    font-family: "Sansation", sans-serif;
    font-size: clamp(2.45rem, 9vw, 4.7rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.hero-lede,
.hero-detail {
    max-width: 660px;
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.96rem;
    line-height: 1.7;
}

.hero-lede {
    color: white;
    font-size: 1.08rem;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.7rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 46px;
    padding: 0.78rem 1.05rem;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.button .material-symbols-outlined {
    font-size: 1.1rem;
}

.button-primary {
    color: var(--lr-navy);
    background: white;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.button-secondary {
    border-color: rgba(255, 255, 255, 0.28);
    color: white;
    background: rgba(255, 255, 255, 0.08);
}

.hero-proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
    margin-top: 2rem;
}

.hero-proof-grid > div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.1rem 0.6rem;
    min-height: 78px;
    padding: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.hero-proof-grid .material-symbols-outlined {
    grid-row: span 2;
    color: var(--lr-sky);
    font-size: 1.4rem;
}

.hero-proof-grid strong {
    color: white;
    font-family: "Sansation", sans-serif;
    font-size: 0.9rem;
}

.hero-proof-grid small {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.7rem;
    line-height: 1.35;
}

.hero-product {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}

.product-window {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    background: white;
    box-shadow: 0 38px 80px rgba(0, 0, 0, 0.3);
    transform: perspective(1400px) rotateY(-2deg) rotateX(1deg);
}

.product-window-bar {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 0.8rem;
    color: var(--lr-muted);
    background: #f8fafc;
    font-size: 0.62rem;
}

.window-dots {
    display: flex;
    gap: 4px;
}

.window-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #bdc8d4;
}

.window-title {
    margin: 0 auto;
    color: var(--lr-navy);
    font-weight: 700;
}

.window-status {
    display: none;
    align-items: center;
    gap: 0.3rem;
}

.window-status i,
.report-ready i,
.product-stat-grid i {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lr-green);
}

.product-shell {
    display: flex;
    min-height: 340px;
}

.product-sidebar {
    display: flex;
    flex: 0 0 46px;
    flex-direction: column;
    align-items: center;
    gap: 0.95rem;
    padding: 0.8rem 0.45rem;
    color: rgba(255, 255, 255, 0.56);
    background: var(--lr-navy);
}

.product-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-bottom: 0.6rem;
    border-radius: 7px;
    color: var(--lr-navy);
    background: white;
    font-size: 0.62rem;
    font-weight: 800;
}

.product-sidebar .material-symbols-outlined {
    font-size: 1rem;
}

.product-sidebar .active {
    color: white;
}

.product-content {
    flex: 1;
    min-width: 0;
    padding: 1rem;
    background: #f4f7fb;
}

.product-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.product-heading div {
    display: flex;
    flex-direction: column;
}

.product-heading small {
    margin-bottom: 0.15rem;
    color: var(--lr-muted);
    font-size: 0.54rem;
}

.product-heading strong {
    color: var(--lr-navy);
    font-family: "Sansation", sans-serif;
    font-size: 0.95rem;
}

.product-year {
    padding: 0.35rem 0.5rem;
    border: 1px solid var(--lr-line);
    border-radius: 6px;
    color: var(--lr-blue);
    background: white;
    font-size: 0.52rem;
    font-weight: 700;
}

.product-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
}

.product-stat-grid article {
    display: flex;
    min-width: 0;
    min-height: 82px;
    flex-direction: column;
    padding: 0.55rem;
    border: 1px solid #e5edf4;
    border-radius: 7px;
    background: white;
}

.product-stat-grid span,
.product-stat-grid small {
    overflow: hidden;
    color: var(--lr-muted);
    font-size: 0.43rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-stat-grid strong {
    margin: auto 0;
    color: var(--lr-navy);
    font-family: "Sansation", sans-serif;
    font-size: clamp(0.62rem, 3vw, 0.9rem);
}

.product-stat-grid small {
    font-size: 0.37rem;
}

.product-stat-grid i {
    width: 4px;
    height: 4px;
}

.product-panels {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 0.45rem;
    margin-top: 0.5rem;
}

.product-panels article {
    min-width: 0;
    min-height: 156px;
    padding: 0.6rem;
    border: 1px solid #e5edf4;
    border-radius: 7px;
    background: white;
}

.panel-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.panel-title strong {
    color: var(--lr-navy);
    font-size: 0.52rem;
}

.panel-title small {
    color: var(--lr-muted);
    font-size: 0.4rem;
}

.chart {
    display: flex;
    align-items: flex-end;
    gap: 5%;
    height: 85px;
    padding: 0.7rem 0.25rem 0;
    border-bottom: 1px solid var(--lr-line);
}

.chart span {
    width: 12%;
    height: var(--bar-height);
    min-height: 10%;
    border-radius: 2px 2px 0 0;
    background: linear-gradient(180deg, var(--lr-teal), var(--lr-blue));
}

.chart-labels {
    display: flex;
    justify-content: space-around;
    padding-top: 0.3rem;
    color: var(--lr-muted);
    font-size: 0.34rem;
}

.event-row {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.65rem;
    padding-top: 0.65rem;
    border-top: 1px solid var(--lr-line);
}

.event-date {
    display: flex;
    flex: 0 0 33px;
    min-height: 34px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: var(--lr-blue);
    background: var(--lr-ice);
    font-size: 0.32rem;
    font-weight: 700;
}

.event-date b {
    font-size: 0.58rem;
}

.event-row > span:last-child {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.event-row strong,
.event-row small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.event-row strong {
    color: var(--lr-text);
    font-size: 0.45rem;
}

.event-row small {
    margin-top: 0.18rem;
    color: var(--lr-muted);
    font-size: 0.37rem;
}

.floating-proof {
    position: absolute;
    display: none;
    align-items: center;
    gap: 0.55rem;
    min-width: 165px;
    padding: 0.7rem;
    border: 1px solid rgba(8, 24, 71, 0.1);
    border-radius: 9px;
    color: var(--lr-navy);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
}

.floating-proof .material-symbols-outlined {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    color: var(--lr-teal);
    background: var(--lr-ice);
    font-size: 1.2rem;
}

.floating-proof div {
    display: flex;
    flex-direction: column;
}

.floating-proof strong {
    font-size: 0.68rem;
}

.floating-proof small {
    margin-top: 0.18rem;
    color: var(--lr-muted);
    font-size: 0.53rem;
}

.proof-compliance {
    top: -1.25rem;
    right: -0.6rem;
}

.proof-calculation {
    left: -1rem;
    bottom: -1.2rem;
}

.section-intro {
    width: 100%;
    max-width: 780px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.landing-sub-header {
    margin: 0 0 0.75rem;
    color: var(--lr-teal);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.landing-header {
    margin: 0;
    color: var(--lr-navy);
    font-family: "Sansation", sans-serif;
    font-size: clamp(2rem, 7vw, 3.45rem);
    letter-spacing: -0.035em;
    line-height: 1.05;
}

.section-description {
    max-width: 670px;
    margin: 1rem auto 0;
    color: var(--lr-muted);
    font-size: 0.94rem;
    line-height: 1.7;
}

.landing-features {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 1180px;
    margin: 0 auto;
}

.feature-card {
    min-height: 235px;
    padding: 1.4rem;
    border: 1px solid var(--lr-line);
    border-radius: 10px;
    background: white;
    box-shadow: var(--lr-soft-shadow);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 46px rgba(8, 24, 71, 0.12);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-bottom: 1.4rem;
    border-radius: 9px;
    color: var(--lr-blue);
    background: linear-gradient(135deg, var(--lr-mist), var(--lr-ice));
    font-size: 1.45rem;
}

.feature-card h3,
.workflow-grid h3,
.benefit-card h3 {
    margin: 0 0 0.7rem;
    color: var(--lr-navy);
    font-family: "Sansation", sans-serif;
    font-size: 1.22rem;
}

.feature-card p,
.workflow-grid p,
.benefit-card p {
    margin: 0;
    color: var(--lr-muted);
    font-size: 0.86rem;
    line-height: 1.65;
}

.landing-compliance {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 3rem;
    background:
        radial-gradient(circle at 100% 0%, rgba(198, 224, 240, 0.2), transparent 35%),
        var(--lr-navy);
}

.landing-compliance .landing-sub-header {
    color: var(--lr-sky);
}

.landing-compliance .landing-header {
    color: white;
}

.compliance-copy > p:not(.landing-sub-header) {
    margin: 1.25rem 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.94rem;
    line-height: 1.75;
}

.compliance-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin: 1.6rem 0;
    padding: 0;
    list-style: none;
}

.compliance-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.83rem;
    line-height: 1.5;
}

.compliance-list .material-symbols-outlined {
    color: #8ed9cd;
    font-size: 1.1rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: white;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
}

.text-link .material-symbols-outlined {
    font-size: 1.05rem;
}

.compliance-report {
    width: 100%;
    max-width: 590px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background: white;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.report-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem;
    border-bottom: 1px solid var(--lr-line);
}

.report-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    color: var(--lr-blue);
    background: var(--lr-ice);
}

.report-top > div:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.report-top small,
.report-balance small,
.report-balance span,
.report-files small {
    color: var(--lr-muted);
    font-size: 0.62rem;
}

.report-top strong {
    margin-top: 0.2rem;
    color: var(--lr-navy);
    font-size: 0.82rem;
}

.report-ready {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.5rem;
    border-radius: 6px;
    color: var(--lr-green);
    background: #eaf7f1;
    font-size: 0.55rem;
    font-weight: 700;
}

.report-balance {
    display: flex;
    flex-direction: column;
    padding: 1.2rem 1rem;
    background: var(--lr-ice);
}

.report-balance strong {
    margin: 0.3rem 0;
    color: var(--lr-navy);
    font-family: "Sansation", sans-serif;
    font-size: 1.65rem;
}

.report-lines {
    padding: 0.35rem 1rem;
}

.report-lines div {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--lr-line);
    color: var(--lr-muted);
    font-size: 0.65rem;
}

.report-lines strong {
    color: var(--lr-text);
}

.report-files {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
    padding: 1rem;
}

.report-files > div {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem;
    border: 1px solid var(--lr-line);
    border-radius: 7px;
}

.report-files .material-symbols-outlined {
    color: var(--lr-teal);
}

.report-files > div > span:last-child {
    display: flex;
    flex-direction: column;
}

.report-files strong {
    color: var(--lr-navy);
    font-size: 0.66rem;
}

.report-files small {
    margin-top: 0.16rem;
}

.landing-workflow {
    background: linear-gradient(180deg, var(--lr-ice), white);
}

.workflow-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 1180px;
    margin: 0 auto;
}

.workflow-grid article {
    display: flex;
    gap: 1rem;
    min-height: 175px;
    padding: 1.25rem;
    border: 1px solid var(--lr-line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.84);
}

.workflow-number,
.benefit-number {
    display: inline-flex;
    flex: 0 0 48px;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 42px;
    border-radius: 8px;
    color: var(--lr-blue);
    background: var(--lr-mist);
    font-family: "Sansation", sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
}

.workflow-grid h3 {
    margin-top: 0.45rem;
}

.landing-benefits {
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 1180px;
    margin: 0 auto;
}

.benefit-card {
    position: relative;
    min-height: 255px;
    overflow: hidden;
    padding: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: white;
    background: linear-gradient(145deg, var(--lr-navy), #173b6d);
}

.benefit-card::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45%;
    height: 4px;
    background: var(--lr-sky);
    content: "";
}

.benefit-number {
    margin-bottom: 2rem;
    color: var(--lr-navy);
    background: var(--lr-sky);
}

.benefit-card h3 {
    color: white;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.72);
}

.landing-contact {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 3rem;
    background: linear-gradient(135deg, var(--lr-mist), var(--lr-ice));
}

.contact-copy {
    max-width: 650px;
}

.contact-copy > p:not(.landing-sub-header) {
    margin: 1.2rem 0;
    color: var(--lr-muted);
    font-size: 0.94rem;
    line-height: 1.75;
}

.contact-points {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.contact-points span {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--lr-text);
    font-size: 0.82rem;
    font-weight: 600;
}

.contact-points i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: white;
    background: var(--lr-green);
    font-size: 0.9rem;
    font-style: normal;
}

.contact-card {
    display: flex;
    max-width: 530px;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    border: 1px solid rgba(8, 24, 71, 0.08);
    border-radius: 12px;
    background: white;
    box-shadow: var(--lr-shadow);
}

.contact-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 1.4rem;
    border-radius: 10px;
    color: white;
    background: var(--lr-navy);
}

.contact-card > p:first-of-type {
    margin: 0 0 0.45rem;
    color: var(--lr-teal);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-card h3 {
    margin: 0;
    color: var(--lr-navy);
    font-family: "Sansation", sans-serif;
    font-size: 1.7rem;
    line-height: 1.12;
}

.contact-card > p:last-of-type {
    margin: 1rem 0 1.3rem;
    color: var(--lr-muted);
    font-size: 0.83rem;
    line-height: 1.65;
}

.contact-card .button-primary {
    color: white;
    background: var(--lr-navy);
    box-shadow: none;
}

.contact-email {
    margin-top: 1rem;
    color: var(--lr-blue);
    font-size: 0.76rem;
    font-weight: 700;
    text-underline-offset: 3px;
}

.main-landing-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 90px;
    padding: 1.5rem;
    border-top: 1px solid var(--lr-line);
    color: var(--lr-muted);
    background: white;
    font-size: 0.72rem;
}

.main-landing-footer a {
    text-decoration: none;
}

.main-landing-footer a:hover {
    color: var(--lr-blue);
}

@media (min-width: 560px) {
    .hero-proof-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .window-status {
        display: inline-flex;
    }

    .product-shell {
        min-height: 390px;
    }

    .product-sidebar {
        flex-basis: 58px;
    }

    .product-content {
        padding: 1.25rem;
    }

    .product-stat-grid article {
        min-height: 95px;
        padding: 0.7rem;
    }

    .product-stat-grid span {
        font-size: 0.52rem;
    }

    .product-stat-grid strong {
        font-size: 1.05rem;
    }

    .product-stat-grid small {
        font-size: 0.45rem;
    }

    .product-panels {
        gap: 0.7rem;
        margin-top: 0.7rem;
    }

    .product-panels article {
        min-height: 180px;
        padding: 0.8rem;
    }

    .panel-title strong {
        font-size: 0.62rem;
    }

    .panel-title small {
        font-size: 0.5rem;
    }

    .chart {
        height: 100px;
    }

    .event-row strong {
        font-size: 0.53rem;
    }

    .event-row small {
        font-size: 0.45rem;
    }

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

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

    .main-landing-footer {
        flex-direction: row;
        justify-content: space-between;
        padding-right: 2rem;
        padding-left: 2rem;
    }
}

@media (min-width: 900px) {
    .main-landing section {
        padding: 6.5rem 3rem;
    }

    .landing-home,
    .landing-compliance,
    .landing-contact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-home {
        gap: 4rem;
        padding-top: 5.5rem !important;
        padding-bottom: 5.5rem !important;
    }

    .floating-proof {
        display: flex;
    }

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

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

    .workflow-grid article {
        flex-direction: column;
    }

    .contact-card {
        justify-self: end;
    }
}

@media (min-width: 1120px) {
    .top-landing-nav {
        min-height: 72px;
        padding-right: 2rem;
        padding-left: 2rem;
    }

    .nav-toggle {
        display: none;
    }

    .landing-menu {
        position: static;
        display: flex;
        flex: 1;
        align-items: center;
        justify-content: flex-end;
        gap: clamp(1rem, 4vw, 4rem);
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .top-landing-middle,
    .top-landing-right {
        flex-direction: row;
        align-items: center;
    }

    .top-landing-right .nav-demo-button {
        margin-top: 0;
        color: white;
        background: var(--lr-navy);
    }

    .landing-home {
        padding-right: 4rem !important;
        padding-left: 4rem !important;
    }

    .hero-product {
        max-width: 820px;
    }

    .product-window {
        transform: perspective(1400px) rotateY(-4deg) rotateX(1deg);
    }
}

@media (min-width: 1320px) {
    .main-landing section {
        padding-right: max(4rem, calc((100vw - 1280px) / 2));
        padding-left: max(4rem, calc((100vw - 1280px) / 2));
    }

    .hero-copy h1 {
        font-size: 4.9rem;
    }
}

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

    .button,
    .feature-card {
        transition: none;
    }
}
