:root {
--ly-max: min(1680px, 94vw);
--ly-gutter: 24px;
--ly-radius: 16px;
--ly-radius-sm: 10px;
--ly-ink: #0E1E33;
--ly-ink-2: #16304F;
--ly-ease: cubic-bezier(.16, 1, .3, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
margin: 0;
font-family: var(--sy-font-sans);
font-size: 17px;
line-height: 1.65;
color: var(--sy-text-main);
background: var(--sy-bg-surface);
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sy-accent-ink); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible {
outline: 3px solid var(--sy-accent);
outline-offset: 2px;
border-radius: 4px;
}
.ly-skip {
position: absolute; left: -9999px; top: 0;
background: var(--ly-ink); color: #fff;
padding: 12px 20px; z-index: 200; border-radius: 0 0 var(--ly-radius-sm) 0;
}
.ly-skip:focus { left: 0; }
.ly-wrap {
max-width: var(--ly-max);
margin: 0 auto;
padding: 0 var(--ly-gutter);
}
.ly-bleed { max-width: none; }
.ly-mark {
display: inline-grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(2, 1fr);
width: 44px; height: 44px;
gap: 3px;
flex: 0 0 auto;
}
.ly-mark span { border-radius: 5px 5px 2px 2px; }
.ly-mark span:nth-child(1) { background: var(--sy-primary); grid-area: 1/1/2/3;
border-radius: 7px 7px 2px 2px; }
.ly-mark span:nth-child(2) { background: var(--sy-accent); grid-area: 2/1/3/2;
border-radius: 2px 2px 7px 7px; }
.ly-mark span:nth-child(3) { background: var(--sy-accent); opacity: .55;
grid-area: 2/2/3/3; border-radius: 2px; }
.ly-mark--light span:nth-child(1) { background: #fff; }
.ly-mark--light span:nth-child(2) { background: var(--sy-shell-accent); }
.ly-mark--light span:nth-child(3) { background: var(--sy-shell-accent); opacity: .45; }
.ly-btn {
display: inline-flex; align-items: center; justify-content: center;
gap: 10px;
padding: 15px 28px;
font-family: var(--sy-font-sans);
font-size: 16px; font-weight: 600;
border: 2px solid transparent;
border-radius: var(--ly-radius-sm);
cursor: pointer;
text-decoration: none;
transition: transform .18s var(--ly-ease), background .18s, border-color .18s;
white-space: nowrap;
}
.ly-btn:hover { text-decoration: none; transform: translateY(-2px); }
.ly-btn:active { transform: translateY(0); }
.ly-btn--primary { background: var(--sy-accent); color: var(--ly-ink); }
.ly-btn--primary:hover { background: var(--sy-shell-accent); }
.ly-btn--ink { background: var(--sy-primary); color: #fff; }
.ly-btn--ink:hover { background: var(--sy-primary-dark); }
.ly-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.ly-btn--ghost:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.7); }
.ly-btn--outline { background: transparent; color: var(--sy-primary);
border-color: var(--sy-border); }
.ly-btn--outline:hover { border-color: var(--sy-primary); background: var(--sy-tint); }
.ly-btn--lg { padding: 18px 34px; font-size: 17px; }
.ly-header {
position: sticky; top: 0; z-index: 100;
background: rgba(255,255,255,.88);
backdrop-filter: saturate(180%) blur(14px);
border-bottom: 1px solid var(--sy-border-light);
}
.ly-header__inner {
display: flex; align-items: center; gap: 28px;
height: 76px;
}
.ly-logo { display: flex; align-items: center; flex: 0 0 auto; }
.ly-logo img { height: 42px; width: auto; }
.ly-nav { display: flex; align-items: center; gap: 26px; margin: 0 auto; }
.ly-nav a {
color: var(--sy-text-secondary); font-size: 15px; font-weight: 500;
white-space: nowrap;
}
.ly-nav a:hover { color: var(--sy-primary); text-decoration: none; }
.ly-header__cta { display: flex; align-items: center; gap: 12px; }
.ly-header__cta .ly-btn { padding: 11px 20px; font-size: 15px; }
.ly-burger {
display: none; margin-left: auto;
background: none; border: 1px solid var(--sy-border);
border-radius: var(--ly-radius-sm); padding: 10px 12px; cursor: pointer;
}
.ly-burger span {
display: block; width: 20px; height: 2px; background: var(--sy-primary);
border-radius: 2px;
}
.ly-burger span + span { margin-top: 4px; }
.ly-hero {
position: relative;
background: var(--ly-ink);
color: #fff;
padding: clamp(44px, 5.6vh, 92px) 0 clamp(52px, 6.4vh, 100px);
overflow: hidden;
}
.ly-hero::before {
content: "";
position: absolute; inset: 0;
background-image:
linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
background-size: 88px 88px;
mask-image: radial-gradient(ellipse 80% 60% at 70% 0%, #000 20%, transparent 70%);
pointer-events: none;
}
.ly-hero::after {
content: "";
position: absolute; top: -220px; right: -160px;
width: 620px; height: 620px; border-radius: 50%;
background: radial-gradient(circle, rgba(0,169,193,.30) 0%, transparent 62%);
pointer-events: none;
}
.ly-hero__inner { position: relative; z-index: 1; }
.ly-hero__grid {
display: grid;
grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
align-items: center;
gap: clamp(34px, 4.2vw, 76px);
text-align: left;
}
.ly-hero__texte {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: clamp(18px, 2.6vh, 34px);
}
.ly-badge {
display: inline-flex; align-items: center; gap: 9px;
padding: 8px 16px;
background: rgba(0,169,193,.16);
border: 1px solid rgba(0,169,193,.42);
border-radius: 100px;
font-size: 14px; font-weight: 600; letter-spacing: .01em;
color: var(--sy-shell-accent);
}
.ly-badge__dot {
width: 7px; height: 7px; border-radius: 50%;
background: var(--sy-shell-accent);
}
.ly-hero__title {
font-family: var(--sy-font-display);
font-size: clamp(2.15rem, min(3.6vw, 5.4vh), 3.3rem);
line-height: 1.07;
letter-spacing: -.03em;
font-weight: 700;
margin: 0;
text-wrap: balance;
}
.ly-hero__title em {
font-style: normal;
color: var(--sy-shell-accent);
}
.ly-hero__lead {
font-size: clamp(1.02rem, 1.35vw, 1.16rem);
line-height: 1.62;
color: #C6D2E2;
margin: 0;
max-width: 660px;
}
.ly-hero__actions {
display: flex; gap: 14px; flex-wrap: wrap;
}
.ly-hero__note {
font-size: 14px; color: #8FA2BC; margin: 0;
}
.ly-hero__visuel {
position: relative; z-index: 1;
margin: 0;
}
.ly-hero__visuel img,
.ly-hero__visuel .ly-shot-ph {
width: 100%;
border-radius: var(--ly-radius);
border: 1px solid rgba(255,255,255,.16);
box-shadow: 0 28px 66px rgba(0,0,0,.46);
}
.ly-hero__visuel figcaption {
margin-top: 14px;
font-size: 13.5px;
color: #8FA2BC;
text-align: center;
}
.ly-shot-ph {
aspect-ratio: 16 / 9;
background: linear-gradient(180deg, #1B3557 0%, #12253D 100%);
display: grid; place-items: center;
color: #6E8299; font-size: 14px;
}
.ly-trust {
background: var(--sy-bg-app);
padding: 0 0 30px;
border-bottom: 1px solid var(--sy-border-light);
}
.ly-trust__list {
display: flex; flex-wrap: wrap; justify-content: center;
gap: 14px 34px;
margin: 0; padding: 0; list-style: none;
font-size: 14.5px; color: var(--sy-text-muted);
}
.ly-trust__list li { display: flex; align-items: center; gap: 9px; }
.ly-trust__list li::before {
content: ""; width: 7px; height: 7px; border-radius: 2px;
background: var(--sy-accent); flex: 0 0 auto;
}
.ly-figures {
background: var(--sy-bg-app);
padding: 54px 0 34px;
}
.ly-figures__list {
display: grid; gap: 18px;
grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
margin: 0; padding: 0; list-style: none;
text-align: center;
}
.ly-figures__list li {
display: flex; flex-direction: column; gap: 6px;
padding: 0 12px;
}
.ly-figures__list li::before { content: none; }
.ly-figures__n {
font-family: var(--sy-font-display);
font-size: clamp(2rem, 4vw, 2.9rem);
font-weight: 700; line-height: 1;
letter-spacing: -.03em;
color: var(--sy-primary);
font-variant-numeric: tabular-nums;
}
.ly-figures__l {
font-size: 14.5px; line-height: 1.45;
color: var(--sy-text-muted);
}
.ly-figures__src {
margin: 26px 0 0; text-align: center;
font-size: 13px; color: var(--sy-text-light);
}
.ly-shot {
margin: 0;
display: flex; flex-direction: column; gap: 16px;
min-width: 0;
}
.ly-shot img {
width: 100%;
border-radius: var(--ly-radius);
border: 1px solid var(--sy-border);
box-shadow: 0 18px 46px rgba(23, 41, 61, .13);
background: var(--sy-bg-surface);
}
.ly-shot--zoom img {
cursor: zoom-in;
transition: transform .25s var(--ly-ease), box-shadow .25s var(--ly-ease),
border-color .25s;
}
.ly-shot--zoom img:hover {
transform: translateY(-4px) scale(1.012);
border-color: var(--sy-accent);
box-shadow: 0 26px 60px rgba(23, 41, 61, .22);
}
.ly-shot--ia.ly-shot--zoom img:hover {
border-color: var(--sy-shell-accent);
box-shadow: 0 26px 70px rgba(0, 0, 0, .55);
}
.ly-shot--zoom { position: relative; }
.ly-shot__zoom {
position: absolute; top: 14px; right: 14px;
width: 38px; height: 38px; border-radius: 50%;
display: grid; place-items: center;
background: rgba(14, 30, 51, .72);
color: #fff; font-size: 17px; line-height: 1;
backdrop-filter: blur(4px);
opacity: 0; transform: scale(.85);
transition: opacity .2s, transform .2s var(--ly-ease);
pointer-events: none;
}
.ly-shot--zoom:hover .ly-shot__zoom,
.ly-shot--zoom img:focus-visible + .ly-shot__zoom { opacity: 1; transform: none; }
.ly-lightbox {
position: fixed; inset: 0; z-index: 300;
display: grid; grid-template-rows: 1fr auto;
gap: 16px; padding: 3vh 3vw;
background: rgba(8, 16, 28, .93);
backdrop-filter: blur(6px);
cursor: zoom-out;
}
.ly-lightbox[hidden] { display: none; }
.ly-lightbox img {
max-width: 100%; max-height: 100%;
margin: auto;
border-radius: var(--ly-radius-sm);
border: 1px solid rgba(255, 255, 255, .18);
box-shadow: 0 30px 90px rgba(0, 0, 0, .6);
animation: ly-zoom-in .22s var(--ly-ease) both;
}
@keyframes ly-zoom-in {
from { opacity: 0; transform: scale(.97); }
to   { opacity: 1; transform: none; }
}
.ly-lightbox__cap {
margin: 0; text-align: center;
font-size: 15px; line-height: 1.55; color: #C6D2E2;
max-width: 820px; justify-self: center;
}
.ly-lightbox__close {
position: absolute; top: 14px; right: 18px;
width: 42px; height: 42px; border-radius: 50%;
background: rgba(255, 255, 255, .12); color: #fff;
border: 1px solid rgba(255, 255, 255, .22);
font-size: 22px; line-height: 1; cursor: pointer;
}
.ly-lightbox__close:hover { background: rgba(255, 255, 255, .22); }
.ly-shot figcaption {
font-size: 15px; line-height: 1.6;
color: var(--sy-text-muted);
}
.ly-shot figcaption strong {
color: var(--sy-text-main); font-weight: 600;
display: block; margin-bottom: 3px;
}
.ly-shot--wide { max-width: 1180px; margin: 0 auto; }
.ly-shot--ia img {
border-color: rgba(255, 255, 255, .17);
box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
}
.ly-shot--ia figcaption { color: #B9C6D8; }
.ly-shot--ia figcaption strong { color: #fff; }
.ly-duo {
display: grid; gap: 30px;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
}
.ly-section { padding: 96px 0; }
.ly-section--tint { background: var(--sy-tint); }
.ly-section--muted { background: var(--sy-bg-app); }
.ly-section--ink { background: var(--ly-ink); color: #fff; }
.ly-head { max-width: 760px; margin: 0 0 52px; }
.ly-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.ly-eyebrow {
display: inline-flex; align-items: center; gap: 10px;
font-family: var(--sy-font-mono);
font-size: 13px; font-weight: 600;
letter-spacing: .10em; text-transform: uppercase;
color: var(--sy-accent-ink);
margin: 0 0 16px;
}
.ly-eyebrow::before {
content: ""; width: 22px; height: 3px; border-radius: 2px;
background: var(--sy-accent);
}
.ly-section--ink .ly-eyebrow { color: var(--sy-shell-accent); }
.ly-section--ink .ly-eyebrow::before { background: var(--sy-shell-accent); }
.ly-head--center .ly-eyebrow { justify-content: center; }
.ly-h2 {
font-family: var(--sy-font-display);
font-size: clamp(1.85rem, 3.6vw, 2.7rem);
line-height: 1.14;
letter-spacing: -.025em;
font-weight: 700;
margin: 0 0 18px;
}
.ly-h3 {
font-family: var(--sy-font-display);
font-size: clamp(1.3rem, 2.4vw, 1.75rem);
line-height: 1.2;
letter-spacing: -.02em;
font-weight: 700;
margin: 0 0 14px;
}
.ly-note {
margin: 18px 0 0; padding-top: 16px;
border-top: 1px solid var(--sy-border-light);
font-size: 14px; line-height: 1.6;
color: var(--sy-text-light);
}
.ly-lead {
font-size: 1.08rem; line-height: 1.68;
color: var(--sy-text-muted);
margin: 0;
}
.ly-section--ink .ly-lead { color: #B9C6D8; }
.ly-pains {
display: grid; gap: 18px;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
margin: 0; padding: 0; list-style: none;
}
.ly-pain {
position: relative;
background: var(--sy-bg-surface);
border: 1px solid var(--sy-border-light);
border-radius: var(--ly-radius);
padding: 26px 26px 26px 30px;
overflow: hidden;
}
.ly-pain::before {
content: ""; position: absolute; left: 0; top: 18px; bottom: 18px;
width: 5px; border-radius: 0 4px 4px 0;
background: var(--sy-danger); opacity: .55;
}
.ly-pain h3 {
font-family: var(--sy-font-display);
font-size: 1.06rem; font-weight: 600;
margin: 0 0 8px; letter-spacing: -.01em;
}
.ly-pain p { margin: 0; font-size: 15.5px; color: var(--sy-text-muted); line-height: 1.62; }
.ly-switch {
display: grid; gap: 20px;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
margin-top: 40px;
}
.ly-switch__col {
border-radius: var(--ly-radius); padding: 28px;
border: 1px solid var(--sy-border-light);
background: var(--sy-bg-surface);
}
.ly-switch__col--after {
background: var(--sy-primary); color: #fff; border-color: var(--sy-primary);
}
.ly-switch__col h3 {
font-family: var(--sy-font-display); font-size: 1rem;
text-transform: uppercase; letter-spacing: .07em;
margin: 0 0 18px; color: var(--sy-text-muted); font-weight: 600;
}
.ly-switch__col--after h3 { color: var(--sy-shell-accent); }
.ly-switch__col ul { margin: 0; padding: 0; list-style: none; }
.ly-switch__col li {
padding: 10px 0 10px 28px; position: relative;
font-size: 15.5px; line-height: 1.55;
border-top: 1px solid var(--sy-border-light);
}
.ly-switch__col--after li { border-top-color: rgba(255,255,255,.14); }
.ly-switch__col li:first-child { border-top: none; }
.ly-switch__col li::before {
content: "—"; position: absolute; left: 0; color: var(--sy-text-light);
}
.ly-switch__col--after li::before { content: "✓"; color: var(--sy-shell-accent); font-weight: 700; }
.ly-founders {
display: grid; gap: 22px;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
}
.ly-founder {
background: var(--sy-bg-surface);
border: 1px solid var(--sy-border-light);
border-radius: var(--ly-radius);
padding: 32px;
display: flex; flex-direction: column; gap: 14px;
}
.ly-founder__role {
display: inline-flex; align-self: flex-start;
padding: 6px 13px; border-radius: 100px;
background: var(--sy-tint); color: var(--sy-accent-ink);
font-size: 13px; font-weight: 600;
}
.ly-founder h3 {
font-family: var(--sy-font-display); font-size: 1.3rem;
margin: 0; letter-spacing: -.015em;
}
.ly-founder p { margin: 0; color: var(--sy-text-muted); font-size: 15.5px; line-height: 1.65; }
.ly-ai { background: var(--ly-ink); color: #fff; padding: 96px 0; position: relative;
overflow: hidden; }
.ly-ai::before {
content: ""; position: absolute; inset: 0;
background: var(--sy-gradient-ia); opacity: .17; pointer-events: none;
}
.ly-ai__inner { position: relative; z-index: 1; }
.ly-ai .ly-lead { color: #B9C6D8; }
.ly-ai .ly-eyebrow { color: var(--sy-shell-accent); }
.ly-ai .ly-eyebrow::before { background: var(--sy-shell-accent); }
.ly-ai__duo {
display: grid; gap: 30px;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
margin-top: 34px;
}
.ly-shot--ia { margin-top: 44px; }
.ly-ai__duo .ly-shot--ia { margin-top: 0; }
.ly-asks {
display: grid; gap: 12px;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr));
margin: 0; padding: 0; list-style: none;
}
.ly-asks li {
background: rgba(255, 255, 255, .055);
border: 1px solid rgba(255, 255, 255, .14);
border-radius: var(--ly-radius-sm);
padding: 16px 20px;
font-size: 15.5px; line-height: 1.5;
color: #E4EBF4;
display: flex; flex-direction: column; gap: 7px;
min-width: 0;
}
.ly-asks__tag {
font-family: var(--sy-font-mono);
font-size: 11.5px; font-weight: 600;
letter-spacing: .09em; text-transform: uppercase;
color: var(--sy-shell-accent);
}
.ly-guards {
margin-top: 72px;
padding: 40px;
background: rgba(10, 18, 30, .55);
border: 1px solid rgba(255, 255, 255, .14);
border-radius: var(--ly-radius);
}
.ly-guards__intro {
margin: 0 0 30px; max-width: 720px;
font-size: 1.05rem; line-height: 1.65; color: #B9C6D8;
}
.ly-guards__list {
display: grid; gap: 26px 34px;
grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
margin: 0; padding: 0; list-style: none;
}
.ly-guards__list li { position: relative; padding-left: 30px; min-width: 0; }
.ly-guards__list li::before {
content: "✕";
position: absolute; left: 0; top: 1px;
color: var(--sy-shell-accent);
font-size: 14px; font-weight: 700;
}
.ly-guards--sources .ly-guards__list li::before { content: "▸"; }
.ly-guards__list h4 {
font-family: var(--sy-font-display);
font-size: 1.02rem; font-weight: 600;
margin: 0 0 7px; color: #fff; letter-spacing: -.01em;
}
.ly-guards__list p {
margin: 0; font-size: 14.5px; line-height: 1.6; color: #B0BFD2;
}
.ly-cards {
display: grid; gap: 20px;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
}
.ly-card {
background: var(--sy-bg-surface);
border: 1px solid var(--sy-border-light);
border-radius: var(--ly-radius);
padding: 28px;
min-width: 0;
}
.ly-card h3 {
font-family: var(--sy-font-display);
font-size: 1.05rem; font-weight: 600;
margin: 0 0 10px; letter-spacing: -.01em;
}
.ly-card p {
margin: 0; font-size: 15px; line-height: 1.62;
color: var(--sy-text-muted);
}
.ly-included {
display: grid; gap: 12px;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
margin: 32px auto 0; padding: 0; list-style: none;
max-width: 820px; text-align: left;
}
.ly-included li {
position: relative; padding-left: 28px;
font-size: 15.5px; line-height: 1.55; color: #C6D2E2;
}
.ly-included li::before {
content: "✓"; position: absolute; left: 0; top: 0;
color: var(--sy-shell-accent); font-weight: 700;
}
.ly-modules {
display: grid; gap: 18px;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
}
.ly-module {
background: var(--sy-bg-surface);
border: 1px solid var(--sy-border-light);
border-radius: var(--ly-radius);
padding: 26px;
transition: transform .2s var(--ly-ease), border-color .2s, box-shadow .2s;
}
.ly-module:hover {
transform: translateY(-3px);
border-color: var(--sy-accent);
box-shadow: 0 12px 30px rgba(31,61,99,.10);
}
.ly-module h3 {
font-family: var(--sy-font-display); font-size: 1.05rem;
margin: 16px 0 8px; letter-spacing: -.01em;
}
.ly-module p { margin: 0; font-size: 15px; color: var(--sy-text-muted); line-height: 1.6; }
.ly-module__mark {
width: 34px; height: 34px; border-radius: 9px;
background: var(--sy-tint);
display: grid; place-items: center;
font-family: var(--sy-font-mono); font-size: 12px; font-weight: 700;
color: var(--sy-accent-ink);
}
.ly-split {
display: grid; gap: 46px;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr));
align-items: center;
}
.ly-faq { max-width: 820px; margin: 0 auto; }
.ly-faq details {
border: 1px solid var(--sy-border-light);
border-radius: var(--ly-radius-sm);
background: var(--sy-bg-surface);
margin-bottom: 12px;
overflow: hidden;
}
.ly-faq details[open] { border-color: var(--sy-accent); }
.ly-faq summary {
cursor: pointer; padding: 20px 24px;
font-family: var(--sy-font-display); font-weight: 600; font-size: 1.02rem;
list-style: none; display: flex; align-items: center; justify-content: space-between;
gap: 16px;
}
.ly-faq summary::-webkit-details-marker { display: none; }
.ly-faq summary::after {
content: "+"; font-family: var(--sy-font-mono); font-size: 20px;
color: var(--sy-accent-ink); flex: 0 0 auto; transition: transform .2s var(--ly-ease);
}
.ly-faq details[open] summary::after { transform: rotate(45deg); }
.ly-faq__body { padding: 0 24px 22px; color: var(--sy-text-muted); font-size: 15.5px;
line-height: 1.68; }
.ly-faq__body p { margin: 0; }
.ly-form-wrap {
background: var(--sy-bg-surface);
border: 1px solid var(--sy-border-light);
border-radius: var(--ly-radius);
padding: 38px;
box-shadow: 0 18px 50px rgba(23,41,61,.07);
}
.ly-form-grid {
display: grid; gap: 18px;
grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
}
.ly-field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.ly-field--full { grid-column: 1 / -1; }
.ly-field label { font-size: 14.5px; font-weight: 600; color: var(--sy-text-secondary); }
.ly-field input,
.ly-field textarea {
width: 100%; min-width: 0;
font-family: var(--sy-font-sans); font-size: 16px;
padding: 13px 15px;
color: var(--sy-text-main);
background: var(--sy-bg-surface);
border: 1px solid var(--sy-border);
border-radius: var(--ly-radius-sm);
transition: border-color .15s, box-shadow .15s;
}
.ly-field input:focus,
.ly-field textarea:focus {
outline: none;
border-color: var(--sy-accent);
box-shadow: var(--sy-focus-ring);
}
.ly-field textarea { resize: vertical; }
.ly-field__err { font-size: 13.5px; color: var(--sy-danger); }
.ly-hp {
position: absolute !important;
left: -9999px !important;
width: 1px !important; height: 1px !important;
opacity: 0 !important;
}
.ly-consent { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px;
color: var(--sy-text-muted); }
.ly-consent input { margin-top: 3px; flex: 0 0 auto; width: 18px; height: 18px; }
.ly-alert {
padding: 16px 20px; border-radius: var(--ly-radius-sm);
margin-bottom: 24px; font-size: 15.5px;
}
.ly-alert--ok { background: var(--sy-success-light); color: #0f5132;
border: 1px solid #a7e0c0; }
.ly-alert--ko { background: var(--sy-danger-light); color: #842029;
border: 1px solid var(--sy-danger-border); }
.ly-footer {
background: var(--ly-ink); color: #93A4BC;
padding: 62px 0 30px; font-size: 15px;
}
.ly-footer__grid {
display: grid; gap: 34px;
grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
padding-bottom: 34px;
border-bottom: 1px solid rgba(255,255,255,.12);
}
.ly-footer h4 {
font-family: var(--sy-font-display); font-size: 14px; color: #fff;
text-transform: uppercase; letter-spacing: .08em; margin: 0 0 16px;
}
.ly-footer ul { margin: 0; padding: 0; list-style: none; }
.ly-footer li { margin-bottom: 10px; }
.ly-footer a { color: #93A4BC; }
.ly-footer a:hover { color: #fff; }
.ly-footer__brand p { margin: 14px 0 0; max-width: 300px; line-height: 1.6; }
.ly-footer__bottom {
padding-top: 24px; display: flex; flex-wrap: wrap; gap: 14px;
justify-content: space-between; font-size: 14px; color: #6E8299;
}
.ly-login { min-height: 74vh; padding: 70px 0; background: var(--sy-bg-app); }
.ly-login__grid {
display: grid; gap: 22px;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
max-width: 900px; margin: 0 auto;
}
.ly-door {
background: var(--sy-bg-surface);
border: 1px solid var(--sy-border-light);
border-radius: var(--ly-radius);
padding: 32px;
display: flex; flex-direction: column;
}
.ly-door h2 {
font-family: var(--sy-font-display); font-size: 1.35rem;
margin: 18px 0 8px; letter-spacing: -.02em;
}
.ly-door > p { margin: 0 0 22px; color: var(--sy-text-muted); font-size: 15.5px;
line-height: 1.6; }
.ly-door form { margin-top: auto; }
.ly-search { position: relative; }
.ly-search input {
width: 100%; font-family: var(--sy-font-sans); font-size: 16px;
padding: 14px 15px; border: 1px solid var(--sy-border);
border-radius: var(--ly-radius-sm); background: var(--sy-bg-surface);
}
.ly-search input:focus { outline: none; border-color: var(--sy-accent);
box-shadow: var(--sy-focus-ring); }
.ly-results {
position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 20;
background: var(--sy-bg-surface);
border: 1px solid var(--sy-border);
border-radius: var(--ly-radius-sm);
box-shadow: 0 16px 40px rgba(23,41,61,.14);
max-height: 280px; overflow-y: auto;
margin: 0; padding: 6px; list-style: none;
}
.ly-results:empty, .ly-results[hidden] { display: none; }
.ly-results li { margin: 0; }
.ly-results button {
width: 100%; text-align: left; background: none; border: none;
font-family: var(--sy-font-sans); font-size: 15.5px; color: var(--sy-text-main);
padding: 11px 13px; border-radius: 7px; cursor: pointer;
}
.ly-results button:hover, .ly-results button:focus { background: var(--sy-tint); }
.ly-hint { font-size: 14px; color: var(--sy-text-muted); margin: 12px 0 0; }
.ly-hint--empty { color: var(--sy-text-light); }
.ly-login__aside {
max-width: 900px; margin: 26px auto 0; text-align: center;
font-size: 14.5px; color: var(--sy-text-muted);
}
.ly-prose { max-width: 760px; margin: 0 auto; padding: 70px 0; }
.ly-prose h1 {
font-family: var(--sy-font-display); font-size: clamp(1.9rem, 4vw, 2.5rem);
letter-spacing: -.025em; margin: 0 0 28px;
}
.ly-prose h2 {
font-family: var(--sy-font-display); font-size: 1.28rem;
margin: 40px 0 12px; letter-spacing: -.015em;
}
.ly-prose p, .ly-prose li { color: var(--sy-text-muted); line-height: 1.7; }
.ly-prose ul { padding-left: 22px; }
@keyframes ly-rise {
from { opacity: 0; transform: translateY(22px); }
to   { opacity: 1; transform: none; }
}
.ly-hero__texte > *,
.ly-hero__visuel {
animation: ly-rise .8s var(--ly-ease) both;
}
.ly-hero__texte > *:nth-child(1) { animation-delay: .05s; }
.ly-hero__texte > *:nth-child(2) { animation-delay: .14s; }
.ly-hero__texte > *:nth-child(3) { animation-delay: .23s; }
.ly-hero__texte > *:nth-child(4) { animation-delay: .32s; }
.ly-hero__texte > *:nth-child(5) { animation-delay: .40s; }
.ly-hero__visuel { animation-delay: .20s; animation-duration: 1s; }
.ly-js .ly-reveal { opacity: 0; transform: translateY(18px); }
.ly-js .ly-reveal.is-in {
opacity: 1; transform: none;
transition: opacity .6s var(--ly-ease), transform .6s var(--ly-ease);
}
.ly-js .ly-reveal.is-in:nth-child(2) { transition-delay: .06s; }
.ly-js .ly-reveal.is-in:nth-child(3) { transition-delay: .12s; }
.ly-js .ly-reveal.is-in:nth-child(4) { transition-delay: .18s; }
@media (prefers-reduced-motion: reduce) {
html { scroll-behavior: auto; }
*, *::before, *::after {
animation-duration: .001ms !important;
animation-delay: 0ms !important;
transition-duration: .001ms !important;
}
.ly-js .ly-reveal { opacity: 1 !important; transform: none !important; }
.ly-btn:hover, .ly-module:hover { transform: none; }
}
.ly-nav__mobile { display: none; }
@media (max-width: 1140px) {
.ly-nav { display: none; }
.ly-nav.is-open {
display: flex; flex-direction: column; align-items: stretch;
position: absolute; top: 76px; left: 0; right: 0;
background: var(--sy-bg-surface);
border-bottom: 1px solid var(--sy-border);
padding: 18px var(--ly-gutter);
gap: 4px;
box-shadow: 0 18px 40px rgba(23,41,61,.10);
}
.ly-nav.is-open a { padding: 12px 0; border-bottom: 1px solid var(--sy-border-light); }
.ly-nav.is-open .ly-nav__mobile { display: block; font-weight: 600;
color: var(--sy-primary); }
.ly-burger { display: block; }
.ly-header__cta .ly-btn--ghost,
.ly-header__cta .ly-btn--outline { display: none; }
.ly-header__inner { position: relative; }
.ly-burger { margin-left: auto; }
.ly-header__cta { margin-left: 12px; }
}
@media (max-width: 767px) {
.ly-header__cta { display: none; }
}
@media (max-width: 1150px) {
.ly-hero__grid {
grid-template-columns: minmax(0, 1fr);
gap: clamp(30px, 4.4vh, 52px);
text-align: center;
}
.ly-hero__texte {
align-items: center;
max-width: 720px;
margin: 0 auto;
}
.ly-hero__actions { justify-content: center; }
.ly-hero__visuel { max-width: 760px; margin: 0 auto; width: 100%; }
}
@media (max-width: 767px) {
body { font-size: 16px; }
:root { --ly-gutter: 18px; }
.ly-section { padding: 64px 0; }
.ly-hero { padding-top: 62px; }
.ly-form-wrap { padding: 24px; }
.ly-header__inner { height: 68px; }
.ly-logo img { height: 34px; }
.ly-nav.is-open { top: 68px; }
.ly-hero__actions .ly-btn { width: 100%; }
.ly-footer__bottom { flex-direction: column; }
.ly-ai { padding: 64px 0; }
.ly-shot--ia, .ly-ai__duo { margin-top: 30px; }
.ly-duo, .ly-ai__duo { gap: 26px; }
.ly-guards { margin-top: 48px; padding: 24px 20px; }
.ly-guards__list { gap: 22px; }
.ly-card { padding: 22px; }
.ly-figures__list { gap: 26px; }
.ly-shot img { box-shadow: 0 10px 24px rgba(23, 41, 61, .12); }
}
:root {
--ly-voile: .55;
}
.ly-mt-16 { margin-top: 16px; }
.ly-mt-30 { margin-top: 30px; }
.ly-my-22 { margin-block: 22px; }
.ly-form-wrap--centre { max-width: 820px; margin-inline: auto; }
