/**
 * MekryPro – etusivu (blueprint-tyyli)
 * @author Kaido Mägi
 * @copyright 2026
 */

/* ============================================================
   Blueprint variables (home page)
   ============================================================ */
body.home-page {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --home-bgTop: #070b14;
    --home-bgMid: #060a12;
    --home-bgBot: #050912;
    --home-mint: #3cb8a8;
    --home-mint2: #33d6ff;
    --home-sand: #ffd7a8;
    --home-text: rgba(255, 255, 255, 0.92);
    --home-muted: rgba(255, 255, 255, 0.7);
    --home-line: rgba(255, 255, 255, 0.12);
    --home-panel: rgba(255, 255, 255, 0.05);
    --home-shadowDeep: 0 38px 140px rgba(0, 0, 0, 0.7);
    --home-shadowCard: 0 18px 60px rgba(0, 0, 0, 0.5);
    --home-radius: var(--radius-md);
    --home-radius2: var(--radius-lg);
    --home-max: 1280px;
    --home-pad: clamp(18px, 3vw, 36px);
    --home-h1: clamp(28px, 3.5vw, 48px);
    --home-h2: clamp(26px, 3vw, 40px);
    --home-h3: clamp(16px, 1.7vw, 20px);
}

/* Blueprint background gradient */
body.home-page {
    margin: 0 !important;
    padding-top: 56px; /* fixed topbar */
    background:
        radial-gradient(1200px 800px at 20% 12%, rgba(60, 184, 168, 0.07), transparent 62%),
        radial-gradient(1200px 800px at 82% 18%, rgba(51, 214, 255, 0.06), transparent 62%),
        radial-gradient(1400px 900px at 50% 92%, rgba(255, 215, 168, 0.04), transparent 65%),
        linear-gradient(180deg, var(--home-bgTop) 0%, var(--home-bgMid) 55%, var(--home-bgBot) 100%);
    color: var(--home-text);
    min-height: 100vh;
}

/* Blueprint grid (soft fade) */
body.home-page::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.22;
    background:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(1400px 900px at 50% 22%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.75) 45%, rgba(0, 0, 0, 0.2) 78%, rgba(0, 0, 0, 0) 100%);
    mask-image: radial-gradient(1400px 900px at 50% 22%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.75) 45%, rgba(0, 0, 0, 0.2) 78%, rgba(0, 0, 0, 0) 100%);
    transform: translateZ(0);
}

body.home-page::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.12;
    background:
        linear-gradient(rgba(60, 184, 168, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(60, 184, 168, 0.03) 1px, transparent 1px);
    background-size: 280px 280px;
    -webkit-mask-image: radial-gradient(1400px 900px at 50% 22%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.18) 80%, rgba(0, 0, 0, 0) 100%);
    mask-image: radial-gradient(1400px 900px at 50% 22%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.18) 80%, rgba(0, 0, 0, 0) 100%);
    transform: translateZ(0);
}

/* Vignette */
body.home-page .home-vignette {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(1200px 900px at 50% 25%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 55%, rgba(0, 0, 0, 0.22) 100%);
    opacity: 0.9;
    transform: translateZ(0);
    z-index: 0;
}

/* Per-section theme background: blueprint gradient + grid + vignette */
body.home-page .home-theme-block {
    position: relative;
}

body.home-page .home-theme-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(ellipse 130% 90% at 50% 50%, transparent 22%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0.25) 100%),
        radial-gradient(900px 480px at 50% 0%, rgba(60, 184, 168, 0.07), transparent 58%),
        radial-gradient(900px 480px at 50% 100%, rgba(255, 215, 168, 0.035), transparent 58%),
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(rgba(60, 184, 168, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(60, 184, 168, 0.025) 1px, transparent 1px);
    background-size:
        100% 100%,
        900px 480px,
        900px 480px,
        56px 56px,
        56px 56px,
        280px 280px,
        280px 280px;
    background-position: 0 0;
    background-repeat: no-repeat, no-repeat, no-repeat, repeat, repeat, repeat, repeat;
}

body.home-page .home-theme-block .landing-hero-content,
body.home-page .home-theme-block .home-about-wrap,
body.home-page .home-theme-block .home-how-wrap,
body.home-page .home-theme-block .pricing-container {
    position: relative;
    z-index: 1;
}

/* ============================================================
   Landing hero
   ============================================================ */
body.home-page .landing-hero {
    background: transparent;
    color: var(--home-text);
    text-align: left;
    padding: clamp(36px, 6.4vw, 86px) 0 54px;
    position: relative;
    z-index: 1;
}

body.home-page .landing-hero-content {
    max-width: var(--home-max);
    margin: 0 auto;
    padding: 0 var(--home-pad);
}

/* Hero grid (text + board) */
body.home-page .home-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(24px, 3.8vw, 58px);
    align-items: center;
}

@media (max-width: 980px) {
    body.home-page .home-hero-grid {
        grid-template-columns: 1fr;
    }
}

/* Kicker badge */
body.home-page .home-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid var(--home-line);
    background: var(--home-panel);
    color: var(--home-muted);
    font-size: 13px;
    font-weight: 850;
}

body.home-page .home-hero-kicker .home-kicker-rule {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 215, 168, 0.88);
    box-shadow: 0 0 0 6px rgba(255, 215, 168, 0.1);
}

/* Hero typography */
body.home-page .landing-hero h1 {
    font-size: var(--home-h1);
    line-height: 1.02;
    margin: 14px 0 12px;
    letter-spacing: -0.8px;
    color: var(--home-text);
}

body.home-page .home-hero-lead {
    color: var(--home-muted);
    font-size: clamp(16px, 1.7vw, 18px);
    line-height: 1.75;
    margin: 0 0 22px;
    max-width: 70ch;
}

/* CTAs */
body.home-page .home-hero-ctas {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    max-width: 520px;
    margin-top: 16px;
}

body.home-page .home-hero-cta-row-main,
body.home-page .home-hero-ctas .home-demo-start-form {
    display: contents;
}

body.home-page .home-hero-ctas .landing-cta,
body.home-page .home-hero-ctas .home-demo-start-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    min-width: 0;
    height: 34px;
    min-height: 34px;
    padding: 6px 6px;
    border: 1px solid rgba(127, 215, 210, 0.22);
    border-radius: 9px;
    background: rgba(7, 15, 29, 0.72);
    color: var(--home-text);
    font-weight: 760;
    font-size: 10px;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-decoration: none;
    box-sizing: border-box;
    appearance: none;
    box-shadow: none;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

body.home-page .home-hero-ctas .landing-cta:hover,
body.home-page .home-hero-ctas .home-demo-start-btn:hover {
    transform: translateY(-1px);
    background: rgba(12, 24, 39, 0.78);
    border-color: rgba(127, 215, 210, 0.3);
    text-decoration: none;
}

/* Hero primary CTA (Start trial) – MekryPro button style */
body.home-page .home-hero-ctas .landing-cta.landing-cta-primary,
body.home-page .home-hero-ctas .landing-cta-trial.landing-cta-primary {
    border-color: rgba(127, 215, 210, 0.52);
    color: #d8f7ff;
    background: rgba(127, 215, 210, 0.16);
}

body.home-page .home-hero-ctas .landing-cta.landing-cta-primary:hover {
    background: rgba(127, 215, 210, 0.22);
    border-color: rgba(127, 215, 210, 0.62);
    color: #f0fdff;
}

body.home-page .home-hero-ctas .landing-cta-demo {
    border-color: rgba(127, 215, 210, 0.34);
    background: rgba(9, 33, 41, 0.62);
    color: #d8f7ff;
}

body.home-page .home-hero-ctas .landing-cta-features {
    border-color: rgba(148, 163, 184, 0.22);
    background: rgba(10, 17, 31, 0.68);
    color: #e6edf7;
}

body.home-page .home-hero-ctas .landing-cta-login-row {
    grid-column: 1 / -1;
    height: 34px;
    min-height: 34px;
    margin-top: 1px;
    border-color: rgba(125, 211, 252, 0.32);
    background:
        linear-gradient(180deg, rgba(125, 211, 252, 0.075), rgba(49, 244, 210, 0.04)),
        rgba(8, 15, 29, 0.82);
    color: rgba(226, 244, 255, 0.94);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        0 0 0 1px rgba(15, 23, 42, 0.5);
}

body.home-page .home-hero-ctas .landing-cta-label {
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Trust mini badges */
body.home-page .home-hero-mini {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 9px;
    max-width: 520px;
    padding: 0 8px;
    color: #cbd5e1;
}

body.home-page .home-hero-mini span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 18px;
    padding: 0;
    border-radius: 0;
    border: 0;
    background: transparent;
    font-size: 11px;
    font-weight: 650;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

body.home-page .home-hero-mini .home-tick {
    width: auto;
    height: auto;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #7fd7d2;
    background: none;
    border: 0;
    font-size: 11px;
    line-height: 1;
}

/* ============================================================
   Board mockup (3D perspective)
   ============================================================ */
body.home-page .home-board-wrap {
    position: relative;
    width: 100%;
    max-width: 560px;
    justify-self: end;
}

body.home-page .home-board {
    border-radius: var(--home-radius2);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.46);
    overflow: hidden;
    transform: perspective(1100px) rotateX(5deg) rotateY(-6deg);
    transform-origin: center;
    transition: transform 0.18s ease;
    position: relative;
}

body.home-page .home-board::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 110px;
    background: radial-gradient(800px 140px at 30% 0%, rgba(255, 255, 255, 0.15), transparent 60%);
    pointer-events: none;
    opacity: 0.9;
}

body.home-page .home-board::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    border-radius: var(--home-radius2);
    pointer-events: none;
}

body.home-page .home-board-wrap:hover .home-board {
    transform: perspective(1100px) rotateX(4deg) rotateY(-4deg) translateY(-2px);
}

@media (max-width: 980px) {
    body.home-page .home-board {
        transform: none;
    }
    body.home-page .home-board-wrap:hover .home-board {
        transform: none;
    }
}

/* Board header */
body.home-page .home-board-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(7, 11, 20, 0.35);
    color: var(--home-muted);
    font-size: 13px;
}

body.home-page .home-board-title {
    font-weight: 900;
    letter-spacing: 0.2px;
}

/* Tabs */
body.home-page .home-board-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

body.home-page .home-board-tab {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    color: var(--home-muted);
    padding: 8px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
    user-select: none;
}

body.home-page .home-board-tab:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.2);
}

body.home-page .home-board-tab.active {
    background: linear-gradient(135deg, rgba(60, 184, 168, 0.18), rgba(255, 215, 168, 0.14));
    border-color: rgba(60, 184, 168, 0.28);
    color: var(--home-text);
}

/* Board body */
body.home-page .home-board-body {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 14px;
    padding: 16px;
}

@media (max-width: 560px) {
    body.home-page .home-board-body {
        grid-template-columns: 1fr;
    }
}

/* Blueprint SVG area */
body.home-page .home-blueprint {
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(11, 22, 48, 0.6), rgba(11, 22, 48, 0.35));
    box-shadow: var(--home-shadowCard);
    padding: 14px;
    position: relative;
    overflow: hidden;
    min-height: 340px;
}

body.home-page .home-blueprint svg {
    width: 100%;
    height: 320px;
    display: block;
    filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.38));
}

body.home-page .home-bp-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--home-muted);
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: 900;
}

body.home-page .home-bp-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--home-muted);
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

body.home-page .home-blueprint .home-glow {
    position: absolute;
    inset: -60px -60px auto auto;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle at 30% 30%, rgba(60, 184, 168, 0.24), transparent 60%);
    opacity: 0.85;
    filter: blur(2px);
    pointer-events: none;
}

/* Side panels */
body.home-page .home-board-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

body.home-page .home-board-panel-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

body.home-page .home-board-panel-group[hidden] {
    display: none !important;
}

body.home-page .home-board-panel {
    border-radius: var(--home-radius);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: var(--home-shadowCard);
    padding: 14px;
    min-height: 108px;
}

body.home-page .home-board-panel h4 {
    margin: 0 0 6px;
    font-size: 13px;
    font-weight: 900;
    color: var(--home-text);
}

body.home-page .home-board-panel .home-row {
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    margin: 10px 0;
}

body.home-page .home-board-panel .home-row-sm {
    width: 60%;
}

body.home-page .home-board-panel .home-row-md {
    width: 78%;
}

body.home-page .home-board-panel .home-row-lg {
    width: 92%;
}

body.home-page .home-board-panel .home-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--home-muted);
    font-size: 12px;
    font-weight: 900;
}

body.home-page .home-board-panel .home-chip b {
    color: var(--home-text);
}

body.home-page .home-board-body.mp-home-preview-panes {
    display: block;
}

body.home-page .mp-home-preview-panes {
    position: relative;
    min-height: 398px;
}

body.home-page .mp-home-preview-pane {
    animation: mpHomePreviewIn 180ms ease-out;
    height: 100%;
}

body.home-page .mp-home-preview-pane > .home-blueprint,
body.home-page .mp-home-preview-pane > .mp-home-protocol-preview,
body.home-page .mp-home-preview-pane > .mp-home-pricing-preview {
    box-sizing: border-box;
    min-height: 398px;
}

body.home-page .mp-home-preview-pane[hidden] {
    display: none !important;
}

@keyframes mpHomePreviewIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

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

body.home-page .mp-home-blueprint__meta {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    display: grid;
    gap: 10px;
    min-width: 126px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.68);
    color: var(--home-soft);
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

body.home-page .mp-home-blueprint__meta div {
    display: flex;
    align-items: center;
    gap: 8px;
}

body.home-page .mp-home-meta-icon,
body.home-page .mp-home-meta-drop {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    border: 1px solid rgba(148, 210, 255, 0.58);
    opacity: 0.9;
}

body.home-page .mp-home-meta-icon {
    border-radius: 4px;
}

body.home-page .mp-home-meta-drop {
    border: 0;
}

body.home-page .mp-home-meta-drop::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 10px;
    height: 14px;
    border: 1.5px solid rgba(148, 210, 255, 0.7);
    border-radius: 9px 9px 11px 11px;
    transform: rotate(38deg);
}

body.home-page .mp-home-protocol-preview,
body.home-page .mp-home-pricing-preview {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(59, 130, 246, 0.35);
    background:
        radial-gradient(circle at 80% 10%, rgba(49, 244, 210, 0.14), transparent 38%),
        linear-gradient(180deg, rgba(2, 14, 28, 0.96), rgba(8, 18, 34, 0.96));
}

body.home-page .mp-home-protocol-preview::before,
body.home-page .mp-home-pricing-preview::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.34;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(77, 235, 210, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(77, 235, 210, 0.055) 1px, transparent 1px);
    background-size: 24px 24px;
}

body.home-page .mp-home-preview-card-head,
body.home-page .mp-home-protocol-list,
body.home-page .mp-home-protocol-footer,
body.home-page .mp-home-price-preview-rows,
body.home-page .mp-home-price-preview-total {
    position: relative;
    z-index: 1;
}

body.home-page .mp-home-preview-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

body.home-page .mp-home-preview-card-head strong {
    display: block;
    color: var(--home-text);
    font-size: 18px;
    line-height: 1.15;
}

body.home-page .mp-home-preview-card-head span {
    display: block;
    margin-top: 4px;
    color: var(--home-soft);
    font-size: 13px;
}

body.home-page .mp-home-preview-card-head em {
    display: inline-grid;
    place-items: center;
    min-width: 48px;
    height: 34px;
    padding: 0 10px;
    border-radius: 999px;
    color: var(--home-text);
    font-style: normal;
    font-weight: 900;
    border: 1px solid rgba(49, 244, 210, 0.32);
    background: rgba(49, 244, 210, 0.14);
}

body.home-page .mp-home-protocol-list {
    display: grid;
    gap: 10px;
}

body.home-page .mp-home-protocol-list div {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    padding: 9px 11px;
    border-radius: 12px;
    color: var(--home-muted);
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.14);
    font-size: 13px;
}

body.home-page .mp-home-protocol-list span {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    border-radius: 50%;
    color: var(--home-accent);
    border: 1px solid rgba(49, 244, 210, 0.52);
    background: rgba(49, 244, 210, 0.1);
    font-weight: 900;
}

body.home-page .mp-home-protocol-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
    padding: 13px 14px;
    border-radius: 14px;
    color: var(--home-text);
    background: rgba(49, 244, 210, 0.1);
    border: 1px solid rgba(49, 244, 210, 0.25);
}

body.home-page .mp-home-protocol-footer strong {
    color: var(--home-accent);
    font-size: 24px;
}

body.home-page .mp-home-price-preview-rows {
    display: grid;
    gap: 10px;
}

body.home-page .mp-home-price-preview-rows div,
body.home-page .mp-home-price-preview-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 13px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.14);
}

body.home-page .mp-home-price-preview-rows span {
    color: var(--home-muted);
    font-size: 13px;
}

body.home-page .mp-home-price-preview-rows strong {
    color: var(--home-text);
    font-size: 14px;
}

body.home-page .mp-home-price-preview-total {
    margin-top: 18px;
    background: linear-gradient(135deg, rgba(49, 244, 210, 0.16), rgba(15, 23, 42, 0.84));
    border-color: rgba(49, 244, 210, 0.34);
}

body.home-page .mp-home-price-preview-total span {
    color: var(--home-muted);
    font-size: 13px;
}

body.home-page .mp-home-price-preview-total strong {
    color: var(--home-accent);
    font-size: 24px;
    letter-spacing: -0.04em;
}

/* ============================================================
   How it works section
   ============================================================ */
body.home-page .home-how-section {
    padding: 62px 0;
    position: relative;
    z-index: 1;
}

body.home-page .home-how-wrap {
    max-width: var(--home-max);
    margin: 0 auto;
    padding: 0 var(--home-pad);
}

body.home-page .home-how-section h2 {
    font-size: clamp(30px, 3vw, 42px);
    margin: 0 0 12px;
    letter-spacing: -0.04em;
    color: var(--home-text);
    text-align: center;
}

body.home-page .home-how-subtitle {
    margin: 0 auto 24px;
    color: var(--home-muted);
    line-height: 1.6;
    max-width: 68ch;
    font-size: 14px;
    text-align: center;
}

body.home-page .home-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

@media (max-width: 980px) {
    body.home-page .home-how-grid {
        grid-template-columns: 1fr;
    }
}

body.home-page .home-how-card {
    position: relative;
    overflow: hidden;
    min-height: 126px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 92% 18%, rgba(49, 244, 210, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(12, 20, 34, 0.94), rgba(5, 12, 24, 0.98));
    border: 1px solid rgba(127, 215, 210, 0.16);
    padding: 18px 20px;
    box-shadow:
        0 14px 36px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

body.home-page .home-how-card:hover {
    transform: translateY(-1px);
    border-color: rgba(127, 215, 210, 0.24);
    background:
        radial-gradient(circle at 92% 18%, rgba(49, 244, 210, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(13, 22, 36, 0.95), rgba(5, 12, 24, 0.98));
}

body.home-page .home-how-badge {
    position: absolute;
    z-index: 0;
    right: 16px;
    top: 50%;
    width: auto;
    height: auto;
    margin: 0;
    color: rgba(127, 215, 210, 0.12);
    background: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: clamp(58px, 5.8vw, 84px);
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -0.1em;
    transform: translateY(-50%);
    text-shadow: 0 0 20px rgba(127, 215, 210, 0.12);
}

body.home-page .home-how-card h3 {
    position: relative;
    z-index: 1;
    max-width: 78%;
    font-size: 17px;
    margin: 0 0 8px;
    color: var(--home-text);
    letter-spacing: -0.03em;
}

body.home-page .home-how-card p {
    position: relative;
    z-index: 1;
    max-width: 88%;
    margin: 0;
    color: #cbd5e1;
    line-height: 1.55;
    font-size: 13px;
}

/* ============================================================
   About section (Mikä Mekry Pro on?)
   ============================================================ */
body.home-page .home-about-section {
    padding: 74px 0;
    position: relative;
    z-index: 1;
}

body.home-page .home-about-wrap {
    max-width: var(--home-max);
    margin: 0 auto;
    padding: 0 var(--home-pad);
}

body.home-page .home-about-section h2 {
    font-size: var(--home-h2);
    margin: 0 0 28px;
    letter-spacing: -0.3px;
    color: var(--home-text);
    text-align: center;
}

body.home-page .home-about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    body.home-page .home-about-grid {
        grid-template-columns: 1fr;
    }
}

body.home-page .home-about-card {
    border-radius: var(--home-radius);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    box-shadow: none;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

body.home-page .home-about-card:hover {
    transform: translateY(-2px);
    border-color: rgba(60, 184, 168, 0.25);
    background: rgba(255, 255, 255, 0.06);
}

body.home-page .home-about-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(60, 184, 168, 0.9);
    background: rgba(60, 184, 168, 0.1);
    border: 1px solid rgba(60, 184, 168, 0.2);
    margin-bottom: 16px;
}

body.home-page .home-about-icon svg {
    flex-shrink: 0;
}

body.home-page .home-about-card p {
    margin: 0;
    color: var(--home-muted);
    line-height: 1.7;
    font-size: 15px;
}

/* Override landing sections on home for blueprint consistency */
body.home-page .landing-section {
    background: transparent;
    color: var(--home-text);
    position: relative;
    z-index: 1;
    padding: 74px 0;
}

body.home-page .landing-section-alt {
    background: rgba(255, 255, 255, 0.02);
    padding: 74px 0;
    position: relative;
    z-index: 1;
}

body.home-page .landing-section-alt.home-theme-block {
    background: transparent;
}

body.home-page .landing-section h2,
body.home-page .landing-section-alt h2 {
    font-size: var(--home-h2);
    margin: 0 0 10px;
    letter-spacing: -0.3px;
    color: var(--home-text);
    text-align: center;
}

body.home-page .home-theme-block .pricing-container {
    position: relative;
    z-index: 1;
    max-width: var(--home-max);
    margin: 0 auto;
    padding: 0 var(--home-pad);
}

body.home-page .pricing-container {
    max-width: var(--home-max);
    margin: 0 auto;
}

body.home-page .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
    margin-bottom: 28px;
}

body.home-page .pricing-card {
    background: rgba(10, 18, 31, 0.88);
    border: 1px solid rgba(148, 163, 184, 0.14);
    color: var(--home-text);
    border-radius: 16px;
    padding: 18px;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
    box-shadow: none;
}

body.home-page .pricing-card:hover {
    transform: translateY(-1px);
    background: rgba(11, 21, 34, 0.92);
    border-color: rgba(127, 215, 210, 0.22);
}

body.home-page .pricing-card.recommended {
    border-color: rgba(49, 244, 210, 0.34);
    background: rgba(9, 26, 35, 0.9);
    box-shadow: none;
}

body.home-page .pricing-card.recommended::before {
    content: attr(data-recommended);
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    background: rgba(49, 244, 210, 0.1);
    border: 1px solid rgba(49, 244, 210, 0.22);
    color: var(--home-accent);
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
}

body.home-page .pricing-card h3 {
    font-size: 18px;
    margin: 0 0 5px;
    color: var(--home-text);
    font-weight: 800;
    letter-spacing: -0.03em;
    max-width: 70%;
}

body.home-page .pricing-card .pricing-description {
    font-size: 12px;
    color: var(--home-muted);
    margin: 0;
    line-height: 1.4;
    max-width: 78%;
}

body.home-page .pricing-card .price {
    display: inline-flex;
    align-items: flex-end;
    gap: 7px;
    margin: 14px 0 4px;
    padding: 7px 10px 8px;
    border: 1px solid rgba(49, 244, 210, 0.18);
    border-radius: 13px;
    background: rgba(2, 6, 23, 0.24);
}

body.home-page .pricing-card .price strong {
    color: #7fd7d2;
    font-size: clamp(32px, 3.4vw, 44px);
    line-height: 0.95;
    font-weight: 850;
    letter-spacing: -0.035em;
}

body.home-page .pricing-card .price span {
    margin-bottom: 3px;
    padding: 3px 6px;
    border-radius: 999px;
    color: #7fd7d2;
    background: rgba(127, 215, 210, 0.08);
    border: 1px solid rgba(127, 215, 210, 0.18);
    font-size: 10px;
    font-weight: 750;
    line-height: 1;
}

body.home-page .pricing-card .price-yearly {
    font-size: 10px;
    color: var(--home-soft);
    margin: 0 0 12px;
    font-weight: 650;
}

body.home-page .pricing-card ul {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 12px 0 16px;
    display: grid;
    gap: 6px;
}

body.home-page .pricing-card ul li {
    margin: 0;
    padding-left: 20px;
    position: relative;
    color: var(--home-muted);
    font-size: 12px;
    line-height: 1.35;
}

body.home-page .pricing-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    color: var(--home-accent);
    font-weight: 950;
    transform: translateY(-50%);
}

/* 14-day trial CTA – MekryPro button style */
body.home-page .pricing-card .pricing-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 36px;
    margin-top: 4px;
    padding: 0.5rem 1.25rem;
    font-size: 12px;
    font-weight: 850;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    background: transparent;
    color: var(--home-accent);
    border: 1px solid rgba(49, 244, 210, 0.55);
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

body.home-page .pricing-card .pricing-cta:hover {
    background: rgba(49, 244, 210, 0.08);
    border-color: rgba(49, 244, 210, 0.7);
    color: #d8f7ff;
    text-decoration: none;
}

body.home-page .pricing-card .pricing-note {
    margin-top: 20px;
    font-size: 0.875rem;
    color: var(--home-muted);
    line-height: 1.5;
}

body.home-page .pricing-link {
    color: rgba(60, 184, 168, 0.9);
    text-decoration: underline;
    transition: color 0.2s ease;
}

body.home-page .pricing-link:hover {
    color: var(--home-mint);
}

body.home-page .pricing-trial-info {
    text-align: center;
    color: var(--home-muted);
    font-size: 15px;
    margin: 0 0 40px;
}

/* Pricing — free demo promo */
body.home-page .home-pricing-demo-banner {
    position: relative;
    margin: 0 0 28px;
    padding: 1px;
    border-radius: var(--home-radius);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(60, 184, 168, 0.55), rgba(51, 214, 255, 0.35), rgba(255, 215, 168, 0.45));
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

body.home-page .home-pricing-demo-banner-glow {
    position: absolute;
    inset: -40% -20%;
    pointer-events: none;
    background:
        radial-gradient(520px 280px at 18% 40%, rgba(60, 184, 168, 0.22), transparent 70%),
        radial-gradient(420px 240px at 82% 30%, rgba(51, 214, 255, 0.14), transparent 72%);
    opacity: 0.9;
}

body.home-page .home-pricing-demo-banner-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.14;
    background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.2));
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.2));
}

body.home-page .home-pricing-demo-banner-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
    gap: clamp(20px, 3vw, 36px);
    align-items: center;
    padding: clamp(22px, 3.2vw, 32px) clamp(22px, 3.5vw, 36px);
    border-radius: calc(var(--home-radius) - 1px);
    background:
        linear-gradient(145deg, rgba(8, 14, 24, 0.96), rgba(12, 22, 34, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

body.home-page .home-pricing-demo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px;
    padding: 6px 12px;
    border-radius: var(--radius-xs, 6px);
    border: 1px solid rgba(110, 231, 183, 0.35);
    background: rgba(110, 231, 183, 0.1);
    color: #6ee7b7;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

body.home-page .home-pricing-demo-title {
    margin: 0 0 10px;
    font-size: clamp(1.25rem, 2.2vw, 1.65rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--home-text);
}

body.home-page .home-pricing-demo-lead {
    margin: 0 0 14px;
    max-width: 52ch;
    color: var(--home-muted);
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.65;
}

body.home-page .home-pricing-demo-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.home-page .home-pricing-demo-chips li {
    padding: 6px 10px;
    border-radius: var(--radius-xs, 6px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.2;
}

body.home-page .home-pricing-demo-banner-action {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}

body.home-page .home-pricing-demo-form {
    width: 100%;
}

body.home-page .home-pricing-demo-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid #6EE7B7;
    color: #0a0f18;
    background: #6EE7B7;
    border-radius: var(--radius-xs, 6px);
    box-shadow: 0 10px 28px rgba(110, 231, 183, 0.18);
    transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.18s ease;
}

body.home-page .home-pricing-demo-btn:hover {
    background: #5dd9a8;
    border-color: #5dd9a8;
    color: #0a0f18;
    transform: translateY(-1px);
}

body.home-page .home-pricing-demo-note {
    margin: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8125rem;
    line-height: 1.45;
}

@media (max-width: 768px) {
    body.home-page .home-pricing-demo-banner-inner {
        grid-template-columns: 1fr;
    }

    body.home-page .home-pricing-demo-banner-action {
        align-items: stretch;
    }
}

@media (max-width: 980px) {
    body.home-page .pricing-grid {
        grid-template-columns: 1fr;
    }
}

body.home-page .hero-description {
    color: var(--home-muted);
    font-size: 14px;
}
body.home-page .hero-link {
    color: rgba(60, 184, 168, 0.9);
}
body.home-page .hero-link:hover {
    color: var(--home-mint);
}

/* Desktop footer */
body.home-page .app-footer {
    position: relative;
    margin-top: 0;
    padding: 38px var(--home-pad) 44px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    background:
        radial-gradient(760px 220px at 50% 0%, rgba(60, 184, 168, 0.08), transparent 62%),
        linear-gradient(180deg, rgba(5, 11, 18, 0.96), #050912 72%);
    color: rgba(159, 180, 208, 0.86);
    font-size: 0.875rem;
    line-height: 1.5;
    text-align: center;
}

body.home-page .app-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(110, 231, 183, 0.28), transparent);
    pointer-events: none;
}

body.home-page .app-footer .app-footer-legal {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0 0 12px;
}

body.home-page .app-footer .app-footer-legal a,
body.home-page .app-footer .mekry-cookie-settings-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 2px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: rgba(177, 195, 219, 0.88);
    font: inherit;
    font-size: 0.8125rem;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

body.home-page .app-footer .mekry-cookie-settings-link {
    min-height: 30px !important;
    padding: 0 2px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: rgba(177, 195, 219, 0.88) !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

body.home-page .app-footer .app-footer-legal a:hover,
body.home-page .app-footer .app-footer-legal a:focus-visible,
body.home-page .app-footer .mekry-cookie-settings-link:hover,
body.home-page .app-footer .mekry-cookie-settings-link:focus-visible {
    outline: none;
    color: #e8fbff;
    text-decoration: none;
    border: 0;
    background: transparent;
}

body.home-page .app-footer .app-footer-legal-sep {
    color: rgba(148, 163, 184, 0.28);
}

@media (max-width: 520px) {
    body.home-page .app-footer .app-footer-legal {
        gap: 4px;
    }

    body.home-page .app-footer .app-footer-legal a,
    body.home-page .app-footer .mekry-cookie-settings-link {
        min-height: 24px !important;
        padding: 0 1px !important;
        font-size: 0.75rem;
    }
}

/* Mobile-only hero/board extras — hidden on desktop */
body.home-page .home-kicker-icon,
body.home-page .home-board-mobile-trust {
    display: none;
}

body.home-page .landing-cta-icon,
body.home-page .landing-cta-label {
    display: inline;
}

body.home-page .landing-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

body.home-page .home-hero-cta-row-main {
    display: contents;
}

body.home-page .home-hero-ctas .home-demo-start-form {
    display: inline;
}

@media (min-width: 769px) {
    body.home-page .landing-cta-login-row {
        display: none;
    }

    body.home-page .home-demo-start-btn.landing-cta-demo {
        border: 1px solid #6EE7B7;
        color: #0a0f18;
        background: #6EE7B7;
    }
}

/* =========================================================
   Front page own stylesheet — in-page nav + hero art
   Desktop: hidden (global topbar + 2-col grid stay as-is)
   ========================================================= */
body.home-page .mp-home-nav {
    display: none;
}

body.home-page .mp-home-hero-art {
    display: none;
}

@media (min-width: 769px) {
    body.home-page .mp-home-hero-art {
        display: none !important;
    }
}

/* =========================================================
   MOBILE — reference premium landing (≤768px)
   Scoped body.home-page so nothing is overridden.
   ========================================================= */
@media (max-width: 768px) {
    body.home-page {
        margin: 0 !important;
        padding-top: 0 !important;
        background:
            radial-gradient(circle at 92% 13%, rgba(49, 244, 210, 0.12), transparent 34%),
            linear-gradient(180deg, #050b12 0%, #07111f 48%, #050b12 100%) !important;
    }

    body.home-page::before,
    body.home-page::after {
        display: none !important;
    }

    body.home-page .home-vignette {
        display: none !important;
    }

    body.home-page > .topbar,
    body.home-page .topbar {
        display: none !important;
    }

    body.home-page .mp-home {
        --home-accent: #31f4d2;
        --home-accent-2: #68e7b4;
        --home-text: #f8fafc;
        --home-muted: #cbd5e1;
        --home-soft: #94a3b8;
        --home-border: rgba(148, 163, 184, 0.18);
        position: relative;
        overflow-x: hidden;
    }

    body.home-page .mp-home::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        opacity: 0.18;
        background-image:
            linear-gradient(rgba(77, 235, 210, 0.06) 1px, transparent 1px),
            linear-gradient(90deg, rgba(77, 235, 210, 0.06) 1px, transparent 1px);
        background-size: 42px 42px;
        -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 92%);
        mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 92%);
    }

    body.home-page .mp-home > * {
        position: relative;
        z-index: 1;
    }

    /* --- In-page header --- */
    body.home-page .mp-home-nav {
        display: flex;
        position: sticky;
        top: 0;
        z-index: 20;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        height: 54px;
        min-height: 54px;
        padding: 7px 14px;
        box-sizing: border-box;
        background: rgba(5, 11, 18, 0.94);
        border-bottom: 1px solid rgba(148, 163, 184, 0.14);
        -webkit-backdrop-filter: blur(16px);
        backdrop-filter: blur(16px);
    }

    body.home-page .mp-home-brand {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        min-width: 0;
        text-decoration: none;
        color: var(--home-text);
    }

    body.home-page .mp-home-brand__mark {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
        flex: 0 0 auto;
        color: rgba(49, 244, 210, 0.96);
        filter: drop-shadow(0 0 7px rgba(49, 244, 210, 0.16));
    }

    body.home-page .mp-home-brand__mark svg {
        display: block;
        width: 22px;
        height: 22px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.85;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    body.home-page .mp-home-brand__text {
        font-size: 17px;
        font-weight: 760;
        letter-spacing: -0.032em;
        color: rgba(248, 250, 252, 0.94);
        line-height: 1;
    }

    body.home-page .mp-home-nav__actions {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        flex: 0 0 auto;
    }

    body.home-page .mp-home-lang-menu {
        position: relative;
        display: inline-flex;
        height: 34px;
        margin: 0;
    }

    body.home-page .mp-home-lang-menu[open] {
        z-index: 40;
    }

    body.home-page .mp-home-lang-trigger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        box-sizing: border-box;
        border: 1px solid rgba(148, 163, 184, 0.18);
        border-radius: 6px;
        background: rgba(5, 11, 18, 0.58);
        color: rgba(248, 250, 252, 0.92);
        font-size: 0.75rem;
        font-weight: 750;
        line-height: 1;
        cursor: pointer;
        list-style: none;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
    }

    body.home-page .mp-home-lang-trigger::-webkit-details-marker {
        display: none;
    }

    body.home-page .mp-home-lang-menu[open] .mp-home-lang-trigger {
        border-color: rgba(49, 244, 210, 0.38);
        background: rgba(49, 244, 210, 0.10);
        color: #f8fafc;
    }

    body.home-page .mp-home-lang-panel {
        position: absolute;
        top: calc(100% + 7px);
        right: 0;
        display: grid;
        width: 44px;
        padding: 5px;
        border: 1px solid rgba(148, 163, 184, 0.18);
        border-radius: 8px;
        background: rgba(15, 18, 28, 0.96);
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.42);
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
    }

    body.home-page .mp-home-lang-option {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 34px;
        border-radius: 6px;
        color: rgba(226, 232, 240, 0.9);
        font-size: 0.75rem;
        font-weight: 750;
        line-height: 1;
        text-decoration: none;
    }

    body.home-page .mp-home-lang-option:hover,
    body.home-page .mp-home-lang-option:focus-visible,
    body.home-page .mp-home-lang-option.is-active {
        outline: none;
        color: #ffffff;
        background: rgba(255, 255, 255, 0.10);
    }

    body.home-page .mp-home-icon-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border: 1px solid rgba(148, 163, 184, 0.16);
        border-radius: 6px;
        background: rgba(5, 11, 18, 0.42);
        color: rgba(248, 250, 252, 0.9);
        text-decoration: none;
    }

    body.home-page .mp-home-icon-link svg {
        width: 20px;
        height: 20px;
    }

    /* --- Hero --- */
    body.home-page .landing-hero {
        position: relative;
        overflow: hidden;
        padding: 22px 14px 0;
        background: transparent;
    }

    body.home-page .landing-hero-content {
        max-width: none;
        padding: 0;
        position: relative;
        z-index: 1;
    }

    body.home-page .home-hero-grid {
        position: relative;
        display: block;
        gap: 0;
    }

    body.home-page .mp-home-hero__copy {
        position: relative;
        z-index: 2;
    }

    body.home-page .home-hero-kicker {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        max-width: calc(100% - 24px);
        margin: 4px 0 16px;
        padding: 5px 12px;
        border: 1px solid rgba(49, 244, 210, 0.28);
        border-radius: 999px;
        background: rgba(15, 23, 42, 0.72);
        box-shadow: 0 0 0 1px rgba(49, 244, 210, 0.04), 0 12px 34px rgba(0, 0, 0, 0.18);
        color: var(--home-text);
        font-size: 10px;
        line-height: 1.2;
        font-weight: 700;
    }

    body.home-page .home-hero-kicker .home-kicker-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: auto;
        height: auto;
        flex: 0 0 auto;
        border: 0;
        background: none;
        border-radius: 0;
        color: var(--home-accent);
        line-height: 0;
    }

    body.home-page .home-hero-kicker .home-kicker-icon svg {
        width: 15px;
        height: 15px;
    }

    body.home-page .home-hero-kicker .home-kicker-rule {
        display: none;
    }

    body.home-page .landing-hero h1 {
        position: relative;
        z-index: 2;
        max-width: 66%;
        margin: 0;
        font-size: clamp(24px, 6.4vw, 30px);
        line-height: 1.08;
        letter-spacing: -0.04em;
        font-weight: 900;
        color: var(--home-text);
    }

    body.home-page .home-hero-lead {
        position: relative;
        z-index: 2;
        max-width: 100%;
        margin: 12px 0 0;
        color: var(--home-muted);
        font-size: 12px;
        line-height: 1.55;
    }

    /* Blueprint isometric art — hero right side, behind text */
    body.home-page .mp-home-hero-art {
        display: block;
        position: absolute;
        z-index: 1;
        top: 92px;
        right: -8px;
        width: 250px;
        height: 240px;
        min-height: 0;
        overflow: visible;
        pointer-events: none;
        opacity: 0.95;
    }

    body.home-page .mp-home-iso-stack {
        position: absolute;
        top: 20px;
        left: 0;
        width: 250px;
        height: 200px;
        transform: perspective(760px) rotateX(56deg) rotateZ(-34deg) scale(0.7);
        transform-origin: 50% 50%;
        transform-style: preserve-3d;
    }

    body.home-page .mp-home-iso-layer {
        position: absolute;
        left: 0;
        top: 22px;
        width: 250px;
        height: 155px;
        border-radius: 18px;
        border: 1.5px solid rgba(49, 244, 210, 0.44);
        background:
            linear-gradient(135deg, rgba(49, 244, 210, 0.12), rgba(15, 23, 42, 0.04)),
            repeating-linear-gradient(0deg, rgba(125, 211, 252, 0.1) 0 1px, transparent 1px 18px),
            repeating-linear-gradient(90deg, rgba(125, 211, 252, 0.1) 0 1px, transparent 1px 18px),
            rgba(4, 18, 34, 0.7);
        box-shadow:
            0 0 28px rgba(49, 244, 210, 0.15),
            inset 0 0 28px rgba(49, 244, 210, 0.06);
    }

    body.home-page .mp-home-iso-layer--top {
        z-index: 4;
        transform: translateZ(86px) translateY(-58px);
        overflow: hidden;
        border-color: rgba(49, 244, 210, 0.7);
        background: rgba(4, 18, 34, 0.86);
    }

    body.home-page .mp-home-iso-layer--mid {
        z-index: 3;
        transform: translateZ(54px) translateY(-14px);
        opacity: 0.82;
    }

    body.home-page .mp-home-iso-layer--low {
        z-index: 2;
        transform: translateZ(26px) translateY(30px);
        opacity: 0.62;
    }

    body.home-page .mp-home-iso-layer--base {
        z-index: 1;
        transform: translateZ(0) translateY(74px);
        opacity: 0.42;
    }

    body.home-page .mp-home-iso-plan {
        display: block;
        width: 100%;
        height: 100%;
    }

    body.home-page .mp-home-iso-glow {
        position: absolute;
        z-index: 0;
        left: 10px;
        top: 188px;
        width: 230px;
        height: 16px;
        border-radius: 999px;
        background: linear-gradient(90deg, transparent, rgba(49, 244, 210, 0.95), transparent);
        filter: blur(10px);
        transform: translateZ(-8px);
        opacity: 0.88;
    }

    /* --- CTA buttons: 3 in a row + full-width login --- */
    body.home-page .home-hero-ctas {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
        margin-top: 16px;
    }

    body.home-page .home-hero-cta-row-main,
    body.home-page .home-hero-ctas .home-demo-start-form {
        display: contents;
    }

    body.home-page .home-hero-ctas .landing-cta,
    body.home-page .home-hero-ctas .home-demo-start-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0;
        min-width: 0;
        height: 34px;
        min-height: 34px;
        padding: 6px 6px;
        border-radius: 9px;
        border: 1px solid rgba(127, 215, 210, 0.22);
        background: rgba(7, 15, 29, 0.72);
        color: var(--home-text);
        font-size: 10px;
        font-weight: 760;
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-decoration: none;
        box-sizing: border-box;
        box-shadow: none;
    }

    /* Hide CTA icons on mobile so labels have full room */
    body.home-page .home-hero-ctas .landing-cta-icon {
        display: none;
    }

    body.home-page .home-hero-ctas .landing-cta-label {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    body.home-page .home-hero-ctas .landing-cta.landing-cta-primary,
    body.home-page .home-hero-ctas .landing-cta-trial.landing-cta-primary {
        border-color: rgba(127, 215, 210, 0.52);
        color: #d8f7ff;
        background: rgba(127, 215, 210, 0.16);
    }

    body.home-page .home-hero-ctas .landing-cta-demo {
        border-color: rgba(127, 215, 210, 0.34);
        background: rgba(9, 33, 41, 0.62);
        color: #d8f7ff;
    }

    body.home-page .home-hero-ctas .landing-cta-features {
        border-color: rgba(148, 163, 184, 0.22);
        background: rgba(10, 17, 31, 0.68);
        color: #e6edf7;
    }

    body.home-page .home-hero-ctas .landing-cta-login-row {
        grid-column: 1 / -1;
        height: 34px;
        min-height: 34px;
        margin-top: 1px;
        border-color: rgba(125, 211, 252, 0.32);
        background:
            linear-gradient(180deg, rgba(125, 211, 252, 0.075), rgba(49, 244, 210, 0.04)),
            rgba(8, 15, 29, 0.82);
        color: rgba(226, 244, 255, 0.94);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.035),
            0 0 0 1px rgba(15, 23, 42, 0.5);
    }

    /* --- Feature chips --- */
    body.home-page .home-hero-mini {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 18px;
        row-gap: 9px;
        margin-top: 14px;
        padding: 0 8px;
    }

    body.home-page .home-hero-mini > span {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        min-height: 18px;
        padding: 0;
        border-radius: 0;
        border: 0;
        background: transparent;
        color: #cbd5e1;
        font-size: 10.5px;
        font-weight: 650;
        line-height: 1.25;
        letter-spacing: -0.01em;
    }

    body.home-page .home-hero-mini > span:last-child {
        grid-column: 1 / 2;
    }

    body.home-page .home-hero-mini .home-tick {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: auto;
        height: auto;
        flex: 0 0 auto;
        border: 0;
        background: none;
        border-radius: 0;
        color: #7fd7d2;
        font-size: 11px;
        font-weight: 900;
        line-height: 1;
    }

    /* --- Product preview card --- */
    body.home-page .home-board-wrap {
        display: block;
        margin-top: 16px;
        perspective: none;
    }

    body.home-page .home-board {
        transform: none;
        margin: 0;
        padding: 12px;
        border: 1px solid rgba(49, 244, 210, 0.25);
        border-radius: 14px;
        background:
            radial-gradient(circle at 80% 0%, rgba(49, 244, 210, 0.13), transparent 38%),
            linear-gradient(180deg, rgba(13, 55, 66, 0.78), rgba(15, 23, 42, 0.92));
        box-shadow: 0 18px 54px rgba(0, 0, 0, 0.32);
    }

    body.home-page .home-board::before,
    body.home-page .home-board::after {
        display: none;
    }

    body.home-page .home-board-wrap:hover .home-board {
        transform: none;
    }

    body.home-page .home-board-top {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        align-items: start;
        margin-bottom: 10px;
        padding: 0;
        border-bottom: 0;
        background: transparent;
    }

    body.home-page .mp-home-product-card__label {
        display: block;
        color: var(--home-accent);
        font-size: 11px;
        font-weight: 800;
        line-height: 1.1;
    }

    body.home-page .home-board-title {
        display: block;
        font-size: 18px;
        line-height: 1.05;
        letter-spacing: -0.02em;
        color: var(--home-text);
        white-space: nowrap;
    }

    body.home-page .home-board-tabs {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0;
        width: 100%;
        min-width: 0;
        padding: 0 2px;
        border: 0;
        border-radius: 0;
        background: transparent;
        overflow: visible;
        border-bottom: 1px solid rgba(127, 215, 210, 0.14);
    }

    body.home-page .home-board-tab {
        position: relative;
        flex: 1 1 0;
        min-width: 0;
        min-height: 28px;
        padding: 0 2px 7px;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: rgba(203, 213, 225, 0.72);
        font-size: 10px;
        font-weight: 750;
        line-height: 1;
        white-space: nowrap;
        text-align: center;
        overflow: visible;
        text-overflow: clip;
    }

    body.home-page .home-board-tab.active {
        color: #7fd7d2;
        background: transparent;
        box-shadow: none;
        font-weight: 850;
    }

    body.home-page .home-board-tab.active::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 2px;
        border-radius: 999px;
        background: #7fd7d2;
    }

    body.home-page .home-board-body {
        display: block;
        padding: 0;
        gap: 0;
    }

    body.home-page .mp-home-preview-panes {
        min-height: 246px;
    }

    body.home-page .mp-home-preview-pane > .home-blueprint,
    body.home-page .mp-home-preview-pane > .mp-home-protocol-preview,
    body.home-page .mp-home-preview-pane > .mp-home-pricing-preview {
        min-height: 246px;
    }

    body.home-page .home-board-side {
        display: none;
    }

    body.home-page .home-blueprint {
        position: relative;
        overflow: hidden;
        padding: 10px;
        border-radius: 13px;
        border: 1px solid rgba(59, 130, 246, 0.35);
        background:
            radial-gradient(circle at 62% 20%, rgba(49, 244, 210, 0.12), transparent 40%),
            rgba(2, 14, 28, 0.88);
        min-height: 246px;
    }

    body.home-page .home-glow {
        display: none;
    }

    body.home-page .home-bp-label {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 8px;
    }

    body.home-page .home-bp-label strong {
        font-size: 13px;
        letter-spacing: -0.02em;
        color: var(--home-text);
    }

    body.home-page .home-bp-pill {
        display: inline-flex;
        align-items: center;
        min-height: 28px;
        padding: 5px 9px;
        border-radius: 999px;
        border: 1px solid rgba(49, 244, 210, 0.26);
        background: rgba(49, 244, 210, 0.14);
        color: var(--home-text);
        font-size: 10px;
        font-weight: 900;
        white-space: nowrap;
    }

    body.home-page .home-blueprint svg {
        display: block;
        width: 100%;
        height: auto;
        min-height: 145px;
        max-height: 170px;
        border-radius: 10px;
    }

    body.home-page .mp-home-blueprint__meta {
        right: 8px;
        bottom: 8px;
        gap: 5px;
        min-width: 86px;
        padding: 7px 8px;
        border-radius: 10px;
        font-size: 7px;
        line-height: 1.15;
    }

    body.home-page .mp-home-blueprint__meta div {
        gap: 5px;
    }

    body.home-page .mp-home-meta-icon,
    body.home-page .mp-home-meta-drop {
        width: 13px;
        height: 13px;
    }

    body.home-page .mp-home-meta-icon {
        border-radius: 3px;
    }

    body.home-page .mp-home-meta-drop::before {
        left: 3px;
        top: 0;
        width: 7px;
        height: 11px;
    }

    body.home-page .mp-home-protocol-preview,
    body.home-page .mp-home-pricing-preview {
        min-height: 190px;
        padding: 13px;
        border-radius: 13px;
    }

    body.home-page .mp-home-preview-card-head {
        margin-bottom: 12px;
    }

    body.home-page .mp-home-preview-card-head strong {
        font-size: 14px;
    }

    body.home-page .mp-home-preview-card-head span {
        font-size: 10px;
    }

    body.home-page .mp-home-preview-card-head em {
        min-width: 38px;
        height: 28px;
        font-size: 11px;
    }

    body.home-page .mp-home-protocol-list {
        gap: 7px;
    }

    body.home-page .mp-home-protocol-list div {
        min-height: 30px;
        padding: 7px 8px;
        font-size: 10px;
    }

    body.home-page .mp-home-protocol-list span {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }

    body.home-page .mp-home-protocol-footer {
        margin-top: 10px;
        padding: 9px 10px;
        font-size: 11px;
    }

    body.home-page .mp-home-protocol-footer strong {
        font-size: 18px;
    }

    body.home-page .mp-home-price-preview-rows {
        gap: 7px;
    }

    body.home-page .mp-home-price-preview-rows div,
    body.home-page .mp-home-price-preview-total {
        padding: 9px 10px;
        border-radius: 10px;
    }

    body.home-page .mp-home-price-preview-rows span,
    body.home-page .mp-home-price-preview-total span {
        font-size: 10px;
    }

    body.home-page .mp-home-price-preview-rows strong {
        font-size: 11px;
    }

    body.home-page .mp-home-price-preview-total {
        margin-top: 10px;
    }

    body.home-page .mp-home-price-preview-total strong {
        font-size: 18px;
    }

    /* --- Trust row --- */
    body.home-page .home-board-mobile-trust {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
        margin-top: 10px;
        padding: 8px 4px;
        border-radius: 11px;
        border: 1px solid rgba(148, 163, 184, 0.14);
        background: rgba(2, 6, 23, 0.25);
    }

    body.home-page .mp-home-trust-item {
        display: grid;
        grid-template-columns: 20px 1fr;
        column-gap: 5px;
        align-items: center;
        padding: 0 5px;
    }

    body.home-page .mp-home-trust-item + .mp-home-trust-item {
        border-left: 1px solid rgba(148, 163, 184, 0.12);
    }

    body.home-page .mp-home-trust-icon {
        grid-row: span 2;
        display: inline-flex;
        line-height: 0;
        color: var(--home-accent);
    }

    body.home-page .mp-home-trust-item strong {
        color: var(--home-accent);
        font-size: 9px;
        line-height: 1.2;
    }

    body.home-page .mp-home-trust-item small {
        color: var(--home-soft);
        font-size: 8px;
        line-height: 1.2;
    }

    /* --- Lower sections --- */
    body.home-page .home-about-section,
    body.home-page .home-how-section,
    body.home-page .landing-section {
        padding: 40px 14px;
        background: transparent;
    }

    body.home-page .home-theme-bg {
        display: none;
    }

    body.home-page .home-about-wrap,
    body.home-page .home-how-wrap,
    body.home-page .pricing-container {
        padding-inline: 0;
    }

    body.home-page .home-about-wrap > h2,
    body.home-page .home-how-wrap > h2,
    body.home-page .pricing-container > h2 {
        margin: 0 0 20px;
        text-align: center;
        color: var(--home-text);
        font-size: clamp(28px, 8vw, 42px);
        line-height: 1.06;
        letter-spacing: -0.05em;
    }

    body.home-page .home-how-subtitle {
        max-width: 640px;
        margin: -10px auto 22px;
        text-align: center;
        color: var(--home-muted);
        font-size: 14px;
        line-height: 1.6;
    }

    body.home-page .home-about-grid,
    body.home-page .home-how-grid {
        display: grid;
        gap: 14px;
    }

    body.home-page .home-about-card,
    body.home-page .home-how-card {
        padding: 22px;
        border: 1px solid var(--home-border);
        border-radius: 16px;
        background: linear-gradient(180deg, rgba(17, 24, 39, 0.86), rgba(10, 15, 26, 0.92));
        box-shadow: 0 18px 56px rgba(0, 0, 0, 0.22);
    }

    body.home-page .home-about-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 16px;
        border-radius: 12px;
        color: var(--home-accent);
        background: rgba(49, 244, 210, 0.12);
        border: 1px solid rgba(49, 244, 210, 0.24);
    }

    body.home-page .home-about-card p,
    body.home-page .home-how-card p {
        color: var(--home-muted);
        font-size: 15px;
        line-height: 1.6;
    }

    body.home-page .home-how-badge {
        display: inline-grid;
        place-items: center;
        width: 38px;
        height: 38px;
        margin-bottom: 14px;
        border-radius: 11px;
        color: #03110e;
        background: linear-gradient(135deg, var(--home-accent), #d7c28a);
        font-weight: 950;
        font-size: 1rem;
    }

    body.home-page .home-how-card h3 {
        margin: 0 0 8px;
        color: var(--home-text);
        font-size: 19px;
        letter-spacing: -0.03em;
    }

    body.home-page .home-how-section {
        padding-top: 34px;
        padding-bottom: 34px;
    }

    body.home-page .home-how-wrap {
        position: relative;
    }

    body.home-page .home-how-wrap::before {
        content: "";
        position: absolute;
        inset: -10px -18px auto;
        height: 220px;
        pointer-events: none;
        opacity: 0.75;
        background:
            radial-gradient(circle at 50% 10%, rgba(49, 244, 210, 0.13), transparent 58%),
            radial-gradient(circle at 12% 80%, rgba(59, 130, 246, 0.1), transparent 52%);
        filter: blur(2px);
    }

    body.home-page .home-how-wrap > h2,
    body.home-page .home-how-subtitle,
    body.home-page .home-how-grid {
        position: relative;
        z-index: 1;
    }

    body.home-page .home-how-wrap > h2 {
        max-width: 18ch;
        margin-inline: auto;
        margin-bottom: 12px;
        font-size: clamp(28px, 7.4vw, 36px);
        line-height: 1.08;
        text-wrap: balance;
    }

    body.home-page .home-how-grid {
        gap: 12px;
    }

    body.home-page .home-how-card {
        position: relative;
        display: block;
        overflow: hidden;
        min-height: 124px;
        padding: 18px 18px 18px 20px;
        border-radius: 20px;
        border-color: rgba(49, 244, 210, 0.22);
        background:
            radial-gradient(circle at 92% 22%, rgba(49, 244, 210, 0.18), transparent 34%),
            linear-gradient(135deg, rgba(49, 244, 210, 0.09), transparent 48%),
            linear-gradient(180deg, rgba(12, 23, 38, 0.96), rgba(3, 12, 24, 0.98));
        box-shadow:
            0 18px 48px rgba(0, 0, 0, 0.26),
            inset 0 1px 0 rgba(255, 255, 255, 0.05),
            inset 0 0 0 1px rgba(49, 244, 210, 0.04);
    }

    body.home-page .home-how-card::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        opacity: 0.35;
        background-image:
            linear-gradient(rgba(77, 235, 210, 0.045) 1px, transparent 1px),
            linear-gradient(90deg, rgba(77, 235, 210, 0.045) 1px, transparent 1px);
        background-size: 24px 24px;
    }

    body.home-page .home-how-card::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        pointer-events: none;
        background: linear-gradient(180deg, transparent, rgba(49, 244, 210, 0.7), transparent);
        opacity: 0.65;
    }

    body.home-page .home-how-badge,
    body.home-page .home-how-card h3,
    body.home-page .home-how-card p {
        position: relative;
        z-index: 1;
    }

    body.home-page .home-how-badge {
        position: absolute;
        z-index: 0;
        right: 12px;
        top: 50%;
        width: auto;
        height: auto;
        margin: 0;
        color: rgba(49, 244, 210, 0.11);
        background: none;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        font-size: clamp(74px, 22vw, 104px);
        font-weight: 950;
        line-height: 0.8;
        letter-spacing: -0.12em;
        transform: translateY(-50%);
        text-shadow:
            0 0 26px rgba(49, 244, 210, 0.16),
            0 0 1px rgba(148, 210, 255, 0.42);
        -webkit-text-stroke: 1px rgba(49, 244, 210, 0.18);
    }

    body.home-page .home-how-card h3 {
        max-width: 72%;
        margin: 0 0 9px;
        font-size: 18px;
        line-height: 1.18;
    }

    body.home-page .home-how-card p {
        max-width: 88%;
        padding-top: 0;
        color: #cbd5e1;
        font-size: 13px;
        line-height: 1.58;
    }

    /* --- Pricing --- */
    body.home-page .landing-section-alt {
        padding: 32px 14px 36px;
    }

    body.home-page .pricing-grid {
        display: grid;
        gap: 8px;
        grid-template-columns: 1fr;
        margin-top: 18px;
        margin-bottom: 14px;
    }

    body.home-page .pricing-card {
        position: relative;
        overflow: hidden;
        padding: 12px 14px;
        text-align: left;
        border: 1px solid rgba(148, 163, 184, 0.14);
        border-radius: 14px;
        background: rgba(10, 18, 31, 0.88);
        box-shadow: none;
    }

    body.home-page .pricing-card::after {
        display: none;
    }

    body.home-page .pricing-card.recommended {
        border-color: rgba(49, 244, 210, 0.34);
        background: rgba(9, 26, 35, 0.9);
    }

    body.home-page .pricing-card.recommended::before {
        content: attr(data-recommended);
        position: absolute;
        top: 12px;
        right: 12px;
        z-index: 2;
        display: inline-flex;
        align-items: center;
        min-height: 20px;
        padding: 2px 8px;
        border-radius: 999px;
        color: var(--home-accent);
        background: rgba(49, 244, 210, 0.1);
        border: 1px solid rgba(49, 244, 210, 0.22);
        font-size: 10px;
        font-weight: 800;
        white-space: nowrap;
        box-shadow: none;
    }

    body.home-page .pricing-card h3 {
        position: relative;
        z-index: 1;
        max-width: 70%;
        margin: 0 0 3px;
        color: var(--home-text);
        font-size: 15px;
        letter-spacing: -0.03em;
    }

    body.home-page .pricing-card .pricing-description {
        position: relative;
        z-index: 1;
        max-width: 76%;
        margin: 0;
        color: var(--home-muted);
        font-size: 10.5px;
        line-height: 1.35;
    }

    body.home-page .pricing-card .price {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: flex-end;
        justify-content: flex-start;
        gap: 7px;
        margin: 10px 0 3px;
        padding: 7px 10px 8px;
        border: 1px solid rgba(49, 244, 210, 0.18);
        border-radius: 13px;
        background: rgba(2, 6, 23, 0.24);
    }

    body.home-page .pricing-card .price strong {
        color: #7fd7d2;
        font-size: clamp(30px, 8.2vw, 37px);
        line-height: 0.95;
        font-weight: 850;
        letter-spacing: -0.035em;
        text-shadow: none;
    }

    body.home-page .pricing-card .price span {
        margin-bottom: 3px;
        padding: 3px 6px;
        border-radius: 999px;
        color: #7fd7d2;
        background: rgba(127, 215, 210, 0.08);
        border: 1px solid rgba(127, 215, 210, 0.18);
        font-size: 10px;
        font-weight: 750;
        line-height: 1;
    }

    body.home-page .pricing-card .price-yearly {
        position: relative;
        z-index: 1;
        display: block;
        margin: 0 0 8px;
        padding-left: 0;
        color: var(--home-soft);
        font-size: 9.5px;
        font-weight: 650;
        letter-spacing: 0.01em;
    }

    body.home-page .pricing-card ul {
        position: relative;
        z-index: 1;
        display: grid;
        gap: 4px;
        margin: 7px 0 8px;
        padding: 0;
        list-style: none;
        text-align: left;
    }

    body.home-page .pricing-card ul li {
        position: relative;
        min-height: 0;
        margin: 0;
        padding: 0 0 0 18px;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: var(--home-muted);
        font-size: 10.5px;
        line-height: 1.3;
    }

    body.home-page .pricing-card ul li::before {
        content: "✓";
        position: absolute;
        left: 0;
        top: 50%;
        width: auto;
        height: auto;
        border-radius: 0;
        display: block;
        background: none;
        color: var(--home-accent);
        font-weight: 950;
        font-size: 12px;
        transform: translateY(-50%);
    }

    body.home-page .pricing-card .pricing-cta {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 32px;
        margin-top: 4px;
        border-radius: 9px;
        border: 1px solid rgba(49, 244, 210, 0.55);
        color: var(--home-accent);
        background: transparent;
        box-shadow: none;
        font-size: 10.5px;
        font-weight: 850;
        text-decoration: none;
    }

    body.home-page .pricing-trial-info {
        max-width: 640px;
        margin: 22px auto 0;
        text-align: center;
        color: var(--home-muted);
        font-size: 14px;
        line-height: 1.5;
    }

    body.home-page .home-pricing-demo-banner {
        display: none;
    }

    /* --- Footer --- */
    body.home-page .app-footer {
        padding: 32px 14px calc(36px + env(safe-area-inset-bottom, 0));
        text-align: center;
        color: #93a4bd;
        background: #050b12;
        border-top: 1px solid rgba(148, 163, 184, 0.1);
    }

    body.home-page .app-footer .app-footer-legal {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-bottom: 12px;
    }

    body.home-page .app-footer .app-footer-legal-sep {
        color: rgba(148, 163, 184, 0.35);
    }

    body.home-page .app-footer a,
    body.home-page .app-footer .mekry-cookie-settings-link {
        color: #9fb4d0;
        text-decoration: none;
        font-size: 0.8125rem;
    }

    body.home-page .app-footer a:hover,
    body.home-page .app-footer .mekry-cookie-settings-link:hover {
        color: var(--home-accent);
    }
}

@media (max-width: 380px) {
    body.home-page .landing-hero h1 {
        font-size: 30px;
        max-width: 90%;
    }

    body.home-page .home-hero-lead {
        font-size: 12px;
    }

    body.home-page .home-hero-ctas .landing-cta,
    body.home-page .home-hero-ctas .home-demo-start-btn {
        font-size: 9.5px;
        padding: 6px 5px;
    }

    body.home-page .home-board-tab {
        font-size: 9px;
        padding: 0 2px 7px;
    }
}
