/*
    Created on : 3 Oct 2025, 20:42:57
    Author     : gasperrencof
*/

:root {
    --color-primary: #005f6c;
    --color-primary-container: #007a8a;
}


*, *::before, *::after {
    box-sizing: border-box;
}



body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin: 0;
    color: #191c1d;
}

html {
    scroll-behavior: smooth;
}



html, body {
    height: 100%;
}

h1, h2, h3, h4 {
    margin: 0;
}

a {
    text-decoration: none;
    color: #191c1d;
}

input {
    box-sizing: border-box;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    user-select: none;
    -webkit-user-select: none;
    line-height: 1;
}

/* ============================================================
   LOGIN PAGE — "The Clinical Atelier"
   ============================================================ */

.login-layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f8fafb;
    background-image: radial-gradient(#007a8a1a 1px, transparent 1px);
    background-size: 32px 32px;
}

/* --- Main centered area --- */
.login-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
}

.login-wrapper {
    width: 100%;
    max-width: 448px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* --- Brand / Logo --- */
.login-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
}

.login-brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #005f6c, #007a8a);
    color: #fff;
    margin-bottom: 8px;
    box-shadow: 0 10px 20px rgba(0, 95, 108, 0.2);
}
.login-brand-icon .material-symbols-outlined {
    font-size: 36px;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 36;
}

.login-brand-title {
    font-family: 'Manrope', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: #007a8a;
    margin: 0;
}

.login-brand-subtitle {
    font-size: 10px;
    font-weight: 700;
    color: #536163;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

/* --- Glass Card --- */
.login-card-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(25, 28, 29, 0.06);
    border-radius: 12px;
    padding: 40px;
}

.login-card-header {
    margin-bottom: 32px;
}

.login-card-header h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #191c1d;
    margin: 0;
}

.login-card-header p {
    font-size: 14px;
    color: #3e494b;
    margin: 4px 0 0;
}

/* --- Form --- */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.login-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.login-field-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #536163;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 4px;
}

.login-field-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 4px;
}
.login-field-label-row .login-field-label {
    margin-left: 0;
}

.login-forgot-link {
    font-size: 12px;
    font-weight: 600;
    color: #007a8a;
    text-decoration: none;
}
.login-forgot-link:hover {
    text-decoration: underline;
    color: #007a8a;
}

/* Input wrapper */
.login-field-input-wrap {
    position: relative;
}

.login-field-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6e797b;
    font-size: 20px;
    pointer-events: none;
}

.login-field-input-wrap input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    background: rgba(225, 227, 228, 0.5);
    border: none;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #191c1d;
    transition: background 0.2s, box-shadow 0.2s;
    height: auto;
}

.login-field-input-wrap input::placeholder {
    color: rgba(110, 121, 123, 0.6);
}

.login-field-input-wrap input:focus {
    background: #ffffff;
    box-shadow: 0 0 0 2px #005f6c;
}

.login-input-password {
    padding-right: 48px !important;
}

/* Visibility toggle */
.login-visibility-btn {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #6e797b;
    padding: 0;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}
.login-visibility-btn:hover {
    color: #005f6c;
}
.login-visibility-btn .material-symbols-outlined {
    font-size: 20px;
}

/* Submit */
.login-submit-wrap {
    padding-top: 16px;
}

.login-submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(to right, #005f6c, #007a8a);
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 95, 108, 0.2), 0 2px 4px -2px rgba(0, 95, 108, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: box-shadow 0.3s ease, transform 0.15s ease;
}
.login-submit-btn:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 95, 108, 0.3), 0 8px 10px -6px rgba(0, 95, 108, 0.3);
}
.login-submit-btn:active {
    transform: scale(0.98);
}
.login-submit-btn .material-symbols-outlined {
    font-size: 18px;
}

/* Error */
.login-error {
    color: #ba1a1a;
    font-size: 13px;
    margin-top: 12px;
    display: none;
}

/* Login banner — used for expired subscription notice */
.login-banner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0 0 18px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.5;
}
.login-banner .material-symbols-outlined {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 1px;
}
.login-banner--warn {
    background: rgba(255, 247, 237, 0.95);
    color: #9a3412;
    border: 1px solid #fdba74;
}
.login-banner--warn a { color: #9a3412; font-weight: 700; text-decoration: underline; }

/* Registration — 2-column name row */
.login-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Registration success state */
.reg-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, #005f6c, #007a8a);
    color: #fff;
    margin-bottom: 20px;
}
.reg-success-icon .material-symbols-outlined {
    font-size: 36px;
    font-variation-settings: 'FILL' 1;
}
.reg-success-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #191c1d;
    margin: 0 0 12px;
}
.reg-success-msg {
    font-size: 14px;
    color: #3e494b;
    line-height: 1.6;
    margin: 0;
}

/* Card bottom */
.login-card-bottom {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(189, 200, 203, 0.2);
    text-align: center;
}

.login-card-bottom p {
    font-size: 12px;
    color: #3e494b;
    margin: 0;
}

.login-card-bottom a {
    color: #007a8a;
    font-weight: 700;
    text-decoration: none;
}
.login-card-bottom a:hover {
    text-decoration: underline;
    color: #007a8a;
}

/* --- Help links --- */
.login-help-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}



.login-help-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #3e494b;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
}


.login-help-link:hover {
    color: #007a8a;
}
.login-help-link .material-symbols-outlined {
    font-size: 18px;
}

.login-help-dot {
    width: 4px;
    height: 4px;
    background: #bdc8cb;
    border-radius: 50%;
    flex-shrink: 0;
}

/* --- Page footer --- */
.login-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 48px;
    background: #f2f4f5;
    font-size: 12px;
    letter-spacing: 0.025em;
    gap: 16px;
}

.login-footer-copy {
    color: #64748b;
}

.login-footer-links {
    display: flex;
    gap: 24px;
}

.login-footer-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}
.login-footer-links a:hover {
    color: #007a8a;
}

/* --- Language switcher (login / register pages) --- */
.login-layout { position: relative; }


/* ── Back link (login + register) ──────────────────────────────────── */
.login-back-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
    text-decoration: none;
    transition: color .15s;
}
.login-back-link .material-symbols-outlined { font-size: 16px; }
.login-back-link:hover { color: #007a8a; }

/* ── Register two-column layout ─────────────────────────────────────── */
.reg-layout { background: #f8fafb; }

.reg-main {
    flex: 1;
    display: flex;
    align-items: stretch;
    min-height: 100vh;
}

.reg-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Left column — form */
.reg-form-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 56px 40px;
    background: #f8fafb;
    background-image: radial-gradient(#007a8a1a 1px, transparent 1px);
    background-size: 32px 32px;
    min-height: 100vh;
}

/* Right column — promo */
.reg-promo-col {
    background: linear-gradient(150deg, #005260 0%, #007a8a 45%, #00a3b8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
}
.reg-promo-col::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.reg-promo-inner {
    position: relative;
    max-width: 420px;
    width: 100%;
}

.reg-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 28px;
    letter-spacing: .02em;
}

.reg-promo-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 14px;
    letter-spacing: -.02em;
}

.reg-promo-subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin: 0 0 32px;
}

.reg-promo-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 36px;
}

.reg-promo-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.reg-promo-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.reg-promo-feature-icon .material-symbols-outlined {
    font-size: 20px;
    color: #fff;
    font-variation-settings: 'FILL' 1;
}

.reg-promo-feature-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.reg-promo-feature-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.72);
    line-height: 1.5;
}

.reg-promo-quote {
    padding: 20px 22px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 12px;
    position: relative;
}

.reg-promo-quote-icon {
    font-size: 28px;
    color: rgba(255,255,255,0.4);
    font-variation-settings: 'FILL' 1;
    display: block;
    margin-bottom: 6px;
}

.reg-promo-quote p {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    font-style: italic;
    line-height: 1.6;
    margin: 0 0 10px;
}

.reg-promo-quote-author {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.55);
    letter-spacing: .03em;
}

/* Responsive — zloži v eno kolono */
@media (max-width: 900px) {
    .reg-wrapper { grid-template-columns: 1fr; }
    .reg-promo-col { display: none; }
    .reg-form-col {
        padding: 80px 24px 40px;
        min-height: auto;
        justify-content: flex-start;
    }
}

.login-lang {
    position: absolute;
    top: 20px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(189, 200, 203, 0.45);
    border-radius: 8px;
    padding: 3px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 20;
}
.login-lang-btn {
    background: none;
    border: none;
    border-radius: 6px;
    padding: 5px 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: background .12s, color .12s;
    letter-spacing: 0.4px;
    line-height: 1;
}
.login-lang-btn:hover { background: #f2f4f5; color: #3b494b; }
.login-lang-btn.active {
    background: #ffffff;
    color: #007a8a;
    box-shadow: 0 1px 3px rgba(25, 28, 29, 0.10);
}


.login-brand-logo{
    width: 200px;
}

/* ============================================================
   LANDING PAGE — Kinevio
   ============================================================ */

:root {
    --landing-bg: #f8fafb;
    --landing-surface: #ffffff;
    --landing-surface-soft: #f3f6f7;
    --landing-surface-alt: #f6f8f9;
    --landing-text: #111827;
    --landing-muted: #4b5563;
    --landing-outline: rgba(189, 200, 203, 0.35);
    --landing-shadow: 0 32px 64px -12px rgba(15, 23, 42, 0.08);
    --landing-shadow-soft: 0 18px 40px rgba(25, 28, 29, 0.08);
}

@keyframes landing-float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes landing-fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.landing-page {
    background: var(--landing-surface);
    color: var(--landing-text);
    overflow-x: hidden;
}

.landing-page main,
.landing-page footer {
    animation: landing-fade-up 0.5s ease;
}

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

.landing-shell {
    width: min(100% - 64px, 1300px);
    margin: 0 auto;
    
    max-width: 100%;
}

.landing-shell-narrow {
    width: min(100% - 64px, 1100px);
}

.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 rgba(17, 24, 39, 0.03);
}

.landing-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 80px;
}

.landing-brand {
    font-family: 'Manrope', sans-serif;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.06em;
    color: var(--color-primary-container);
}

.landing-brand img{
    width: 120px;
    height: auto;
}

.landing-nav {
    display: flex;
    align-items: center;
    gap: 48px;
}

.landing-nav a,
.landing-link-button,
.landing-footer-grid a,
.landing-footer-links-inline a {
    transition: opacity 0.2s ease, color 0.2s ease;
}

.landing-nav a {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(17, 24, 39, 0.6);
}

.landing-nav a:first-child {
    color: var(--color-primary-container);
}

.landing-nav a:hover,
.landing-link-button:hover,
.landing-footer-grid a:hover,
.landing-footer-links-inline a:hover {
    opacity: 1;
    color: var(--color-primary-container);
}

.landing-header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.landing-language-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(17, 24, 39, 0.05);
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(17, 24, 39, 0.4);
}

.landing-language-switch .material-symbols-outlined {
    font-size: 18px;
    color: var(--landing-muted);
}

.landing-language-item {
    cursor: pointer;
    transition: color 0.2s ease;
    color: rgba(17, 24, 39, 0.4);
}

.landing-language-item:hover {
    color: rgba(17, 24, 39, 0.6);
}

.landing-language-item.landing-language-active {
    color: var(--color-primary-container);
    font-weight: 900;
}

.landing-language-divider {
    opacity: 0.2;
}

.landing-link-button {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(17, 24, 39, 0.6);
}

.landing-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.landing-button:hover {
    transform: translateY(-2px);
}

.landing-button:focus-visible,
.landing-nav a:focus-visible,
.landing-link-button:focus-visible,
.landing-footer-grid a:focus-visible,
.landing-footer-links-inline a:focus-visible,
.landing-form input:focus-visible,
.landing-form textarea:focus-visible {
    outline: 2px solid rgba(0, 122, 138, 0.22);
    outline-offset: 3px;
}

.landing-button-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-container));
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 122, 138, 0.22);
}

.landing-button-primary:hover {
    box-shadow: 0 24px 44px rgba(0, 122, 138, 0.28);
}

.landing-button-secondary {
    background: transparent;
    color: var(--color-primary, #007a8a);
    border: 2px solid var(--color-primary, #007a8a);
}
.landing-button-secondary:hover {
    background: rgba(0, 122, 138, 0.07);
}

.landing-button-ghost {
    background: transparent;
    color: #ffffff;
}

.landing-button-small {
    min-height: 44px;
    padding: 0 28px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.landing-button-large {
    min-height: 64px;
    padding: 0 40px;
    font-size: 18px;
}

.landing-button-full {
    width: 100%;
    min-height: 60px;
    font-size: 18px;
}

.landing-hero {
    position: relative;
    min-height: 980px;
    padding: 160px 0 128px;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 122, 138, 0.05), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 122, 138, 0.03), transparent 40%),
        #ffffff;
}

.landing-hero-panel {
    position: absolute;
    top: 0;
    right: -8%;
    width: 50%;
    height: 100%;
    background: rgba(0, 122, 138, 0.02);
    transform: skewX(-12deg);
}

.landing-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 540px) minmax(0, 1fr);
    gap: 72px;
    align-items: center;
}

.landing-hero-copy,
.landing-hero-visual,
.landing-stat-block,
.landing-tool-card,
.landing-feature-card,
.landing-team-card,
.landing-testimonial-card,
.landing-contact-copy,
.landing-contact-card,
.landing-cta-inner {
    animation: landing-fade-up 0.55s ease;
}

.landing-eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    margin-bottom: 40px;
    border-radius: 999px;
    background: rgba(0, 122, 138, 0.05);
    border: 1px solid rgba(0, 122, 138, 0.1);
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 800;
    color: var(--color-primary-container);
    text-transform: uppercase;
    letter-spacing: 0.25em;
}

.landing-eyebrow-dot {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary-container);
    box-shadow: 0 0 0 6px rgba(0, 122, 138, 0.12);
}

.landing-hero-copy h1 {
    max-width: 620px;
    margin: 0 0 40px;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(3rem, 5.4vw, 4.5rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.06em;
}

.landing-hero-copy h1 span {
    color: var(--color-primary-container);
}

.landing-hero-copy p {
    max-width: 540px;
    margin: 0 0 48px;
    font-size: 20px;
    line-height: 1.6;
    color: rgba(75, 85, 99, 0.8);
    font-weight: 500;
}

.landing-hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.landing-hero-visual {
    position: relative;
    min-height: 660px;
}

.landing-hero-image-card {
    position: absolute;
    inset: 44px 54px 54px 40px;
    overflow: hidden;
    border-radius: 64px;
    box-shadow: var(--landing-shadow);
    transform: rotate(-2deg);
}

.landing-hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
}

.landing-hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent 55%);
}

.landing-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: var(--landing-shadow-soft);
}

.landing-floating-card-top {
    top: 4px;
    right: 0;
    width: 256px;
    padding: 24px;
    border-radius: 32px;
    animation: landing-float 6s ease-in-out infinite;
}

.landing-floating-card-bottom {
    bottom: -18px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 24px;
    animation: landing-float 8s ease-in-out infinite;
    animation-delay: 0.7s;
}

.landing-stat-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
}

.landing-icon-chip,
.landing-tool-icon,
.landing-feature-icon,
.landing-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 122, 138, 0.1);
    color: var(--color-primary-container);
}

.landing-icon-chip {
    width: 44px;
    height: 44px;
    border-radius: 14px;
}

.landing-live-badge {
    padding: 5px 8px;
    border-radius: 8px;
    background: rgba(0, 122, 138, 0.06);
    font-size: 10px;
    font-weight: 800;
    color: var(--color-primary-container);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.landing-card-label {
    margin: 0 0 4px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(75, 85, 99, 0.62);
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.landing-card-title {
    margin: 0;
    font-size: 15px;
    font-weight: 800;
    color: var(--landing-text);
}

.landing-stat-card-value {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 16px;
}

.landing-stat-card-value strong {
    font-family: 'Manrope', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.landing-stat-card-value span {
    padding-bottom: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary-container);
}

.landing-mini-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 48px;
}

.landing-mini-bars span {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: rgba(0, 122, 138, 0.12);
}

.landing-mini-bars span:nth-child(4) {
    background: rgba(0, 122, 138, 0.2);
}

.landing-mini-bars span:nth-child(5) {
    background: var(--color-primary-container);
}

.landing-mini-bar-1 {
    height: 40%;
}

.landing-mini-bar-2 {
    height: 60%;
}

.landing-mini-bar-3 {
    height: 50%;
}

.landing-mini-bar-4 {
    height: 80%;
}

.landing-mini-bar-5 {
    height: 95%;
}

.landing-progress-ring {
    position: relative;
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
}

.landing-progress-ring svg {
    width: 56px;
    height: 56px;
    transform: rotate(-90deg);
}

.landing-progress-ring span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    color: var(--color-primary-container);
}

.landing-progress-track,
.landing-progress-value {
    fill: none;
    stroke-width: 4;
}

.landing-progress-track {
    stroke: rgba(0, 122, 138, 0.12);
}

.landing-progress-value {
    stroke: var(--color-primary-container);
    stroke-linecap: round;
    stroke-dasharray: 151;
    stroke-dashoffset: 30;
}

.landing-stats {
    padding: 96px 0;
    background: #ffffff;
}

.landing-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-stat-block {
    padding: 0 48px;
}

.landing-stat-block + .landing-stat-block {
    box-shadow: inset 1px 0 0 rgba(229, 231, 235, 0.38);
}

.landing-stat-kicker,
.landing-section-heading span,
.landing-footer-grid h3 {
    margin: 0 0 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: var(--color-primary-container);
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.landing-stat-number {
    margin: 0 0 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 1;
}

.landing-stat-number span {
    margin-left: 4px;
    color: var(--color-primary-container);
    font-size: 32px;
}

.landing-stat-caption,
.landing-tool-card p,
.landing-team-text,
.landing-testimonial-author span,
.landing-footer-brand-block p,
.landing-footer-grid a,
.landing-footer-bottom p,
.landing-footer-links-inline a {
    color: rgba(75, 85, 99, 0.68);
}

.landing-stat-caption {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.landing-tools,
.landing-team,
.landing-contact {
    padding: 128px 0;
    background: #ffffff;
}

.landing-intelligence,
.landing-testimonials {
    padding: 160px 0;
    background: linear-gradient(180deg, var(--landing-bg), var(--landing-surface-alt));
}

.landing-section-heading {
    margin-bottom: 64px;
}

.landing-section-heading-centered {
    text-align: center;
}

.landing-section-heading-spacious {
    margin-bottom: 96px;
}

.landing-section-heading h2 {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.5rem, 3vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1.12;
}

.landing-section-heading p {
    max-width: 720px;
    margin: 24px auto 0;
    font-size: 20px;
    color: rgba(75, 85, 99, 0.72);
    line-height: 1.55;
    font-weight: 500;
}

.landing-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.landing-tool-card {
    padding: 32px;
    border-radius: 40px;
    background: var(--landing-surface-soft);
    box-shadow: inset 0 0 0 1px rgba(229, 231, 235, 0.32);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.landing-tool-card:hover {
    transform: translateY(-4px);
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(0, 122, 138, 0.16), 0 18px 34px rgba(15, 23, 42, 0.05);
}

.landing-tool-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    border-radius: 16px;
}

.landing-tool-card h3,
.landing-feature-card h3,
.landing-team-card h3,
.landing-showcase-copy h3 {
    margin: 0 0 10px;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.landing-tool-card h3 {
    font-size: 20px;
}

.landing-tool-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
}

.landing-intelligence-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: start;
}

.landing-showcase-card {
    position: sticky;
    top: 128px;
    min-height: 720px;
    overflow: hidden;
    border-radius: 48px;
    box-shadow: var(--landing-shadow);
    background: rgba(0, 122, 138, 0.05);
}

.landing-showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 95, 108, 0.7), transparent 60%);
}

.landing-showcase-copy {
    position: absolute;
    right: 48px;
    bottom: 42px;
    left: 48px;
    color: #ffffff;
}

.landing-showcase-chip {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    margin-bottom: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.landing-showcase-chip p,
.landing-showcase-chip strong {
    margin: 0;
}

.landing-showcase-chip p {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    opacity: 0.8;
}

.landing-showcase-chip strong {
    font-size: 14px;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
}

.landing-showcase-chip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary-container);
    color: #ffffff;
}

.landing-showcase-copy h3 {
    font-size: 32px;
}

.landing-showcase-copy p:last-child {
    margin: 0;
    max-width: 520px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.landing-feature-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.landing-feature-card {
    display: flex;
    gap: 32px;
    padding: 32px;
    border-radius: 32px;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(229, 231, 235, 0.5);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.landing-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: inset 0 0 0 1px rgba(0, 122, 138, 0.18), 0 18px 34px rgba(0, 122, 138, 0.05);
}

.landing-feature-icon,
.landing-contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    flex: 0 0 auto;
}

.landing-feature-icon .material-symbols-outlined {
    font-size: 32px;
}

.landing-feature-card h3 {
    font-size: 24px;
}

.landing-feature-card p {
    margin: 0;
    color: rgba(75, 85, 99, 0.72);
    font-size: 14px;
    line-height: 1.7;
}

.landing-team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.landing-team-card {
    text-align: center;
}

.landing-team-photo {
    width: 160px;
    height: 160px;
    margin: 0 auto 32px;
    overflow: hidden;
    border-radius: 50%;
    filter: grayscale(1);
    box-shadow: var(--landing-shadow-soft);
    border: 4px solid rgba(0, 122, 138, 0.05);
    transition: filter 0.35s ease, transform 0.35s ease;
}

.landing-team-card:hover .landing-team-photo {
    filter: grayscale(0);
    transform: translateY(-4px);
}

.landing-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-team-card h3 {
    font-size: 24px;
}

.landing-team-role {
    margin: 0 0 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary-container);
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.landing-team-text {
    margin: 0;
    padding: 0 24px;
    font-size: 14px;
    line-height: 1.8;
}

.landing-testimonials-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.landing-testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    padding: 40px;
    border-radius: 32px;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(229, 231, 235, 0.22);
}

.landing-testimonial-quote {
    margin: 0 0 40px;
    font-size: 24px;
    line-height: 1.6;
    color: var(--landing-text);
}

.landing-testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(229, 231, 235, 0.45);
}

.landing-testimonial-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    overflow: hidden;
    border-radius: 50%;
    background: #e5e7eb;
    flex: 0 0 auto;
}

.landing-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-testimonial-avatar-icon {
    background: #f3f4f6;
    color: var(--color-primary-container);
}

.landing-testimonial-author strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    color: var(--landing-text);
}

.landing-testimonial-author span {
    display: block;
    font-size: 12px;
}

.landing-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
    gap: 96px;
    align-items: center;
}

.landing-contact-copy > p {
    max-width: 560px;
    margin: 0 0 48px;
    font-size: 20px;
    line-height: 1.6;
    color: rgba(75, 85, 99, 0.72);
}

.landing-contact-lines {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.landing-contact-line {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.landing-contact-card {
    padding: 48px;
    border-radius: 48px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08), inset 0 0 0 1px rgba(229, 231, 235, 0.35);
}

.landing-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.landing-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.landing-form label span {
    font-size: 10px;
    font-weight: 800;
    color: rgba(75, 85, 99, 0.62);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.landing-form input,
.landing-form textarea {
    width: 100%;
    padding: 18px 24px;
    border: none;
    border-radius: 24px;
    background: var(--landing-surface-soft);
    font: inherit;
    color: var(--landing-text);
    transition: box-shadow 0.2s ease, background 0.2s ease;
}

.landing-form input:focus,
.landing-form textarea:focus {
    outline: none;
    background: #ffffff;
    box-shadow: 0 0 0 2px rgba(0, 122, 138, 0.16);
}

.landing-form textarea {
    min-height: 136px;
    resize: vertical;
}

.landing-form-feedback {
    display: none;
    padding: 14px 18px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
}

.landing-form-feedback.is-error {
    display: block;
    color: #991b1b;
    background: rgba(239, 68, 68, 0.08);
}

.landing-form-feedback.is-success {
    display: block;
    color: #065f46;
    background: rgba(16, 185, 129, 0.1);
}

.landing-button[disabled] {
    opacity: 0.72;
    cursor: wait;
    transform: none;
}

.landing-cta {
    position: relative;
    padding: 160px 0;
    overflow: hidden;
    background: #121827;
    color: #ffffff;
}

.landing-cta-curve {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.landing-cta-curve::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -55%;
    width: 1300px;
    height: 1300px;
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
}

.landing-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
}

.landing-cta h2 {
    margin: 0 0 32px;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.06em;
}

.landing-cta p {
    max-width: 720px;
    margin: 0 auto 48px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 20px;
    line-height: 1.7;
}

.landing-cta-actions {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
}

.landing-cta-note {
    font-size: 10px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.landing-footer {
    padding: 96px 0;
    background: #ffffff;
    box-shadow: inset 0 1px 0 rgba(229, 231, 235, 0.3);
}

.landing-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 80px;
}

.landing-footer-brand-block p {
    max-width: 280px;
    margin: 24px 0 0;
    font-size: 14px;
    line-height: 1.7;
}

.landing-footer-grid > div {
    display: flex;
    flex-direction: column;
}

.landing-footer-grid a {
    margin-bottom: 16px;
    font-size: 14px;
}

.landing-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 96px;
    padding-top: 48px;
    box-shadow: inset 0 1px 0 rgba(229, 231, 235, 0.3);
}

.landing-footer-bottom p,
.landing-footer-links-inline a {
    margin: 0;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.landing-footer-links-inline {
    display: flex;
    gap: 32px;
}

@media (max-width: 1200px) {
    .landing-nav {
        gap: 24px;
    }

    .landing-hero-grid,
    .landing-intelligence-grid,
    .landing-contact-grid,
    .landing-footer-grid {
        grid-template-columns: 1fr;
    }

    .landing-hero-copy {
        max-width: 700px;
    }

    .landing-hero-visual {
        min-height: 560px;
    }

    .landing-hero-image-card {
        inset: 36px 28px 44px 24px;
    }

    .landing-showcase-card {
        position: relative;
        top: 0;
        min-height: 640px;
    }

    .landing-tools-grid,
    .landing-testimonials-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-footer-grid {
        gap: 48px;
    }
}

@media (max-width: 900px) {
    .landing-shell,
    .landing-shell-narrow {
        width: min(100% - 32px, 1440px);
    }

    .landing-header-inner {
        min-height: 72px;
    }

    .landing-nav,
    .landing-language-switch,
    .landing-link-button {
        display: none;
    }

    .landing-hero {
        padding: 128px 0 96px;
        min-height: auto;
    }

    .landing-hero-grid,
    .landing-contact-grid {
        gap: 48px;
    }

    .landing-hero-visual {
        min-height: 460px;
    }

    .landing-contact-line {
        font-size: 16px;
    }

    .landing-hero-image-card {
        inset: 32px 20px 32px 0;
        border-radius: 40px;
    }

    .landing-floating-card-top {
        width: 220px;
    }

    .landing-floating-card-bottom {
        left: 0;
    }

    .landing-stats,
    .landing-tools,
    .landing-team,
    .landing-contact,
    .landing-footer {
        padding: 72px 0;
    }

    .landing-intelligence,
    .landing-testimonials,
    .landing-cta {
        padding: 88px 0;
    }

    .landing-stats-grid,
    .landing-tools-grid,
    .landing-team-grid,
    .landing-testimonials-row {
        grid-template-columns: 1fr;
    }

    .landing-stat-block {
        padding: 24px 0;
        text-align: center;
    }

    .landing-stat-block + .landing-stat-block {
        box-shadow: inset 0 1px 0 rgba(229, 231, 235, 0.4);
    }

    .landing-feature-card {
        gap: 20px;
        padding: 24px;
    }

    .landing-showcase-copy {
        right: 24px;
        bottom: 24px;
        left: 24px;
    }

    .landing-contact-card {
        padding: 32px 24px;
        border-radius: 32px;
    }

    .landing-form input,
    .landing-form textarea {
        padding: 16px 18px;
        border-radius: 18px;
    }

    .landing-cta-actions,
    .landing-footer-bottom,
    .landing-footer-links-inline {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .landing-header-actions {
        gap: 12px;
    }

    .landing-button-small {
        min-height: 40px;
        padding: 0 18px;
        font-size: 10px;
    }

    .landing-hero-copy p,
    .landing-section-heading p,
    .landing-contact-copy > p,
    .landing-cta p {
        font-size: 17px;
    }

    .landing-hero-copy h1 {
        max-width: 360px;
    }

    .landing-header-actions {
        margin-left: auto;
    }

    .landing-header .landing-button-small {
        padding: 0 16px;
    }

    .landing-hero-visual {
        min-height: 380px;
    }

    .landing-hero-image-card {
        inset: 24px 0 24px 0;
    }

    .landing-floating-card-top {
        top: 0;
        width: 184px;
        padding: 16px;
        border-radius: 24px;
    }

    .landing-floating-card-bottom {
        bottom: -8px;
        gap: 14px;
        padding: 16px;
    }

    .landing-stat-card-value strong {
        font-size: 34px;
    }

    .landing-tool-card,
    .landing-testimonial-card {
        padding: 24px;
    }

    .landing-testimonial-quote {
        font-size: 20px;
    }

    .landing-contact-line {
        align-items: flex-start;
    }

    .landing-showcase-card {
        min-height: 520px;
    }

    .landing-showcase-copy h3,
    .landing-team-card h3,
    .landing-feature-card h3 {
        font-size: 22px;
    }

    .landing-cta h2 {
        font-size: 48px;
    }
}

/* ============================================================
   NEWS / NOVICE — landing section, full list, single article
   ============================================================ */
.landing-news {
    padding: 128px 0;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.landing-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 16px;
}
.landing-news-grid--full { margin-top: 0; }

.landing-news-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.landing-news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
    border-color: rgba(0,122,138,.4);
}

.landing-news-cover {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f1f5f9;
    text-decoration: none;
}
.landing-news-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}
.landing-news-card:hover .landing-news-cover img { transform: scale(1.04); }
.landing-news-cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
}
.landing-news-cover-placeholder .material-symbols-outlined {
    font-size: 48px;
    color: #007a8a;
    opacity: .5;
    font-variation-settings: 'FILL' 1;
}

.landing-news-body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.landing-news-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.landing-news-cat {
    background: rgba(0,122,138,.08);
    color: #005f6c;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.landing-news-sep { color: #cbd5e1; }
.landing-news-date { font-size: 12px; color: #94a3b8; }

.landing-news-title {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
    color: #0f172a;
    margin: 0 0 12px;
}
.landing-news-title a {
    color: inherit;
    text-decoration: none;
    transition: color .15s;
}
.landing-news-title a:hover { color: #007a8a; }

.landing-news-excerpt {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 18px;
    flex: 1;
}

.landing-news-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #007a8a;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    margin-top: auto;
    transition: gap .2s;
}
.landing-news-link:hover { gap: 10px; }
.landing-news-link .material-symbols-outlined { font-size: 18px; }

/* News list page hero */
.news-hero {
    padding: 96px 0 56px;
    text-align: center;
    background: radial-gradient(ellipse 70% 60% at 50% -10%, rgba(0,122,138,.08) 0%, transparent 70%);
}
.news-hero .landing-shell { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.news-hero h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: #0f172a;
    max-width: 720px;
    line-height: 1.15;
    margin: 0;
}
.news-hero h1 span { color: #007a8a; }
.news-hero p { font-size: 17px; color: #475569; max-width: 520px; margin: 0; }

.news-list-section { padding: 0 0 128px; }

/* Single article */
.news-article { padding: 96px 0 80px; }
.news-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 32px;
    transition: color .15s;
}
.news-back-link:hover { color: #007a8a; }
.news-back-link .material-symbols-outlined { font-size: 18px; }

.news-article-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.news-article-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin: 0 0 18px;
}

.news-article-lead {
    font-size: 18px;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 32px;
}

.news-article-cover {
    margin: 0 0 36px;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #f1f5f9;
}
.news-article-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }

.news-article-body {
    font-size: 17px;
    color: #1e293b;
    line-height: 1.75;
}
.news-article-body h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
    margin: 36px 0 14px;
    letter-spacing: -.01em;
}
.news-article-body h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 28px 0 12px;
}
.news-article-body p { margin: 0 0 18px; }
.news-article-body ul, .news-article-body ol { margin: 0 0 22px 22px; }
.news-article-body li { margin-bottom: 6px; }
.news-article-body a { color: #007a8a; }
.news-article-body strong { font-weight: 700; }
.news-article-body blockquote {
    border-left: 3px solid #007a8a;
    padding: 6px 0 6px 18px;
    margin: 22px 0;
    color: #475569;
    font-style: italic;
}

.news-related-section { padding: 64px 0 128px; background: #f8fafc; }

@media (max-width: 900px) {
    .landing-news-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}