:root {
    --ls-color-bg: #ffffff;
    --ls-color-fg: #0f172a;
    --ls-color-muted: #64748b;
    --ls-color-surface: #f8fafc;
    --ls-color-border: rgba(15, 23, 42, 0.10);
    --ls-color-primary: #0f766e;
    --ls-color-primary-fg: #ffffff;
    --ls-color-secondary: #0369a1;
    --ls-color-secondary-fg: #ffffff;
    --ls-color-accent: #f59e0b;
    --ls-font-heading: 'Inter', ui-sans-serif, system-ui, sans-serif;
    --ls-font-body: 'Inter', ui-sans-serif, system-ui, sans-serif;
    --ls-body-size: 16px;
    --ls-body-lh: 1.6;
    --ls-body-weight: 400;
    --ls-heading-weight: 700;
    --ls-heading-lh: 1.15;
    --ls-heading-ls: -0.02em;
    --ls-h1-size: 60px;
    --ls-h2-size: 40px;
    --ls-h3-size: 24px;
    --ls-h4-size: 18px;
    --ls-radius: 14px;
    --ls-radius-btn: 999px;
    --ls-container: 1180px;
    --ls-space: 8px;
    --ls-section-py: 96px;
    --ls-btn-padx: 22px;
    --ls-btn-pady: 12px;
    --ls-btn-size: 15px;

    --ls-shadow-sm: 0 1px 2px rgba(15,23,42,.06);
    --ls-shadow: 0 6px 24px -8px rgba(15,23,42,.15);
    --ls-shadow-lg: 0 24px 60px -20px rgba(15,23,42,.28);
}

* { box-sizing: border-box; }
img, picture, video, svg { max-width: 100%; height: auto; display: block; }

.ls-body {
    margin: 0;
    background: var(--ls-color-bg);
    color: var(--ls-color-fg);
    font-family: var(--ls-font-body);
    font-size: var(--ls-body-size);
    line-height: var(--ls-body-lh);
    font-weight: var(--ls-body-weight);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.ls-wrap {
    width: min(100% - 40px, var(--ls-container));
    margin-inline: auto;
}

.ls-width-narrow { max-width: 720px; margin-inline: auto; }
.ls-width-normal { }
.ls-width-wide  { max-width: 1400px; margin-inline: auto; }
.ls-width-xwide { max-width: 1600px; margin-inline: auto; }
.ls-width-full  { width: 100%; max-width: none; }

.ls-section--mh-md { min-height: 460px; display: flex; flex-direction: column; }
.ls-section--mh-tall { min-height: 640px; display: flex; flex-direction: column; }
.ls-section--mh-viewport { min-height: 100vh; min-height: 100dvh; display: flex; flex-direction: column; }
.ls-section--mh-custom { display: flex; flex-direction: column; }
.ls-section--mh-md .ls-section-inner,
.ls-section--mh-tall .ls-section-inner,
.ls-section--mh-viewport .ls-section-inner,
.ls-section--mh-custom .ls-section-inner { width: 100%; flex: 1; display: flex; flex-direction: column; }
.ls-section--va-top .ls-section-inner { justify-content: flex-start; }
.ls-section--va-center .ls-section-inner { justify-content: center; }
.ls-section--va-bottom .ls-section-inner { justify-content: flex-end; }

.ls-preview-bar {
    background: #0f172a;
    color: #fff;
    text-align: center;
    font-size: 13px;
    padding: 8px;
    letter-spacing: .02em;
}

.ls-form-success {
    background: color-mix(in srgb, var(--ls-color-primary) 12%, var(--ls-color-bg));
    color: var(--ls-color-fg);
    border-bottom: 1px solid var(--ls-color-border);
    padding: 14px 0;
    font-size: 15px;
}

/* Header */
.ls-header {
    background: color-mix(in srgb, var(--ls-header-bg, var(--ls-color-bg)) calc(var(--ls-header-bg-opacity, 1) * 100%), transparent);
    border-bottom: 1px solid var(--ls-color-border);
}
.ls-header--no-border { border-bottom: none; }
.ls-header--sticky { position: sticky; top: 0; z-index: 20; backdrop-filter: saturate(1.4) blur(10px); }
.ls-header--overlay {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 40;
    background: color-mix(in srgb, var(--ls-header-bg, var(--ls-color-bg)) calc(var(--ls-header-bg-opacity, 1) * 100%), transparent);
}
.ls-has-header-overlay .ls-header--overlay { position: fixed; }
.ls-header-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; min-height: 76px;
}
.ls-header-inner--centered { flex-direction: column; align-items: center; gap: 12px; padding: 16px 0; min-height: unset; }
.ls-header-inner--centered .ls-nav { justify-content: center; flex-wrap: wrap; }
.ls-header-inner--split { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.ls-header-inner--split .ls-nav--start { justify-content: flex-end; }
.ls-header-inner--split .ls-nav--end { justify-content: flex-start; }
.ls-header-inner--minimal { }

.ls-logo {
    font-family: var(--ls-font-heading);
    font-weight: 700; letter-spacing: -.01em;
    text-decoration: none; color: inherit; font-size: 18px;
    display: inline-flex; align-items: center;
}
.ls-logo-img { max-height: var(--ls-logo-height, 36px); max-width: 130px; width: auto; display: block; }
.ls-logo-img--footer { max-height: var(--ls-footer-logo-height, 36px); }

.ls-nav { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.ls-nav a { color: inherit; text-decoration: none; font-family: var(--ls-nav-font, var(--ls-font-body)); font-size: var(--ls-nav-size, 15px); font-weight: var(--ls-nav-weight, 500); opacity: .85; transition: opacity .15s; }
.ls-nav a:hover { opacity: 1; }
.ls-nav .ls-btn { opacity: 1; font-size: inherit; }
.ls-lang-switch { font-family: var(--ls-nav-font, var(--ls-font-body)); font-size: var(--ls-nav-size, 15px); font-weight: var(--ls-nav-weight, 500); text-decoration: none; color: inherit; opacity: .85; }
.ls-lang-switch:hover { opacity: 1; }

.ls-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.ls-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    flex-shrink: 0;
}
.ls-menu-toggle-bars,
.ls-menu-toggle-bars::before,
.ls-menu-toggle-bars::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    position: relative;
}
.ls-menu-toggle-bars::before,
.ls-menu-toggle-bars::after {
    content: '';
    position: absolute;
    left: 0;
}
.ls-menu-toggle-bars::before { top: -6px; }
.ls-menu-toggle-bars::after { top: 6px; }

.ls-header-inner--menu-left .ls-menu-toggle { order: 0; }
.ls-header-inner--menu-left .ls-logo { order: 1; }
.ls-header-inner--menu-left .ls-mobile-cta { order: 2; margin-left: auto; }
.ls-header-inner--menu-right .ls-logo { order: 0; }
.ls-header-inner--menu-right .ls-mobile-cta { order: 1; margin-left: auto; }
.ls-header-inner--menu-right .ls-menu-toggle { order: 2; }

.ls-nav.ls-nav--desktop { display: none; }
.ls-mobile-cta { display: flex; align-items: center; }
.ls-header-cta--desktop { display: none; }

html.ls-menu-open { overflow: hidden; }

.ls-nav-drawer {
    position: fixed;
    inset: 0;
    z-index: 80;
}
.ls-nav-drawer[hidden] { display: none; }
.ls-nav-drawer-overlay {
    position: absolute;
    inset: 0;
    border: 0;
    padding: 0;
    background: rgba(15, 23, 42, .45);
    cursor: pointer;
}
.ls-nav-drawer-panel {
    position: absolute;
    top: 0;
    bottom: 0;
    width: min(320px, 88vw);
    background: var(--ls-color-bg);
    color: var(--ls-color-fg);
    box-shadow: var(--ls-shadow-lg);
    display: flex;
    flex-direction: column;
    padding: 20px 22px 32px;
    transform: translateX(100%);
    transition: transform .22s ease;
}
.ls-nav-drawer--left .ls-nav-drawer-panel { left: 0; right: auto; transform: translateX(-100%); }
.ls-nav-drawer--right .ls-nav-drawer-panel { right: 0; left: auto; transform: translateX(100%); }
.ls-nav-drawer.is-open .ls-nav-drawer-panel { transform: translateX(0); }

.ls-nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 16px;
}
.ls-nav-drawer-close {
    border: 0;
    background: transparent;
    color: inherit;
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
}

.ls-nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ls-nav-mobile a,
.ls-nav-mobile .ls-nav-item > a {
    display: block;
    padding: 12px 0;
    color: inherit;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid var(--ls-color-border);
}
.ls-nav-mobile .ls-btn { margin-top: 16px; border-bottom: 0; text-align: center; }
.ls-nav-mobile .ls-nav-sub { display: none; padding-left: 12px; }
.ls-nav-mobile .ls-has-sub.is-open > .ls-nav-sub { display: flex; flex-direction: column; }
.ls-nav-mobile .ls-has-sub {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
}
.ls-nav-mobile .ls-has-sub > a { grid-column: 1; }
.ls-nav-mobile .ls-nav-caret { grid-column: 2; }
.ls-nav-mobile .ls-nav-sub { grid-column: 1 / -1; }

.ls-nav-caret {
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    padding: 4px 8px;
    font-size: 12px;
}

.ls-nav-item.ls-has-sub { position: relative; display: flex; align-items: center; gap: 2px; }
.ls-nav--desktop .ls-nav-sub {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    padding: 8px;
    background: var(--ls-color-bg);
    border: 1px solid var(--ls-color-border);
    border-radius: var(--ls-radius);
    box-shadow: var(--ls-shadow);
    flex-direction: column;
    gap: 2px;
    z-index: 30;
}
.ls-nav--desktop .ls-nav-sub a {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    white-space: nowrap;
}
.ls-nav--desktop .ls-nav-sub a:hover { background: var(--ls-color-surface); }
.ls-nav--desktop .ls-has-sub:hover > .ls-nav-sub,
.ls-nav--desktop .ls-has-sub:focus-within > .ls-nav-sub { display: flex; }
.ls-nav--desktop .ls-nav-caret { display: none; }

@media (max-width: 899px) {
    .ls-header-inner--split {
        display: flex;
        grid-template-columns: unset;
    }
    .ls-header-inner--centered { flex-direction: row; align-items: center; padding: 0; min-height: 76px; }
}

@media (min-width: 900px) {
    .ls-menu-toggle { display: none; }
    .ls-nav.ls-nav--desktop { display: flex; }
    .ls-mobile-cta { display: none; }
    .ls-header-cta--desktop { display: flex; align-items: center; }
    .ls-header-inner--menu-left .ls-logo,
    .ls-header-inner--menu-right .ls-logo,
    .ls-header-inner--menu-left .ls-mobile-cta,
    .ls-header-inner--menu-right .ls-mobile-cta { order: unset; margin-left: unset; }
}

.ls-header--no-drawer .ls-menu-toggle { display: none; }
.ls-header--no-drawer .ls-nav.ls-nav--desktop { display: flex; flex-wrap: wrap; }
.ls-header--no-drawer .ls-mobile-cta { display: none; }
.ls-header--no-drawer .ls-header-cta--desktop { display: flex; align-items: center; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--ls-font-heading);
    font-weight: var(--ls-heading-weight);
    letter-spacing: var(--ls-heading-ls);
    line-height: var(--ls-heading-lh);
    margin: 0 0 12px;
    color: var(--ls-color-fg);
}
h1 { font-family: var(--ls-h1-font, var(--ls-font-heading)); font-size: clamp(2rem, calc(var(--ls-h1-size) * 0.6), var(--ls-h1-size)); }
h2 { font-family: var(--ls-h2-font, var(--ls-font-heading)); font-size: clamp(1.6rem, calc(var(--ls-h2-size) * 0.7), var(--ls-h2-size)); }
h3 { font-family: var(--ls-h3-font, var(--ls-font-heading)); font-size: clamp(1.15rem, calc(var(--ls-h3-size) * 0.85), var(--ls-h3-size)); }
h4 { font-family: var(--ls-h4-font, var(--ls-font-heading)); font-size: clamp(1rem, calc(var(--ls-h4-size) * 0.9), var(--ls-h4-size)); }
p { font-family: var(--ls-p-font, var(--ls-font-body)); }
.ls-font-heading { font-family: var(--ls-font-heading); }
.ls-font-body {
    font-family: var(--ls-font-body);
    font-weight: var(--ls-body-weight);
    letter-spacing: 0;
}
.ls-font-display { font-family: var(--ls-font-display); }
.ls-fs-12 { font-size: 12px; }
.ls-fs-14 { font-size: 14px; }
.ls-fs-16 { font-size: 16px; }
.ls-fs-18 { font-size: 18px; }
.ls-fs-20 { font-size: 20px; }
.ls-fs-24 { font-size: 24px; }
.ls-fs-28 { font-size: 28px; }
.ls-fs-32 { font-size: 32px; }
.ls-fs-36 { font-size: 36px; }
.ls-fs-48 { font-size: 48px; }
.ls-fs-60 { font-size: 60px; }
.ls-fs-72 { font-size: 72px; }
@media (min-width: 900px) {
    h1 { font-size: var(--ls-h1-size); }
    h2 { font-size: var(--ls-h2-size); }
    h3 { font-size: var(--ls-h3-size); }
    h4 { font-size: var(--ls-h4-size); }
}

.ls-lead {
    font-size: clamp(1.05rem, .3vw + 1rem, 1.2rem);
    color: var(--ls-color-muted);
    max-width: 62ch;
    line-height: 1.55;
}
.ls-muted { color: var(--ls-color-muted); }
.ls-align-left   { text-align: left; }
.ls-align-center { text-align: center; }
.ls-align-right  { text-align: right; }
.ls-align-center .ls-lead,
.ls-align-center .ls-section-head .ls-lead { margin-inline: auto; }
.ls-center { text-align: center; }

.ls-prose p { margin: 0 0 1em; }
.ls-prose p:last-child { margin-bottom: 0; }
.ls-prose a { color: var(--ls-color-primary); text-decoration: underline; text-underline-offset: 3px; }
.ls-prose strong { font-weight: 700; }
.ls-prose em { font-style: italic; }
.ls-prose u { text-decoration: underline; }
.ls-prose s { text-decoration: line-through; }
.ls-prose ul, .ls-prose ol {
    margin: 0 0 1em;
    padding-left: 1.4em;
    list-style-position: outside;
}
.ls-prose ul { list-style-type: disc; }
.ls-prose ol { list-style-type: decimal; }
.ls-prose li { margin: 0 0 0.55em; line-height: 1.55; }
.ls-prose li > p { margin: 0; }
.ls-prose h2, .ls-prose h3, .ls-prose h4 { margin-top: 1.2em; margin-bottom: 0.4em; }
.ls-prose blockquote {
    margin: 1em 0;
    padding: 0.4em 1em;
    border-left: 3px solid var(--ls-color-primary);
    color: var(--ls-color-muted);
    font-style: italic;
}
.ls-prose code {
    background: var(--ls-color-surface);
    padding: 0.15em 0.4em;
    border-radius: 4px;
    font-size: 0.9em;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.ls-eyebrow {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
    font-weight: 600;
    color: var(--ls-color-primary);
    margin: 0 0 14px;
}

/* Sections */
.ls-section { padding-top: var(--ls-section-py); padding-bottom: var(--ls-section-py); }
.ls-section--transparent { background: var(--ls-color-bg); }
.ls-section--muted { background: var(--ls-color-surface); }
.ls-section--custom-bg { background: var(--ls-section-bg, var(--ls-color-surface)); }
.ls-section--primary {
    background: linear-gradient(135deg, var(--ls-color-primary), var(--ls-color-secondary));
    color: var(--ls-color-primary-fg);
}
.ls-section--primary h1, .ls-section--primary h2, .ls-section--primary h3 { color: inherit; }
.ls-section--primary .ls-eyebrow { color: color-mix(in srgb, currentColor 80%, transparent); }
.ls-section--primary .ls-lead { color: color-mix(in srgb, currentColor 85%, transparent); }
.ls-section--dark {
    background: #0f172a;
    color: #f1f5f9;
}
.ls-section--dark h1, .ls-section--dark h2, .ls-section--dark h3 { color: #fff; }
.ls-section--dark .ls-eyebrow { color: color-mix(in srgb, var(--ls-color-accent) 90%, white); }
.ls-section--dark .ls-lead, .ls-section--dark .ls-muted { color: #94a3b8; }

.ls-section-head { margin-bottom: clamp(24px, 3vw, 48px); }
.ls-align-center .ls-section-head { text-align: center; }

/* Hero */
.ls-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(64px, 8vw, calc(var(--ls-section-py) + 32px)) 0;
    color: inherit;
}
.ls-hero--h-auto { }
.ls-hero--h-sm   { min-height: 360px; display: flex; align-items: center; }
.ls-hero--h-md   { min-height: 460px; display: flex; align-items: center; }
.ls-hero--h-tall { min-height: 640px; display: flex; align-items: center; }
.ls-hero--h-lg   { min-height: 720px; display: flex; align-items: center; }
.ls-hero--h-full { min-height: 96vh; display: flex; align-items: center; }
.ls-hero--h-viewport { min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; }
.ls-hero--h-custom { display: flex; align-items: center; }
.ls-hero--v-top .ls-hero-inner { align-self: flex-start; }
.ls-hero--v-bottom .ls-hero-inner { align-self: flex-end; }
.ls-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; pointer-events: none; }
.ls-hero-overlay { position: absolute; inset: 0; background: #000; z-index: 1; pointer-events: none; }
.ls-hero-inner { position: relative; z-index: 2; }
.ls-hero-heading { margin-bottom: 16px; }
.ls-hero-text { font-size: clamp(1.05rem, .5vw + 1rem, 1.25rem); max-width: 60ch; margin: 0 0 28px; opacity: .92; }
.ls-hero-text.ls-prose p { margin: 0 0 0.55em; }
.ls-hero-text.ls-prose p:last-child { margin-bottom: 0; }
.ls-hero-text.ls-prose ul,
.ls-hero-text.ls-prose ol { margin: 0 0 0.6em; }
.ls-align-center .ls-hero-text { margin-inline: auto; }
.ls-card .ls-prose p { color: var(--ls-color-muted); }
.ls-lead.ls-prose p { margin: 0 0 0.5em; }
.ls-lead.ls-prose p:last-child { margin-bottom: 0; }
.ls-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.ls-align-center .ls-hero-actions { justify-content: center; }
.ls-align-right .ls-hero-actions { justify-content: flex-end; }

.ls-hero--minimal { padding: clamp(48px, 5vw, 96px) 0; min-height: unset; }

.ls-hero-content--narrow  { max-width: 560px; }
.ls-hero-content--medium  { max-width: 720px; }
.ls-hero-content--wide    { max-width: 960px; }
.ls-hero-content--xwide   { max-width: 1200px; }
.ls-hero-content--full    { max-width: none; width: 100%; }
.ls-align-center .ls-hero-content--narrow,
.ls-align-center .ls-hero-content--medium,
.ls-align-center .ls-hero-content--wide,
.ls-align-center .ls-hero-content--xwide { margin-inline: auto; }
.ls-hero-heading--lh-tight .ls-hero-heading { line-height: 1; }
.ls-hero-heading--lh-normal .ls-hero-heading { line-height: 1.15; }
.ls-hero-heading--lh-loose .ls-hero-heading { line-height: 1.3; }
.ls-hero-text--sz-sm .ls-hero-text { font-size: 16px; }
.ls-hero-text--sz-md .ls-hero-text { font-size: 20px; }
.ls-hero-text--sz-lg .ls-hero-text { font-size: 24px; }
.ls-hero-text--w-200 .ls-hero-text { font-weight: 200; }
.ls-hero-text--w-300 .ls-hero-text { font-weight: 300; }
.ls-hero-text--w-400 .ls-hero-text { font-weight: 400; }
.ls-hero-text--w-500 .ls-hero-text { font-weight: 500; }

.ls-theme-light,
.ls-theme-light h1, .ls-theme-light h2, .ls-theme-light h3, .ls-theme-light p { color: #fff; }
.ls-theme-light .ls-eyebrow { color: rgba(255,255,255,.85); }
.ls-theme-light .ls-btn-ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.ls-theme-light .ls-btn-ghost:hover { background: rgba(255,255,255,.1); }

.ls-hero-grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .ls-hero-grid { grid-template-columns: 1.1fr .9fr; gap: 60px; } }
.ls-hero-side img { border-radius: var(--ls-radius); box-shadow: var(--ls-shadow-lg); }
.ls-hero-side .ls-img-frame--none img { border-radius: 0; box-shadow: none; }

.ls-hero--slider {
    padding: 0;
    overflow: hidden;
}
.ls-hero--slider .ls-hero-slider,
.ls-hero--slider .ls-slider-track,
.ls-hero--slider .ls-hero-slide {
    position: relative;
    width: 100%;
    min-height: inherit;
    height: 100%;
    align-self: stretch;
}
.ls-hero--slider .ls-slider-slide.is-active {
    display: flex;
    align-items: center;
    min-height: inherit;
    animation: ls-hero-slide-in .55s ease;
}
@keyframes ls-hero-slide-in {
    from { opacity: 0; }
    to { opacity: 1; }
}
.ls-hero-slider-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;
    z-index: 3;
    margin-top: 0;
}
.ls-hero-slider-controls .ls-slider-btn {
    background: color-mix(in srgb, #000 35%, transparent);
    border-color: color-mix(in srgb, #fff 55%, transparent);
    color: #fff;
}
.ls-hero-slider-controls .ls-slider-dots button {
    background: color-mix(in srgb, #fff 45%, transparent);
}
.ls-hero-slider-controls .ls-slider-dots button.is-active {
    background: #fff;
    width: 18px;
}

/* Buttons */
.ls-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: var(--ls-radius-btn);
    padding: var(--ls-btn-pady) var(--ls-btn-padx);
    font-family: inherit;
    font-weight: 600;
    font-size: var(--ls-btn-size);
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
    line-height: 1;
}
.ls-btn:hover { transform: translateY(-1px); }
.ls-btn-primary { background: var(--ls-color-primary); color: var(--ls-color-primary-fg); box-shadow: var(--ls-shadow-sm); }
.ls-btn-primary:hover { box-shadow: var(--ls-shadow); }
.ls-btn-secondary { background: var(--ls-color-secondary); color: var(--ls-color-secondary-fg); }
.ls-btn-ghost {
    background: transparent;
    color: inherit;
    border-color: color-mix(in srgb, currentColor 25%, transparent);
}
.ls-btn-ghost:hover { background: color-mix(in srgb, currentColor 8%, transparent); }
.ls-btn-lg { padding: calc(var(--ls-btn-pady) + 4px) calc(var(--ls-btn-padx) + 6px); font-size: calc(var(--ls-btn-size) + 1px); }
.ls-btn-sm { padding: 8px 14px; font-size: 13px; }

/* Grid */
.ls-grid { display: grid; gap: clamp(16px, 2vw, 28px); }
.ls-grid--cols-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.ls-grid--cols-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.ls-grid--cols-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
@media (min-width: 900px) {
    .ls-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
    .ls-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
    .ls-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Cards */
.ls-card { border-radius: var(--ls-radius); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.ls-card--card { background: #ffffff; padding: 28px; }
.ls-card--card:hover { transform: translateY(-3px); box-shadow: var(--ls-shadow); }
.ls-card--plain { padding: 8px 0; }
.ls-card--bordered { border: 1px solid var(--ls-color-border); padding: 28px; background: var(--ls-color-bg); }
.ls-card--bordered:hover { border-color: var(--ls-color-primary); }
.ls-card--image_top { background: var(--ls-color-bg); border: 1px solid var(--ls-color-border); }
.ls-card--image_top .ls-card-media img { width: 100%; height: 220px; object-fit: cover; }
.ls-card--image_top .ls-card-body { padding: 24px; }
.ls-card--density-compact.ls-card--card,
.ls-card--density-compact.ls-card--bordered { padding: 20px 16px; }
.ls-card--density-compact .ls-card-body { gap: 8px; }
.ls-card--title-body h3 { font-family: var(--ls-font-body); font-weight: 500; }
.ls-card--title-display h3 { font-family: var(--ls-font-display); }
.ls-card--title-heading h3 { font-family: var(--ls-font-heading); }
.ls-card-body { display: flex; flex-direction: column; gap: 8px; }
.ls-card h3 { margin: 0; }
.ls-card p { margin: 0; color: var(--ls-color-muted); }
.ls-card-ingress {
    margin: 0;
    color: var(--ls-card-ingress, var(--ls-color-accent));
    font-weight: 700;
    line-height: 1.35;
}
.ls-card p.ls-card-ingress {
    color: var(--ls-card-ingress, var(--ls-color-accent));
}
.ls-card-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--ls-color-primary) 12%, var(--ls-color-bg));
    color: var(--ls-color-primary);
    font-size: 22px;
}
.ls-card-link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 4px;
    color: inherit;
    font-weight: inherit; text-decoration: none;
}
.ls-card-link:hover { text-decoration: none; opacity: .75; }
.ls-card--align-center { text-align: center; }
.ls-card--align-center .ls-card-body { align-items: center; }

.ls-card.has-bg { background: var(--ls-card-bg); }
.ls-card--plain.has-bg { padding: 28px; }
.ls-card.has-bg.ls-card--fg-light { color: #fff; }
.ls-card.has-bg.ls-card--fg-light h3 { color: #fff; }
.ls-card.has-bg.ls-card--fg-light p,
.ls-card.has-bg.ls-card--fg-light .ls-prose,
.ls-card.has-bg.ls-card--fg-light .ls-prose p { color: rgba(255,255,255,.84); }
.ls-card.has-bg.ls-card--fg-light .ls-card-link { color: #fff; }
.ls-card.has-bg.ls-card--fg-light p.ls-card-ingress,
.ls-card.has-bg.ls-card--fg-light .ls-card-ingress {
    color: var(--ls-card-ingress, var(--ls-color-accent));
}
.ls-card.has-bg.ls-card--fg-light .ls-card-icon {
    background: rgba(255,255,255,.16);
    color: #fff;
}

/* Split (image_text) */
.ls-split { display: grid; gap: clamp(24px, 3vw, 48px); align-items: center; }
@media (min-width: 900px) {
    .ls-split { grid-template-columns: 1fr 1fr; }
    .ls-split.is-right .ls-media { order: 2; }
}
.ls-media img, .ls-figure img { border-radius: var(--ls-radius); box-shadow: var(--ls-shadow); }
.ls-media.is-placeholder,
.ls-figure.is-placeholder {
    aspect-ratio: 4/3;
    border-radius: var(--ls-radius);
    background: linear-gradient(135deg, color-mix(in srgb, var(--ls-color-primary) 60%, #1e293b), color-mix(in srgb, var(--ls-color-secondary) 60%, #1e293b));
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.55);
    font-size: 14px; letter-spacing: .06em; text-transform: uppercase;
    box-shadow: var(--ls-shadow);
}

.ls-img-frame--none img,
.ls-img-frame--none.is-placeholder {
    border-radius: 0;
    box-shadow: none;
}

.ls-img-frame--border img,
.ls-img-frame--border.is-placeholder {
    box-shadow: none;
    border: 1px solid var(--ls-media-frame-color, var(--ls-color-border));
}

.ls-img-frame--card {
    background: var(--ls-media-frame-color, var(--ls-color-surface));
    padding: 24px;
    border-radius: var(--ls-media-radius, var(--ls-radius));
    box-shadow: var(--ls-shadow-sm);
    border: 1px solid color-mix(in srgb, var(--ls-media-frame-color, var(--ls-color-border)) 55%, transparent);
}
.ls-img-frame--card img {
    border-radius: max(0px, calc(var(--ls-media-radius, var(--ls-radius)) - 6px));
    box-shadow: none;
}
.ls-img-frame--card.is-placeholder { box-shadow: none; }

.ls-img-frame.is-radius-none { --ls-media-radius: 0px; }
.ls-img-frame.is-radius-none img, .ls-img-frame.is-radius-none.is-placeholder { border-radius: 0; }
.ls-img-frame.is-radius-sm { --ls-media-radius: 8px; }
.ls-img-frame.is-radius-sm img, .ls-img-frame.is-radius-sm.is-placeholder { border-radius: 8px; }
.ls-img-frame.is-radius-lg { --ls-media-radius: 28px; }
.ls-img-frame.is-radius-lg img, .ls-img-frame.is-radius-lg.is-placeholder { border-radius: 28px; }

.ls-img-frame.is-shadow-none img, .ls-img-frame.is-shadow-none { box-shadow: none; }
.ls-img-frame.is-shadow-sm img, .ls-img-frame.is-shadow-sm { box-shadow: var(--ls-shadow-sm); }
.ls-img-frame.is-shadow-md img, .ls-img-frame.is-shadow-md { box-shadow: var(--ls-shadow); }
.ls-img-frame.is-shadow-lg img, .ls-img-frame.is-shadow-lg { box-shadow: var(--ls-shadow-lg); }

.ls-img-frame.is-pad-none { padding: 0; }
.ls-img-frame.is-pad-sm,
.ls-img-frame.is-pad-md,
.ls-img-frame.is-pad-lg {
    background: var(--ls-media-frame-color, var(--ls-color-surface));
    border-radius: var(--ls-media-radius, var(--ls-radius));
}
.ls-img-frame.is-pad-sm { padding: 12px; }
.ls-img-frame.is-pad-md { padding: 24px; }
.ls-img-frame.is-pad-lg { padding: 40px; }

.ls-section--bleed { padding-inline: 0; }
.ls-figure--bleed {
    width: 100%;
    max-width: none;
    margin: 0;
}
.ls-figure--bleed img {
    width: 100%;
    max-width: none;
    display: block;
}
.ls-figure--h-md img { width: 100%; height: 460px; object-fit: cover; }
.ls-figure--h-tall img { width: 100%; height: 640px; object-fit: cover; }
.ls-figure--h-screen img { width: 100%; height: 100vh; object-fit: cover; }
.ls-figure--bleed.ls-figure--h-screen img { height: 100vh; }
.ls-figure--fit-contain img { object-fit: contain; }
.ls-figure--fit-cover img { object-fit: cover; }
.ls-figure-caption { margin-top: 8px; font-size: 14px; }
.ls-figure figcaption { margin-top: 8px; font-size: 14px; }

/* CTA */
.ls-cta-section { position: relative; overflow: hidden; padding: var(--ls-section-py) 0; }
.ls-cta-section--muted   { background: var(--ls-color-surface); }
.ls-cta-section--primary { background: linear-gradient(135deg, var(--ls-color-primary), var(--ls-color-secondary)); color: var(--ls-color-primary-fg); }
.ls-cta-section--primary h2, .ls-cta-section--primary .ls-eyebrow { color: inherit; }
.ls-cta-section--dark    { background: #0f172a; color: #f1f5f9; }
.ls-cta-section--dark h2 { color: #fff; }
.ls-cta-section--gradient { background: linear-gradient(135deg, #0f172a, #1e293b); color: #fff; }
.ls-cta-section--gradient h2 { color: #fff; }
.ls-cta-section--solid { background: var(--ls-cta-bg, var(--ls-color-surface)); }
.ls-cta-section--image   { color: #fff; }
.ls-cta-section--image h2 { color: #fff; }
.ls-cta-inner { position: relative; z-index: 2; }
.ls-cta-inner h2 { margin-bottom: 8px; }
.ls-cta-inner .ls-lead { margin: 0 auto 24px; }

/* Forms */
.ls-form-layout { display: grid; gap: clamp(28px, 4vw, 56px); }
.ls-form-layout--stack { max-width: 640px; }
.ls-form-layout--split { max-width: none; }
@media (min-width: 900px) {
    .ls-form-layout--split:has(.ls-form-copy) {
        grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
        gap: clamp(40px, 7vw, 96px);
        align-items: start;
    }
    .ls-form-layout--split.ls-form-layout--ratio-50-50:has(.ls-form-copy) {
        grid-template-columns: 1fr 1fr;
    }
    .ls-form-layout--split.ls-form-layout--ratio-40-60:has(.ls-form-copy) {
        grid-template-columns: 2fr 3fr;
    }
    .ls-form-layout--split.ls-form-layout--ratio-60-40:has(.ls-form-copy) {
        grid-template-columns: 3fr 2fr;
    }
}
.ls-form-copy h2 { margin: 0 0 .7em; }
.ls-form-copy .ls-prose p { margin: 0 0 1em; }
.ls-form-copy .ls-prose p:last-child { margin-bottom: 0; }
.ls-form {
    display: grid;
    gap: 16px;
    min-width: 0;
}
.ls-form--card {
    background: var(--ls-color-bg);
    border-radius: var(--ls-radius);
    padding: clamp(24px, 3vw, 40px);
    box-shadow: var(--ls-shadow-sm);
    border: 1px solid var(--ls-color-border);
}
.ls-form--plain {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
}
.ls-form-fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px 16px;
}
@media (min-width: 640px) {
    .ls-form-fields { grid-template-columns: 1fr 1fr; }
    .ls-form-field--full { grid-column: 1 / -1; }
}
.ls-form-field { display: block; min-width: 0; }
.ls-form-label { display: block; font-size: 14px; font-weight: 500; }
.ls-form input, .ls-form textarea, .ls-form select {
    width: 100%;
    margin-top: 6px;
    padding: 12px 14px;
    border: 1px solid color-mix(in srgb, var(--ls-color-fg) 15%, transparent);
    border-radius: calc(var(--ls-radius) - 4px);
    font: inherit;
    background: var(--ls-form-input-bg, var(--ls-color-bg));
    color: inherit;
    transition: border-color .15s, box-shadow .15s;
}
.ls-form--labels-inside input,
.ls-form--labels-inside textarea { margin-top: 0; }
.ls-form--plain input,
.ls-form--plain textarea,
.ls-form--plain select {
    background: var(--ls-form-input-bg, color-mix(in srgb, var(--ls-color-fg) 10%, var(--ls-color-bg)));
    border: 0;
    border-radius: 6px;
    padding: 14px 16px;
}
.ls-form textarea { min-height: var(--ls-form-textarea-min, 140px); resize: vertical; }
.ls-form--density-compact input,
.ls-form--density-compact textarea,
.ls-form--density-compact select {
    padding: 8px 12px;
}
.ls-form--density-compact.ls-form--plain input,
.ls-form--density-compact.ls-form--plain textarea,
.ls-form--density-compact.ls-form--plain select {
    padding: 8px 12px;
}
.ls-form--density-compact textarea { min-height: var(--ls-form-textarea-min, 86px); }
.ls-form--radius-none input,
.ls-form--radius-none textarea,
.ls-form--radius-none select { border-radius: 0; }
.ls-form--radius-sm input,
.ls-form--radius-sm textarea,
.ls-form--radius-sm select { border-radius: 6px; }
.ls-form--radius-md input,
.ls-form--radius-md textarea,
.ls-form--radius-md select { border-radius: 12px; }
.ls-form--border-none input,
.ls-form--border-none textarea,
.ls-form--border-none select { border: 0; }
.ls-form--border-subtle input,
.ls-form--border-subtle textarea,
.ls-form--border-subtle select {
    border: 1px solid color-mix(in srgb, var(--ls-color-fg) 12%, transparent);
}
.ls-form--border-solid input,
.ls-form--border-solid textarea,
.ls-form--border-solid select {
    border: 1px solid color-mix(in srgb, var(--ls-color-fg) 28%, transparent);
}
.ls-form--gap-tight .ls-form-fields { gap: 8px 12px; }
.ls-form--gap-normal .ls-form-fields { gap: 12px 16px; }
.ls-form--gap-loose .ls-form-fields { gap: 18px 20px; }
.ls-form--cols-1 .ls-form-fields { grid-template-columns: 1fr; }
@media (min-width: 640px) {
    .ls-form--cols-1 .ls-form-fields { grid-template-columns: 1fr; }
}
.ls-form-submit--text {
    background: transparent;
    border: 0;
    padding: 0;
    color: inherit;
    text-decoration: underline;
    cursor: pointer;
    font: inherit;
}
.ls-form input:focus, .ls-form textarea:focus {
    outline: none;
    border-color: var(--ls-color-primary);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--ls-color-primary) 20%, transparent);
}
.ls-form--plain input:focus,
.ls-form--plain textarea:focus {
    border-color: transparent;
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--ls-color-fg) 18%, transparent);
}
.ls-form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.45;
}
.ls-form-check input {
    width: auto;
    height: auto;
    margin-top: 3px;
    padding: 0;
    flex-shrink: 0;
    background: transparent;
    box-shadow: none;
    border: 1px solid color-mix(in srgb, var(--ls-color-fg) 35%, transparent);
    border-radius: 3px;
    accent-color: var(--ls-color-fg);
}
.ls-form--plain .ls-form-check input {
    background: transparent;
    width: 16px;
    height: 16px;
}
.ls-form-check a { text-decoration: underline; color: inherit; }
.ls-form-errors {
    background: #fef2f2;
    color: #991b1b;
    padding: 12px 14px;
    border-radius: calc(var(--ls-radius) - 4px);
    font-size: 14px;
    grid-column: 1 / -1;
}
.ls-form-actions {
    display: flex;
    justify-content: flex-start;
}
.ls-form-actions--center { justify-content: center; }
.ls-form-actions--right { justify-content: flex-end; }
.ls-form-submit {
    background: var(--ls-color-primary);
    color: var(--ls-color-primary-fg);
    border: 0;
    border-radius: var(--ls-radius-btn);
    padding: var(--ls-btn-pady) var(--ls-btn-padx);
    font: inherit; font-weight: 600;
    cursor: pointer;
}
.ls-form--plain .ls-form-submit {
    border-radius: 4px;
    font-weight: 500;
    padding: 8px 22px;
}

/* FAQ */
.ls-faq details {
    border-bottom: 1px solid var(--ls-color-border);
    padding: 18px 0;
}
.ls-faq details[open] { padding-bottom: 22px; }
.ls-faq summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 17px;
    list-style: none;
    display: flex; justify-content: space-between; gap: 12px; align-items: center;
}
.ls-faq summary::-webkit-details-marker { display: none; }
.ls-faq summary::after {
    content: '+'; font-size: 22px; color: var(--ls-color-muted); transition: transform .2s;
}
.ls-faq details[open] summary::after { transform: rotate(45deg); }
.ls-faq .ls-prose { margin-top: 8px; color: var(--ls-color-muted); }

/* Stats */
.ls-stats {
    display: grid;
    gap: clamp(24px, 3vw, 48px);
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    text-align: center;
}
.ls-stat-value {
    font-family: var(--ls-font-heading);
    font-weight: 700;
    font-size: clamp(2rem, 3vw + 1rem, 3rem);
    letter-spacing: -.02em;
    color: var(--ls-color-primary);
    line-height: 1;
}
.ls-section--primary .ls-stat-value,
.ls-section--dark .ls-stat-value { color: #fff; }
.ls-stat-label { margin-top: 8px; color: var(--ls-color-muted); font-size: 14px; }
.ls-section--primary .ls-stat-label,
.ls-section--dark .ls-stat-label { color: rgba(255,255,255,.8); }

/* Testimonial */
.ls-testimonials { position: relative; overflow: hidden; }
.ls-section--has-bg-image { position: relative; isolation: isolate; }
.ls-section-bg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0; pointer-events: none;
}
.ls-section--has-bg-image > .ls-wrap { position: relative; z-index: 1; }
.ls-theme-light { color: #fff; }
.ls-theme-light .ls-muted { color: rgba(255,255,255,.78); }
.ls-testimonial { margin: 0; text-align: center; }
.ls-testimonial-company {
    margin: 0 0 18px;
    font-family: var(--ls-font-body);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .02em;
}
.ls-testimonial blockquote {
    margin: 0 0 18px;
    font-family: var(--ls-font-body);
    font-size: 18px;
    line-height: 1.55; font-weight: 400;
}
.ls-testimonial figcaption {
    display: inline-flex; align-items: center; gap: 12px; justify-content: center;
}
.ls-avatar { width: 44px; height: 44px; border-radius: 999px; object-fit: cover; }

.ls-testimonial-grid {
    display: grid;
    gap: clamp(24px, 3vw, 40px);
    grid-template-columns: 1fr;
}
@media (min-width: 800px) {
    .ls-testimonial-grid { grid-template-columns: 1fr 1fr; }
}
.ls-testimonial-grid .ls-testimonial blockquote {
    font-size: clamp(1.05rem, .4vw + 1rem, 1.25rem);
}

.ls-slider { position: relative; }
.ls-slider-track { min-height: 8rem; }
.ls-slider-slide { display: none; }
.ls-slider-slide.is-active { display: block; animation: ls-slider-in .35s ease; }
@keyframes ls-slider-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: none; }
}
.ls-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}
.ls-slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--ls-color-border);
    background: var(--ls-color-bg);
    color: inherit;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}
.ls-slider-btn:hover { border-color: var(--ls-color-primary); }
.ls-slider-dots { display: flex; gap: 8px; }
.ls-slider-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: color-mix(in srgb, var(--ls-color-fg) 25%, transparent);
    cursor: pointer;
}
.ls-slider-dots button.is-active { background: var(--ls-color-primary); width: 18px; }

/* Logos */
.ls-logos {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: clamp(24px, 4vw, 56px);
    margin-top: 24px;
}
.ls-logos img { max-height: 32px; width: auto; opacity: .7; filter: grayscale(1); transition: opacity .2s, filter .2s; }
.ls-logos img:hover { opacity: 1; filter: none; }

/* Gallery */
.ls-gallery { display: grid; gap: 12px; }
.ls-gallery-item img { border-radius: calc(var(--ls-radius) - 4px); aspect-ratio: 4/3; object-fit: cover; }
.ls-gallery-item.ls-img-frame--none img { border-radius: 0; box-shadow: none; }

/* Video block */
.ls-video-frame {
    position: relative; width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--ls-radius);
    overflow: hidden;
    background: #000;
    box-shadow: var(--ls-shadow);
}
.ls-video-frame iframe, .ls-video-frame video { width: 100%; height: 100%; border: 0; display: block; }
.ls-video-caption { margin-top: 12px; font-size: 14px; color: var(--ls-color-muted); text-align: center; }

/* Divider */
.ls-divider-wrap { padding: clamp(24px, 3vw, 48px) 0; }
.ls-divider {
    border: 0;
    height: 1px;
    background: var(--ls-color-border);
    margin: 0 auto;
    width: 100%;
}
.ls-divider--dashed { background: none; border-top: 1px dashed color-mix(in srgb, var(--ls-color-fg) 20%, transparent); }
.ls-divider--dot { background: none; height: 6px; display: flex; justify-content: center; gap: 12px; }
.ls-divider--dot::before,
.ls-divider--dot::after { content:''; width:6px; height:6px; border-radius: 999px; background: var(--ls-color-border); }
.ls-divider--label { text-align: center; color: var(--ls-color-muted); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }

/* Spacer */
.ls-spacer-sm { height: 24px; }
.ls-spacer-md { height: 48px; }
.ls-spacer-lg { height: 80px; }
.ls-spacer-xl { height: 120px; }

/* Footer */
.ls-footer {
    border-top: 1px solid color-mix(in srgb, var(--ls-footer-fg, var(--ls-color-fg)) 12%, transparent);
    padding: 48px 0 28px;
    background: var(--ls-footer-bg, var(--ls-color-bg));
    color: var(--ls-footer-muted, var(--ls-color-muted));
    font-size: 14px;
}
.ls-footer-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr;
    margin-bottom: 28px;
}
@media (min-width: 768px) {
    .ls-footer-grid { grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr)); }
}
.ls-footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.ls-footer-brand p { margin: 0; }
.ls-footer-col h2 {
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin: 0 0 12px;
    color: var(--ls-footer-fg, var(--ls-color-fg));
}
.ls-footer .ls-logo { color: var(--ls-footer-fg, var(--ls-color-fg)); }
.ls-footer-col p { margin: 0 0 8px; }
.ls-footer-col ul { list-style: none; margin: 0; padding: 0; }
.ls-footer-col li { margin: 0 0 8px; }
.ls-footer-col a { color: inherit; text-decoration: none; }
.ls-footer-col a:hover { color: var(--ls-footer-fg, var(--ls-color-fg)); }
.ls-footer-textbtn {
    border: 0;
    background: none;
    padding: 0;
    color: inherit;
    font: inherit;
    cursor: pointer;
    text-align: left;
}
.ls-footer-textbtn:hover { color: var(--ls-footer-fg, var(--ls-color-fg)); }
.ls-footer-copy { margin: 0; padding-top: 8px; border-top: 1px solid color-mix(in srgb, var(--ls-footer-fg, var(--ls-color-fg)) 12%, transparent); }

.ls-cookie-banner {
    position: fixed;
    z-index: 60;
    left: auto;
    right: 16px;
    bottom: 16px;
    max-width: 360px;
    width: min(360px, calc(100% - 32px));
    margin-inline: 0;
    padding: 18px 20px;
    border-radius: var(--ls-radius);
    background: var(--ls-color-fg);
    color: var(--ls-color-bg);
    box-shadow: var(--ls-shadow-lg);
}
.ls-cookie-banner[hidden],
.ls-cookie-modal[hidden] { display: none !important; }
.ls-cookie-banner p { margin: 0 0 12px; }
.ls-cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.ls-cookie-banner .ls-footer-textbtn { color: inherit; text-decoration: underline; }
.ls-cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(15, 23, 42, .45);
    display: grid;
    place-items: center;
    padding: 24px;
}
.ls-cookie-modal-card {
    width: min(440px, 100%);
    background: var(--ls-color-bg);
    color: var(--ls-color-fg);
    border-radius: var(--ls-radius);
    padding: 24px;
    box-shadow: var(--ls-shadow-lg);
}
.ls-cookie-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid var(--ls-color-border);
}

/* Responsive visibility */
.ls-desktop-only { display: none; }
.ls-mobile-only { display: block; }
@media (min-width: 768px) {
    .ls-desktop-only { display: block; }
    .ls-mobile-only { display: none; }
}

.ls-reserved { padding: 48px 0; color: var(--ls-color-muted); text-align: center; }

.ls-link {
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    color: inherit;
    text-decoration: none;
    font-family: var(--ls-font-body);
    font-weight: 300;
    font-size: 18px;
    background: none;
    border: 0;
    padding: 0;
}
.ls-link:hover { opacity: .75; }
.ls-link--arrow,
.ls-link--readmore { text-decoration: none; }
.ls-prose a.ls-link--arrow,
.ls-prose a.ls-link--readmore {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
}
.ls-theme-light .ls-link { color: #fff; }

.ls-footer-minimal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 0 12px;
    flex-wrap: wrap;
}
.ls-footer-minimal .ls-footer-copy { border-top: 0; padding-top: 0; margin: 0; }
.ls-footer-policies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    list-style: none;
    margin: 0;
    padding: 0 0 28px;
    font-size: 13px;
}
.ls-footer-policies a,
.ls-footer-policies .ls-footer-textbtn {
    color: inherit;
    text-decoration: none;
}
.ls-footer-policies a:hover,
.ls-footer-policies .ls-footer-textbtn:hover {
    color: var(--ls-footer-fg, var(--ls-color-fg));
    text-decoration: underline;
    text-underline-offset: 3px;
}
.ls-footer-social { display: flex; align-items: center; gap: 16px; }
.ls-social-icon {
    display: inline-flex;
    width: 30px; height: 30px;
    color: inherit;
}
.ls-social-icon svg { width: 100%; height: 100%; display: block; }

.ls-figure--plain { margin: 0; }
.ls-figure-caption { margin: 8px 0 0; font-size: 14px; }
.ls-slider-controls { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 24px; }
.ls-slider-dots:only-child { margin-inline: auto; }

.ls-columns h3 { margin: 0 0 12px; font-size: 1.15rem; }

/* Section padding overrides */
.ls-section--pad-none  { padding-top: 0; padding-bottom: 0; }
.ls-section--pad-sm    { padding-top: calc(var(--ls-section-py) * 0.5); padding-bottom: calc(var(--ls-section-py) * 0.5); }
.ls-section--pad-md    { padding-top: var(--ls-section-py); padding-bottom: var(--ls-section-py); }
.ls-section--pad-lg    { padding-top: calc(var(--ls-section-py) * 1.5); padding-bottom: calc(var(--ls-section-py) * 1.5); }

/* Sidbyggare: klickbara block i preview-iframe */
body.ls-preview-edit .ls-preview-block {
    position: relative;
    cursor: pointer;
    scroll-margin-top: 96px;
}
body.ls-preview-edit .ls-preview-block::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
    box-shadow: inset 0 0 0 2px transparent;
    transition: box-shadow .15s ease;
}
body.ls-preview-edit .ls-preview-block:hover::after {
    box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--ls-color-primary) 55%, transparent);
}
body.ls-preview-edit .ls-preview-block.is-active::after {
    box-shadow: inset 0 0 0 3px var(--ls-color-primary);
}

.ls-product-grid { margin-top: 24px; }
.ls-product-card {
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    background: color-mix(in srgb, var(--ls-color-fg) 4%, transparent);
}
.ls-product-card-media {
    aspect-ratio: 1;
    background: color-mix(in srgb, var(--ls-color-fg) 8%, transparent);
}
.ls-product-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ls-product-card-body { padding: 14px 16px 18px; }
.ls-product-card-body h3 { margin: 0 0 6px; font-size: 1.05rem; }
.ls-product-price { margin: 0; font-weight: 600; }
.ls-product-compare { text-decoration: line-through; opacity: .55; margin: 0 0 8px; }
.ls-product-empty { color: var(--ls-color-muted); }
.ls-product-toolbar { display: flex; gap: 16px; flex-wrap: wrap; margin: 16px 0 8px; }
.ls-product-toolbar label { display: grid; gap: 4px; font-size: 13px; }
.ls-product-toolbar select { min-width: 160px; }
.ls-product-stage-grid { display: grid; gap: 40px; align-items: start; }
@media (min-width: 900px) {
    .ls-product-stage--split .ls-product-stage-grid { grid-template-columns: minmax(0, 1fr) minmax(340px, 400px); gap: 48px; }
    .ls-product-stage--split_reverse .ls-product-stage-grid { grid-template-columns: minmax(340px, 400px) minmax(0, 1fr); gap: 48px; }
    .ls-product-stage--split_reverse .ls-product-gallery { order: 2; }
    .ls-product-stage--split_reverse .ls-product-buybox { order: 1; }
    .ls-product-stage .ls-product-buybox { max-width: none; }
}
.ls-product-gallery-main {
    aspect-ratio: 1;
    background: #f6f6f6;
    overflow: hidden;
}
.ls-product-gallery-main img { width: 100%; height: 100%; object-fit: contain; display: block; background: #f6f6f6; }
.ls-product-thumbs-row { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
.ls-product-thumbs { display: flex; gap: 8px; flex: 1; overflow-x: auto; scrollbar-width: none; }
.ls-product-thumbs::-webkit-scrollbar { display: none; }
.ls-product-thumb { flex: 0 0 72px; width: 72px; height: 72px; padding: 0; border: 1px solid transparent; background: none; cursor: pointer; }
.ls-product-thumb.is-active { border-color: #111; }
.ls-product-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ls-product-gallery-arrow {
    flex: 0 0 auto; width: 32px; height: 32px; border: 0; background: none;
    font-size: 22px; cursor: pointer; color: inherit;
}
.ls-product-buybox { max-width: 520px; }
.ls-product-vendor {
    margin: 0 0 6px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ls-color-muted);
}
.ls-product-stage .ls-product-title {
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -.02em;
}
.ls-product-title { margin: 0 0 12px; font-weight: 400; letter-spacing: -.02em; }
.ls-product-buybox .ls-product-price { font-size: 1.15rem; font-weight: 500; margin-bottom: 6px; }
.ls-product-tax { margin: 0 0 18px; font-size: 13px; color: var(--ls-color-muted); }
.ls-product-tax.ls-prose p { margin: 0; }
.ls-product-tax a { color: inherit; }
.ls-product-option { border: 0; padding: 0; margin: 0 0 18px; }
.ls-product-option legend { font-weight: 500; margin-bottom: 10px; font-size: 14px; }
.ls-product-option-values { display: flex; flex-wrap: wrap; gap: 8px; }
.ls-product-option--pill .ls-product-option-values { flex-wrap: nowrap; }
.ls-product-choice {
    font: inherit; cursor: pointer; background: #fff; color: inherit;
    border: 1px solid color-mix(in srgb, var(--ls-color-fg) 22%, transparent);
}
.ls-product-choice--button,
.ls-product-choice--pill {
    min-width: 44px; padding: 8px 16px; border-radius: 999px;
}
.ls-product-choice--pill.is-selected {
    background: #111; color: #fff; border-color: #111;
}
.ls-product-choice--button.is-selected {
    border-color: var(--ls-color-primary); box-shadow: 0 0 0 2px color-mix(in srgb, var(--ls-color-primary) 35%, transparent);
}
.ls-product-choice--swatch {
    width: 28px; height: 28px; padding: 0; border-radius: 999px;
    background: var(--ls-swatch, #ccc); border: 1px solid color-mix(in srgb, #000 18%, transparent);
}
.ls-product-choice--swatch span {
    position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0);
}
.ls-product-choice--swatch.is-selected { box-shadow: 0 0 0 2px #fff, 0 0 0 4px #111; }
.ls-product-info { margin: 8px 0 20px; }
.ls-product-info details { padding: 14px 0; }
.ls-product-add { display: grid; gap: 16px; margin-top: 8px; }
.ls-product-stage .ls-product-cta {
    width: 100%;
    justify-content: center;
    background: #111;
    border-color: #111;
    color: #fff;
    border-radius: 2px;
    padding: 14px 18px;
    text-transform: none;
    font-weight: 500;
}
.ls-product-stage .ls-product-cta:hover { transform: none; }
.ls-product-qty { display: grid; gap: 8px; font-size: 13px; }
.ls-product-qty-controls {
    display: inline-flex; align-items: center; border: 1px solid color-mix(in srgb, var(--ls-color-fg) 18%, transparent);
    width: fit-content;
}
.ls-product-qty-controls button {
    width: 36px; height: 40px; border: 0; background: none; cursor: pointer; font-size: 18px;
}
.ls-product-qty-controls input {
    width: 48px; height: 40px; border: 0; text-align: center; font: inherit; background: transparent;
}
.ls-product-share {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 16px; padding: 0; border: 0; background: none; cursor: pointer;
    font: inherit; font-size: 14px; color: inherit; text-decoration: none;
}
.ls-product-share:hover { text-decoration: underline; }
.ls-product-details { margin-top: 28px; }
.ls-product-stage .ls-product-details { margin: 48px auto 0; max-width: 42rem; }
.ls-product-hint { min-height: 1.2em; font-size: 14px; color: var(--ls-color-muted); }
.ls-cart-link { position: relative; margin-left: 12px; text-decoration: none; color: inherit; font-size: 14px; }
.ls-cart-count {
    display: inline-flex;
    min-width: 1.25rem;
    height: 1.25rem;
    margin-left: 4px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--ls-color-primary);
    color: #fff;
    font-size: 11px;
}
.ls-cart h1, .ls-order-thanks h1, .ls-checkout h1 { margin-top: 0; }
.ls-cart-head {
    display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 36px;
}
.ls-cart-head h1 { font-weight: 400; letter-spacing: -.03em; font-size: clamp(2rem, 4vw, 2.6rem); }
.ls-cart-continue { color: inherit; font-size: 14px; text-decoration: underline; text-underline-offset: 4px; }
.ls-cart-cols { display: none; }
@media (min-width: 800px) {
    .ls-cart-cols {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 200px 96px;
        gap: 16px;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--ls-color-border);
        font-size: 11px;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: var(--ls-color-muted);
    }
    .ls-cart-cols span:nth-child(2),
    .ls-cart-cols span:nth-child(3) { text-align: right; }
}
.ls-cart-lines { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 16px; }
.ls-cart-line { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; gap: 16px; align-items: center; }
.ls-cart-line:has(img) { grid-template-columns: 72px minmax(0, 1fr) auto auto; }
.ls-cart-line img { width: 72px; height: 72px; object-fit: cover; }
.ls-cart .ls-cart-lines { margin: 0; gap: 0; }
.ls-cart .ls-cart-line {
    grid-template-columns: minmax(0, 1fr);
    padding: 22px 0;
    border-bottom: 1px solid var(--ls-color-border);
    align-items: center;
}
.ls-cart .ls-cart-line:has(img) { grid-template-columns: minmax(0, 1fr); }
@media (min-width: 800px) {
    .ls-cart .ls-cart-line,
    .ls-cart .ls-cart-line:has(img) {
        grid-template-columns: minmax(0, 1fr) 200px 96px;
    }
}
.ls-cart-product { display: grid; grid-template-columns: 88px minmax(0, 1fr); gap: 18px; align-items: start; }
.ls-cart-thumb { display: block; background: #f6f6f6; }
.ls-cart-thumb img { width: 88px; height: 88px; object-fit: cover; display: block; }
.ls-cart-name { display: block; color: inherit; text-decoration: none; font-size: 1.05rem; }
.ls-cart-unit, .ls-cart-option { margin: 4px 0 0; font-size: 13px; color: var(--ls-color-muted); }
.ls-cart-qty-wrap { display: flex; align-items: center; gap: 12px; }
@media (min-width: 800px) { .ls-cart-qty-wrap { justify-content: flex-end; } }
.ls-cart-qty {
    display: inline-flex; align-items: center;
    border: 1px solid color-mix(in srgb, var(--ls-color-fg) 18%, transparent);
}
.ls-cart-qty button {
    width: 36px; height: 42px; border: 0; background: none; cursor: pointer; font-size: 18px;
}
.ls-cart-qty input {
    width: 44px; height: 42px; border: 0; text-align: center; font: inherit; background: transparent;
}
.ls-cart-remove { border: 0; background: none; cursor: pointer; padding: 6px; color: inherit; }
.ls-cart-line-total { font-weight: 500; }
@media (min-width: 800px) { .ls-cart-line-total { text-align: right; } }
.ls-cart-foot { margin: 36px 0 0 auto; max-width: 280px; text-align: right; }
.ls-cart-total {
    display: flex; justify-content: flex-end; align-items: baseline; gap: 18px;
    font-size: 1rem; font-weight: 400; margin: 0 0 8px;
}
.ls-cart-total strong { font-weight: 500; }
.ls-cart-note { font-size: 13px; color: var(--ls-color-muted); }
.ls-cart-note.ls-prose p { margin: 0; }
.ls-cart-note a { color: inherit; }
.ls-cart-checkout {
    width: 100%; justify-content: center; margin-top: 16px;
    background: #111; border-color: #111; color: #fff; border-radius: 2px; padding: 14px 18px;
}
.ls-cart-checkout:hover { transform: none; }
.ls-cart-empty { margin-top: 8px; }
.ls-checkout-grid { display: grid; gap: 40px; }
@media (min-width: 900px) {
    .ls-checkout-grid { grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr); gap: 56px; align-items: start; }
}
.ls-checkout-form fieldset { border: 0; padding: 0; margin: 0 0 28px; }
.ls-checkout-form legend { font-weight: 600; margin-bottom: 12px; }
.ls-checkout-shipping { display: grid; gap: 10px; }
.ls-checkout-shipping-option {
    display: flex; gap: 12px; align-items: center;
    border: 1px solid var(--ls-color-border); padding: 12px 14px; cursor: pointer;
}
.ls-checkout-shipping-option input { width: auto; margin: 0; }
.ls-checkout-shipping-option span { display: flex; justify-content: space-between; gap: 16px; width: 100%; }
.ls-checkout-pay { width: 100%; justify-content: center; margin-top: 8px; }
.ls-checkout-summary { background: color-mix(in srgb, var(--ls-color-fg) 4%, transparent); padding: 24px; }
.ls-checkout-summary h2 { margin: 0; font-size: 1.1rem; }
.ls-checkout-summary .ls-cart-line:has(img) { grid-template-columns: 64px minmax(0, 1fr) auto; }
.ls-checkout-summary .ls-cart-line img { width: 64px; height: 64px; }
.ls-form-error { color: #b42318; }
.ls-muted { opacity: .6; font-weight: 400; font-size: .9em; }
.ls-product-pagination { margin-top: 32px; }

.ls-coming-soon-body { min-height: 100vh; }
.ls-coming-soon {
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    place-items: center;
    padding: clamp(32px, 6vw, 80px) 20px;
    background:
        radial-gradient(1200px 500px at 50% -10%, color-mix(in srgb, var(--ls-color-primary) 12%, transparent), transparent 60%),
        var(--ls-color-bg);
}
.ls-coming-soon-card {
    width: min(100%, 34rem);
    text-align: center;
}
.ls-coming-soon-logo {
    height: 48px;
    width: auto;
    margin: 0 auto 28px;
    object-fit: contain;
}
.ls-coming-soon-name {
    margin: 0 0 20px;
    font-size: 13px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ls-color-muted);
}
.ls-coming-soon-card h1 {
    margin: 0 0 14px;
    font-family: var(--ls-font-heading);
    font-weight: var(--ls-heading-weight);
    letter-spacing: var(--ls-heading-ls);
    line-height: var(--ls-heading-lh);
    font-size: clamp(28px, 5vw, 42px);
    text-wrap: balance;
}
.ls-coming-soon-text {
    margin: 0 0 32px;
    color: var(--ls-color-muted);
    font-size: 1.05em;
}
.ls-coming-soon-form {
    text-align: left;
    display: grid;
    gap: 14px;
}
.ls-coming-soon-form .ls-btn { width: 100%; justify-content: center; }
