:root {
    --los-font-body: Tahoma, "Segoe UI", Arial, sans-serif;
    --los-font-heading: var(--los-font-body);
    --los-bg: #f5f7fb;
    --los-surface: #ffffff;
    --los-surface-2: #f8f9fc;
    --los-text: #11182d;
    --los-muted: #68738b;
    --los-line: #e3e7f0;
    --los-primary: #0c3157;
    --los-primary-2: #145481;
    --los-accent: #16a8ad;
    --los-success: #16875d;
    --los-danger: #c93646;
    --los-warning: #b96b00;
    --los-info: #2c68c9;
    --los-neutral: #718096;
    --los-shadow-sm: 0 8px 28px rgba(17, 24, 45, .07);
    --los-shadow-lg: 0 30px 90px rgba(17, 24, 45, .14);
    --los-radius-sm: 12px;
    --los-radius: 20px;
    --los-radius-lg: 30px;
    --los-header-height: 74px;
    color-scheme: light;
}

html[data-los-theme="dark"] {
    --los-bg: #0b1020;
    --los-surface: #121a2e;
    --los-surface-2: #171f35;
    --los-text: #edf1fb;
    --los-muted: #9da8bf;
    --los-line: #27324a;
    --los-primary: #63d2d2;
    --los-primary-2: #1a7791;
    --los-accent: #27bec1;
    --los-success: #35c78d;
    --los-danger: #ff7180;
    --los-warning: #f2b84b;
    --los-info: #75a7ff;
    --los-neutral: #9da8bf;
    --los-shadow-sm: 0 10px 32px rgba(0, 0, 0, .25);
    --los-shadow-lg: 0 36px 100px rgba(0, 0, 0, .34);
    color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    background: var(--los-bg);
    color: var(--los-text);
    font-family: var(--los-font-body);
    line-height: 1.75;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    transition: background-color .25s ease, color .25s ease;
}
button, input, textarea, select { font: inherit; }
a { color: inherit; }
h1, h2, h3, h4, h5, h6, strong, .los-btn { font-family: var(--los-font-heading); }
img { max-width: 100%; }
::selection { color: #fff; background: var(--los-primary); }

.los-container { width: min(1220px, calc(100% - 44px)); margin-inline: auto; }
.los-skip-link { position: fixed; inset-inline-start: 16px; top: -60px; z-index: 999999; padding: 10px 16px; border-radius: 10px; color: #fff; background: var(--los-primary); text-decoration: none; }
.los-skip-link:focus { top: 12px; }

.los-site-header {
    height: var(--los-header-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: color-mix(in srgb, var(--los-surface) 82%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--los-line) 80%, transparent);
    backdrop-filter: saturate(155%) blur(20px);
    transition: box-shadow .2s ease, background .2s ease, transform .2s ease;
}
.los-site-header.is-scrolled { box-shadow: 0 10px 35px rgba(17, 24, 45, .08); }
.los-header-inner { display: flex; align-items: center; gap: 28px; }
.los-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-inline-end: auto; }
.los-logo-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--los-primary), var(--los-accent));
    color: #fff;
    font: 800 21px/1 var(--los-font-heading);
    box-shadow: 0 12px 28px color-mix(in srgb, var(--los-primary) 32%, transparent);
}
.los-logo strong, .los-logo small { display: block; }
.los-logo strong { font-size: 15px; line-height: 1.35; }
.los-logo small { margin-top: 2px; font-size: 8.5px; letter-spacing: .45px; color: var(--los-muted); }
.los-logo .custom-logo { max-height: 48px; width: auto; }

.los-primary-nav, .los-primary-nav ul { display: flex; align-items: center; gap: 26px; }
.los-primary-nav ul { list-style: none; margin: 0; padding: 0; }
.los-primary-nav a { position: relative; text-decoration: none; font-size: 12.5px; font-weight: 700; color: var(--los-muted); }
.los-primary-nav a::after { content: ""; position: absolute; inset-inline: 0; bottom: -9px; height: 2px; border-radius: 99px; background: var(--los-primary); transform: scaleX(0); transition: transform .2s ease; }
.los-primary-nav a:hover { color: var(--los-text); }
.los-primary-nav a:hover::after { transform: scaleX(1); }
.los-header-actions { display: flex; align-items: center; gap: 9px; margin-inline-start: auto; }

.los-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 43px;
    padding: 9px 18px;
    border: 1px solid var(--los-primary);
    border-radius: 13px;
    background: linear-gradient(135deg, var(--los-primary), var(--los-primary-2));
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 12.5px;
    box-shadow: 0 10px 24px color-mix(in srgb, var(--los-primary) 22%, transparent);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.los-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 32px color-mix(in srgb, var(--los-primary) 28%, transparent); color: #fff; }
.los-btn-ghost { background: var(--los-surface); color: var(--los-text); border-color: var(--los-line); box-shadow: none; }
.los-btn-ghost:hover { color: var(--los-primary); border-color: color-mix(in srgb, var(--los-primary) 38%, var(--los-line)); background: var(--los-surface-2); }
.los-btn-large { min-height: 54px; padding: 13px 25px; border-radius: 16px; font-size: 14px; }
.los-btn-light { background: #fff; color: var(--los-primary); border-color: #fff; box-shadow: none; }

.los-user-chip { display: flex; align-items: center; gap: 8px; text-decoration: none; font-size: 12px; color: var(--los-muted); }
.los-user-chip > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 12px; background: color-mix(in srgb, var(--los-primary) 13%, var(--los-surface)); color: var(--los-primary); font-weight: 900; border: 1px solid color-mix(in srgb, var(--los-primary) 18%, var(--los-line)); }
.los-user-chip b { color: var(--los-text); font-size: 11.5px; }

.los-mode-toggle {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    position: relative;
    border: 1px solid var(--los-line);
    border-radius: 13px;
    color: var(--los-text);
    background: var(--los-surface);
    cursor: pointer;
    box-shadow: none;
}
.los-mode-toggle span { position: absolute; transition: opacity .18s ease, transform .18s ease; }
.los-mode-toggle__moon { opacity: 0; transform: scale(.5) rotate(-20deg); }
html[data-los-theme="dark"] .los-mode-toggle__sun { opacity: 0; transform: scale(.5) rotate(20deg); }
html[data-los-theme="dark"] .los-mode-toggle__moon { opacity: 1; transform: scale(1) rotate(0); }

.los-menu-toggle { display: none; width: 42px; height: 42px; padding: 10px; border: 1px solid var(--los-line); border-radius: 12px; background: var(--los-surface); }
.los-menu-toggle span { display: block; height: 2px; margin: 4px 0; border-radius: 99px; background: var(--los-text); }

.los-hero {
    min-height: 760px;
    padding: 88px 0 100px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 18%, color-mix(in srgb, var(--los-primary) 16%, transparent), transparent 35%),
        radial-gradient(circle at 15% 70%, color-mix(in srgb, var(--los-accent) 12%, transparent), transparent 30%),
        linear-gradient(180deg, var(--los-surface), var(--los-bg));
}
.los-hero::before { content: ""; position: absolute; inset: 0; opacity: .25; background-image: linear-gradient(var(--los-line) 1px, transparent 1px), linear-gradient(90deg, var(--los-line) 1px, transparent 1px); background-size: 44px 44px; mask-image: linear-gradient(to bottom, #000, transparent 75%); }
.los-orb { position: absolute; border-radius: 50%; filter: blur(3px); opacity: .62; }
.orb-a { width: 430px; height: 430px; left: -250px; top: 20px; background: radial-gradient(circle, color-mix(in srgb, var(--los-primary) 35%, transparent), transparent 69%); }
.orb-b { width: 350px; height: 350px; right: -230px; bottom: -70px; background: radial-gradient(circle, color-mix(in srgb, var(--los-accent) 32%, transparent), transparent 70%); }
.los-hero-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 70px; position: relative; }
.los-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px; border: 1px solid color-mix(in srgb, var(--los-primary) 24%, var(--los-line)); border-radius: 999px; background: color-mix(in srgb, var(--los-primary) 8%, var(--los-surface)); color: var(--los-primary); font-size: 11.5px; font-weight: 800; }
.los-eyebrow i { width: 7px; height: 7px; border-radius: 50%; background: var(--los-primary); box-shadow: 0 0 0 4px color-mix(in srgb, var(--los-primary) 14%, transparent); }
.los-hero h1 { max-width: 680px; font-size: clamp(39px, 5vw, 61px); line-height: 1.3; letter-spacing: -2px; margin: 22px 0 16px; }
.los-hero h1 em { font-style: normal; color: var(--los-primary); }
.los-hero-copy > p { font-size: 15.5px; line-height: 2.05; color: var(--los-muted); max-width: 610px; }
.los-hero-actions { display: flex; gap: 11px; flex-wrap: wrap; margin-top: 31px; }
.los-trust-row { display: flex; gap: 19px; flex-wrap: wrap; margin-top: 29px; color: var(--los-muted); font-size: 11px; font-weight: 700; }

.los-dashboard-preview { position: relative; background: color-mix(in srgb, var(--los-surface) 94%, transparent); border: 1px solid color-mix(in srgb, var(--los-line) 85%, transparent); border-radius: 30px; padding: 22px; box-shadow: var(--los-shadow-lg), 0 0 0 10px color-mix(in srgb, var(--los-surface) 54%, transparent); transform: perspective(1200px) rotateY(-3deg) rotateX(1deg); }
.los-dashboard-preview::after { content: ""; position: absolute; inset: auto 12% -42px; height: 55px; filter: blur(26px); background: color-mix(in srgb, var(--los-primary) 25%, transparent); z-index: -1; }
.preview-top, .preview-chart > div { display: flex; justify-content: space-between; align-items: center; }
.preview-top b, .preview-top small { display: block; }
.preview-top b { font-size: 14px; }
.preview-top small { color: var(--los-muted); font-size: 9px; margin-top: 3px; }
.ai-live { padding: 6px 10px; border-radius: 999px; background: color-mix(in srgb, var(--los-success) 12%, var(--los-surface)); color: var(--los-success); font-size: 9px; font-weight: 800; }
.preview-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 18px 0; }
.preview-stats article { border: 1px solid var(--los-line); border-radius: 15px; padding: 13px; background: var(--los-surface-2); }
.preview-stats small, .preview-stats span { display: block; color: var(--los-muted); font-size: 8.5px; }
.preview-stats strong { display: block; font-size: 22px; margin: 4px 0; }
.preview-body { display: grid; grid-template-columns: 1.25fr .75fr; gap: 10px; }
.focus-card, .insight-card { border-radius: 17px; padding: 16px; }
.focus-card { background: linear-gradient(145deg, #17213b, #2a3964); color: #fff; }
.focus-card > span, .focus-card small, .insight-card small { color: #bcc6da; font-size: 8.5px; }
.focus-card h3 { font-size: 13px; margin: 7px 0 12px; }
.focus-card > div { height: 6px; background: rgba(255, 255, 255, .12); border-radius: 999px; overflow: hidden; margin-bottom: 8px; }
.focus-card i { display: block; height: 100%; background: linear-gradient(90deg, #8a7cff, #3ad2df); border-radius: inherit; }
.insight-card { display: flex; gap: 10px; background: color-mix(in srgb, var(--los-primary) 9%, var(--los-surface)); color: var(--los-text); border: 1px solid color-mix(in srgb, var(--los-primary) 14%, var(--los-line)); }
.insight-card p { font-size: 9.5px; line-height: 1.8; margin: 4px 0; }
.spark { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 10px; background: var(--los-primary); color: #fff; flex: 0 0 auto; }
.preview-chart { margin-top: 10px; border: 1px solid var(--los-line); border-radius: 17px; padding: 14px; height: 150px; background: var(--los-surface); }
.preview-chart span { font-size: 10px; font-weight: 800; }
.preview-chart b { font-size: 10px; color: var(--los-success); }
.preview-chart svg { width: 100%; height: 98px; }

.los-section { padding: 100px 0; }
.los-section-head { text-align: center; max-width: 700px; margin: 0 auto 46px; }
.los-section-head > span { font-size: 11.5px; color: var(--los-primary); font-weight: 900; }
.los-section-head h2 { font-size: clamp(29px, 4vw, 40px); letter-spacing: -1px; margin: 8px 0; }
.los-section-head p { color: var(--los-muted); }
.los-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.los-feature { padding: 27px; border: 1px solid var(--los-line); border-radius: 21px; background: var(--los-surface); box-shadow: 0 1px 0 rgba(255,255,255,.6) inset; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.los-feature:hover { transform: translateY(-6px); box-shadow: var(--los-shadow-sm); border-color: color-mix(in srgb, var(--los-primary) 34%, var(--los-line)); }
.los-feature > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: color-mix(in srgb, var(--los-primary) 11%, var(--los-surface)); color: var(--los-primary); font-size: 21px; }
.los-feature h3 { font-size: 15px; margin: 16px 0 8px; }
.los-feature p { font-size: 11.5px; color: var(--los-muted); line-height: 1.95; margin: 0; }

.los-privacy-section { background: #111a31; color: #fff; overflow: hidden; }
html[data-los-theme="dark"] .los-privacy-section { background: #080d1b; }
.los-privacy-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 80px; }
.los-eyebrow.light { background: rgba(138,124,255,.18); border-color: rgba(255,255,255,.1); color: #d9d5ff; }
.los-privacy-grid h2 { font-size: 39px; margin: 18px 0 8px; }
.los-privacy-grid p, .los-privacy-grid li { color: #b8c2d7; }
.los-privacy-grid ul { padding-inline-start: 20px; line-height: 2.2; }
.privacy-lock { width: 340px; height: 340px; margin: auto; border-radius: 50%; display: grid; place-items: center; text-align: center; align-content: center; position: relative; background: radial-gradient(circle at center, rgba(103,88,232,.28), rgba(103,88,232,.03) 58%, transparent 59%); border: 1px solid rgba(255,255,255,.08); box-shadow: inset 0 0 50px rgba(103,88,232,.08); }
.privacy-lock > span { font-size: 52px; color: #aaa1ff; }
.privacy-lock strong { font-size: 24px; }
.privacy-lock small { color: #909cb8; }
.privacy-lock > div i { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--los-primary); box-shadow: 0 0 13px var(--los-primary); }
.privacy-lock > div i:nth-child(1) { top: 18px; left: 50%; }.privacy-lock > div i:nth-child(2) { right: 27px; top: 90px; }.privacy-lock > div i:nth-child(3) { right: 38px; bottom: 65px; }.privacy-lock > div i:nth-child(4) { bottom: 15px; left: 45%; }.privacy-lock > div i:nth-child(5) { left: 32px; bottom: 85px; }.privacy-lock > div i:nth-child(6) { left: 24px; top: 84px; }

.los-cta { padding: 68px 0; background: linear-gradient(135deg, var(--los-primary), #4434c5); color: #fff; }
.los-cta .los-container { display: flex; justify-content: space-between; align-items: center; gap: 25px; }
.los-cta span { color: #ddd9ff; }.los-cta h2 { margin: 6px 0 0; font-size: 28px; }
.los-footer { padding: 56px 0 19px; background: #0c1325; color: #fff; }
.los-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr .8fr; gap: 42px; }
.footer-logo { color: #fff; }.los-footer p { color: #8c98b0; max-width: 420px; font-size: 11.5px; }.los-footer h3 { font-size: 12.5px; margin: 0 0 13px; }.los-footer-grid > div > a:not(.los-logo) { display: block; color: #98a4bb; text-decoration: none; font-size: 11.5px; margin: 7px 0; }.los-footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.08); padding-top: 17px; margin-top: 35px; color: #748199; font-size: 9.5px; }
.los-footer-trust { text-align: center; }.los-footer-trust h3 { text-align: right; }.los-enamad-badge { display: inline-flex !important; align-items: center; justify-content: center; width: 108px; min-height: 118px; margin: 2px auto 8px !important; padding: 8px; border-radius: 16px; background: rgba(255,255,255,.96); border: 1px solid rgba(255,255,255,.16); box-shadow: 0 12px 30px rgba(0,0,0,.18); transition: transform .2s ease, box-shadow .2s ease; }.los-enamad-badge:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(0,0,0,.24); }.los-enamad-badge img { display: block; max-width: 92px; max-height: 104px; width: auto; height: auto; object-fit: contain; }.los-footer .los-footer-trust-note { margin: 0 auto; max-width: 150px; font-size: 9.5px; line-height: 1.8; color: #748199; }

.los-app-stage { min-height: 100vh; background: var(--los-bg); }
.lifeos-theme-app .los-footer { display: none; }
.lifeos-theme-app-compact .los-site-header { display: none; }
.lifeos-theme-app-compact .los-site-content { min-height: 100vh; }
.los-app-utility { position: fixed; inset-inline-start: 18px; top: 17px; z-index: 10001; display: flex; gap: 8px; align-items: center; }
.los-app-utility > a, .los-app-utility .los-mode-toggle { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid color-mix(in srgb, var(--los-line) 78%, transparent); border-radius: 12px; background: color-mix(in srgb, var(--los-surface) 90%, transparent); color: var(--los-muted); text-decoration: none; box-shadow: var(--los-shadow-sm); backdrop-filter: blur(14px); }
.los-app-utility > a:hover { color: var(--los-primary); transform: translateY(-1px); }
.los-mode-toggle--app { box-shadow: var(--los-shadow-sm); }

.los-plugin-missing, .los-not-found { min-height: 65vh; display: grid; place-items: center; text-align: center; padding: 35px; }
.los-not-found > div, .los-plugin-missing { background: var(--los-surface); padding: 46px; border: 1px solid var(--los-line); border-radius: 25px; box-shadow: var(--los-shadow-sm); }
.los-not-found span { font-size: 80px; color: var(--los-primary); font-weight: 900; }
.los-content-page { padding: 58px 0 92px; }
.los-article-card, .los-post-card { background: var(--los-surface); border: 1px solid var(--los-line); border-radius: 20px; padding: 31px; box-shadow: var(--los-shadow-sm); }
.los-article-card h1 { font-size: 34px; }.entry-content { color: color-mix(in srgb, var(--los-text) 82%, var(--los-muted)); }.entry-content img { max-width: 100%; height: auto; border-radius: 15px; }.los-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }.los-post-card { padding: 0; overflow: hidden; }.los-post-card a { text-decoration: none; }.los-post-card img { width: 100%; height: 190px; object-fit: cover; }.los-post-card h2, .los-post-card p, .los-post-card small { margin-inline: 18px; }.los-post-card small { display: block; margin-top: 15px; color: var(--los-muted); }.los-post-card h2 { font-size: 17px; }.los-post-card p { color: var(--los-muted); font-size: 11.5px; margin-bottom: 20px; }

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; } }
@media (max-width: 1000px) {
    .los-primary-nav { display: none; position: absolute; top: 66px; right: 20px; left: 20px; background: var(--los-surface); padding: 18px; border: 1px solid var(--los-line); border-radius: 16px; box-shadow: var(--los-shadow-lg); }
    .los-primary-nav.is-open { display: grid; }.los-primary-nav ul { display: grid; }.los-menu-toggle { display: block; }.los-header-actions .los-user-chip { display: none; }.los-hero-grid { grid-template-columns: 1fr; }.los-hero-copy { text-align: center; }.los-hero-copy > p { margin-inline: auto; }.los-hero-actions, .los-trust-row { justify-content: center; }.los-dashboard-preview { max-width: 760px; margin: auto; transform: none; }.los-feature-grid { grid-template-columns: repeat(2,1fr); }.los-privacy-grid { grid-template-columns: 1fr; }.los-privacy-grid > div:first-child { text-align: center; }.los-privacy-grid ul { text-align: right; display: inline-block; }.los-footer-grid { grid-template-columns: 1.5fr 1fr; }.los-footer-grid > div:first-child { grid-column: 1/-1; }.los-footer-trust { text-align: right; }.los-enamad-badge { margin-inline: 0 !important; }
}
@media (max-width: 650px) {
    :root { --los-header-height: 66px; }.los-container { width: min(100% - 26px, 1220px); }.los-header-actions .los-btn-ghost { display: none; }.los-logo small, .los-user-chip { display: none; }.los-hero { padding: 58px 0 72px; min-height: 0; }.los-hero h1 { font-size: 36px; letter-spacing: -1.2px; }.los-hero-copy > p { font-size: 13.5px; }.preview-body { grid-template-columns: 1fr; }.los-dashboard-preview { padding: 14px; border-radius: 22px; }.preview-stats { gap: 6px; }.preview-stats article { padding: 9px; }.preview-stats strong { font-size: 17px; }.los-feature-grid, .los-post-grid { grid-template-columns: 1fr; }.los-section { padding: 68px 0; }.los-section-head h2 { font-size: 29px; }.los-privacy-grid h2 { font-size: 30px; }.privacy-lock { width: 275px; height: 275px; }.los-cta .los-container { display: grid; text-align: center; }.los-footer-grid { grid-template-columns: 1fr 1fr; }.los-footer-grid > div:first-child { grid-column: 1/-1; }.los-footer-trust { text-align: center; }.los-footer-trust h3 { text-align: center; }.los-enamad-badge { margin-inline: auto !important; }.los-footer-bottom { display: grid; gap: 6px; text-align: center; }.los-app-utility { inset-inline-start: 10px; top: 10px; }.los-app-utility > a, .los-app-utility .los-mode-toggle { width: 36px; height: 36px; }
}

.los-workflow-section { position: relative; background: var(--los-surface-2); border-block: 1px solid var(--los-line); }
.los-workflow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: workflow; }
.los-workflow-grid article { position: relative; min-height: 230px; padding: 27px; overflow: hidden; border: 1px solid var(--los-line); border-radius: 22px; background: var(--los-surface); box-shadow: var(--los-shadow-sm); }
.los-workflow-grid article::after { content: ""; position: absolute; inset-inline-end: -55px; bottom: -65px; width: 145px; height: 145px; border-radius: 50%; border: 26px solid color-mix(in srgb, var(--los-primary) 7%, transparent); }
.los-workflow-grid b { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 13px; color: var(--los-primary); background: color-mix(in srgb, var(--los-primary) 10%, var(--los-surface)); font-size: 12px; }
.los-workflow-grid span { display: block; margin: 28px 0 8px; font-family: var(--los-font-heading); font-size: 17px; font-weight: 800; }
.los-workflow-grid p { position: relative; z-index: 1; margin: 0; color: var(--los-muted); font-size: 12px; line-height: 1.95; }
@media(max-width:800px){.los-workflow-grid{grid-template-columns:1fr}.los-workflow-grid article{min-height:190px}}

/* Hoshyare Man front-end authentication */
.lifeos-auth-page .los-site-header,
.lifeos-auth-page .los-footer { display: none; }
.lifeos-auth-page .los-site-content { min-height: 100vh; padding: 0; }
.los-auth-shell { min-height: 100vh; display: grid; grid-template-columns: minmax(360px, .92fr) minmax(480px, 1.08fr); background: var(--los-bg); }
.los-auth-visual { position: relative; overflow: hidden; display: grid; place-items: center; padding: clamp(42px, 7vw, 96px); color: #fff; background: linear-gradient(145deg, #071d34 0%, #0c3157 52%, #14858f 130%); }
.los-auth-visual::before { content: ""; position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 40px 40px; mask-image: linear-gradient(to bottom, #000, transparent 92%); }
.los-auth-visual__orb { position: absolute; border-radius: 50%; filter: blur(2px); background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.32), rgba(126,111,255,.08) 55%, transparent 72%); border: 1px solid rgba(255,255,255,.12); }
.los-auth-visual__orb--one { width: 380px; height: 380px; top: -120px; right: -80px; }
.los-auth-visual__orb--two { width: 290px; height: 290px; bottom: -100px; left: -60px; }
.los-auth-visual__content { position: relative; z-index: 2; max-width: 540px; }
.los-auth-kicker { display: inline-flex; padding: 8px 13px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; background: rgba(255,255,255,.08); font-size: 11px; font-weight: 900; }
.los-auth-visual h1 { margin: 22px 0 14px; font-size: clamp(34px, 5vw, 58px); line-height: 1.22; letter-spacing: -1.8px; }
.los-auth-visual p { max-width: 510px; color: #c8d0e3; line-height: 2; font-size: 14px; }
.los-auth-visual ul { display: grid; gap: 13px; margin: 30px 0 0; padding: 0; list-style: none; color: #e2e6f2; font-size: 12px; }
.los-auth-visual li { display: flex; align-items: center; gap: 10px; }
.los-auth-visual li span { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 8px; background: rgba(70,211,153,.16); color: #70e0b0; font-weight: 900; }
.los-auth-panel { display: grid; align-content: center; justify-items: center; gap: 28px; padding: clamp(24px, 5vw, 76px); }
.los-auth-brand { display: flex; align-items: center; gap: 11px; color: var(--los-text); text-decoration: none; }
.los-auth-brand > span:last-child { display: grid; }
.los-auth-brand strong { font-family: var(--los-font-heading); font-size: 17px; }
.los-auth-brand small { color: var(--los-muted); font-size: 8px; letter-spacing: .2px; }
.los-auth-card { width: min(100%, 520px); padding: clamp(24px, 4vw, 40px); border: 1px solid var(--los-line); border-radius: 28px; background: var(--los-surface); box-shadow: var(--los-shadow-lg); }
.los-auth-card__head > span { color: var(--los-primary); font-size: 11px; font-weight: 900; }
.los-auth-card__head h2 { margin: 7px 0 8px; font-size: clamp(24px, 4vw, 32px); }
.los-auth-card__head p { margin: 0; color: var(--los-muted); font-size: 12px; line-height: 1.95; }
.los-auth-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; margin: 24px 0; padding: 5px; border-radius: 14px; background: var(--los-surface-2); }
.los-auth-tabs a { padding: 10px 14px; border-radius: 10px; color: var(--los-muted); text-decoration: none; text-align: center; font-size: 12px; font-weight: 800; }
.los-auth-tabs a.is-active { color: #fff; background: var(--los-primary); box-shadow: 0 7px 18px color-mix(in srgb, var(--los-primary) 30%, transparent); }
.los-auth-provider .sra-pa-box { max-width: none; margin: 0; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.los-auth-provider .sra-pa-phone-form > h3,
.los-auth-provider .sra-pa-phone-form > p { display: none; }
.los-auth-provider .sra-pa-form label { color: var(--los-text); font-size: 12px; }
.los-auth-provider .sra-pa-form input[type="tel"],
.los-auth-provider .sra-pa-form input[type="text"],
.los-auth-provider .sra-pa-form input[type="password"],
.los-auth-provider .sra-pa-form input[type="file"],
.los-auth-provider .sra-pa-form textarea,
.los-auth-provider .sra-pa-form select,
.los-auth-fallback input[type="text"],
.los-auth-fallback input[type="password"] { width: 100%; min-height: 48px; padding: 11px 13px; border: 1px solid var(--los-line); border-radius: 12px; color: var(--los-text); background: var(--los-surface-2); outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.los-auth-provider .sra-pa-form input:focus,
.los-auth-provider .sra-pa-form textarea:focus,
.los-auth-provider .sra-pa-form select:focus,
.los-auth-fallback input:focus { border-color: var(--los-primary); box-shadow: 0 0 0 4px color-mix(in srgb, var(--los-primary) 12%, transparent); }
.los-auth-provider .sra-pa-form button,
.los-auth-fallback input[type="submit"] { width: 100%; min-height: 48px; margin-top: 12px; border: 0; border-radius: 12px; color: #fff; background: var(--los-primary); font-family: inherit; font-weight: 900; cursor: pointer; }
.los-auth-provider .sra-pa-form .sra-pa-back { width: auto; color: var(--los-text); background: var(--los-surface-2); }
.los-auth-provider .sra-pa-message { font-size: 12px; line-height: 1.8; }
.los-auth-provider .sra-pa-register-form h3 { font-size: 20px; }
.los-auth-provider .sra-pa-help { color: var(--los-muted); }
.los-auth-provider .sra-pa-form input,
.los-auth-provider .sra-pa-form textarea,
.los-auth-provider .sra-pa-form select { color-scheme: light; }
html[data-los-theme="dark"] .los-auth-provider .sra-pa-form input,
html[data-los-theme="dark"] .los-auth-provider .sra-pa-form textarea,
html[data-los-theme="dark"] .los-auth-provider .sra-pa-form select { color-scheme: dark; }
.los-auth-privacy { margin: 22px 0 0; padding-top: 18px; border-top: 1px solid var(--los-line); color: var(--los-muted); font-size: 9.5px; line-height: 1.9; }
.los-auth-alert { padding: 12px 14px; border: 1px solid color-mix(in srgb, var(--los-warning) 35%, var(--los-line)); border-radius: 12px; color: #7b5a00; background: color-mix(in srgb, var(--los-warning) 13%, var(--los-surface)); font-size: 11px; line-height: 1.8; }
.los-auth-alert--danger { color: var(--los-danger); border-color: color-mix(in srgb, var(--los-danger) 32%, var(--los-line)); background: color-mix(in srgb, var(--los-danger) 9%, var(--los-surface)); }
.los-auth-fallback p { margin: 13px 0; }
.los-auth-fallback label { display: block; margin-bottom: 6px; font-size: 11px; font-weight: 800; }
.los-auth-fallback .login-remember label { display: flex; align-items: center; gap: 8px; }
@media (max-width: 920px) {
    .los-auth-shell { grid-template-columns: 1fr; }
    .los-auth-visual { min-height: 310px; padding: 42px 28px; place-items: end start; }
    .los-auth-visual h1 { max-width: 620px; font-size: 38px; }
    .los-auth-visual p { font-size: 12px; }
    .los-auth-visual ul { grid-template-columns: repeat(3, 1fr); font-size: 10px; }
    .los-auth-panel { padding-block: 42px 70px; }
}
@media (max-width: 620px) {
    .los-auth-visual { min-height: 250px; }
    .los-auth-visual h1 { margin-top: 16px; font-size: 30px; }
    .los-auth-visual p { margin-bottom: 0; }
    .los-auth-visual ul { display: none; }
    .los-auth-panel { padding: 26px 14px 50px; }
    .los-auth-card { padding: 24px 18px; border-radius: 22px; }
}


/* Hoshyare Man brand identity 1.6.0 */
.los-brand-mark { width: 48px; height: 48px; flex: 0 0 48px; object-fit: contain; filter: drop-shadow(0 8px 16px rgba(12,49,87,.15)); }
.los-brand-copy { display: grid; min-width: 0; }
.los-brand-copy strong { color: var(--los-text); font-size: 16px; line-height: 1.35; }
.los-brand-copy small { max-width: 210px; margin-top: 2px; color: var(--los-muted); font-size: 9px; letter-spacing: 0; white-space: nowrap; }
.footer-logo .los-brand-mark { padding: 5px; border-radius: 15px; background: rgba(255,255,255,.96); }
.footer-logo .los-brand-copy strong { color: #fff; }
.footer-logo .los-brand-copy small { color: #91d8db; }
.los-auth-brand .los-brand-mark { width: 58px; height: 58px; flex-basis: 58px; }
.los-auth-brand .los-brand-copy strong { font-size: 19px; }
.los-auth-brand .los-brand-copy small { font-size: 10px; }
.los-auth-kicker { border-color: rgba(22,168,173,.38); background: rgba(22,168,173,.16); }
@media (max-width: 560px) { .los-logo .los-brand-mark { width: 42px; height: 42px; flex-basis: 42px; } .los-logo .los-brand-copy small { display: none; } }

/* Release downloads and registration gift — 1.6.0 */
.los-btn-download { color: #fff; background: linear-gradient(135deg,#14a8ad,#0c7185); box-shadow: 0 12px 28px rgba(20,168,173,.22); }
.los-btn-outline-light { color:#fff; border:1px solid rgba(255,255,255,.42); background:transparent; }
.los-release-inline { display:flex; flex-wrap:wrap; gap:8px; margin-top:18px; }
.los-release-inline span { padding:7px 11px; border:1px solid var(--los-line); border-radius:999px; color:var(--los-muted); background:color-mix(in srgb,var(--los-surface) 85%,transparent); font-size:10px; font-weight:800; }
.los-section-kicker { color:var(--los-primary); font-size:11px; font-weight:900; }
.los-gift-section { background:linear-gradient(180deg,color-mix(in srgb,var(--los-primary) 5%,var(--los-bg)),var(--los-bg)); }
.los-gift-grid { display:grid; grid-template-columns:minmax(0,1.4fr) minmax(280px,.6fr); align-items:center; gap:clamp(28px,7vw,90px); }
.los-gift-grid h2 { margin:9px 0 14px; font-size:clamp(30px,4.8vw,50px); line-height:1.35; letter-spacing:-1.2px; }
.los-gift-grid p { max-width:720px; color:var(--los-muted); line-height:2.05; }
.los-gift-grid ul { display:grid; gap:10px; margin:22px 0 28px; padding:0; list-style:none; }
.los-gift-grid li::before { content:'✓'; display:inline-grid; place-items:center; width:23px; height:23px; margin-inline-end:8px; border-radius:8px; color:#fff; background:var(--los-primary); font-weight:900; }
.los-gift-card { position:relative; overflow:hidden; min-height:360px; padding:34px; border:1px solid color-mix(in srgb,var(--los-primary) 24%,var(--los-line)); border-radius:34px; color:#fff; background:radial-gradient(circle at 20% 10%,rgba(255,255,255,.22),transparent 28%),linear-gradient(145deg,#0c3157,#0c7185 62%,#16a8ad); box-shadow:0 30px 70px rgba(12,49,87,.24); }
.los-gift-card > span { display:block; font-size:112px; line-height:1; font-weight:950; letter-spacing:-8px; }
.los-gift-card > strong { display:block; margin-top:8px; font-size:23px; }
.los-gift-card > small { display:block; margin-top:8px; color:#c9f1f2; }
.los-gift-card > div { position:absolute; inset-inline:28px; bottom:28px; display:flex; justify-content:space-between; align-items:end; padding-top:20px; border-top:1px solid rgba(255,255,255,.2); }
.los-gift-card b { font-size:38px; }.los-gift-card em { max-width:130px; color:#d7f7f8; font-size:11px; font-style:normal; line-height:1.8; text-align:left; }
.los-download-section { position:relative; overflow:hidden; background:var(--los-surface-2); }
.los-download-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px; }
.los-download-card { position:relative; padding:30px; border:1px solid var(--los-line); border-radius:28px; background:var(--los-surface); box-shadow:var(--los-shadow); }
.los-download-card--web { border-color:color-mix(in srgb,var(--los-primary) 24%,var(--los-line)); }
.los-download-card--android { border-color:color-mix(in srgb,#16a8ad 30%,var(--los-line)); }
.los-download-icon { width:58px; height:58px; display:grid; place-items:center; border-radius:18px; color:#fff; background:linear-gradient(135deg,var(--los-primary),#16a8ad); font-size:25px; font-weight:900; }
.los-release-badge { position:absolute; top:28px; inset-inline-end:28px; padding:6px 10px; border-radius:999px; color:var(--los-primary); background:color-mix(in srgb,var(--los-primary) 10%,var(--los-surface)); font-size:9px; font-weight:950; letter-spacing:.8px; }
.los-download-card h3 { margin:22px 0 10px; font-size:24px; }.los-download-card > p { min-height:58px; color:var(--los-muted); line-height:1.9; }
.los-download-card dl { display:grid; gap:0; margin:24px 0; border:1px solid var(--los-line); border-radius:16px; overflow:hidden; }
.los-download-card dl div { display:flex; justify-content:space-between; gap:20px; padding:12px 14px; border-bottom:1px solid var(--los-line); }.los-download-card dl div:last-child{border-bottom:0}
.los-download-card dt { color:var(--los-muted); font-size:10px; }.los-download-card dd { margin:0; font-size:11px; font-weight:900; text-align:left; }
.los-download-actions { display:flex; flex-wrap:wrap; gap:9px; }.los-download-actions .los-btn { flex:1; min-width:160px; }
.los-install-status { min-height:22px!important; margin:10px 0 0!important; color:var(--los-primary)!important; font-size:10px!important; }
.los-checksum { margin-top:18px; color:var(--los-muted); font-size:10px; }.los-checksum summary { cursor:pointer; font-weight:800; }.los-checksum code { display:block; overflow-wrap:anywhere; margin-top:9px; padding:11px; border-radius:10px; direction:ltr; background:var(--los-surface-2); font:9px/1.8 monospace; }
.los-download-note { margin-top:18px; padding:15px 18px; border:1px solid color-mix(in srgb,var(--los-warning) 35%,var(--los-line)); border-radius:16px; color:var(--los-muted); background:color-mix(in srgb,var(--los-warning) 8%,var(--los-surface)); font-size:10px; line-height:1.9; }
.los-cta-actions { display:flex; flex-wrap:wrap; gap:10px; }
@media (max-width:900px){.los-gift-grid,.los-download-grid{grid-template-columns:1fr}.los-gift-card{max-width:520px;width:100%;margin:auto}.los-gift-grid>div:first-child{text-align:center}.los-gift-grid ul{display:inline-grid;text-align:right}.los-cta-actions{justify-content:center}}
@media (max-width:620px){.los-hero-actions .los-btn{width:100%}.los-release-inline{justify-content:center}.los-gift-card{min-height:310px;padding:26px}.los-gift-card>span{font-size:86px}.los-download-card{padding:22px 18px;border-radius:22px}.los-download-actions{display:grid}.los-download-actions .los-btn{width:100%}.los-download-card>p{min-height:0}.los-cta-actions{display:grid;width:100%}.los-cta-actions .los-btn{width:100%}}

/* 1.6.0 — Personal Life Intelligence homepage */
.los-hero--life-intelligence { min-height: calc(100vh - var(--los-header-height)); padding: clamp(70px,8vw,112px) 0; }
.los-hero--life-intelligence .los-hero-grid { grid-template-columns: minmax(0,.92fr) minmax(520px,1.08fr); gap: clamp(42px,6vw,86px); }
.los-hero--life-intelligence .los-hero-copy > p { max-width: 670px; font-size: clamp(14px,1.5vw,17px); }
.los-hero--life-intelligence .los-trust-row { margin-top: 24px; }
.los-life-map { position:relative; isolation:isolate; padding:24px; overflow:hidden; border:1px solid color-mix(in srgb,var(--los-primary) 24%,var(--los-line)); border-radius:32px; background:linear-gradient(145deg,color-mix(in srgb,var(--los-surface) 94%,#fff),color-mix(in srgb,var(--los-primary) 5%,var(--los-surface))); box-shadow:0 34px 90px rgba(18,42,78,.16); transform:perspective(1100px) rotateY(-3deg) rotateX(1deg); }
.los-life-map::before { content:""; position:absolute; inset:-35% 44% 45% -25%; z-index:-1; border-radius:50%; background:radial-gradient(circle,color-mix(in srgb,#16a8ad 24%,transparent),transparent 65%); }
.los-life-map__header { display:flex; justify-content:space-between; align-items:flex-start; gap:18px; padding-bottom:18px; border-bottom:1px solid var(--los-line); }
.los-life-map__header small { display:block; color:var(--los-muted); font-size:10px; }.los-life-map__header strong { display:block; margin-top:5px; font-size:15px; }.los-life-map__header>span { padding:8px 11px; border-radius:999px; color:#08777e; background:color-mix(in srgb,#16a8ad 12%,var(--los-surface)); font-size:9px; font-weight:900; white-space:nowrap; }
.los-life-map__signals { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:9px; margin:18px 0; }
.los-life-map__signals article { min-width:0; padding:14px 12px; border:1px solid var(--los-line); border-radius:17px; background:color-mix(in srgb,var(--los-surface) 94%,transparent); }
.los-life-map__signals i { display:block; width:9px; height:9px; margin-bottom:12px; border-radius:50%; box-shadow:0 0 0 5px color-mix(in srgb,currentColor 12%,transparent); }.los-life-map__signals i.sleep{color:#6357d8;background:#6357d8}.los-life-map__signals i.focus{color:#16a8ad;background:#16a8ad}.los-life-map__signals i.spend{color:#e88942;background:#e88942}.los-life-map__signals i.mood{color:#df5c88;background:#df5c88}
.los-life-map__signals small,.los-life-map__signals em { display:block; color:var(--los-muted); font-size:8.5px; font-style:normal; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }.los-life-map__signals b { display:block; margin:5px 0 3px; font-size:19px; }
.los-life-map__insight { display:flex; gap:13px; padding:19px; border:1px solid color-mix(in srgb,#16a8ad 28%,var(--los-line)); border-radius:20px; background:linear-gradient(135deg,color-mix(in srgb,#16a8ad 10%,var(--los-surface)),var(--los-surface)); }
.los-life-map__insight>span { flex:0 0 38px; width:38px; height:38px; display:grid; place-items:center; border-radius:13px; color:#fff; background:linear-gradient(135deg,#0c7185,#16a8ad); }.los-life-map__insight small { color:#08777e; font-size:9px; font-weight:900; }.los-life-map__insight p { margin:5px 0 0; font-size:11px; line-height:2; }
.los-life-map__action { display:flex; justify-content:space-between; align-items:center; gap:18px; margin-top:14px; padding:15px 17px; border:1px dashed var(--los-line); border-radius:17px; }.los-life-map__action small { display:block; color:var(--los-muted); font-size:8.5px; }.los-life-map__action strong { display:block; margin-top:4px; font-size:10.5px; }.los-life-map__action button { padding:8px 11px; border:0; border-radius:10px; color:var(--los-muted); background:var(--los-surface-2); font-family:inherit; font-size:8.5px; white-space:nowrap; }

.los-section-kicker { display:inline-block; color:var(--los-primary); font-size:11px; font-weight:950; }
.los-problem-section { background:var(--los-surface-2); border-block:1px solid var(--los-line); }
.los-problem-grid { display:grid; grid-template-columns:minmax(0,1.02fr) minmax(420px,.98fr); align-items:center; gap:clamp(42px,8vw,105px); }
.los-problem-copy h2 { max-width:760px; margin:10px 0 18px; font-size:clamp(31px,4.3vw,49px); line-height:1.45; letter-spacing:-1.3px; }.los-problem-copy>p { max-width:720px; color:var(--los-muted); line-height:2.15; }
.los-problem-copy blockquote { margin:27px 0 0; padding:18px 21px; border-inline-start:4px solid var(--los-primary); border-radius:0 16px 16px 0; color:color-mix(in srgb,var(--los-text) 86%,var(--los-muted)); background:var(--los-surface); font-size:13px; line-height:2; box-shadow:var(--los-shadow-sm); }
.los-question-cloud { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; position:relative; }.los-question-cloud::before { content:"؟"; position:absolute; inset:50% 50% auto auto; translate:50% -50%; width:78px; height:78px; display:grid; place-items:center; z-index:2; border:8px solid var(--los-surface-2); border-radius:50%; color:#fff; background:linear-gradient(145deg,var(--los-primary),#16a8ad); font-size:36px; font-weight:950; box-shadow:0 18px 44px rgba(12,49,87,.22); }
.los-question-cloud span { min-height:112px; display:flex; align-items:center; justify-content:center; padding:22px; border:1px solid var(--los-line); border-radius:22px; background:var(--los-surface); box-shadow:var(--los-shadow-sm); text-align:center; font-size:11.5px; font-weight:800; line-height:1.9; }.los-question-cloud span:nth-child(1),.los-question-cloud span:nth-child(4){transform:translateY(14px)}.los-question-cloud span:nth-child(3),.los-question-cloud span:nth-child(6){transform:translateY(-8px)}

/* 1.6.5 — Origin story video */
.los-story-section { position:relative; overflow:hidden; background:linear-gradient(180deg,var(--los-bg),color-mix(in srgb,var(--los-primary) 4%,var(--los-bg))); }
.los-story-section::before { content:""; position:absolute; width:460px; height:460px; inset:auto -250px -250px auto; border-radius:50%; background:radial-gradient(circle,color-mix(in srgb,var(--los-accent) 16%,transparent),transparent 68%); pointer-events:none; }
.los-story-grid { position:relative; display:grid; grid-template-columns:minmax(0,.78fr) minmax(520px,1.22fr); align-items:center; gap:clamp(38px,7vw,88px); }
.los-story-copy h2 { max-width:650px; margin:10px 0 18px; font-size:clamp(30px,4.1vw,48px); line-height:1.5; letter-spacing:-1.2px; }
.los-story-copy p { max-width:680px; margin:0 0 13px; color:var(--los-muted); font-size:13px; line-height:2.15; }
.los-story-copy .los-btn { margin-top:16px; }
.los-story-video-card { overflow:hidden; border:1px solid color-mix(in srgb,var(--los-primary) 22%,var(--los-line)); border-radius:28px; background:var(--los-surface); box-shadow:0 30px 80px rgba(12,49,87,.14); }
.los-story-video { position:relative; width:100%; aspect-ratio:16/9; overflow:hidden; background:#07111d; }
.los-story-video iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }
.los-story-video-card__footer { display:flex; align-items:center; gap:13px; padding:17px 20px; border-top:1px solid var(--los-line); background:linear-gradient(135deg,var(--los-surface),var(--los-surface-2)); }
.los-story-video-card__footer>span { flex:0 0 40px; width:40px; height:40px; display:grid; place-items:center; border-radius:13px; color:#fff; background:linear-gradient(135deg,var(--los-primary),var(--los-accent)); font-size:15px; box-shadow:0 10px 24px color-mix(in srgb,var(--los-primary) 22%,transparent); }
.los-story-video-card__footer strong,.los-story-video-card__footer small { display:block; }
.los-story-video-card__footer strong { font-size:12px; }
.los-story-video-card__footer small { margin-top:3px; color:var(--los-muted); font-size:9px; }

.los-layers-section { position:relative; overflow:hidden; }.los-layers-section::before { content:""; position:absolute; inset:15% -10% auto; height:380px; opacity:.35; background:radial-gradient(ellipse at center,color-mix(in srgb,var(--los-primary) 14%,transparent),transparent 68%); pointer-events:none; }
.los-layer-grid { position:relative; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.los-layer-card { position:relative; overflow:hidden; min-height:440px; padding:30px; border:1px solid var(--los-line); border-radius:28px; background:var(--los-surface); box-shadow:var(--los-shadow-sm); }.los-layer-card::after { content:""; position:absolute; inset:auto -60px -70px auto; width:190px; height:190px; border:32px solid color-mix(in srgb,var(--los-primary) 6%,transparent); border-radius:50%; }
.los-layer-number { color:var(--los-muted); font-size:10px; font-weight:900; letter-spacing:2px; }.los-layer-icon { width:58px; height:58px; display:grid; place-items:center; margin:24px 0 21px; border-radius:18px; color:#fff; font-size:25px; font-weight:900; }.los-layer-card--memory .los-layer-icon{background:linear-gradient(135deg,#0c3157,#24608b)}.los-layer-card--intelligence .los-layer-icon{background:linear-gradient(135deg,#0c7185,#16a8ad)}.los-layer-card--advisor .los-layer-icon{background:linear-gradient(135deg,#5646cf,#8a60e5)}
.los-layer-card h3 { margin:0 0 10px; font-size:23px; }.los-layer-card>p { min-height:84px; margin:0; color:var(--los-muted); font-size:12px; line-height:2; }.los-layer-card ul { display:grid; gap:10px; margin:25px 0 0; padding:0; list-style:none; }.los-layer-card li { position:relative; z-index:1; padding-inline-start:20px; color:color-mix(in srgb,var(--los-text) 82%,var(--los-muted)); font-size:10.5px; line-height:1.8; }.los-layer-card li::before { content:""; position:absolute; inset-inline-start:0; top:.72em; width:8px; height:8px; border:2px solid var(--los-primary); border-radius:50%; }
.los-layer-dependency { display:flex; align-items:center; justify-content:center; gap:14px; margin:26px auto 0; padding:15px 22px; width:max-content; max-width:100%; border:1px solid var(--los-line); border-radius:999px; background:var(--los-surface-2); color:var(--los-muted); font-size:10.5px; }.los-layer-dependency i { color:var(--los-primary); font-style:normal; }.los-layer-dependency strong { color:var(--los-primary); }

.los-cycle-section { background:#0d172a; color:#fff; overflow:hidden; }.los-cycle-section .los-section-head>span{color:#60d2d5}.los-cycle-section .los-section-head p{color:#9eabc0}.los-value-cycle { display:grid; grid-template-columns:repeat(7,minmax(0,1fr)); gap:9px; align-items:stretch; }
.los-value-cycle article { position:relative; min-height:195px; padding:22px 16px; border:1px solid rgba(255,255,255,.1); border-radius:21px; background:linear-gradient(160deg,rgba(255,255,255,.075),rgba(255,255,255,.025)); }.los-value-cycle b { display:block; color:#6dd7da; font-size:10px; letter-spacing:1.5px; }.los-value-cycle strong { display:block; margin:32px 0 10px; font-size:14px; line-height:1.65; }.los-value-cycle small { display:block; color:#9eabc0; font-size:9px; line-height:1.9; }.los-value-cycle i { position:absolute; inset-inline-end:-15px; top:50%; z-index:3; width:29px; height:29px; display:grid; place-items:center; translate:0 -50%; border:4px solid #0d172a; border-radius:50%; color:#0d172a; background:#60d2d5; font-style:normal; font-weight:950; }
.los-compounding-note { display:flex; align-items:center; gap:18px; max-width:940px; margin:30px auto 0; padding:18px 22px; border:1px solid rgba(96,210,213,.25); border-radius:20px; background:rgba(96,210,213,.07); }.los-compounding-note>span { flex:0 0 46px; width:46px; height:46px; display:grid; place-items:center; border-radius:15px; color:#08252b; background:#60d2d5; font-size:24px; }.los-compounding-note p { margin:0; color:#bac6d8; font-size:11px; line-height:2; }.los-compounding-note strong{color:#fff}

.los-difference-section { background:linear-gradient(180deg,var(--los-bg),color-mix(in srgb,var(--los-primary) 4%,var(--los-bg))); }.los-insight-examples { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; }.los-insight-examples article { position:relative; min-height:340px; display:flex; flex-direction:column; padding:31px; overflow:hidden; border:1px solid var(--los-line); border-radius:27px; background:var(--los-surface); box-shadow:var(--los-shadow-sm); }.los-insight-examples article::before { content:"“"; position:absolute; inset-inline-end:22px; top:4px; color:color-mix(in srgb,var(--los-primary) 10%,transparent); font-family:Georgia,serif; font-size:138px; line-height:1; }.los-insight-examples article>span { width:max-content; padding:7px 10px; border-radius:999px; color:var(--los-primary); background:color-mix(in srgb,var(--los-primary) 9%,var(--los-surface)); font-size:9px; font-weight:900; }.los-insight-examples blockquote { position:relative; z-index:1; flex:1; display:flex; align-items:center; margin:24px 0; padding:0; font-size:clamp(17px,2vw,23px); font-weight:850; line-height:2; letter-spacing:-.3px; }.los-insight-examples footer { display:flex; justify-content:space-between; gap:20px; padding-top:17px; border-top:1px solid var(--los-line); }.los-insight-examples footer b,.los-insight-examples footer small { font-size:9.5px; }.los-insight-examples footer small { color:var(--los-muted); text-align:left; }

.los-memory-section .los-feature-grid { grid-template-columns:repeat(4,minmax(0,1fr)); }.los-memory-section .los-feature { min-height:220px; }.los-memory-section .los-feature p { font-size:10.5px; }
.los-cta--brand { background:radial-gradient(circle at 12% 20%,rgba(96,210,213,.28),transparent 30%),linear-gradient(135deg,#0c3157,#263f81 58%,#523fc6); }.los-cta--brand h2 { max-width:820px; line-height:1.55; }

@media (max-width:1100px){
    .los-hero--life-intelligence .los-hero-grid{grid-template-columns:1fr;}.los-life-map{max-width:820px;margin-inline:auto;transform:none}.los-problem-grid{grid-template-columns:1fr}.los-problem-copy{text-align:center}.los-problem-copy>p{margin-inline:auto}.los-problem-copy blockquote{text-align:right}.los-question-cloud{max-width:760px;margin:auto}.los-story-grid{grid-template-columns:1fr}.los-story-copy{text-align:center}.los-story-copy h2,.los-story-copy p{margin-inline:auto}.los-story-video-card{max-width:860px;width:100%;margin-inline:auto}.los-value-cycle{grid-template-columns:repeat(4,1fr)}.los-value-cycle article:nth-child(4) i{display:none}.los-memory-section .los-feature-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:900px){
    .los-story-grid{gap:28px}.los-layer-grid{grid-template-columns:1fr}.los-layer-card{min-height:0}.los-layer-card>p{min-height:0}.los-insight-examples{grid-template-columns:1fr}.los-value-cycle{grid-template-columns:repeat(2,1fr)}.los-value-cycle article:nth-child(even) i{display:none}.los-layer-dependency{border-radius:22px;flex-wrap:wrap}
}
@media (max-width:620px){
    .los-hero--life-intelligence{padding-top:48px}.los-story-copy{text-align:right}.los-story-video-card{border-radius:20px}.los-story-video-card__footer{padding:14px}.los-story-video-card__footer>span{width:36px;height:36px;flex-basis:36px}.los-hero--life-intelligence .los-hero-copy{text-align:right}.los-hero--life-intelligence .los-hero-copy>p{font-size:13px}.los-hero--life-intelligence .los-hero-actions,.los-hero--life-intelligence .los-trust-row{justify-content:stretch}.los-life-map{padding:15px;border-radius:23px}.los-life-map__header{display:grid}.los-life-map__signals{grid-template-columns:repeat(2,1fr)}.los-life-map__insight{padding:15px}.los-life-map__action{align-items:flex-start;display:grid}.los-life-map__action button{width:100%}.los-question-cloud{grid-template-columns:1fr}.los-question-cloud::before{display:none}.los-question-cloud span,.los-question-cloud span:nth-child(n){min-height:84px;transform:none}.los-value-cycle{grid-template-columns:1fr}.los-value-cycle article{min-height:150px}.los-value-cycle article i{display:none!important}.los-compounding-note{align-items:flex-start}.los-insight-examples article{min-height:0;padding:23px 20px}.los-insight-examples blockquote{font-size:16px}.los-insight-examples footer{display:grid}.los-insight-examples footer small{text-align:right}.los-memory-section .los-feature-grid{grid-template-columns:1fr}.los-layer-dependency{display:grid;width:100%;text-align:center}.los-layer-dependency i{transform:rotate(-90deg)}
}


/* Public legal and Google Play policy pages */
.los-legal-page { padding: 54px 0 94px; background: linear-gradient(180deg, color-mix(in srgb, var(--los-primary) 5%, var(--los-bg)), var(--los-bg) 360px); }
.los-legal-shell { max-width: 1120px; }
.los-legal-hero { max-width: 850px; margin: 0 auto 34px; text-align: center; }
.los-legal-eyebrow { display: inline-flex; padding: 7px 12px; border: 1px solid color-mix(in srgb, var(--los-primary) 18%, var(--los-line)); border-radius: 999px; background: color-mix(in srgb, var(--los-primary) 8%, var(--los-surface)); color: var(--los-primary); font-size: 10px; font-weight: 900; }
.los-legal-hero h1 { margin: 14px 0 10px; font-size: clamp(31px, 5vw, 48px); line-height: 1.35; letter-spacing: -1.4px; }
.los-legal-hero > p { max-width: 760px; margin: 0 auto; color: var(--los-muted); font-size: 14px; line-height: 2; }
.los-legal-meta { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 17px; }
.los-legal-meta span { padding: 5px 10px; border-radius: 9px; background: var(--los-surface); border: 1px solid var(--los-line); color: var(--los-muted); font-size: 9.5px; }
.los-legal-layout { display: grid; grid-template-columns: minmax(0, 1fr) 230px; gap: 24px; align-items: start; }
.los-legal-content, .los-delete-form-card { background: var(--los-surface); border: 1px solid var(--los-line); border-radius: 24px; box-shadow: var(--los-shadow-sm); }
.los-legal-content { padding: clamp(24px, 5vw, 48px); }
.los-legal-content section { scroll-margin-top: calc(var(--los-header-height) + 26px); }
.los-legal-content section + section { margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--los-line); }
.los-legal-content h2 { margin: 0 0 12px; font-size: 21px; line-height: 1.55; }
.los-legal-content p, .los-legal-content li { color: color-mix(in srgb, var(--los-text) 78%, var(--los-muted)); font-size: 12.5px; line-height: 2.1; }
.los-legal-content ul { margin: 8px 0 0; padding-inline-start: 23px; }
.los-legal-content li::marker { color: var(--los-primary); }
.los-legal-toc { position: sticky; top: calc(var(--los-header-height) + 20px); display: grid; gap: 4px; padding: 18px; background: color-mix(in srgb, var(--los-surface) 92%, transparent); border: 1px solid var(--los-line); border-radius: 18px; box-shadow: var(--los-shadow-sm); backdrop-filter: blur(14px); }
.los-legal-toc strong { margin-bottom: 7px; font-size: 12px; }
.los-legal-toc a { padding: 7px 9px; border-radius: 9px; color: var(--los-muted); text-decoration: none; font-size: 10.5px; }
.los-legal-toc a:hover { color: var(--los-primary); background: color-mix(in srgb, var(--los-primary) 8%, var(--los-surface)); }
.los-legal-note, .los-legal-warning { margin: 20px 0 0; padding: 16px 18px; border-radius: 15px; line-height: 2; font-size: 11.5px; }
.los-legal-note { background: color-mix(in srgb, var(--los-info) 8%, var(--los-surface)); border: 1px solid color-mix(in srgb, var(--los-info) 20%, var(--los-line)); color: color-mix(in srgb, var(--los-text) 82%, var(--los-info)); }
.los-legal-note a, .los-inline-link { color: var(--los-primary); font-weight: 800; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.los-legal-warning { background: color-mix(in srgb, var(--los-warning) 9%, var(--los-surface)); border: 1px solid color-mix(in srgb, var(--los-warning) 25%, var(--los-line)); }
.los-legal-warning strong { color: var(--los-warning); }
.los-legal-warning p { margin-bottom: 0; }
.los-legal-table-wrap { overflow-x: auto; border: 1px solid var(--los-line); border-radius: 15px; }
.los-legal-table { width: 100%; min-width: 680px; border-collapse: collapse; }
.los-legal-table th, .los-legal-table td { padding: 13px 15px; text-align: right; border-bottom: 1px solid var(--los-line); vertical-align: top; font-size: 10.5px; line-height: 1.9; }
.los-legal-table th { background: var(--los-surface-2); color: var(--los-text); }
.los-legal-table td { color: var(--los-muted); }
.los-legal-table tr:last-child td { border-bottom: 0; }
.los-legal-contact { margin-top: 24px; padding: 24px; border-radius: 20px; background: #111a31; color: #fff; text-align: center; }
.los-legal-contact h2 { margin: 0 0 8px; font-size: 18px; }
.los-legal-contact p { margin: 4px 0; color: #b8c2d7; font-size: 11px; }
.los-legal-contact .los-btn { display: inline-flex; margin-top: 13px; }
.los-delete-grid { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: 24px; align-items: start; }
.los-delete-form-card { position: sticky; top: calc(var(--los-header-height) + 20px); padding: 28px; }
.los-delete-form-card h2 { margin: 12px 0 8px; font-size: 24px; }
.los-delete-form-card > p { color: var(--los-muted); font-size: 11.5px; line-height: 2; }
.los-delete-path { padding: 14px 16px; border: 1px dashed color-mix(in srgb, var(--los-primary) 35%, var(--los-line)); border-radius: 13px; background: color-mix(in srgb, var(--los-primary) 6%, var(--los-surface)); color: var(--los-primary); font-weight: 900; text-align: center; }
.los-delete-form { display: grid; gap: 15px; margin-top: 22px; }
.los-delete-form label > span { display: block; margin-bottom: 7px; color: var(--los-text); font-size: 10.5px; font-weight: 800; }
.los-delete-form input[type="text"] { width: 100%; padding: 13px 14px; border: 1px solid var(--los-line); border-radius: 12px; background: var(--los-surface-2); color: var(--los-text); outline: none; }
.los-delete-form input[type="text"]:focus { border-color: var(--los-primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--los-primary) 12%, transparent); }
.los-delete-confirm { display: flex; align-items: flex-start; gap: 9px; }
.los-delete-confirm input { margin-top: 5px; }
.los-delete-confirm span { margin: 0 !important; color: var(--los-muted) !important; font-weight: 500 !important; line-height: 1.9; }
.los-btn-danger { width: 100%; justify-content: center; background: var(--los-danger); border-color: var(--los-danger); }
.los-btn-danger:hover { background: color-mix(in srgb, var(--los-danger) 86%, #000); }
.los-form-message { margin-top: 17px; padding: 14px; border-radius: 13px; font-size: 10.5px; }
.los-form-message p { margin: 0 0 4px; color: inherit; }
.los-form-message.is-success { color: var(--los-success); background: color-mix(in srgb, var(--los-success) 9%, var(--los-surface)); border: 1px solid color-mix(in srgb, var(--los-success) 25%, var(--los-line)); }
.los-form-message.is-error { color: var(--los-danger); background: color-mix(in srgb, var(--los-danger) 8%, var(--los-surface)); border: 1px solid color-mix(in srgb, var(--los-danger) 23%, var(--los-line)); }
.los-delete-support { margin: 18px 0 0; padding-top: 15px; border-top: 1px solid var(--los-line); text-align: center; }
.los-delete-support a { color: var(--los-primary); font-weight: 800; }
.los-honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; }
@media (max-width: 900px) { .los-legal-layout, .los-delete-grid { grid-template-columns: 1fr; }.los-legal-toc { position: static; grid-template-columns: repeat(2, minmax(0,1fr)); }.los-delete-form-card { position: static; } }
@media (max-width: 650px) { .los-legal-page { padding-top: 34px; }.los-legal-hero { text-align: right; }.los-legal-meta { justify-content: flex-start; }.los-legal-content, .los-delete-form-card { border-radius: 18px; }.los-legal-toc { grid-template-columns: 1fr; }.los-legal-contact { text-align: right; } }

.los-apk-checksum { min-height:0!important; margin:14px 0 0; padding:12px 14px; border:1px dashed var(--los-line); border-radius:14px; background:var(--los-surface-2); }
.los-apk-checksum strong { display:block; margin-bottom:7px; color:var(--los-muted); font-size:10px; }
.los-apk-checksum code { display:block; direction:ltr; overflow-wrap:anywhere; color:var(--los-text); font-size:9px; line-height:1.65; }

/* Blog and training center — 1.6.4 */
.los-blog-hero { position:relative; overflow:hidden; padding:76px 0 58px; border-bottom:1px solid var(--los-line); background:radial-gradient(circle at 80% 15%,color-mix(in srgb,var(--los-accent) 17%,transparent),transparent 35%),linear-gradient(180deg,var(--los-surface),var(--los-bg)); }
.los-blog-hero::after { content:""; position:absolute; inset:0; opacity:.18; pointer-events:none; background-image:linear-gradient(var(--los-line) 1px,transparent 1px),linear-gradient(90deg,var(--los-line) 1px,transparent 1px); background-size:42px 42px; mask-image:linear-gradient(to bottom,#000,transparent); }
.los-blog-hero__inner { position:relative; z-index:1; display:grid; grid-template-columns:minmax(0,1fr) 390px; gap:55px; align-items:end; }
.los-blog-kicker { display:inline-flex; padding:7px 12px; border:1px solid color-mix(in srgb,var(--los-primary) 22%,var(--los-line)); border-radius:99px; background:color-mix(in srgb,var(--los-primary) 8%,var(--los-surface)); color:var(--los-primary); font-size:11px; font-weight:900; }
.los-blog-hero h1 { margin:17px 0 10px; font-size:clamp(35px,5vw,55px); line-height:1.35; letter-spacing:-1.5px; }
.los-blog-hero p { max-width:720px; margin:0; color:var(--los-muted); font-size:14px; line-height:2.05; }
.los-blog-search { display:flex; gap:8px; padding:7px; border:1px solid var(--los-line); border-radius:17px; background:color-mix(in srgb,var(--los-surface) 92%,transparent); box-shadow:var(--los-shadow-sm); }
.los-blog-search input { min-width:0; flex:1; padding:10px 12px; border:0; outline:0; background:transparent; color:var(--los-text); font-size:12px; }
.los-blog-search button { flex:0 0 auto; padding:9px 17px; border:0; border-radius:12px; background:linear-gradient(135deg,var(--los-primary),var(--los-primary-2)); color:#fff; cursor:pointer; font-weight:900; }
.los-blog-page { padding:36px 0 94px; }
.los-blog-filters { display:flex; align-items:center; gap:8px; overflow-x:auto; padding:4px 2px 15px; scrollbar-width:thin; }
.los-blog-filters a { display:inline-flex; flex:0 0 auto; align-items:center; gap:7px; min-height:39px; padding:7px 13px; border:1px solid var(--los-line); border-radius:12px; background:var(--los-surface); color:var(--los-muted); text-decoration:none; font-size:10.5px; font-weight:800; }
.los-blog-filters a span { min-width:21px; height:21px; display:grid; place-items:center; padding-inline:5px; border-radius:8px; background:var(--los-surface-2); font-size:9px; }
.los-blog-filters a:hover,.los-blog-filters a.is-active { border-color:color-mix(in srgb,var(--los-primary) 35%,var(--los-line)); background:color-mix(in srgb,var(--los-primary) 8%,var(--los-surface)); color:var(--los-primary); }
.los-blog-toolbar { display:flex; justify-content:space-between; align-items:end; gap:20px; margin:22px 0; }
.los-blog-toolbar h2 { margin:0 0 3px; font-size:24px; }
.los-blog-toolbar p { margin:0; color:var(--los-muted); font-size:10.5px; }
.los-blog-toolbar>a { color:var(--los-primary); font-size:10.5px; font-weight:800; text-underline-offset:4px; }
.los-blog-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; }
.los-blog-card { min-width:0; overflow:hidden; border:1px solid var(--los-line); border-radius:22px; background:var(--los-surface); box-shadow:var(--los-shadow-sm); transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease; }
.los-blog-card:hover { transform:translateY(-4px); border-color:color-mix(in srgb,var(--los-primary) 27%,var(--los-line)); box-shadow:0 22px 55px rgba(17,24,45,.11); }
.los-blog-card__media { display:block; height:205px; overflow:hidden; background:var(--los-surface-2); text-decoration:none; }
.los-blog-card__media img { width:100%; height:100%; object-fit:cover; transition:transform .35s ease; }
.los-blog-card:hover .los-blog-card__media img { transform:scale(1.035); }
.los-blog-card__placeholder { width:100%; height:100%; display:grid; place-content:center; text-align:center; background:radial-gradient(circle at 75% 25%,color-mix(in srgb,var(--los-accent) 27%,transparent),transparent 32%),linear-gradient(135deg,color-mix(in srgb,var(--los-primary) 12%,var(--los-surface)),var(--los-surface-2)); }
.los-blog-card__placeholder b,.los-blog-card__placeholder small { display:block; }
.los-blog-card__placeholder b { color:var(--los-primary); font-size:23px; }
.los-blog-card__placeholder small { margin-top:5px; color:var(--los-muted); font-size:10px; }
.los-blog-card__body { padding:21px 21px 23px; }
.los-blog-card__meta { min-height:24px; display:flex; align-items:center; gap:7px; flex-wrap:wrap; color:var(--los-muted); font-size:8.8px; }
.los-blog-card__meta>*+*::before { content:"•"; margin-inline-end:7px; color:color-mix(in srgb,var(--los-muted) 55%,transparent); }
.los-blog-card__meta a { color:var(--los-primary); text-decoration:none; font-weight:900; }
.los-blog-card h2 { margin:10px 0 7px; font-size:18px; line-height:1.65; }
.los-blog-card h2 a { text-decoration:none; }
.los-blog-card h2 a:hover { color:var(--los-primary); }
.los-blog-card p { min-height:74px; margin:0; color:var(--los-muted); font-size:11.2px; line-height:2; }
.los-blog-card__more { display:inline-flex; align-items:center; gap:7px; margin-top:13px; color:var(--los-primary); text-decoration:none; font-size:10.5px; font-weight:900; }
.los-blog-card__more span { transition:transform .2s ease; }
.los-blog-card__more:hover span { transform:translateX(-4px); }
.los-blog-pagination { margin-top:40px; }
.los-blog-pagination .page-numbers { display:flex; justify-content:center; gap:7px; padding:0; list-style:none; }
.los-blog-pagination a,.los-blog-pagination span { min-width:39px; height:39px; display:grid; place-items:center; padding:0 11px; border:1px solid var(--los-line); border-radius:11px; background:var(--los-surface); color:var(--los-muted); text-decoration:none; font-size:10px; font-weight:900; }
.los-blog-pagination .current,.los-blog-pagination a:hover { border-color:var(--los-primary); background:var(--los-primary); color:#fff; }
.los-blog-empty { padding:65px 25px; border:1px dashed var(--los-line); border-radius:24px; background:var(--los-surface); text-align:center; }
.los-blog-empty>span { display:block; color:var(--los-primary); font-size:42px; }
.los-blog-empty h2 { margin:7px 0 3px; }
.los-blog-empty p { margin:0 0 18px; color:var(--los-muted); font-size:12px; }
.los-single-page { padding:36px 0 94px; background:linear-gradient(180deg,color-mix(in srgb,var(--los-primary) 4%,var(--los-bg)),var(--los-bg) 310px); }
.los-single-shell { max-width:1120px; }
.los-breadcrumb { display:flex; align-items:center; gap:8px; min-width:0; margin-bottom:24px; color:var(--los-muted); font-size:9.5px; }
.los-breadcrumb a { text-decoration:none; }
.los-breadcrumb a:hover { color:var(--los-primary); }
.los-breadcrumb b { overflow:hidden; text-overflow:ellipsis; white-space:nowrap; color:var(--los-text); }
.los-single-article { overflow:hidden; border:1px solid var(--los-line); border-radius:28px; background:var(--los-surface); box-shadow:var(--los-shadow-sm); }
.los-single-header { max-width:870px; margin:auto; padding:clamp(32px,6vw,65px) clamp(25px,6vw,70px) 34px; text-align:center; }
.los-single-categories { display:flex; justify-content:center; gap:7px; flex-wrap:wrap; }
.los-single-categories a { padding:5px 10px; border:1px solid color-mix(in srgb,var(--los-primary) 20%,var(--los-line)); border-radius:99px; background:color-mix(in srgb,var(--los-primary) 7%,var(--los-surface)); color:var(--los-primary); text-decoration:none; font-size:9px; font-weight:900; }
.los-single-header h1 { margin:15px 0 12px; font-size:clamp(31px,5vw,48px); line-height:1.5; letter-spacing:-1px; }
.los-single-lead { max-width:760px; margin:0 auto; color:var(--los-muted); font-size:14px; line-height:2; }
.los-single-meta { display:flex; justify-content:center; align-items:center; gap:14px; flex-wrap:wrap; margin-top:22px; color:var(--los-muted); font-size:9.5px; }
.los-single-author { display:inline-flex; align-items:center; gap:8px; color:var(--los-text); }
.los-single-author img { border-radius:12px; }
.los-single-cover { width:min(980px,calc(100% - 42px)); max-height:530px; overflow:hidden; margin:0 auto; border-radius:22px; background:var(--los-surface-2); }
.los-single-cover img { width:100%; height:100%; object-fit:cover; display:block; }
.los-single-layout { display:grid; grid-template-columns:minmax(0,1fr) 230px; gap:35px; align-items:start; max-width:980px; margin:auto; padding:45px 0 55px; }
.los-single-content { min-width:0; padding-inline-start:4px; color:color-mix(in srgb,var(--los-text) 88%,var(--los-muted)); font-size:14px; line-height:2.15; }
.los-single-content h2,.los-single-content h3,.los-single-content h4 { scroll-margin-top:calc(var(--los-header-height) + 20px); line-height:1.6; }
.los-single-content h2 { margin:40px 0 13px; font-size:26px; }
.los-single-content h3 { margin:30px 0 11px; font-size:21px; }
.los-single-content p { margin:0 0 21px; }
.los-single-content a { color:var(--los-primary); text-underline-offset:4px; }
.los-single-content img { height:auto; border-radius:17px; }
.los-single-content blockquote { margin:28px 0; padding:18px 21px; border-inline-start:4px solid var(--los-accent); border-radius:14px; background:color-mix(in srgb,var(--los-accent) 7%,var(--los-surface)); color:var(--los-text); }
.los-single-content code { padding:2px 6px; border-radius:6px; background:var(--los-surface-2); direction:ltr; font-size:.88em; }
.los-single-content pre { max-width:100%; overflow:auto; padding:18px; border-radius:14px; background:#10182a; color:#eef3ff; direction:ltr; text-align:left; line-height:1.8; }
.los-single-content table { width:100%; display:block; overflow-x:auto; border-collapse:collapse; }
.los-single-content th,.los-single-content td { padding:10px 13px; border:1px solid var(--los-line); text-align:right; }
.los-single-aside { position:sticky; top:calc(var(--los-header-height) + 22px); }
.los-single-aside__card { display:grid; gap:10px; padding:21px; border:1px solid var(--los-line); border-radius:18px; background:var(--los-surface-2); }
.los-single-aside__card>strong { color:var(--los-primary); font-size:16px; }
.los-single-aside__card p { margin:0 0 5px; color:var(--los-muted); font-size:10.5px; line-height:1.9; }
.los-single-aside__card .los-btn { width:100%; font-size:10px; }
.los-single-footer { display:flex; justify-content:space-between; align-items:flex-start; gap:25px; padding:24px clamp(25px,6vw,70px); border-top:1px solid var(--los-line); background:var(--los-surface-2); }
.los-single-tags,.los-single-share { display:flex; align-items:center; gap:8px; flex-wrap:wrap; font-size:9.5px; }
.los-single-tags strong,.los-single-share strong { color:var(--los-muted); }
.los-single-tags a,.los-single-share a { padding:5px 9px; border:1px solid var(--los-line); border-radius:8px; background:var(--los-surface); color:var(--los-text); text-decoration:none; }
.los-single-tags a:hover,.los-single-share a:hover { color:var(--los-primary); border-color:color-mix(in srgb,var(--los-primary) 30%,var(--los-line)); }
.los-post-navigation { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:15px; margin-top:22px; }
.los-post-navigation>div { min-height:94px; padding:18px 20px; border:1px solid var(--los-line); border-radius:17px; background:var(--los-surface); }
.los-post-navigation>div:last-child { text-align:left; }
.los-post-navigation small { display:block; margin-bottom:4px; color:var(--los-muted); font-size:9px; }
.los-post-navigation a { color:var(--los-text); text-decoration:none; font-size:12px; font-weight:900; line-height:1.8; }
.los-post-navigation a:hover { color:var(--los-primary); }
.los-related-posts { margin-top:58px; }
.los-related-posts>header { margin-bottom:20px; }
.los-related-posts>header span { color:var(--los-primary); font-size:10px; font-weight:900; }
.los-related-posts>header h2 { margin:4px 0 0; font-size:27px; }
@media (max-width:980px) { .los-blog-hero__inner { grid-template-columns:1fr; gap:28px; }.los-blog-search { max-width:620px; }.los-blog-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }.los-single-layout { grid-template-columns:1fr; padding-inline:clamp(24px,6vw,55px); }.los-single-aside { position:static; }.los-single-aside__card { grid-template-columns:1fr 1fr; }.los-single-aside__card>strong,.los-single-aside__card>p { grid-column:1/-1; } }
@media (max-width:650px) { .los-blog-hero { padding:45px 0 39px; }.los-blog-hero h1 { font-size:34px; }.los-blog-hero__inner { gap:22px; }.los-blog-search { display:grid; }.los-blog-search button { min-height:42px; }.los-blog-page { padding-top:24px; }.los-blog-toolbar { align-items:flex-start; }.los-blog-toolbar h2 { font-size:20px; }.los-blog-grid { grid-template-columns:1fr; }.los-blog-card__media { height:220px; }.los-blog-card p { min-height:0; }.los-single-page { padding-top:22px; }.los-breadcrumb b { max-width:120px; }.los-single-article { border-radius:20px; }.los-single-header { text-align:right; }.los-single-categories,.los-single-meta { justify-content:flex-start; }.los-single-cover { width:calc(100% - 24px); border-radius:15px; }.los-single-layout { padding:28px 20px 36px; }.los-single-content { font-size:13px; }.los-single-aside__card { grid-template-columns:1fr; }.los-single-footer { display:grid; }.los-post-navigation { grid-template-columns:1fr; }.los-post-navigation>div:last-child { text-align:right; } }

/* Tutorial article template — 1.6.8 */
.los-tutorial-page{padding:28px 0 96px;background:linear-gradient(180deg,color-mix(in srgb,var(--los-primary) 4%,var(--los-bg)),var(--los-bg) 420px)}
.los-tutorial-shell{max-width:1240px}
.los-tutorial-breadcrumb{margin-bottom:16px}
.los-tutorial-article{overflow:hidden;border:1px solid var(--los-line);border-radius:28px;background:var(--los-surface);box-shadow:var(--los-shadow-sm)}
.los-tutorial-hero{display:grid;grid-template-columns:minmax(0,1.45fr) minmax(310px,.75fr);gap:42px;align-items:center;padding:44px 48px;border-bottom:1px solid var(--los-line);background:radial-gradient(circle at 18% 15%,color-mix(in srgb,var(--los-accent) 13%,transparent),transparent 34%),linear-gradient(135deg,var(--los-surface),color-mix(in srgb,var(--los-primary) 3%,var(--los-surface)))}
.los-tutorial-kicker{display:inline-flex;align-items:center;min-height:30px;padding:6px 12px;border:1px solid color-mix(in srgb,var(--los-primary) 20%,var(--los-line));border-radius:999px;background:color-mix(in srgb,var(--los-primary) 7%,var(--los-surface));color:var(--los-primary);font-size:10px;font-weight:900}
.los-tutorial-hero h1{margin:15px 0 9px;font-size:clamp(32px,4.7vw,55px);line-height:1.42;letter-spacing:-1.3px}
.los-tutorial-lead{max-width:760px;margin:0;color:var(--los-muted);font-size:14px;line-height:2.05}
.los-tutorial-meta{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-top:24px}
.los-tutorial-meta span{display:flex;align-items:center;gap:8px;min-height:42px;padding:9px 12px;border:1px solid var(--los-line);border-radius:12px;background:color-mix(in srgb,var(--los-surface) 94%,transparent);color:var(--los-muted);font-size:10px;font-weight:700}
.los-tutorial-meta span b{width:22px;height:22px;display:grid;place-items:center;border-radius:8px;background:var(--los-surface-2);color:var(--los-primary);font-size:11px}
.los-tutorial-hero__cta{display:inline-flex;width:auto;gap:8px;margin-top:20px}
.los-tutorial-hero__visual{min-width:0}
.los-tutorial-hero__visual>img{width:100%;max-height:315px;display:block;object-fit:cover;border:1px solid var(--los-line);border-radius:22px;box-shadow:0 18px 45px rgba(17,24,45,.1)}
.los-tutorial-brand-visual{min-height:270px;display:grid;place-items:center;align-content:center;padding:26px;border:1px solid var(--los-line);border-radius:24px;background:radial-gradient(circle at 50% 40%,color-mix(in srgb,var(--los-accent) 24%,transparent),transparent 38%),linear-gradient(145deg,color-mix(in srgb,var(--los-primary) 8%,var(--los-surface)),var(--los-surface-2));text-align:center}
.los-tutorial-brand-visual img{width:126px;height:126px;object-fit:contain;filter:drop-shadow(0 15px 22px rgba(0,65,92,.16))}
.los-tutorial-brand-visual strong,.los-tutorial-brand-visual small{display:block}
.los-tutorial-brand-visual strong{margin-top:8px;color:var(--los-primary);font-size:27px}
.los-tutorial-brand-visual small{margin-top:2px;color:var(--los-muted);font-size:11px}
.los-tutorial-layout{display:grid;grid-template-columns:minmax(0,1fr) 315px;gap:28px;align-items:start;padding:30px 34px 42px}
.los-tutorial-main{min-width:0;display:grid;gap:18px}
.los-tutorial-video-card{overflow:hidden;padding:14px;border:1px solid var(--los-line);border-radius:20px;background:var(--los-surface);box-shadow:var(--los-shadow-sm)}
.los-tutorial-video-card video{width:100%;aspect-ratio:16/9;display:block;border-radius:14px;background:#071932}
.los-tutorial-embed{position:relative;overflow:hidden;border-radius:14px;padding-top:56.25%;background:#071932}
.los-tutorial-embed iframe,.los-tutorial-embed>div,.los-tutorial-embed video{position:absolute!important;inset:0;width:100%!important;height:100%!important;border:0}
.los-tutorial-inline-note{display:flex;gap:12px;align-items:flex-start;padding:15px 17px;border:1px solid color-mix(in srgb,var(--los-accent) 28%,var(--los-line));border-radius:14px;background:color-mix(in srgb,var(--los-accent) 7%,var(--los-surface))}
.los-tutorial-inline-note>span{width:24px;height:24px;display:grid;place-items:center;flex:0 0 auto;border-radius:50%;background:var(--los-accent);color:#fff;font-size:12px;font-weight:900}
.los-tutorial-inline-note p{margin:0;color:var(--los-muted);font-size:11px;line-height:1.95}
.los-tutorial-prerequisite{padding:20px;border:1px solid var(--los-line);border-radius:17px;background:var(--los-surface-2)}
.los-tutorial-section-title{display:flex;align-items:center;gap:10px}
.los-tutorial-section-title>span{width:31px;height:31px;display:grid;place-items:center;border-radius:10px;background:color-mix(in srgb,var(--los-primary) 9%,var(--los-surface));color:var(--los-primary);font-weight:900}
.los-tutorial-section-title h2{margin:0;font-size:17px}
.los-tutorial-prerequisite p{margin:11px 41px 0 0;color:var(--los-muted);font-size:11px;line-height:2}
.los-tutorial-content{padding:4px 2px 16px;color:color-mix(in srgb,var(--los-text) 88%,var(--los-muted));font-size:14px;line-height:2.18}
.los-tutorial-content>*:first-child{margin-top:0}
.los-tutorial-content h2{position:relative;margin:40px 0 17px;padding:0 44px 0 0;font-size:26px;line-height:1.65}
.los-tutorial-content h2::before{content:"";position:absolute;right:0;top:.2em;width:31px;height:31px;border-radius:10px;background:linear-gradient(135deg,var(--los-primary),var(--los-primary-2));box-shadow:0 8px 18px color-mix(in srgb,var(--los-primary) 24%,transparent)}
.los-tutorial-content h2::after{content:"";position:absolute;right:10px;top:calc(.2em + 9px);width:10px;height:6px;border-right:2px solid #fff;border-bottom:2px solid #fff;transform:rotate(45deg)}
.los-tutorial-content h3{margin:30px 0 12px;font-size:20px;line-height:1.7}
.los-tutorial-content p{margin:0 0 20px}
.los-tutorial-content ul,.los-tutorial-content ol{margin:10px 0 23px;padding-right:24px}
.los-tutorial-content li{margin:6px 0}
.los-tutorial-content img{width:auto;max-width:100%;height:auto;border:1px solid var(--los-line);border-radius:17px;box-shadow:var(--los-shadow-sm)}
.los-tutorial-content figure{margin:24px 0}
.los-tutorial-content figcaption{margin-top:8px;color:var(--los-muted);font-size:9.5px;text-align:center}
.los-tutorial-content blockquote{margin:28px 0;padding:19px 21px;border:1px solid color-mix(in srgb,var(--los-accent) 25%,var(--los-line));border-right:4px solid var(--los-accent);border-radius:15px;background:color-mix(in srgb,var(--los-accent) 7%,var(--los-surface));color:var(--los-text)}
.los-tutorial-content details{margin:10px 0;border:1px solid var(--los-line);border-radius:13px;background:var(--los-surface)}
.los-tutorial-content details summary{cursor:pointer;padding:15px 17px;font-weight:900}
.los-tutorial-content details>*:not(summary){padding-inline:17px}
.los-tutorial-content .wp-block-group{margin:22px 0;padding:21px;border:1px solid var(--los-line);border-radius:17px;background:var(--los-surface)}
.los-tutorial-content .elementor-widget-container img{border-radius:17px}
.los-tutorial-aside{min-width:0;display:grid;gap:16px}
.los-tutorial-side-card{overflow:hidden;padding:19px;border:1px solid var(--los-line);border-radius:17px;background:var(--los-surface);box-shadow:var(--los-shadow-sm)}
.los-tutorial-side-card header{display:flex;align-items:center;gap:9px;margin-bottom:13px}
.los-tutorial-side-card header>span{width:29px;height:29px;display:grid;place-items:center;flex:0 0 auto;border-radius:9px;background:var(--los-surface-2);color:var(--los-primary);font-size:13px;font-weight:900}
.los-tutorial-side-card h2{margin:0;font-size:15px;line-height:1.7}
.los-tutorial-side-card p{margin:0;color:var(--los-muted);font-size:10.7px;line-height:2}
.los-tutorial-side-card ul,.los-tutorial-side-card ol{margin:0;padding-right:20px;color:var(--los-muted);font-size:10.5px;line-height:1.95}
.los-tutorial-side-card li{margin:6px 0}
.los-tutorial-side-card--toc{position:sticky;top:calc(var(--los-header-height) + 18px);z-index:2}
.los-tutorial-side-card--toc ol{padding:0;list-style:none}
.los-tutorial-side-card--toc li{margin:0}
.los-tutorial-side-card--toc li+li{border-top:1px solid color-mix(in srgb,var(--los-line) 75%,transparent)}
.los-tutorial-side-card--toc a{display:flex;align-items:center;gap:9px;padding:9px 0;color:var(--los-muted);text-decoration:none;font-size:10px;line-height:1.65}
.los-tutorial-side-card--toc a:hover{color:var(--los-primary)}
.los-tutorial-side-card--toc a b{width:24px;height:24px;display:grid;place-items:center;flex:0 0 auto;border:1px solid var(--los-line);border-radius:50%;background:var(--los-surface-2);font-size:9px}
.los-tutorial-side-card--toc li.is-level-3 a{padding-right:15px;font-size:9.4px}
.los-tutorial-check-list{padding:0!important;list-style:none}
.los-tutorial-check-list li{position:relative;padding-right:22px}
.los-tutorial-check-list li::before{content:"✓";position:absolute;right:0;top:.15em;width:16px;height:16px;display:grid;place-items:center;border-radius:50%;background:var(--los-accent);color:#fff;font-size:9px;font-weight:900}
.los-tutorial-side-card--tip{border-color:color-mix(in srgb,#e8a317 35%,var(--los-line));background:color-mix(in srgb,#fff2c7 48%,var(--los-surface))}
.los-tutorial-side-card--tip header>span{background:#fff3c9;color:#b57600}
.los-tutorial-side-card--example{border-color:color-mix(in srgb,#2979ff 26%,var(--los-line));background:color-mix(in srgb,#eaf3ff 55%,var(--los-surface))}
.los-tutorial-side-card--example header>span{background:#e4efff;color:#276bc7}
.los-tutorial-side-card--mistakes{border-color:color-mix(in srgb,#9b4dcc 24%,var(--los-line));background:color-mix(in srgb,#f5eaff 48%,var(--los-surface))}
.los-tutorial-side-card--mistakes header>span{background:#f1e3fb;color:#8b35b8}
.los-tutorial-side-card--exercise{border-color:color-mix(in srgb,var(--los-accent) 32%,var(--los-line));background:color-mix(in srgb,var(--los-accent) 6%,var(--los-surface))}
.los-tutorial-side-card--exercise .los-btn{width:100%;margin-top:14px;font-size:10px}
.los-tutorial-navigation{display:grid;grid-template-columns:1fr 1fr;border-top:1px solid var(--los-line);border-bottom:1px solid var(--los-line);background:var(--los-surface-2)}
.los-tutorial-navigation>div{min-width:0;padding:18px 25px}
.los-tutorial-navigation>div+div{border-right:1px solid var(--los-line);text-align:left}
.los-tutorial-navigation small{display:block;margin-bottom:5px;color:var(--los-primary);font-size:9px;font-weight:900}
.los-tutorial-navigation a{display:block;overflow:hidden;color:var(--los-text);text-decoration:none;font-size:12px;font-weight:900;text-overflow:ellipsis;white-space:nowrap}
.los-tutorial-navigation a:hover{color:var(--los-primary)}
.los-tutorial-footer{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:0;background:var(--los-surface)}
.los-tutorial-footer>span{display:flex;align-items:center;justify-content:center;gap:8px;min-height:70px;padding:13px;border-left:1px solid var(--los-line);color:var(--los-muted);font-size:9.5px}
.los-tutorial-footer>span:last-child{border-left:0}
.los-tutorial-footer b{color:var(--los-text)}
.los-tutorial-footer img{border-radius:10px}
.los-tutorial-related{margin-top:38px}
.los-tutorial-comments{margin-top:24px;padding-top:24px;border-top:1px solid var(--los-line)}

@media(max-width:1050px){
  .los-tutorial-hero{grid-template-columns:1fr 300px;padding:38px 34px}
  .los-tutorial-layout{grid-template-columns:minmax(0,1fr) 285px;padding-inline:24px}
}
@media(max-width:900px){
  .los-tutorial-hero{grid-template-columns:1fr;gap:28px}
  .los-tutorial-hero__visual{max-width:560px}
  .los-tutorial-layout{grid-template-columns:1fr}
  .los-tutorial-aside{grid-template-columns:repeat(2,minmax(0,1fr))}
  .los-tutorial-side-card--toc{position:static}
  .los-tutorial-footer{grid-template-columns:repeat(2,minmax(0,1fr))}
  .los-tutorial-footer>span:nth-child(2){border-left:0}
  .los-tutorial-footer>span:nth-child(-n+2){border-bottom:1px solid var(--los-line)}
}
@media(max-width:650px){
  .los-tutorial-page{padding-top:18px}
  .los-tutorial-article{border-radius:20px}
  .los-tutorial-hero{padding:27px 20px}
  .los-tutorial-hero h1{font-size:32px}
  .los-tutorial-lead{font-size:12.5px}
  .los-tutorial-meta{grid-template-columns:1fr}
  .los-tutorial-hero__visual>img,.los-tutorial-brand-visual{border-radius:16px}
  .los-tutorial-layout{padding:18px 14px 30px}
  .los-tutorial-video-card{padding:8px;border-radius:15px}
  .los-tutorial-content{font-size:13px}
  .los-tutorial-content h2{padding-right:39px;font-size:22px}
  .los-tutorial-content h2::before{width:28px;height:28px}
  .los-tutorial-content h2::after{right:9px;top:calc(.2em + 8px)}
  .los-tutorial-aside{grid-template-columns:1fr}
  .los-tutorial-navigation{grid-template-columns:1fr}
  .los-tutorial-navigation>div+div{border-top:1px solid var(--los-line);border-right:0;text-align:right}
  .los-tutorial-footer{grid-template-columns:1fr}
  .los-tutorial-footer>span{border-left:0;border-bottom:1px solid var(--los-line)!important}
  .los-tutorial-footer>span:last-child{border-bottom:0!important}
}

/* Tutorial article media slots imported from the Excel content template. */
.los-tutorial-media-placeholder{display:grid;place-items:center;gap:.35rem;min-height:210px;margin:1.5rem 0;padding:2rem;border:2px dashed rgba(24,167,168,.42);border-radius:18px;background:linear-gradient(135deg,rgba(24,167,168,.07),rgba(255,248,235,.9));color:#0b2d4f;text-align:center}.los-tutorial-media-placeholder strong{font-size:1.05rem}.los-tutorial-media-placeholder span{color:#64748b;font-size:.92rem}
