:root {
    /* Local rebind: --lp-blue / --lp-blue-deep are owned by tokens.css.
     * Hex fallbacks ensure the page renders if tokens fail to load. */
    --lp-ink:        #0b1e3a;
    --lp-ink-soft:   #43526e;
    --lp-muted:      #6b7a93;
    --lp-line:       #dde6f1;
    --lp-line-soft:  #eef2f8;
    --lp-blue:       var(--ia-primary, #1a4f96);
    --lp-blue-deep:  var(--ia-primary-active, #0c2c5a);
    --lp-canvas-1:   #eaf3fc;
    --lp-canvas-2:   #f7faff;
    --lp-canvas-3:   #ffffff;
}

html, body { height: auto; }
body.lp-body {
    font-family: var(--ia-font-sans, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
    background: radial-gradient(1200px 600px at 50% -10%, var(--lp-canvas-1) 0%, var(--lp-canvas-2) 45%, var(--lp-canvas-3) 100%);
    color: var(--lp-ink);
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: var(--ia-text-base, 0.9375rem);
    line-height: var(--ia-leading-relaxed, 1.7);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.lp-skip {
    position: absolute; left: -9999px; top: auto;
    width: 1px; height: 1px; overflow: hidden;
}
.lp-skip:focus {
    position: static; width: auto; height: auto;
    padding: var(--ia-space-2, 0.5rem) var(--ia-space-4, 1rem); background: var(--lp-ink); color: #fff;
    border-radius: 0 0 var(--ia-radius-md, 6px) var(--ia-radius-md, 6px);
}

.lp-topbar {
    padding: 1.5rem;
    display: flex;
    justify-content: center;
}
.lp-topbar-inner {
    max-width: 720px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.lp-home-link {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    color: var(--lp-ink-soft);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.15s ease;
}
.lp-home-link:hover, .lp-home-link:focus {
    color: var(--lp-blue);
}
.lp-home-link img {
    width: 36px; height: 36px;
    filter: drop-shadow(0 6px 14px rgba(var(--ia-primary-700-rgb, 26, 79, 150), 0.18));
}

.lp-shell {
    flex: 1;
    padding: 2rem 1.5rem 4rem;
}
.lp-article {
    max-width: 720px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(6px);
    border: 1px solid var(--lp-line-soft);
    border-radius: 16px;
    padding: 3rem 2.75rem;
    box-shadow: 0 12px 40px rgba(11, 30, 58, 0.05);
}

.lp-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lp-blue);
    margin: 0 0 0.75rem;
    display: block;
}

.lp-title {
    margin: 0 0 0.5rem;
    font-size: 2.125rem;
    font-weight: 700;
    color: var(--lp-ink);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.lp-rule {
    width: 56px; height: 2px;
    background: var(--lp-blue);
    border: 0;
    margin: 1.5rem 0 2.25rem;
}

.lp-section {
    margin-bottom: 2.25rem;
}
.lp-section:last-child { margin-bottom: 0; }
.lp-section h2 {
    margin: 0 0 0.625rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lp-blue);
}
.lp-section p {
    margin: 0 0 0.75rem;
    color: var(--lp-ink-soft);
    font-size: 1rem;
}
.lp-section p:last-child { margin-bottom: 0; }
.lp-section .lp-address {
    font-style: normal;
    color: var(--lp-ink);
    font-size: 1rem;
    line-height: 1.7;
}
.lp-section .lp-address strong {
    font-weight: 600;
    color: var(--lp-ink);
}
.lp-section a {
    color: var(--lp-blue);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s ease;
}
.lp-section a:hover, .lp-section a:focus {
    border-bottom-color: var(--lp-blue);
}

.lp-footer {
    border-top: 1px solid var(--lp-line-soft);
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
}
.lp-footer-inner {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: var(--lp-muted);
}
.lp-footer-inner a {
    color: var(--lp-ink-soft);
    text-decoration: none;
}
.lp-footer-inner a:hover, .lp-footer-inner a:focus {
    color: var(--lp-blue);
    text-decoration: underline;
}

@media (max-width: 600px) {
    .lp-topbar { padding: 1rem; }
    .lp-shell { padding: 1rem 1rem 3rem; }
    .lp-article { padding: 2rem 1.5rem; border-radius: 14px; }
    .lp-title { font-size: 1.625rem; }
    .lp-footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 0.5rem; }
}
