:root {
    --ll-bg: #f4f5f8;
    --ll-surface: #ffffff;
    --ll-soft: #edf1f7;
    --ll-soft-2: #e8edf6;
    --ll-text: #121a2f;
    --ll-muted: #778099;
    --ll-line: #d9dfe9;
    --ll-navy: #182241;
    --ll-navy-2: #223157;
    --ll-gold: #dfb834;
    --ll-gold-2: #f1c743;
    --ll-shadow: 0 14px 30px rgba(15, 23, 42, 0.06), 0 28px 48px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.ll-page {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--ll-bg);
    color: var(--ll-text);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button {
    font: inherit;
}

.ll-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.ll-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(24, 34, 65, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 24px rgba(14, 20, 36, 0.12);
    backdrop-filter: blur(14px);
}

.ll-nav-toggle {
    display: none;
}

.ll-nav-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.ll-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.ll-brand-box {
    width: 54px;
    height: 38px;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

.ll-brand-box img {
    width: 30px;
    height: 30px;
}

.ll-brand-word {
    color: #f4d06a;
    font-weight: 800;
    letter-spacing: 0.12em;
    font-size: 13px;
}

.ll-nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ll-nav-links>a:not(.ll-btn) {
    display: block;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
    padding: 2px 0;
    transition: color .2s ease, transform .2s ease;
}

.ll-nav-links>a:not(.ll-btn):hover {
    color: #fff;
    transform: translateY(-1px);
}

.ll-nav-cta {
    min-height: 46px;
    padding: 0 18px;
    border-radius: 12px;
}

.ll-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.ll-btn:hover {
    transform: translateY(-1px);
}

.ll-btn--large {
    min-height: 54px;
    padding: 0 24px;
    font-size: 15px;
}

.ll-btn--gold {
    background: linear-gradient(180deg, var(--ll-gold-2) 0%, var(--ll-gold) 100%);
    color: #1a233e;
    box-shadow: 0 16px 30px rgba(223, 184, 52, 0.28);
}

.ll-btn--ghost {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.ll-hero {
    position: relative;
    overflow: hidden;
    padding: 34px 0 42px;
    min-height: 60vh;
    background:
        radial-gradient(circle at 82% 24%, rgba(223, 184, 52, 0.18), transparent 16%),
        radial-gradient(circle at 84% 28%, rgba(223, 184, 52, 0.10), transparent 28%),
        linear-gradient(180deg, rgba(24, 34, 65, 0.98) 0%, rgba(45, 56, 89, 0.92) 42%, rgba(35, 45, 75, 1) 100%);
}

.ll-hero::before,
.ll-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ll-hero::before {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.25), transparent);
}

.ll-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 400px);
    gap: 42px;
    align-items: center;
}

.ll-hero-copy {
    color: #fff;
    padding-top: 4px;
}

.ll-kicker {
    margin-bottom: 14px;
    font-size: 14px;
    letter-spacing: 0.14em;
    color: var(--ll-gold);
    font-weight: 900;
    text-transform: uppercase;
}

.ll-kicker--dark {
    color: #c89d18;
}

.ll-hero-copy h1 {
    margin: 0;
    max-width: 14ch;
    font-size: clamp(52px, 6.4vw, 72px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.ll-hero-copy h1 span {
    color: var(--ll-gold);
}

.ll-hero-copy p {
    margin: 18px 0 0;
    max-width: 22ch;
    font-size: clamp(17px, 1.5vw, 20px);
    line-height: 1.52;
    color: rgba(255, 255, 255, 0.74);
}

.ll-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.ll-hero-metrics {
    display: flex;
    gap: 14px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.ll-metric {
    min-width: 128px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
}

.ll-metric strong {
    display: block;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.ll-metric span {
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
}

.ll-profile-card {
    position: relative;
    padding: 22px 20px 18px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(40, 53, 90, 0.88) 0%, rgba(33, 44, 79, 0.90) 100%);
    border: 1px solid rgba(223, 184, 52, 0.14);
    box-shadow: 0 26px 52px rgba(15, 23, 42, 0.22);
    overflow: hidden;
    transition:
        transform .7s cubic-bezier(.2, .7, .2, 1),
        border-radius .7s cubic-bezier(.2, .7, .2, 1),
        box-shadow .7s cubic-bezier(.2, .7, .2, 1),
        background .7s cubic-bezier(.2, .7, .2, 1);
}

.ll-profile-card.is-morphing {
    transform: translateY(-2px) scale(1.012);
    border-radius: 34px;
    box-shadow: 0 34px 64px rgba(15, 23, 42, 0.28);
}

.ll-profile-card-glow {
    position: absolute;
    inset: auto -80px -120px auto;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(223, 184, 52, 0.18) 0%, rgba(223, 184, 52, 0.06) 38%, transparent 66%);
    pointer-events: none;
    transition: transform .8s cubic-bezier(.2, .7, .2, 1), opacity .8s cubic-bezier(.2, .7, .2, 1);
}

.ll-profile-card.is-morphing .ll-profile-card-glow {
    transform: scale(1.08) translate(-10px, -6px);
    opacity: 1;
}

.ll-profile-card::before,
.ll-profile-card::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(223, 184, 52, 0.10);
    transition: transform .8s cubic-bezier(.2, .7, .2, 1), opacity .8s cubic-bezier(.2, .7, .2, 1);
}

.ll-profile-card::before {
    width: 280px;
    height: 280px;
    right: -48px;
    top: -54px;
}

.ll-profile-card::after {
    width: 384px;
    height: 384px;
    right: -116px;
    top: 16px;
    opacity: 0.55;
}

.ll-profile-card.is-morphing::before {
    transform: scale(1.05) translate(-10px, 6px);
}

.ll-profile-card.is-morphing::after {
    transform: scale(1.08) translate(-12px, 4px);
    opacity: 0.7;
}

.ll-profile-top,
.ll-radar-stage,
.ll-radar-legend,
.ll-profile-columns,
.ll-radar-dots {
    position: relative;
    z-index: 1;
}

.ll-profile-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.ll-card-kicker {
    color: rgba(255, 255, 255, 0.46);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.10em;
    margin-bottom: 2px;
    transition: opacity .4s ease, transform .4s ease;
}

.ll-profile-top h2,
.ll-profile-copy,
.ll-profile-badge,
.ll-mini-card,
.ll-radar-legend,
.ll-radar-dots {
    transition:
        opacity .45s cubic-bezier(.2, .7, .2, 1),
        transform .45s cubic-bezier(.2, .7, .2, 1);
}

.ll-profile-card.is-morphing .ll-profile-top h2,
.ll-profile-card.is-morphing .ll-profile-copy,
.ll-profile-card.is-morphing .ll-profile-badge,
.ll-profile-card.is-morphing .ll-mini-card,
.ll-profile-card.is-morphing .ll-radar-legend,
.ll-profile-card.is-morphing .ll-radar-dots {
    transform: translateY(4px);
    opacity: 0.84;
}

.ll-profile-top h2 {
    margin: 6px 0 6px;
    color: #fff;
    font-size: 34px;
    line-height: 1;
    letter-spacing: -0.045em;
}

.ll-profile-copy {
    margin: 0;
    max-width: 28ch;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.55;
}

.ll-profile-badge {
    align-self: flex-start;
    min-height: 32px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(223, 184, 52, 0.18);
    border: 1px solid rgba(223, 184, 52, 0.26);
    color: #ebc85d;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.ll-radar-stage {
    display: grid;
    place-items: center;
    padding: 2px 0 0;
}

#heroRadar {
    width: min(100%, 300px);
    height: auto;
    display: block;
}

.ll-radar-legend {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: -14px;
    color: rgba(223, 184, 52, 0.86);
    font-size: 13px;
    font-weight: 700;
}

.ll-radar-legend div:last-child {
    color: rgba(223, 184, 52, 0.46);
}

.ll-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-right: 6px;
}

.ll-dot--gold {
    background: var(--ll-gold);
}

.ll-dot--soft {
    background: rgba(223, 184, 52, 0.32);
}

.ll-profile-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 4px;
}

.ll-mini-card {
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 12px 10px;
}

.ll-mini-card h4 {
    margin: 0 0 10px;
    color: #f2d378;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ll-mini-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.ll-mini-list li {
    position: relative;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
}

.ll-mini-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -1px;
    color: #e4bc3e;
    font-size: 18px;
    line-height: 1;
}

.ll-mini-list--soft li {
    color: rgba(255, 255, 255, 0.70);
}

.ll-radar-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.ll-radar-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    transition: all .35s ease;
}

.ll-radar-dot.is-active {
    width: 24px;
    background: var(--ll-gold);
}

.ll-section {
    padding: 76px 0;
}

.ll-section--soft {
    background: #f4f5f8;
}

.ll-section--white {
    background: #fff;
}

.ll-section--dark {
    background: linear-gradient(180deg, #182241 0%, #202d50 100%);
    color: #fff;
}

.ll-section--dark-2 {
    background: linear-gradient(180deg, #1a2443 0%, #1f2b4c 100%);
    color: #fff;
}

.ll-section--cta {
    background: #fff;
    padding-top: 78px;
    padding-bottom: 92px;
}

.ll-section-head {
    max-width: 880px;
}

.ll-section-head h2,
.ll-flow-copy h2,
.ll-proof-copy h2,
.ll-about-copy h2,
.ll-beta-card h2,
.ll-cta-card h2 {
    margin: 0;
    font-size: clamp(30px, 3.7vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.ll-section-head p,
.ll-flow-copy>p,
.ll-proof-copy p,
.ll-about-copy p,
.ll-beta-item p,
.ll-cta-card p {
    color: var(--ll-muted);
    font-size: 16px;
    line-height: 1.62;
}

.ll-section--dark .ll-proof-copy p,
.ll-section--dark-2 .ll-about-copy p,
.ll-section--dark-2 .ll-about-copy a {
    color: rgba(255, 255, 255, 0.78);
}

.ll-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 42px;
}

.ll-feature-card,
.ll-demo-card,
.ll-beta-card,
.ll-cta-card,
.ll-proof-card,
.ll-quote-card {
    border-radius: 24px;
    box-shadow: var(--ll-shadow);
}

.ll-feature-card {
    background: #fff;
    border: 1px solid #e6ebf4;
    padding: 22px 20px;
}

.ll-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: #1d2747;
    color: #e0ba39;
    font-size: 22px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    margin-bottom: 18px;
}

.ll-feature-card h3,
.ll-proof-card h3,
.ll-beta-item h3 {
    margin: 0 0 10px;
    font-size: 18px;
    letter-spacing: -0.02em;
}

.ll-feature-card p,
.ll-proof-card p {
    margin: 0;
    color: var(--ll-muted);
    line-height: 1.7;
}

.ll-flow-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
    gap: 42px;
    align-items: center;
}

.ll-flow-copy>p {
    margin-top: 22px;
    max-width: 42ch;
}

.ll-steps {
    display: grid;
    gap: 16px;
    margin-top: 30px;
}

.ll-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: start;
    padding: 16px 0;
    border-top: 1px solid #edf0f5;
}

.ll-step span {
    color: #c89e1a;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.ll-step strong {
    display: block;
    margin-bottom: 4px;
    font-size: 18px;
}

.ll-step p {
    margin: 0;
    color: var(--ll-muted);
    font-size: 15px;
    line-height: 1.65;
}

.ll-demo-card {
    background: #fff;
    border: 1px solid #e8edf5;
    padding: 22px;
}

.ll-demo-top {
    display: grid;
    gap: 12px;
}

.ll-demo-progress {
    height: 8px;
    background: #edf0f6;
    border-radius: 999px;
    overflow: hidden;
}

.ll-demo-progress span {
    display: block;
    height: 100%;
    width: 33%;
    background: linear-gradient(90deg, #182241 0%, var(--ll-gold) 100%);
    transition: width .45s ease;
}

.ll-demo-step {
    color: #8d94a7;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
}

.ll-demo-body h3 {
    margin: 28px 0 0;
    text-align: center;
    font-size: clamp(28px, 3.3vw, 40px);
    line-height: 1.14;
    letter-spacing: -0.04em;
}

.ll-demo-options {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.ll-demo-option {
    min-height: 62px;
    border-radius: 16px;
    border: 1px solid #dfe6f1;
    background: #fff;
    color: #121a2f;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.ll-demo-option:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.ll-demo-option.is-active {
    background: linear-gradient(180deg, #1a2648, #21315c);
    border-color: #21315c;
    color: #fff;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.14);
    transform: scale(1.01);
}

.ll-proof-wrap {
    display: grid;
    gap: 32px;
}

.ll-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.ll-proof-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 26px 24px;
}

.ll-proof-number {
    color: #ddb738;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}

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

.ll-beta-card {
    background: #fff;
    border: 1px solid #e7ebf3;
    padding: 26px;
    display: grid;
    gap: 28px;
}

.ll-beta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.ll-beta-item {
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
    border: 1px solid #e7ebf3;
    padding: 22px 20px;
}

.ll-beta-item p {
    margin: 0;
}

.ll-about-card {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 340px);
    gap: 32px;
    padding: 36px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 26px 52px rgba(15, 23, 42, 0.16);
}

.ll-quote-card {
    align-self: center;
    padding: 28px;
    background: rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ll-quote-mark {
    color: var(--ll-gold);
    font-size: 54px;
    line-height: 1;
}

.ll-quote-card p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 24px;
    line-height: 1.35;
    letter-spacing: -0.03em;
}

.ll-quote-sign {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.62);
    font-weight: 700;
}

.ll-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background: #fff;
    border: 1px solid #e7ebf3;
    padding: 30px 32px;
}

.ll-cta-card p {
    margin: 14px 0 0;
    max-width: 42ch;
}

.ll-footer {
    background: #fff;
    border-top: 1px solid #e6ebf3;
    padding: 28px 0;
}

.ll-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.ll-footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #747c92;
}

.ll-footer-brand img {
    width: 28px;
    height: 28px;
}

.ll-footer-links {
    display: flex;
    gap: 18px;
    color: #747c92;
}

.ll-footer-links a:hover {
    color: #182241;
}

.ll-reveal {
    opacity: 0;
    transform: translateY(24px) scale(0.992);
    transition:
        opacity .72s cubic-bezier(.2, .7, .2, 1),
        transform .72s cubic-bezier(.2, .7, .2, 1);
}

.ll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.ll-delay-1 {
    transition-delay: .04s;
}

.ll-delay-2 {
    transition-delay: .12s;
}

.ll-delay-3 {
    transition-delay: .20s;
}

.ll-delay-4 {
    transition-delay: .28s;
}

.ll-demo-block img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ll-demo-block img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

/* SPLIT LAYOUT */
.ll-proof-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    /* bilden lite mindre */
    gap: 48px;
    align-items: center;
}

/* DEMO BILD */
.ll-proof-demo img {
    width: 100%;
    max-width: 420px;
    /* <-- styr storleken */
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ll-proof-demo img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.ll-demo-caption {
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .ll-proof-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ll-proof-demo img {
        margin: 0 auto;
    }
}

@media (max-width: 1100px) {
    .ll-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ll-flow-grid,
    .ll-about-card,
    .ll-cta-card,
    .ll-beta-grid,
    .ll-proof-grid {
        grid-template-columns: 1fr;
    }

    .ll-cta-card {
        display: grid;
    }
}

@media (max-width: 920px) {
    .ll-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ll-profile-card {
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }

    #heroRadar {
        width: min(100%, 300px);
    }

    .ll-proof-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ll-proof-demo img {
        margin: 0 auto;
    }
}

@media (max-width: 760px) {
    .ll-shell {
        width: min(100% - 24px, 1180px);
    }

    .ll-nav-inner {
        min-height: 60px;
        padding: 8px 0;
        flex-wrap: nowrap;
        gap: 12px;
    }

    .ll-brand {
        gap: 10px;
        min-width: 0;
    }

    .ll-brand-word {
        display: inline;
        font-size: 11px;
        letter-spacing: 0.08em;
        white-space: nowrap;
    }

    .ll-brand-box {
        width: 46px;
        height: 34px;
    }

    .ll-brand-box img {
        width: 26px;
        height: 26px;
    }

    .ll-nav-toggle {
        display: block;
        font-size: 26px;
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
    }

    .ll-nav-links {
        width: auto;
        margin-left: auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 12px;
        flex-wrap: nowrap;
    }



    .ll-nav-links>.ll-nav-cta {
        width: auto;
        min-height: 40px;
        padding: 0 14px;
        font-size: 14px;
        border-radius: 10px;
        white-space: nowrap;
    }

    .ll-hero {
        padding: 30px 0 40px;
        min-height: auto;
    }

    .ll-hero-copy h1,
    .ll-section-head h2,
    .ll-flow-copy h2,
    .ll-proof-copy h2,
    .ll-about-copy h2,
    .ll-beta-card h2,
    .ll-cta-card h2 {
        font-size: clamp(38px, 10vw, 56px);
    }

    .ll-hero-copy p,
    .ll-quote-card p,
    .ll-demo-body h3 {
        font-size: 18px;
    }

    .ll-hero-actions,
    .ll-footer-inner,
    .ll-footer-links,
    .ll-profile-columns {
        display: grid;
    }

    .ll-btn,
    .ll-btn--large {
        width: 100%;
    }

    .ll-nav-links>.ll-nav-cta {
        width: auto;
    }

    .ll-grid-4,
    .ll-beta-grid,
    .ll-proof-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .ll-hero-metrics {
        display: grid;
        gap: 12px;
    }

    .ll-profile-top {
        display: grid;
    }

    .ll-nav-links {
        position: absolute;
        top: 60px;
        right: 12px;
        background: #0a0e18;
        border-radius: 12px;
        padding: 16px;
        display: none;
        flex-direction: column;
        gap: 14px;
        min-width: 220px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

    .ll-nav-links.open {
        display: flex;
    }

    .ll-nav-links .ll-nav-cta {
        margin-top: 6px;
    }
}