/* ==========================================================================
   Landing Page Styles
   Standalone styles for public marketing pages — does not depend on style.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables
   -------------------------------------------------------------------------- */
:root {
    /* Brand palette */
    --lp-primary: #2F6FA3;
    /* Blue */
    --lp-primary-dark: #1F3A5F;
    /* Navy */
    --lp-primary-rgb: 47, 111, 163;
    --lp-teal: #2C7A7B;
    /* Teal — accent */
    --lp-teal-rgb: 44, 122, 123;
    --lp-orange: #E6A23C;
    /* Orange — for status/highlight use */

    /* Dark backgrounds */
    --lp-dark: #1F3A5F;
    /* Navy — hero bg */
    --lp-footer-dark: #1F2933;

    --lp-nav-dark: rgba(31, 58, 95, 0.95);


    /* Grau 700 — footer bg */

    /* Light surfaces */
    --lp-white: #ffffff;
    --lp-bg-light: #F5F7FA;
    /* Grau 100 */

    /* Typography */
    --lp-text-dark: #1F2933;
    /* Grau 700 — headings */
    --lp-text-body: #3D4F61;
    /* Mid-grey — body copy */
    --lp-text-muted: #687280;
    /* Grau 500 — captions/labels */

    /* Borders */
    --lp-border: #CBD2D9;
    /* Grau 300 */
    --lp-border-light: #E6E9EE;
    /* Grau 200 */

    /* Cards */
    --lp-card-bg: #ffffff;
    --lp-card-border: #E6E9EE;
    /* Grau 200 */

    /* Nav */
    --lp-nav-bg: #ffffff;
    --lp-nav-shadow: 0 1px 0 #E6E9EE, 0 2px 8px rgba(31, 58, 95, 0.06);

    /* Radii, spacing, transitions */
    --lp-radius: 8px;
    --lp-radius-lg: 12px;
    --lp-section-py: 96px;
    --lp-transition: all 0.2s ease;

    /* Modern easing curves */
    --lp-ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --lp-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Brand-tinted shadow tokens */
    --lp-shadow-sm: 0 1px 3px rgba(31, 58, 95, 0.06), 0 4px 12px rgba(31, 58, 95, 0.03);
    --lp-shadow-md: 0 8px 28px rgba(31, 58, 95, 0.12), 0 2px 8px rgba(31, 58, 95, 0.06);
}

/* --------------------------------------------------------------------------
   Base / Reset
   -------------------------------------------------------------------------- */
.lp-body {
    background-color: var(--lp-white);
    color: var(--lp-text-dark);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    overflow: auto;
}

/* --------------------------------------------------------------------------
   Eyebrow Labels
   -------------------------------------------------------------------------- */
/* Eyebrow default — teal on light bg */
.lp-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lp-teal);
    padding: 4px 10px;
    background-color: rgba(var(--lp-teal-rgb), 0.08);
    border-radius: 4px;
    margin-bottom: 16px;
}

/* Light variant for dark (hero / CTA) section */
.lp-eyebrow--light {
    color: rgba(255, 255, 255, 0.9);
    background-color: rgba(255, 255, 255, 0.12);
}

/* --------------------------------------------------------------------------
   Animated bar backgrounds — removed
   -------------------------------------------------------------------------- */
.lp-bars {
    display: none;
}

/* --------------------------------------------------------------------------
   Navbar
   -------------------------------------------------------------------------- */
/* Fixed + transparent over hero; becomes solid white on scroll */
.lp-body .lp-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--lp-nav-dark);
    box-shadow: none;
    z-index: 1030;
    transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

.lp-navbar.is-scrolled {
    background-color: var(--lp-nav-bg);
    box-shadow: 0 2px 16px rgba(31, 58, 95, 0.14);
}

/* Over dark hero — brand, links, and sign-in button go white */
.lp-navbar:not(.is-scrolled) .lp-brand-reg,
.lp-navbar:not(.is-scrolled) .lp-brand-control {
    color: rgba(255, 255, 255, 0.95);
}

.lp-body .lp-navbar:not(.is-scrolled) a.lp-nav-link,
.lp-body .lp-navbar:not(.is-scrolled) a.lp-nav-link:visited {
    color: rgba(255, 255, 255, 0.88) !important;
}

.lp-body .lp-navbar:not(.is-scrolled) a.lp-nav-link:hover {
    color: var(--lp-white) !important;
}

.lp-body .lp-navbar:not(.is-scrolled) a.lp-btn-signin,
.lp-body .lp-navbar:not(.is-scrolled) a.lp-btn-signin:visited {
    background-color: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    color: var(--lp-white) !important;
    box-shadow: none;
}

.lp-body .lp-navbar:not(.is-scrolled) a.lp-btn-signin:hover,
.lp-body .lp-navbar:not(.is-scrolled) a.lp-btn-signin:focus {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.85);
    box-shadow: none;
    transform: translateY(-1px);
}

/* Mobile: always solid (hero is too short for transparency on narrow viewports) */
@media (max-width: 767.98px) {
    .lp-body .lp-navbar:not(.is-scrolled) {
        background-color: var(--lp-nav-bg);
        box-shadow: var(--lp-nav-shadow);
    }

    .lp-navbar:not(.is-scrolled) .lp-brand-reg {
        color: var(--lp-primary-dark);
    }

    .lp-navbar:not(.is-scrolled) .lp-brand-control {
        color: var(--lp-teal);
    }

    .lp-body .lp-navbar:not(.is-scrolled) a.lp-nav-link,
    .lp-body .lp-navbar:not(.is-scrolled) a.lp-nav-link:visited {
        color: var(--lp-text-body) !important;
    }

    .lp-body .lp-navbar:not(.is-scrolled) a.lp-btn-signin,
    .lp-body .lp-navbar:not(.is-scrolled) a.lp-btn-signin:visited {
        background-color: var(--lp-primary);
        border: none;
        color: var(--lp-white) !important;
    }
}

.lp-brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--lp-primary);
    color: var(--lp-primary);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.lp-brand-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--lp-text-dark);
    text-decoration: none;
    line-height: 1.3;
}

/* SVG wordmark in the navbar */
.lp-brand-logo {
    display: block;
    height: 28px;
    width: auto;
}

/* App icon mark (navbar) */
.lp-brand-icon-img {
    display: block;
    height: 32px;
    width: auto;
    flex-shrink: 0;
}

/* Full wordmark (banner.svg) in navbar — icon mark + "RegControl" text */
.lp-brand-wordmark {
    display: block;
    height: 38px;
    width: auto;
    flex-shrink: 0;
}

/* Text-based wordmark: "Reg" navy + "Control" teal */
.lp-brand-text-logo {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1;
    user-select: none;
}

.lp-brand-reg {
    color: var(--lp-primary-dark);
    font-weight: 500;
    transition: color 0.35s ease;
}

.lp-brand-control {
    color: var(--lp-teal);
    font-weight: 600;
    transition: color 0.35s ease;
}

/* Beta pill badge — sits inline after the brand wordmark */
.lp-beta-badge {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 7px;
    border-radius: 4px;
    background-color: rgba(44, 122, 123, 0.15);
    border: 1px solid rgba(44, 122, 123, 0.35);
    color: var(--lp-teal);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    vertical-align: middle;
    line-height: 1;
    transition: background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

/* Over dark hero — badge goes teal/white */
.lp-navbar:not(.is-scrolled) .lp-beta-badge {
    background-color: rgba(64, 224, 208, 0.15);
    border-color: rgba(64, 224, 208, 0.4);
    color: rgba(64, 224, 208, 0.9);
}

.lp-body a.lp-nav-link,
.lp-body a.lp-nav-link:visited {
    color: var(--lp-text-body) !important;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.lp-body a.lp-nav-link:hover {
    color: var(--lp-primary) !important;
}

.lp-body a.lp-btn-signin,
.lp-body a.lp-btn-signin:visited {
    display: inline-block;
    padding: 7px 20px;
    border-radius: 6px;
    background-color: var(--lp-primary);
    color: var(--lp-white) !important;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease, box-shadow 0.2s ease, transform 0.15s var(--lp-ease-spring);
    white-space: nowrap;
}

.lp-body a.lp-btn-signin:hover,
.lp-body a.lp-btn-signin:focus {
    background-color: var(--lp-primary-dark);
    color: var(--lp-white) !important;
    box-shadow: 0 4px 12px rgba(var(--lp-primary-rgb), 0.35);
    transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   Section base
   -------------------------------------------------------------------------- */
.lp-section {
    position: relative;
    overflow: hidden;
    background-color: var(--lp-white);
    padding: var(--lp-section-py) 0;
}

/* --------------------------------------------------------------------------
   Section backgrounds — dark hero, alternating light below
   -------------------------------------------------------------------------- */
.lp-hero {
    background-color: var(--lp-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 80px;
}

/* Depth layer: dual radial teal/blue glow over navy background */
.lp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 55% at 75% 30%, rgba(44, 122, 123, 0.22) 0%, transparent 60%),
        radial-gradient(ellipse 45% 40% at 15% 85%, rgba(47, 111, 163, 0.14) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
    animation: hero-glow-breathe 12s ease-in-out infinite;
}

@keyframes hero-glow-breathe {

    0%,
    100% {
        opacity: 0.75;
    }

    50% {
        opacity: 1;
    }
}

.lp-hero .container-fluid {
    position: relative;
    z-index: 1;
}

/* --------------------------------------------------------------------------
   Hero module cards (right column)
   -------------------------------------------------------------------------- */
.lp-hero-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lp-hero-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--lp-teal);
    border-radius: 8px;
    padding: 18px 22px;
    transition: background-color 0.2s ease, border-color 0.2s ease,
        box-shadow 0.25s var(--lp-ease-out-expo);
}

.lp-hero-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-left-color: rgba(var(--lp-teal-rgb), 0.8);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

.lp-hero-card--offset {
    margin-left: 28px;
}

.lp-hero-card-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--lp-white);
    margin-bottom: 4px;
}

.lp-hero-card-desc {
    font-size: 0.825rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Hero entrance animations — above-the-fold, keyframe-based stagger
   (The .lp-reveal wrapper on hero columns is immediately visible;
   child elements animate in sequentially via CSS keyframes.)
   -------------------------------------------------------------------------- */

/* Hero columns: skip scroll-reveal — replaced by keyframes below */
.lp-hero .lp-reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
}

@keyframes lp-hero-in {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes lp-hero-card-in {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* Large bold headline */
.lp-hero-headline {
    font-size: clamp(2.2rem, 3.5vw, 3.4rem);
    font-weight: 800;
    color: var(--lp-white);
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-top: 0;
    margin-bottom: 1rem;
    animation: lp-hero-in 0.55s var(--lp-ease-out-expo) 0.10s both;
}

/* Particle canvas — fills the right hero column */
.lp-hero-canvas {
    display: block;
    width: 100%;
    height: 460px;
    border-radius: var(--lp-radius-lg);
    opacity: 1;
    cursor: crosshair;
}

.lp-hero .lp-subheading {
    animation: lp-hero-in 0.55s var(--lp-ease-out-expo) 0.24s both;
}

.lp-hero .d-flex.gap-3 {
    animation: lp-hero-in 0.55s var(--lp-ease-out-expo) 0.38s both;
}

/* Text-style secondary link in the hero CTA row */
.lp-hero-scroll-hint {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 1px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.lp-hero-scroll-hint:hover,
.lp-hero-scroll-hint:focus {
    color: var(--lp-white) !important;
    border-bottom-color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.lp-hero-card:nth-child(1) {
    animation: lp-hero-card-in 0.5s var(--lp-ease-out-expo) 0.52s both;
}

.lp-hero-card:nth-child(2) {
    animation: lp-hero-card-in 0.5s var(--lp-ease-out-expo) 0.67s both;
}

.lp-hero-card:nth-child(3) {
    animation: lp-hero-card-in 0.5s var(--lp-ease-out-expo) 0.82s both;
}

.lp-value-prop {
    background-color: var(--lp-white);
}

/* --------------------------------------------------------------------------
   Value-prop stat column
   -------------------------------------------------------------------------- */
.lp-value-facts {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-left: 2px solid var(--lp-border);
    padding-left: 28px;
}

.lp-value-fact {
    padding: 20px 0;
    border-bottom: 1px solid var(--lp-border);
}

.lp-value-fact:last-child {
    border-bottom: none;
}

.lp-value-fact-number {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
    /* Gradient text — blue→teal */
    background: linear-gradient(135deg, var(--lp-primary) 30%, var(--lp-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.lp-value-fact-label {
    font-size: 0.85rem;
    color: var(--lp-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lp-problem {
    background-color: var(--lp-bg-light);
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
}

/* --------------------------------------------------------------------------
   Problem Section Mock Graphic — Fragmentation → Unity
   -------------------------------------------------------------------------- */
.lp-problem-mock {
    background-color: var(--lp-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    box-shadow: var(--lp-shadow-md);
}

.lp-problem-visual {
    display: flex;
    align-items: center;
    padding: 24px 20px 16px;
    gap: 14px;
    min-height: 170px;
}

.lp-problem-before {
    position: relative;
    width: 108px;
    height: 128px;
    flex-shrink: 0;
}

.lp-problem-sheet {
    position: absolute;
    width: 86px;
    background: var(--lp-bg-light);
    border: 1px solid var(--lp-border);
    border-radius: 5px;
    padding: 10px 8px;
    box-shadow: 0 2px 6px rgba(31, 58, 95, 0.07);
    animation-fill-mode: both;
    animation-play-state: paused;
}

.lp-problem-sheet--1 {
    top: 0;
    left: 0;
    z-index: 1;
    animation: problem-sheet1-in 0.45s var(--lp-ease-out-expo) 0.15s both;
}

.lp-problem-sheet--2 {
    top: 24px;
    left: 14px;
    z-index: 2;
    animation: problem-sheet2-in 0.45s var(--lp-ease-out-expo) 0.30s both;
}

.lp-problem-sheet--3 {
    top: 48px;
    left: 5px;
    z-index: 3;
    animation: problem-sheet3-in 0.45s var(--lp-ease-out-expo) 0.45s both;
}

.lp-problem-mock.is-animated .lp-problem-sheet {
    animation-play-state: running;
}

.lp-sheet-row {
    height: 6px;
    background: var(--lp-border);
    border-radius: 3px;
    margin-bottom: 6px;
}

.lp-sheet-row:last-child {
    margin-bottom: 0;
}

.lp-sheet-row--warn {
    background: rgba(230, 162, 60, 0.6);
}

.lp-problem-error-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #dc3545;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    z-index: 10;
    animation: problem-badge-pop 0.35s var(--lp-ease-spring) 0.62s both;
    animation-play-state: paused;
}

.lp-problem-mock.is-animated .lp-problem-error-badge {
    animation-play-state: running;
}

.lp-problem-arrow {
    font-size: 1.5rem;
    color: var(--lp-border);
    flex-shrink: 0;
    line-height: 1;
    animation: problem-arrow-in 0.3s ease-out 0.78s both;
    animation-play-state: paused;
}

.lp-problem-mock.is-animated .lp-problem-arrow {
    animation-play-state: running;
}

.lp-problem-after {
    flex: 1;
    animation: problem-after-in 0.5s var(--lp-ease-out-expo) 0.95s both;
    animation-play-state: paused;
}

.lp-problem-mock.is-animated .lp-problem-after {
    animation-play-state: running;
}

.lp-problem-platform {
    background: linear-gradient(145deg, var(--lp-primary-dark) 0%, var(--lp-primary) 100%);
    border-radius: 8px;
    padding: 14px 12px;
}

.lp-platform-header {
    height: 8px;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 3px;
    margin-bottom: 10px;
    width: 70%;
}

.lp-platform-row {
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    margin-bottom: 7px;
}

.lp-platform-row--half {
    width: 52%;
}

.lp-platform-teal-bar {
    height: 4px;
    background: rgba(56, 210, 210, 0.85);
    border-radius: 2px;
    margin-top: 6px;
    width: 40%;
}

.lp-platform-check-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.lp-problem-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--lp-teal);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(44, 122, 123, 0.45);
    transform: scale(0);
    animation: problem-check-pop 0.35s var(--lp-ease-spring) 1.1s both;
    animation-play-state: paused;
}

.lp-problem-mock.is-animated .lp-problem-check {
    animation-play-state: running;
}

.lp-problem-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 20px 14px;
}

.lp-problem-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.lp-problem-label--before {
    color: rgba(220, 53, 69, 0.7);
}

.lp-problem-label--after {
    color: var(--lp-teal);
}

@keyframes problem-sheet1-in {
    from {
        opacity: 0;
        transform: rotate(-6deg) translateY(-10px);
    }

    to {
        opacity: 1;
        transform: rotate(-6deg);
    }
}

@keyframes problem-sheet2-in {
    from {
        opacity: 0;
        transform: rotate(2deg) translateY(-10px);
    }

    to {
        opacity: 1;
        transform: rotate(2deg);
    }
}

@keyframes problem-sheet3-in {
    from {
        opacity: 0;
        transform: rotate(-3deg) translateY(-10px);
    }

    to {
        opacity: 1;
        transform: rotate(-3deg);
    }
}

@keyframes problem-badge-pop {
    from {
        opacity: 0;
        transform: scale(0.4);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes problem-arrow-in {
    from {
        opacity: 0;
        transform: translateX(-6px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes problem-after-in {
    from {
        opacity: 0;
        transform: translateX(14px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes problem-check-pop {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.lp-features {
    background-color: var(--lp-white);
}

.lp-partners {
    background-color: var(--lp-bg-light);
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
}

.lp-roadmap {
    background-color: var(--lp-white);
}

.lp-cta {
    background-color: var(--lp-primary-dark);
}

/* Subtle teal glow echoing the hero */
.lp-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 70% at 85% 50%, rgba(44, 122, 123, 0.18) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.lp-contact {
    background-color: var(--lp-bg-light);
    border-top: 1px solid var(--lp-border);
}

.lp-heading-xl {
    font-size: clamp(2.75rem, 7vw, 4.5rem);
    font-weight: 700;
    color: var(--lp-white);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.lp-subheading {
    font-size: clamp(1.05rem, 2.5vw, 1.3rem);
    font-weight: 400;
    line-height: 1.65;
}

.lp-heading-lg {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 600;
    color: var(--lp-text-dark);
    line-height: 1.3;
}

.lp-heading-md {
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
    font-weight: 600;
}

.lp-body-text {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.8;
}

/* Hero — keep white */
.lp-hero .lp-heading-xl {
    color: var(--lp-white);
}

/* CTA — headings go white */
.lp-cta .lp-heading-lg {
    color: var(--lp-white);
}

/* Default on light sections: regular body text */
.lp-accent-text {
    color: var(--lp-text-body);
    font-weight: 400;
}

/* Hero: softer white on dark background */
.lp-hero .lp-accent-text {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

/* CTA section: semi-transparent white */
.lp-cta .lp-accent-text {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 400;
}

/* Contact section heading: indigo accent */
.lp-contact .lp-heading-md.lp-accent-text {
    color: var(--lp-primary);
    font-weight: 700;
}

/* Partner cards: regular body text on light bg */
.lp-partners .lp-text-white {
    color: var(--lp-text-body);
    font-weight: 400;
}

/* Feature card description: regular body text */
.lp-features .lp-accent-text {
    color: var(--lp-text-body);
    font-weight: 400;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.lp-body a.lp-btn-primary,
.lp-body a.lp-btn-primary:visited {
    display: inline-block;
    padding: 13px 32px;
    border-radius: 6px;
    background-color: var(--lp-primary);
    color: var(--lp-white) !important;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(var(--lp-teal-rgb), 0.35);
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s var(--lp-ease-spring);
}

.lp-body a.lp-btn-primary:hover,
.lp-body a.lp-btn-primary:focus {
    background-color: #3a82b8;
    color: var(--lp-white) !important;
    box-shadow: 0 8px 28px rgba(var(--lp-primary-rgb), 0.55);
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.lp-body a.lp-btn-primary:active {
    background-color: var(--lp-primary-dark);
    color: var(--lp-white) !important;
    box-shadow: 0 2px 8px rgba(var(--lp-primary-rgb), 0.4);
    transform: translateY(0);
    filter: brightness(1);
    transition-duration: 0.05s;
}

/* CTA section: inverted button */
.lp-cta a.lp-btn-primary,
.lp-cta a.lp-btn-primary:visited {
    background-color: var(--lp-white);
    color: var(--lp-primary) !important;
}

.lp-cta a.lp-btn-primary:hover,
.lp-cta a.lp-btn-primary:focus {
    background-color: #e8f4fb;
    color: var(--lp-primary-dark) !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    transform: translateY(-1px);
}

.lp-body a.lp-btn-outline,
.lp-body a.lp-btn-outline:visited {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.92) !important;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s var(--lp-ease-spring);
}

.lp-body a.lp-btn-outline:hover,
.lp-body a.lp-btn-outline:focus {
    border-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, 0.18);
    color: var(--lp-white) !important;
    transform: translateY(-1px);
}

/* Focus rings — accessible + modern */
.lp-body a.lp-btn-primary:focus-visible,
.lp-body a.lp-btn-outline:focus-visible,
.lp-body a.lp-btn-signin:focus-visible {
    outline: 2px solid var(--lp-teal);
    outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   Alternate Section Backgrounds
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   Feature Cards
   -------------------------------------------------------------------------- */
.lp-card {
    background-color: var(--lp-white);
    border: 1px solid var(--lp-card-border);
    border-radius: var(--lp-radius-lg);
    padding: 2rem;
    transition: box-shadow 0.3s var(--lp-ease-out-expo),
        border-color 0.2s ease,
        transform 0.3s var(--lp-ease-out-expo);
    position: relative;
    overflow: hidden;
    box-shadow: var(--lp-shadow-sm);
    display: flex;
    flex-direction: column;
}

.lp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lp-teal), rgba(var(--lp-teal-rgb), 0));
    opacity: 0.2;
    transition: opacity 0.3s ease;
}

.lp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-shadow-md);
    border-color: rgba(var(--lp-primary-rgb), 0.25);
}

.lp-card:hover::before {
    opacity: 1;
}

.lp-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lp-text-dark);
    margin-bottom: 0.75rem;
}

/* --------------------------------------------------------------------------
   Screenshot Placeholder / Mock Chart
   -------------------------------------------------------------------------- */
.lp-screenshot-mock {
    background-color: var(--lp-bg-light);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    overflow: hidden;
    margin-top: auto;
}

.lp-mock-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background-color: var(--lp-white);
    border-bottom: 1px solid var(--lp-border);
}

.lp-mock-label {
    font-size: 0.65rem;
    color: var(--lp-text-muted);
    font-weight: 500;
    letter-spacing: 0.04em;
}

.lp-mock-controls {
    display: flex;
    gap: 5px;
}

.lp-mock-controls span {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #dee2e6;
}

.lp-mock-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    padding: 16px 12px 8px;
    height: 110px;
}

.lp-mock-chart--stacked {
    gap: 10px;
}

.lp-mock-chart--waterfall {
    gap: 8px;
}

.lp-mock-bar-group {
    display: flex;
    align-items: flex-end;
    gap: 3px;
}

.lp-mock-bar {
    flex: 1;
    min-width: 12px;
    border-radius: 3px 3px 0 0;
    height: var(--h, 50%);
    animation: mock-bar-in 0.55s var(--lp-ease-out-expo) var(--d, 0s) both;
    animation-play-state: paused;
    background-color: rgba(var(--lp-primary-rgb), 0.55);
}

/* CAPEX chart */
.lp-mock-chart--capex {
    gap: 5px;
}

.lp-mock-bar--grad {
    background: linear-gradient(to top, rgba(47, 111, 163, 0.75), rgba(47, 111, 163, 0.38));
}

.lp-mock-bar--highlight {
    background: linear-gradient(to top, rgba(44, 122, 123, 0.95), rgba(56, 210, 210, 0.6)) !important;
}

.lp-mock-sparkline {
    height: 2px;
    background: linear-gradient(90deg,
            rgba(var(--lp-primary-rgb), 0.0) 0%,
            rgba(var(--lp-primary-rgb), 0.5) 40%,
            rgba(var(--lp-teal-rgb), 0.7) 100%);
    margin: 0 12px 10px;
    border-radius: 1px;
}

/* Bars animate only once the card scrolls into view */
.lp-screenshot-mock.is-animated .lp-mock-bar {
    animation-play-state: running;
}

@keyframes mock-bar-in {
    from {
        height: 0;
        opacity: 0;
    }

    to {
        height: var(--h, 50%);
        opacity: 1;
    }
}

.lp-mock-bar--accent {
    background-color: rgba(var(--lp-primary-rgb), 0.88);
}

/* ------------------------------------------------------------------
   Erlösobergrenze card — SVG donut ring chart
------------------------------------------------------------------ */
.lp-mock-donut-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 25px 16px 16px;
}

.lp-mock-donut {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.lp-mock-donut-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    /* start segments at 12 o'clock */
}

.lp-mock-ring {
    stroke-dasharray: 0 100;
    transition: stroke-dasharray 0.65s var(--lp-ease-out-expo);
    transition-delay: var(--ring-delay, 0s);
}

.lp-screenshot-mock.is-animated .lp-mock-ring--a {
    stroke-dasharray: 55 45;
}

.lp-screenshot-mock.is-animated .lp-mock-ring--b {
    stroke-dasharray: 25 75;
}

.lp-screenshot-mock.is-animated .lp-mock-ring--c {
    stroke-dasharray: 20 80;
}

.lp-mock-donut-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--lp-primary);
    letter-spacing: 0.04em;
    pointer-events: none;
}

.lp-mock-donut-legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-mock-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.6rem;
    color: var(--lp-text-muted);
    font-weight: 500;
}

.lp-mock-legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.lp-mock-legend-pct {
    margin-left: auto;
    font-weight: 700;
    color: var(--lp-text-dark);
    padding-left: 8px;
}

/* ------------------------------------------------------------------
   Netzkosten card — horizontal progress bars
------------------------------------------------------------------ */
.lp-mock-hbars {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 12px 14px 14px;
}

.lp-mock-hbar-row {
    display: grid;
    grid-template-columns: 48px 1fr 32px;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    border-bottom: 1px solid var(--lp-border-light);
}

.lp-mock-hbar-row:last-child {
    border-bottom: none;
}

.lp-mock-hbar-cat {
    font-size: 0.58rem;
    color: var(--lp-text-muted);
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.lp-mock-hbar-val {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--lp-text-dark);
    text-align: right;
}

.lp-mock-hbar-track {
    background: var(--lp-border-light);
    border-radius: 4px;
    height: 7px;
    overflow: hidden;
}

.lp-mock-hbar-fill {
    height: 100%;
    border-radius: 4px;
    width: 0;
    animation: hbar-in 0.55s var(--lp-ease-out-expo) var(--d, 0s) both;
    animation-play-state: paused;
}

.lp-screenshot-mock.is-animated .lp-mock-hbar-fill {
    animation-play-state: running;
}

@keyframes hbar-in {
    from {
        width: 0;
    }

    to {
        width: var(--w, 50%);
    }
}

.lp-mock-hbar-fill--primary {
    background: rgba(47, 111, 163, 0.75);
}

.lp-mock-hbar-fill--teal {
    background: rgba(44, 122, 123, 0.75);
}

.lp-mock-hbar-fill--orange {
    background: rgba(230, 162, 60, 0.75);
}

.lp-mock-hbar-fill--dark {
    background: linear-gradient(90deg, rgba(31, 58, 95, 0.7), rgba(47, 111, 163, 0.85));
}

.lp-mock-bar--a {
    background-color: rgba(var(--lp-primary-rgb), 0.65);
}

.lp-mock-bar--b {
    background-color: rgba(230, 162, 60, 0.65);
}

.lp-mock-bar--c {
    background-color: rgba(var(--lp-teal-rgb), 0.6);
}

.lp-mock-bar--d {
    background-color: rgba(220, 53, 69, 0.5);
}

.lp-mock-bar--neutral {
    background-color: rgba(108, 117, 125, 0.4);
}

.lp-mock-line {
    height: 2px;
    background: linear-gradient(90deg, rgba(var(--lp-primary-rgb), 0.4), transparent);
    margin: 0 12px 10px;
    border-radius: 1px;
}

/* --------------------------------------------------------------------------
   Partners Section
   -------------------------------------------------------------------------- */
.lp-partner-logo {
    min-height: 60px;
    display: flex;
    align-items: center;
}

.lp-kvk-img {
    height: 58px;
    width: auto;
}

.lp-polynomics-img {
    height: 34px;
    width: auto;
    max-width: 220px;
}

.lp-x-divider {
    font-size: 3rem;
    font-weight: 900;
    color: var(--lp-border);
    line-height: 1;
}

/* --------------------------------------------------------------------------
   Roadmap Grid
   -------------------------------------------------------------------------- */
.lp-roadmap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 380px;
    width: 100%;
}

.lp-roadmap-item {
    background-color: var(--lp-card-bg);
    border: 1px solid var(--lp-card-border);
    border-radius: var(--lp-radius);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    transition: border-color 0.2s ease,
        box-shadow 0.25s var(--lp-ease-out-expo),
        transform 0.25s var(--lp-ease-out-expo);
}

.lp-roadmap-item:hover {
    border-color: rgba(var(--lp-teal-rgb), 0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(31, 58, 95, 0.08);
}

.lp-roadmap-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(var(--lp-primary-rgb), 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: background-color 0.25s ease, transform 0.25s var(--lp-ease-spring);
}

.lp-roadmap-item:hover .lp-roadmap-icon-wrap {
    background-color: rgba(var(--lp-primary-rgb), 0.18);
    transform: scale(1.12);
}

.lp-roadmap-item span {
    font-size: 0.8rem;
    color: var(--lp-text-muted);
    font-weight: 500;
    line-height: 1.4;
}

/* --------------------------------------------------------------------------
   Contact Section
   -------------------------------------------------------------------------- */
.lp-contact-card {
    background-color: var(--lp-white);
    border: 1px solid var(--lp-card-border);
    border-radius: var(--lp-radius-lg);
    padding: 2rem;
    box-shadow: var(--lp-shadow-sm);
}

.lp-contact-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--lp-text-dark);
    margin-bottom: 1.25rem;
}

.lp-contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.lp-contact-label {
    font-weight: 700;
    color: var(--lp-primary);
    width: 16px;
    flex-shrink: 0;
    font-size: 0.9rem;
    margin-top: 1px;
}

.lp-contact-list dd {
    margin: 0;
    color: var(--lp-text-body);
    font-size: 0.9rem;
    line-height: 1.5;
}

.lp-body a.lp-contact-list a,
.lp-body .lp-contact-list a,
.lp-body .lp-contact-list a:visited {
    color: var(--lp-text-body) !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.lp-body .lp-contact-list a:hover {
    color: var(--lp-primary) !important;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.lp-footer {
    background-color: var(--lp-footer-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    margin-left: 0;
}

.lp-footer-copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.lp-body a.lp-footer-link,
.lp-body a.lp-footer-link:visited {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5) !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.lp-body a.lp-footer-link:hover {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* --------------------------------------------------------------------------
   Scroll Reveal Animation
   -------------------------------------------------------------------------- */
.lp-reveal {
    opacity: 0;
    transform: translateY(22px) translateZ(0);
    will-change: opacity, transform;
    backface-visibility: hidden;
    transition: opacity 0.65s var(--lp-ease-out-expo) var(--reveal-delay, 0s),
        transform 0.65s var(--lp-ease-out-expo) var(--reveal-delay, 0s);
}

/* Directional variants for variety */
.lp-reveal--left {
    transform: translateX(-28px) translateZ(0);
}

.lp-reveal--right {
    transform: translateX(28px) translateZ(0);
}

.lp-reveal--scale {
    transform: scale(0.95) translateZ(0);
}

.lp-reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* --------------------------------------------------------------------------
   Section content z-index (above animated bars)
   -------------------------------------------------------------------------- */
.lp-section>.container,
.lp-section>.container-fluid {
    position: relative;
    z-index: 1;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
    :root {
        --lp-section-py: 72px;
    }

    .lp-x-divider {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    :root {
        --lp-section-py: 56px;
    }

    .lp-hero {
        padding-top: 60px;
        padding-bottom: 60px;
        min-height: 80vh;
    }

    .lp-roadmap-grid {
        max-width: 320px;
    }

    .lp-x-divider {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   Reduced-motion accessibility
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {

    /* Hero keyframe anims */
    .lp-hero .lp-eyebrow,
    .lp-hero-banner,
    .lp-hero .lp-subheading,
    .lp-hero .d-flex.gap-3,
    .lp-hero-card {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .lp-hero-banner {
        filter: brightness(0) invert(1);
    }

    .lp-hero::before {
        animation: none;
    }

    /* Scroll reveal */
    .lp-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    /* Chart bars: show at full height immediately */
    .lp-mock-bar {
        animation: none;
        height: var(--h, 50%);
        opacity: 1;
    }

    /* Card / roadmap transitions */
    .lp-card,
    .lp-roadmap-item,
    .lp-roadmap-icon-wrap {
        transition: none;
    }

    /* Problem mock */
    .lp-problem-sheet--1 {
        opacity: 1;
        transform: rotate(-6deg);
        animation: none;
    }

    .lp-problem-sheet--2 {
        opacity: 1;
        transform: rotate(2deg);
        animation: none;
    }

    .lp-problem-sheet--3 {
        opacity: 1;
        transform: rotate(-3deg);
        animation: none;
    }

    .lp-problem-error-badge {
        opacity: 1;
        transform: scale(1);
        animation: none;
    }

    .lp-problem-arrow {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .lp-problem-after {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .lp-problem-check {
        transform: scale(1);
        animation: none;
    }

    /* Donut rings */
    .lp-mock-ring {
        transition: none;
    }

    .lp-mock-ring--a {
        stroke-dasharray: 55 45;
    }

    .lp-mock-ring--b {
        stroke-dasharray: 25 75;
    }

    .lp-mock-ring--c {
        stroke-dasharray: 20 80;
    }

    /* Horizontal bars */
    .lp-mock-hbar-fill {
        animation: none;
        width: var(--w, 50%);
    }
}

