:root {
    --lunys-primary: #11bebb;
    --lunys-primary-dark: #0fa3a4;
    --lunys-navy: #0c1936;
    --lunys-copy: #526078;
    --lunys-background: #f8fbfc;
    --lunys-surface: #fff;
    --lunys-line: rgba(12, 25, 54, .1);
    --lunys-soft: #eaf9f9;
    --lunys-shadow: 0 28px 80px rgba(12, 25, 54, .12);
}

.lunys-platform-site {
    margin: 0;
    overflow-x: hidden;
    background: var(--lunys-background);
    color: var(--lunys-navy);
    font-family: Manrope, Inter, "Segoe UI", sans-serif;
}

.lunys-platform-site main {
    overflow: hidden;
}

.lunys-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.lunys-site-header {
    position: relative;
    z-index: 50;
    border-bottom: 1px solid var(--lunys-line);
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(18px);
}

.lunys-site-nav {
    min-height: 82px;
    padding: 0;
}

.lunys-site-nav-inner {
    display: flex;
    align-items: center;
}

.lunys-site-brand {
    width: auto;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin: 0;
    padding: 0;
}

.lunys-site-brand img {
    display: block;
    width: 142px;
    height: auto;
    object-fit: contain;
}

.lunys-site-nav .navbar-collapse {
    align-items: center;
    margin-left: 48px;
}

.lunys-site-links {
    gap: 8px;
    margin: 0 auto;
}

.lunys-site-links .nav-link,
.lunys-site-account a {
    padding: 10px 12px !important;
    color: #455067;
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
    transition: color .18s ease;
}

.lunys-site-links .nav-link:hover,
.lunys-site-account a:hover {
    color: var(--lunys-navy);
}

.lunys-site-account {
    display: flex;
    align-items: center;
    gap: 2px;
}

.lunys-nav-cta,
.lunys-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    text-decoration: none;
    font-weight: 800;
    transition: transform .18s ease, box-shadow .18s ease,
        background .18s ease;
}

.lunys-nav-cta {
    min-height: 46px;
    margin-left: 12px;
    padding: 0 20px;
    border-radius: 12px;
    background: var(--lunys-navy);
    color: #fff;
    font-size: 13px;
}

.lunys-nav-cta:hover,
.lunys-button-primary:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 16px 32px rgba(12, 25, 54, .16);
}

.lunys-landing {
    background: var(--lunys-background);
    color: var(--lunys-navy);
}

.lunys-hero {
    position: relative;
    padding: 110px 0 126px;
    background:
        radial-gradient(circle at 80% 18%, rgba(17, 190, 187, .12), transparent 31%),
        linear-gradient(180deg, #fff 0%, var(--lunys-background) 100%);
}

.lunys-hero::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    background-image:
        linear-gradient(rgba(12, 25, 54, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(12, 25, 54, .025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

.lunys-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(560px, 1.12fr);
    gap: 78px;
    align-items: center;
}

.lunys-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--lunys-primary-dark);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.lunys-kicker::before {
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: var(--lunys-primary);
    content: "";
}

.lunys-hero h1 {
    max-width: 690px;
    margin: 26px 0 24px;
    color: var(--lunys-navy);
    font-size: clamp(46px, 5.1vw, 72px);
    font-weight: 760;
    letter-spacing: -.055em;
    line-height: 1.02;
}

.lunys-hero h1 strong {
    display: block;
    color: var(--lunys-primary-dark);
    font-weight: inherit;
}

.lunys-hero-copy > p {
    max-width: 590px;
    margin: 0;
    color: var(--lunys-copy);
    font-size: 20px;
    line-height: 1.7;
}

.lunys-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.lunys-button {
    min-height: 54px;
    padding: 0 24px;
    border-radius: 13px;
    font-size: 14px;
}

.lunys-button-primary {
    background: var(--lunys-navy);
    color: #fff;
}

.lunys-button-secondary {
    border: 1px solid var(--lunys-line);
    background: rgba(255, 255, 255, .76);
    color: var(--lunys-navy);
}

.lunys-button-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(12, 25, 54, .2);
    color: var(--lunys-navy);
    box-shadow: 0 14px 30px rgba(12, 25, 54, .08);
}

.lunys-hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 30px;
}

.lunys-hero-proof span {
    color: #69758a;
    font-size: 12px;
    font-weight: 650;
}

.lunys-hero-proof span::before {
    margin-right: 6px;
    color: var(--lunys-primary-dark);
    content: "✓";
}

.lunys-product-stage {
    position: relative;
    min-width: 0;
    padding: 34px 0 40px;
}

.lunys-product-glow {
    position: absolute;
    inset: 1% -6% -4% 10%;
    border-radius: 50%;
    background: rgba(17, 190, 187, .14);
    filter: blur(62px);
}

.lunys-dashboard-window {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(12, 25, 54, .12);
    border-radius: 19px;
    background: #fff;
    box-shadow: var(--lunys-shadow);
    transform: perspective(1300px) rotateY(-2deg) rotateX(1deg);
}

.lunys-dashboard-topbar {
    height: 54px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 18px;
    border-bottom: 1px solid var(--lunys-line);
}

.lunys-dashboard-topbar > span:nth-child(2) {
    color: #59657b;
    font-size: 11px;
    font-weight: 750;
}

.lunys-dashboard-topbar > i {
    width: 28px;
    height: 28px;
    margin-left: auto;
    border-radius: 50%;
    background: var(--lunys-soft);
}

.lunys-dashboard-brand {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--lunys-soft);
}

.lunys-dashboard-brand img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.lunys-dashboard-body {
    min-height: 405px;
    display: grid;
    grid-template-columns: 66px 1fr;
}

.lunys-dashboard-body > aside {
    display: grid;
    align-content: start;
    justify-items: center;
    gap: 20px;
    padding-top: 26px;
    border-right: 1px solid var(--lunys-line);
    background: #fbfcfd;
}

.lunys-dashboard-body > aside b {
    width: 23px;
    height: 7px;
    border-radius: 999px;
    background: #d9dfe8;
}

.lunys-dashboard-body > aside b:first-child {
    width: 31px;
    height: 31px;
    border-radius: 9px;
    background: var(--lunys-primary);
}

.lunys-dashboard-content {
    min-width: 0;
    padding: 26px;
}

.lunys-dashboard-content > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.lunys-dashboard-content header div {
    display: grid;
    gap: 3px;
}

.lunys-dashboard-content header small,
.lunys-dashboard-stats small,
.lunys-dashboard-planning small {
    color: #7b8699;
    font-size: 9px;
}

.lunys-dashboard-content header strong {
    color: var(--lunys-navy);
    font-size: 17px;
}

.lunys-dashboard-content header button {
    padding: 9px 12px;
    border: 0;
    border-radius: 8px;
    background: var(--lunys-navy);
    color: #fff;
    font-size: 8px;
    font-weight: 800;
}

.lunys-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 22px 0;
}

.lunys-dashboard-stats article {
    display: grid;
    gap: 3px;
    padding: 13px;
    border: 1px solid var(--lunys-line);
    border-radius: 10px;
}

.lunys-dashboard-stats strong {
    font-size: 20px;
}

.lunys-dashboard-stats span {
    color: var(--lunys-primary-dark);
    font-size: 8px;
}

.lunys-dashboard-planning {
    display: grid;
    grid-template-columns: 39px 1fr;
    min-height: 210px;
    padding: 16px 14px 14px;
    border: 1px solid var(--lunys-line);
    border-radius: 11px;
    background: #fcfefe;
}

.lunys-dashboard-hours {
    display: grid;
    grid-template-rows: repeat(5, 1fr);
    color: #929bad;
    font-size: 7px;
}

.lunys-dashboard-agenda {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    padding: 10px 0 0;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0,
        transparent 37px,
        rgba(12, 25, 54, .06) 38px);
}

.lunys-dashboard-agenda article {
    align-self: start;
    display: grid;
    gap: 3px;
    padding: 9px;
    border-radius: 8px;
    font-size: 7px;
}

.lunys-dashboard-agenda article:nth-child(2) {
    margin-top: 43px;
}

.lunys-dashboard-agenda article:nth-child(3) {
    margin-top: 92px;
}

.lunys-dashboard-agenda article strong {
    font-size: 8px;
}

.lunys-dashboard-agenda .is-teal {
    background: #d9f6f5;
    color: #0b6f70;
}

.lunys-dashboard-agenda .is-navy {
    background: var(--lunys-navy);
    color: #fff;
}

.lunys-dashboard-agenda .is-soft {
    background: #eef1f7;
    color: var(--lunys-navy);
}

.lunys-product-note {
    position: absolute;
    right: -26px;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 14px 17px;
    border: 1px solid rgba(17, 190, 187, .2);
    border-radius: 13px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 44px rgba(12, 25, 54, .13);
}

.lunys-product-note > span {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: var(--lunys-soft);
    color: var(--lunys-primary-dark);
}

.lunys-product-note div {
    display: grid;
    gap: 2px;
}

.lunys-product-note strong {
    font-size: 10px;
}

.lunys-product-note small {
    color: #737e91;
    font-size: 8px;
}

.lunys-section,
.lunys-problems {
    padding: 116px 0;
}

.lunys-problems {
    border-top: 1px solid var(--lunys-line);
    border-bottom: 1px solid var(--lunys-line);
    background: #fff;
}

.lunys-section-intro {
    max-width: 700px;
}

.lunys-section-intro.is-centered {
    margin: 0 auto;
    text-align: center;
}

.lunys-section-intro.is-centered .lunys-kicker {
    justify-content: center;
}

.lunys-section-intro h2,
.lunys-final-cta h2 {
    margin: 20px 0 0;
    font-size: clamp(36px, 4.1vw, 58px);
    font-weight: 750;
    letter-spacing: -.045em;
    line-height: 1.08;
}

.lunys-section-intro > p,
.lunys-section-intro.is-split > p {
    margin: 20px 0 0;
    color: var(--lunys-copy);
    font-size: 17px;
    line-height: 1.75;
}

.lunys-problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 58px;
}

.lunys-problem-grid article {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    border: 1px solid var(--lunys-line);
    border-radius: 16px;
    background: #fff;
}

.lunys-problem-grid span {
    color: var(--lunys-primary-dark);
    font-size: 11px;
    font-weight: 850;
}

.lunys-problem-grid strong {
    max-width: 210px;
    font-size: 17px;
    line-height: 1.4;
}

.lunys-problem-answer {
    margin: 38px 0 0;
    color: var(--lunys-navy);
    font-size: 26px;
    font-weight: 800;
    text-align: center;
}

.lunys-problem-answer::after {
    width: 46px;
    height: 3px;
    display: block;
    margin: 14px auto 0;
    border-radius: 999px;
    background: var(--lunys-primary);
    content: "";
}

.lunys-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 54px;
}

.lunys-benefit-grid article {
    min-height: 310px;
    display: flex;
    flex-direction: column;
    padding: 25px;
    border: 1px solid var(--lunys-line);
    border-radius: 18px;
    background: #fff;
    transition: transform .2s ease, box-shadow .2s ease;
}

.lunys-benefit-grid article:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(12, 25, 54, .08);
}

.lunys-benefit-grid article > span {
    align-self: flex-end;
    color: #99a2b1;
    font-size: 10px;
    font-weight: 750;
}

.lunys-benefit-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin: 26px 0 34px;
    border-radius: 14px;
    background: var(--lunys-soft);
    color: var(--lunys-primary-dark);
}

.lunys-benefit-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.lunys-benefit-grid h3,
.lunys-module-grid h3 {
    margin: 0;
    font-size: 21px;
    font-weight: 800;
}

.lunys-benefit-grid p,
.lunys-module-grid p {
    margin: 13px 0 0;
    color: var(--lunys-copy);
    font-size: 14px;
    line-height: 1.7;
}

.lunys-modules {
    background: var(--lunys-navy);
    color: #fff;
}

.lunys-modules .lunys-kicker {
    color: #62dfdc;
}

.lunys-section-intro.is-split {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr);
    gap: 80px;
    align-items: end;
}

.lunys-modules .lunys-section-intro p {
    color: #aeb7c8;
}

.lunys-module-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 58px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    background: rgba(255, 255, 255, .1);
}

.lunys-module-grid article {
    min-height: 245px;
    display: flex;
    flex-direction: column;
    padding: 26px;
    background: #101f3f;
}

.lunys-module-grid article > span {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    margin-bottom: 32px;
    border: 1px solid rgba(98, 223, 220, .22);
    border-radius: 11px;
    background: rgba(17, 190, 187, .09);
    color: #62dfdc;
    font-size: 9px;
    font-weight: 900;
}

.lunys-module-grid p {
    color: #aeb7c8;
}

.lunys-module-grid a {
    display: inline-flex;
    gap: 9px;
    margin-top: auto;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.lunys-module-grid a i {
    color: #62dfdc;
    font-style: normal;
}

.lunys-composer {
    background: #fff;
}

.lunys-composer-grid,
.lunys-ai-grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 100px;
    align-items: center;
}

.lunys-module-equation {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    padding: 38px;
    border: 1px solid var(--lunys-line);
    border-radius: 22px;
    background: var(--lunys-background);
}

.lunys-module-equation span {
    padding: 14px 17px;
    border: 1px solid var(--lunys-line);
    border-radius: 11px;
    background: #fff;
    font-size: 12px;
    font-weight: 800;
}

.lunys-module-equation i {
    color: var(--lunys-primary-dark);
    font-style: normal;
    font-weight: 900;
}

.lunys-module-equation strong {
    width: 100%;
    margin-top: 14px;
    padding: 18px;
    border-radius: 12px;
    background: var(--lunys-navy);
    color: #fff;
    font-size: 20px;
    text-align: center;
}

.lunys-flow {
    border-top: 1px solid var(--lunys-line);
}

.lunys-flow-line {
    display: grid;
    grid-template-columns: repeat(11, auto);
    gap: 13px;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

.lunys-flow-line span {
    padding: 16px 18px;
    border: 1px solid var(--lunys-line);
    border-radius: 13px;
    background: #fff;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 10px 26px rgba(12, 25, 54, .05);
}

.lunys-flow-line span:last-child {
    border-color: var(--lunys-primary);
    background: var(--lunys-primary);
    color: #052d39;
}

.lunys-flow-line i {
    color: var(--lunys-primary-dark);
    font-style: normal;
}

.lunys-ai {
    background: #fff;
}

.lunys-ai-feed {
    display: grid;
    gap: 12px;
}

.lunys-ai-feed article {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 17px;
    align-items: center;
    padding: 19px;
    border: 1px solid var(--lunys-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(12, 25, 54, .055);
}

.lunys-ai-feed article:nth-child(2) {
    transform: translateX(30px);
}

.lunys-ai-feed span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: var(--lunys-soft);
    color: var(--lunys-primary-dark);
    font-size: 10px;
    font-weight: 900;
}

.lunys-ai-feed p {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
}

.lunys-growth {
    border-top: 1px solid var(--lunys-line);
}

.lunys-growth-grid {
    display: grid;
    grid-template-columns: 210px 1fr 250px 1.35fr;
    gap: 30px;
    align-items: center;
}

.lunys-growth-start,
.lunys-growth-later {
    display: grid;
    gap: 10px;
    padding: 24px;
    border: 1px solid var(--lunys-line);
    border-radius: 17px;
    background: #fff;
}

.lunys-growth-later {
    border-color: rgba(17, 190, 187, .35);
    box-shadow: 0 20px 50px rgba(17, 190, 187, .1);
}

.lunys-growth-start small,
.lunys-growth-later small {
    margin-bottom: 8px;
    color: #7c8799;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.lunys-growth-start strong,
.lunys-growth-later strong {
    font-size: 13px;
}

.lunys-growth-line {
    height: 1px;
    background: var(--lunys-line);
}

.lunys-growth-line span {
    width: 50%;
    height: 2px;
    display: block;
    background: var(--lunys-primary);
}

.lunys-growth-copy h2 {
    margin: 17px 0 0;
    font-size: 38px;
    font-weight: 760;
    letter-spacing: -.04em;
    line-height: 1.13;
}

.lunys-showcase {
    background: var(--lunys-navy);
    color: #fff;
}

.lunys-showcase .lunys-kicker {
    color: #62dfdc;
}

.lunys-showcase .lunys-section-intro p {
    color: #aeb7c8;
}

.lunys-demo {
    margin-top: 58px;
}

.lunys-demo-tabs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}

.lunys-demo-tabs button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
    color: #aeb7c8;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.lunys-demo-tabs button span {
    color: #66738a;
    font-size: 9px;
}

.lunys-demo-tabs button:hover,
.lunys-demo-tabs button:focus-visible {
    border-color: rgba(98, 223, 220, .5);
    color: #fff;
    outline: none;
}

.lunys-demo-tabs button.is-active {
    border-color: var(--lunys-primary);
    background: var(--lunys-primary);
    color: var(--lunys-navy);
}

.lunys-demo-tabs button.is-active span {
    color: #086b70;
}

.lunys-demo-window {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 36px 90px rgba(0, 0, 0, .28);
    color: var(--lunys-navy);
}

.lunys-demo-windowbar {
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 11px 20px;
    border-bottom: 1px solid var(--lunys-line);
    background: #fff;
}

.lunys-demo-windowmark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--lunys-soft);
}

.lunys-demo-windowmark img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.lunys-demo-windowbar div {
    display: grid;
    gap: 2px;
}

.lunys-demo-windowbar strong {
    font-size: 12px;
}

.lunys-demo-windowbar small {
    color: #7e899a;
    font-size: 9px;
}

.lunys-demo-windowbar > i {
    width: 8px;
    height: 8px;
    margin-left: auto;
    border-radius: 50%;
    background: #5ed79b;
    box-shadow: 0 0 0 5px rgba(94, 215, 155, .12);
}

.lunys-demo-screen {
    min-height: 620px;
    display: grid;
    grid-template-columns: 78px 1fr;
    background: var(--lunys-background);
}

.lunys-demo-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 24px 15px;
    border-right: 1px solid var(--lunys-line);
    background: #fff;
}

.lunys-demo-sidebar img {
    width: 33px;
    height: 33px;
    margin-bottom: 14px;
    object-fit: contain;
}

.lunys-demo-sidebar span {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: #edf1f5;
}

.lunys-demo-sidebar span.is-active {
    background: var(--lunys-soft);
}

.lunys-demo-panel {
    min-width: 0;
    padding: 42px 46px;
    animation: lunys-demo-in .24s ease both;
}

.lunys-demo-panel[hidden] {
    display: none;
}

@keyframes lunys-demo-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.lunys-demo-pagehead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

.lunys-demo-pagehead small {
    color: var(--lunys-primary-dark);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.lunys-demo-pagehead h3 {
    margin: 5px 0 0;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -.03em;
}

.lunys-demo-action,
.lunys-demo-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 15px;
    border-radius: 9px;
    background: var(--lunys-navy);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
}

.lunys-demo-status {
    border: 1px solid var(--lunys-line);
    background: #fff;
    color: var(--lunys-navy);
}

.lunys-demo-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #42cc8b;
}

.lunys-demo-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
}

.lunys-demo-stat-grid article {
    display: grid;
    gap: 6px;
    padding: 20px;
    border: 1px solid var(--lunys-line);
    border-radius: 13px;
    background: #fff;
}

.lunys-demo-stat-grid small,
.lunys-demo-next small {
    color: #788498;
    font-size: 9px;
}

.lunys-demo-stat-grid strong {
    font-size: 28px;
}

.lunys-demo-stat-grid span {
    color: var(--lunys-primary-dark);
    font-size: 9px;
}

.lunys-demo-dashboard-grid {
    display: grid;
    grid-template-columns: 1.5fr .5fr;
    gap: 13px;
    margin-top: 13px;
}

.lunys-demo-chart,
.lunys-demo-next {
    padding: 22px;
    border: 1px solid var(--lunys-line);
    border-radius: 13px;
    background: #fff;
}

.lunys-demo-chart header,
.lunys-demo-history header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lunys-demo-chart header strong,
.lunys-demo-history header strong {
    font-size: 11px;
}

.lunys-demo-chart header small,
.lunys-demo-history header small {
    color: #818c9e;
    font-size: 9px;
}

.lunys-demo-chart > div {
    height: 185px;
    display: flex;
    align-items: end;
    gap: 16px;
    padding: 24px 12px 0;
    border-bottom: 1px solid var(--lunys-line);
}

.lunys-demo-chart > div i {
    flex: 1;
    min-width: 12px;
    border-radius: 6px 6px 0 0;
    background: var(--lunys-soft);
}

.lunys-demo-chart > div i:nth-child(1) { height: 34%; }
.lunys-demo-chart > div i:nth-child(2) { height: 48%; }
.lunys-demo-chart > div i:nth-child(3) { height: 43%; }
.lunys-demo-chart > div i:nth-child(4) { height: 66%; }
.lunys-demo-chart > div i:nth-child(5) { height: 58%; }
.lunys-demo-chart > div i:nth-child(6) { height: 82%; background: var(--lunys-primary); }
.lunys-demo-chart > div i:nth-child(7) { height: 74%; }

.lunys-demo-chart footer {
    display: flex;
    justify-content: space-around;
    padding-top: 8px;
    color: #929cad;
    font-size: 8px;
}

.lunys-demo-next {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--lunys-navy);
    color: #fff;
}

.lunys-demo-next time {
    margin: 26px 0 5px;
    color: #62dfdc;
    font-size: 35px;
    font-weight: 800;
}

.lunys-demo-next strong {
    font-size: 15px;
}

.lunys-demo-next span {
    margin-top: 8px;
    color: #aeb7c8;
    font-size: 9px;
}

.lunys-demo-agenda {
    min-height: 450px;
    display: grid;
    grid-template-columns: 55px 1fr 1fr;
    gap: 13px;
}

.lunys-demo-time {
    display: grid;
    grid-template-rows: repeat(6, 1fr);
    padding-top: 38px;
    color: #8c97a8;
    font-size: 9px;
}

.lunys-demo-column {
    position: relative;
    padding: 14px;
    border: 1px solid var(--lunys-line);
    border-radius: 13px;
    background: repeating-linear-gradient(to bottom, #fff 0, #fff 69px, #e7ebf0 70px);
}

.lunys-demo-column > strong {
    display: block;
    margin-bottom: 16px;
    font-size: 11px;
}

.lunys-demo-column article {
    display: grid;
    gap: 4px;
    padding: 13px;
    border-radius: 10px;
}

.lunys-demo-column article + article {
    margin-top: 74px;
}

.lunys-demo-column article time,
.lunys-demo-column article span {
    font-size: 8px;
}

.lunys-demo-column article b {
    font-size: 10px;
}

.lunys-demo-column .is-teal { background: #d9f6f5; color: #086b70; }
.lunys-demo-column .is-navy { background: var(--lunys-navy); color: #fff; }
.lunys-demo-column .is-light { background: #e9edf3; color: var(--lunys-navy); }

.lunys-demo-customer-layout {
    display: grid;
    grid-template-columns: 1fr .55fr;
    gap: 13px;
}

.lunys-demo-customer,
.lunys-demo-points,
.lunys-demo-history {
    border: 1px solid var(--lunys-line);
    border-radius: 14px;
    background: #fff;
}

.lunys-demo-customer {
    display: grid;
    grid-template-columns: 54px 1fr auto;
    gap: 15px;
    align-items: center;
    padding: 24px;
}

.lunys-demo-customer > span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--lunys-soft);
    color: var(--lunys-primary-dark);
    font-size: 15px;
    font-weight: 850;
}

.lunys-demo-customer h4 {
    margin: 0 0 5px;
    font-size: 15px;
}

.lunys-demo-customer small {
    color: #7c8798;
    font-size: 9px;
}

.lunys-demo-customer > i {
    padding: 6px 9px;
    border-radius: 999px;
    background: #e5f8ee;
    color: #228354;
    font-size: 8px;
    font-style: normal;
    font-weight: 800;
}

.lunys-demo-customer dl {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin: 12px 0 0;
}

.lunys-demo-customer dl div {
    display: grid;
    gap: 5px;
    padding: 14px;
    border-radius: 10px;
    background: var(--lunys-background);
}

.lunys-demo-customer dt {
    color: #7c8798;
    font-size: 8px;
}

.lunys-demo-customer dd {
    margin: 0;
    font-size: 13px;
    font-weight: 800;
}

.lunys-demo-points {
    display: grid;
    place-content: center;
    padding: 25px;
    text-align: center;
    background: linear-gradient(145deg, #fff, #eaf9f9);
}

.lunys-demo-points small {
    color: #758195;
    font-size: 9px;
}

.lunys-demo-points strong {
    margin-top: 10px;
    color: var(--lunys-primary-dark);
    font-size: 40px;
}

.lunys-demo-points > span,
.lunys-demo-points p {
    color: #758195;
    font-size: 9px;
}

.lunys-demo-points > div {
    width: 170px;
    height: 7px;
    margin: 22px auto 8px;
    overflow: hidden;
    border-radius: 999px;
    background: #dbe3e9;
}

.lunys-demo-points > div i {
    width: 76%;
    height: 100%;
    display: block;
    background: var(--lunys-primary);
}

.lunys-demo-history {
    grid-column: 1 / -1;
    padding: 22px;
}

.lunys-demo-history p {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 15px;
    margin: 0;
    padding: 13px 0;
    border-bottom: 1px solid var(--lunys-line);
    font-size: 9px;
}

.lunys-demo-history p:last-child {
    border: 0;
}

.lunys-demo-history time {
    color: #8792a3;
}

.lunys-demo-history b {
    color: var(--lunys-primary-dark);
}

.lunys-demo-editor {
    min-height: 440px;
    display: grid;
    grid-template-columns: 260px 1fr;
    overflow: hidden;
    border: 1px solid var(--lunys-line);
    border-radius: 14px;
    background: #fff;
}

.lunys-demo-editor-controls {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 20px;
    border-right: 1px solid var(--lunys-line);
}

.lunys-demo-editor-controls > span {
    padding: 10px 12px;
    border-radius: 8px;
    color: #7a8596;
    font-size: 9px;
    font-weight: 750;
}

.lunys-demo-editor-controls > span.is-active {
    background: var(--lunys-soft);
    color: var(--lunys-primary-dark);
}

.lunys-demo-editor-controls label {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 7px;
    margin-top: 12px;
    padding: 12px;
    border: 1px solid var(--lunys-line);
    border-radius: 9px;
}

.lunys-demo-editor-controls label small {
    grid-column: 1 / -1;
    color: #8490a1;
    font-size: 8px;
}

.lunys-demo-editor-controls label b {
    font-size: 9px;
}

.lunys-demo-editor-controls label i {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    background: var(--lunys-primary);
}

.lunys-demo-editor-controls em {
    margin-top: auto;
    color: #7d899b;
    font-size: 8px;
    font-style: normal;
}

.lunys-demo-site-preview {
    padding: 20px 26px;
    background: linear-gradient(145deg, #fff, #eefafa);
}

.lunys-demo-site-preview nav {
    display: flex;
    align-items: center;
    gap: 17px;
}

.lunys-demo-site-preview nav img {
    width: 25px;
    height: 25px;
    margin-right: auto;
    object-fit: contain;
}

.lunys-demo-site-preview nav span {
    width: 44px;
    height: 5px;
    border-radius: 999px;
    background: #d7dce4;
}

.lunys-demo-site-preview nav b {
    width: 66px;
    height: 22px;
    border-radius: 7px;
    background: var(--lunys-navy);
}

.lunys-demo-site-preview main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 78px 24px 30px;
}

.lunys-demo-site-preview main small {
    color: var(--lunys-primary-dark);
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .12em;
}

.lunys-demo-site-preview main strong {
    margin-top: 15px;
    font-size: 34px;
    line-height: 1.08;
}

.lunys-demo-site-preview main strong i {
    color: var(--lunys-primary-dark);
    font-style: normal;
}

.lunys-demo-site-preview main p {
    max-width: 360px;
    color: #758195;
    font-size: 10px;
}

.lunys-demo-site-preview main button,
.lunys-demo-insights button {
    padding: 10px 14px;
    border: 0;
    border-radius: 8px;
    background: var(--lunys-navy);
    color: #fff;
    font-size: 8px;
    font-weight: 800;
}

.lunys-demo-insights {
    display: grid;
    gap: 12px;
}

.lunys-demo-insights article {
    display: grid;
    grid-template-columns: 46px 1fr auto;
    gap: 17px;
    align-items: center;
    padding: 20px;
    border: 1px solid var(--lunys-line);
    border-radius: 13px;
    background: #fff;
}

.lunys-demo-insights article > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: var(--lunys-soft);
    color: var(--lunys-primary-dark);
    font-size: 9px;
    font-weight: 850;
}

.lunys-demo-insights small {
    color: var(--lunys-primary-dark);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.lunys-demo-insights h4 {
    margin: 4px 0;
    font-size: 13px;
}

.lunys-demo-insights p {
    margin: 0;
    color: #7b8798;
    font-size: 9px;
}

.lunys-pricing-card {
    display: grid;
    grid-template-columns: 1fr .8fr auto;
    gap: 55px;
    align-items: center;
    padding: 58px;
    border: 1px solid var(--lunys-line);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(12, 25, 54, .07);
}

.lunys-pricing-card h2 {
    margin: 17px 0 0;
    font-size: 38px;
    font-weight: 760;
    letter-spacing: -.04em;
}

.lunys-pricing-card p {
    margin: 16px 0 0;
    color: var(--lunys-copy);
    line-height: 1.7;
}

.lunys-pricing-stack {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 9px 14px;
}

.lunys-pricing-stack span {
    font-size: 13px;
    font-weight: 750;
}

.lunys-pricing-stack i {
    color: var(--lunys-primary-dark);
    font-style: normal;
    font-weight: 900;
}

.lunys-pricing-stack strong {
    grid-column: 1 / -1;
    margin-top: 7px;
    padding-top: 12px;
    border-top: 1px solid var(--lunys-line);
    color: var(--lunys-primary-dark);
}

.lunys-final-cta {
    padding: 90px 0;
    background: #fff;
}

.lunys-final-cta .lunys-container {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 44px;
    align-items: center;
}

.lunys-final-cta img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.lunys-final-cta h2 {
    margin-top: 12px;
    font-size: 38px;
}

.lunys-final-cta .lunys-actions {
    margin: 0;
}

.lunys-footer {
    padding: 62px 0 30px;
    background: var(--lunys-navy);
    color: #fff;
}

.lunys-footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
}

.lunys-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.lunys-footer-brand img {
    width: 156px;
    height: auto;
    object-fit: contain;
}

.lunys-footer p {
    max-width: 390px;
    margin: 20px 0 0;
    color: #9faabd;
    font-size: 13px;
    line-height: 1.7;
}

.lunys-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.lunys-footer a {
    color: #d9dfea;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.lunys-footer-grid > span {
    grid-column: 1 / -1;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #7f8ba0;
    font-size: 11px;
}

@media (max-width: 1100px) {
    .lunys-site-nav .navbar-collapse {
        margin-left: 20px;
    }

    .lunys-site-links {
        gap: 0;
    }

    .lunys-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .lunys-benefit-grid,
    .lunys-module-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lunys-growth-grid {
        grid-template-columns: 180px 1fr 220px;
    }

    .lunys-growth-copy {
        grid-column: 1 / -1;
        max-width: 600px;
        margin-top: 30px;
    }

    .lunys-flow-line {
        grid-template-columns: repeat(3, auto);
    }

    .lunys-flow-line i:nth-of-type(3),
    .lunys-flow-line i:nth-of-type(4) {
        display: none;
    }

    .lunys-demo-panel {
        padding: 34px;
    }

    .lunys-demo-editor {
        grid-template-columns: 220px 1fr;
    }

    .lunys-pricing-card {
        grid-template-columns: 1fr 1fr;
    }

    .lunys-pricing-card > .lunys-button {
        justify-self: start;
    }
}

@media (max-width: 991px) {
    .lunys-site-nav {
        min-height: 72px;
    }

    .lunys-site-brand {
        gap: 8px;
    }

    .lunys-site-brand img {
        width: 122px;
        height: auto;
    }

    .lunys-site-nav .navbar-collapse {
        margin: 0;
        padding: 22px 0 26px;
        border-top: 1px solid var(--lunys-line);
    }

    .lunys-site-links,
    .lunys-site-account {
        align-items: stretch;
    }

    .lunys-site-account {
        display: grid;
        margin-top: 12px;
    }

    .lunys-nav-cta {
        margin: 12px 0 0;
    }

    .lunys-hero-grid,
    .lunys-composer-grid,
    .lunys-ai-grid {
        grid-template-columns: 1fr;
    }

    .lunys-hero-copy {
        max-width: 740px;
    }

    .lunys-product-stage {
        width: min(680px, 100%);
        margin: 0 auto;
    }

    .lunys-problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lunys-section-intro.is-split {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .lunys-ai-feed article:nth-child(2) {
        transform: none;
    }

    .lunys-demo-tabs {
        grid-template-columns: repeat(5, minmax(130px, 1fr));
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .lunys-demo-screen {
        grid-template-columns: 58px 1fr;
    }

    .lunys-demo-sidebar {
        padding-inline: 10px;
    }

    .lunys-demo-sidebar span {
        width: 28px;
        height: 28px;
    }

    .lunys-demo-customer-layout {
        grid-template-columns: 1fr;
    }

    .lunys-demo-history {
        grid-column: auto;
    }

    .lunys-pricing-card {
        gap: 36px;
        padding: 42px;
    }
}

@media (max-width: 720px) {
    .lunys-container {
        width: min(100% - 30px, 1180px);
    }

    .lunys-hero {
        padding: 78px 0 92px;
    }

    .lunys-hero h1 {
        font-size: clamp(40px, 13vw, 58px);
    }

    .lunys-hero-copy > p {
        font-size: 17px;
    }

    .lunys-product-note {
        right: 8px;
    }

    .lunys-dashboard-body {
        grid-template-columns: 45px 1fr;
    }

    .lunys-dashboard-content {
        padding: 16px;
    }

    .lunys-dashboard-content header button {
        display: none;
    }

    .lunys-dashboard-stats {
        grid-template-columns: 1fr 1fr;
    }

    .lunys-dashboard-stats article:last-child {
        display: none;
    }

    .lunys-section,
    .lunys-problems {
        padding: 82px 0;
    }

    .lunys-problem-grid,
    .lunys-benefit-grid,
    .lunys-module-grid,
    .lunys-pricing-card {
        grid-template-columns: 1fr;
    }

    .lunys-benefit-grid article {
        min-height: 260px;
    }

    .lunys-module-grid article {
        min-height: 220px;
    }

    .lunys-module-equation {
        padding: 24px;
    }

    .lunys-flow-line {
        display: flex;
        flex-direction: column;
    }

    .lunys-flow-line i {
        display: block !important;
        transform: rotate(90deg);
    }

    .lunys-growth-grid {
        grid-template-columns: 1fr;
    }

    .lunys-growth-line {
        width: 1px;
        height: 46px;
        justify-self: center;
    }

    .lunys-growth-line span {
        width: 2px;
        height: 50%;
    }

    .lunys-demo-windowbar {
        padding-inline: 15px;
    }

    .lunys-demo-windowbar small {
        display: none;
    }

    .lunys-demo-screen {
        min-height: 620px;
        display: block;
    }

    .lunys-demo-sidebar {
        display: none;
    }

    .lunys-demo-panel {
        padding: 26px 20px;
    }

    .lunys-demo-pagehead {
        align-items: flex-start;
    }

    .lunys-demo-pagehead h3 {
        font-size: 21px;
    }

    .lunys-demo-action,
    .lunys-demo-status {
        padding: 9px 10px;
        font-size: 8px;
    }

    .lunys-demo-stat-grid,
    .lunys-demo-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .lunys-demo-stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lunys-demo-stat-grid article:last-child {
        grid-column: 1 / -1;
    }

    .lunys-demo-next {
        min-height: 185px;
    }

    .lunys-demo-agenda {
        grid-template-columns: 38px 1fr;
    }

    .lunys-demo-agenda .lunys-demo-column:last-child {
        display: none;
    }

    .lunys-demo-customer {
        grid-template-columns: 46px 1fr;
    }

    .lunys-demo-customer > i {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .lunys-demo-customer dl {
        grid-template-columns: 1fr;
    }

    .lunys-demo-history p {
        grid-template-columns: 48px 1fr;
    }

    .lunys-demo-history p b {
        grid-column: 2;
    }

    .lunys-demo-editor {
        grid-template-columns: 1fr;
    }

    .lunys-demo-editor-controls {
        display: none;
    }

    .lunys-demo-site-preview {
        min-height: 420px;
        padding: 17px;
    }

    .lunys-demo-site-preview main {
        padding-inline: 8px;
    }

    .lunys-demo-site-preview main strong {
        font-size: 28px;
    }

    .lunys-demo-insights article {
        grid-template-columns: 40px 1fr;
    }

    .lunys-demo-insights button {
        grid-column: 2;
        justify-self: start;
    }

    .lunys-pricing-card {
        padding: 30px;
    }

    .lunys-final-cta .lunys-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .lunys-final-cta img {
        width: 76px;
        height: 76px;
    }

    .lunys-final-cta .lunys-actions {
        justify-content: flex-start;
    }

    .lunys-footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lunys-nav-cta,
    .lunys-button,
    .lunys-benefit-grid article {
        transition: none;
    }
}
