/* ============================================================
   LOKS TECH — Meeting Scheduler landing page
   All rules are namespaced under .landing-page so nothing here
   can leak into the dashboard. Design tokens come from the
   product stylesheet (style.css :root).
   ============================================================ */

.landing-page {
    background:
        radial-gradient(1100px 520px at 70% -220px, rgba(139, 92, 246, 0.16), transparent 70%),
        radial-gradient(700px 420px at 0% 30%, rgba(228, 92, 255, 0.05), transparent 70%),
        var(--ink-0);
    overflow-x: hidden;
}

/* ---------- Shared layout ---------- */

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

.landing-page .lp-section {
    width: 100%;
    max-width: 1460px;
    margin: 0 auto;
    padding: clamp(42px, 4.2vw, 68px) clamp(22px, 4vw, 56px);
}

.landing-page .lp-section-head {
    max-width: 760px;
    margin-bottom: clamp(24px, 2.8vw, 38px);
}

.landing-page .lp-section-head h2,
.landing-page .lp-benefits-copy h2,
.landing-page .lp-security h2,
.landing-page .lp-final-card h2 {
    margin: 0 0 10px;
    font-size: clamp(30px, 3.25vw, 52px);
    line-height: 1.15;
}

.landing-page .lp-section-sub {
    margin: 0;
    color: var(--text-2);
    font-size: clamp(16px, 1.18vw, 19px);
    max-width: 60ch;
}

/* Scroll reveal (JS adds .is-in; reduced-motion handled at bottom) */
.landing-page .lp-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s cubic-bezier(.22,.61,.36,1),
                transform .6s cubic-bezier(.22,.61,.36,1);
}
.landing-page .lp-reveal.is-in {
    opacity: 1;
    transform: none;
}

/* ---------- 1. Navigation ---------- */

.landing-page .lp-nav {
    position: sticky;
    top: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px clamp(16px, 3vw, 32px);
    background: rgba(10, 7, 18, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

/* The beam — same light source as the dashboard nav */
.landing-page .lp-nav::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 2%,
        rgba(228, 92, 255, 0.75) 22%,
        rgba(139, 92, 246, 0.75) 58%,
        transparent 96%
    );
    pointer-events: none;
}

.landing-page .lp-nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.landing-page .lp-logo { height: 34px; width: auto; border-radius: 9px; }

.landing-page .lp-nav-brand-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--text-1);
    line-height: 1.15;
    white-space: nowrap;
}

.landing-page .lp-nav-brand-text small,
.landing-page .lp-footer-brand small {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-3);
    white-space: nowrap;
}

.landing-page .lp-nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.landing-page .lp-nav-link {
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-2);
}
.landing-page .lp-nav-link:hover {
    color: var(--text-1);
    background: var(--ink-2);
}

.landing-page .lp-nav-login { margin-left: 6px; }

/* Hamburger (mobile only) */
.landing-page .lp-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 40px;
    padding: 0 10px;
    background: var(--ink-2);
    border: 1px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
}
.landing-page .lp-nav-toggle span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: var(--lilac);
    transition: transform .25s ease, opacity .25s ease;
}
.landing-page .lp-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.landing-page .lp-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.landing-page .lp-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 2. Hero ---------- */

.landing-page .lp-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(28px, 5vw, 64px);
    width: 100%;
    max-width: 1460px;
    margin: 0 auto;
    padding: clamp(52px, 5.5vw, 88px) clamp(22px, 4vw, 56px) clamp(42px, 4vw, 64px);
}

.landing-page .lp-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(42px, 4.15vw, 68px);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.landing-page .lp-hero-sub {
    margin: 0 0 24px;
    color: var(--text-2);
    font-size: clamp(17px, 1.38vw, 23px);
    line-height: 1.55;
    max-width: 49ch;
}

.landing-page .lp-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.landing-page .lp-btn-lg {
    --btn-pad-y: 13px;
    --btn-pad-x: 24px;
    font-size: clamp(15px, 1.08vw, 18px);
    border-radius: 13px;
}

.landing-page .lp-hero-note {
    margin: 18px 0 0;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--text-3);
}

/* Hero visual — the lifecycle console */

.landing-page .lp-hero-visual {
    position: relative;
    min-width: 0;
}

.landing-page .lp-console {
    position: relative;
    z-index: 1;
    background: var(--ink-1);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-card);
    padding: clamp(18px, 2.4vw, 26px);
    animation: lp-float 9s ease-in-out infinite;
}

@keyframes lp-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

.landing-page .lp-console-glow {
    position: absolute;
    inset: 12% -6% -10% -6%;
    background: radial-gradient(60% 60% at 50% 55%, rgba(139, 92, 246, 0.28), transparent 70%);
    filter: blur(46px);
    pointer-events: none;
}

.landing-page .lp-console-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.landing-page .lp-console-title {
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: var(--lilac);
}

.landing-page .lp-console-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-3);
}

.landing-page .lp-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ok);
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.8);
    animation: lp-pulse 2.2s ease-in-out infinite;
}

@keyframes lp-pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.35; }
}

/* Lifecycle steps */
.landing-page .lp-lifecycle {
    display: flex;
    gap: 6px;
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}

.landing-page .lp-lifecycle li {
    flex: 1;
    text-align: center;
    padding: 7px 4px;
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-3);
    background: var(--ink-2);
    transition: color .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease;
}

.landing-page .lp-lifecycle li.is-on {
    color: #fff;
    border-color: var(--line-strong);
    background: linear-gradient(135deg, rgba(228, 92, 255, 0.22), rgba(139, 92, 246, 0.22));
    box-shadow: 0 0 18px -6px rgba(228, 92, 255, 0.6);
}

/* Meeting row inside the console */
.landing-page .lp-console-meeting {
    border: 1px solid var(--line-soft);
    border-radius: var(--r-md);
    background: var(--ink-2);
    padding: 14px 16px;
    margin-bottom: 16px;
}

.landing-page .lp-console-meeting-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.landing-page .lp-console-meeting-row strong {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.landing-page .lp-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid var(--line);
    color: var(--lilac);
    background: var(--ink-3);
    transition: color .3s ease, border-color .3s ease, background .3s ease;
}

.landing-page .lp-chip-state.is-ok {
    color: #bbf7d0;
    border-color: rgba(52, 211, 153, 0.4);
    background: rgba(16, 185, 129, 0.12);
}

.landing-page .lp-console-meeting-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 12.5px;
    color: var(--text-2);
}

.landing-page .lp-console-meeting-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Participant timeline */
.landing-page .lp-timeline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.landing-page .lp-timeline-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-3);
}

.landing-page .lp-timeline-track {
    position: relative;
    flex: 1;
    height: 4px;
    border-radius: 4px;
    background: var(--ink-3);
    overflow: visible;
}

.landing-page .lp-timeline-track::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(228, 92, 255, 0.5), rgba(139, 92, 246, 0.5));
    transform-origin: left;
    animation: lp-track-fill 7s linear infinite;
}

@keyframes lp-track-fill {
    0%       { transform: scaleX(0); }
    62%      { transform: scaleX(1); }
    100%     { transform: scaleX(1); }
}

.landing-page .lp-dot {
    position: absolute;
    top: 50%;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--ok);
    border: 2px solid var(--ink-1);
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.65);
    transform: translate(-50%, -50%);
    animation: lp-dot-travel 7s linear infinite;
}

.landing-page .lp-dot-a { animation-delay: 0s; }
.landing-page .lp-dot-b { animation-delay: .7s; }
.landing-page .lp-dot-c { animation-delay: 1.5s; }
.landing-page .lp-dot-d { animation-delay: 2.6s; background: var(--sky); box-shadow: 0 0 8px rgba(125, 211, 252, 0.65); }

@keyframes lp-dot-travel {
    0%   { left: 0%;   opacity: 0; }
    6%   { opacity: 1; }
    55%  { left: 78%;  opacity: 1; }
    62%  { left: 86%;  opacity: 1; }
    68%  { left: 92%;  opacity: 0; }
    100% { left: 92%;  opacity: 0; }
}

/* Console mini stats */
.landing-page .lp-console-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line-soft);
    padding-top: 14px;
    gap: 8px;
}

.landing-page .lp-mini-stat p {
    margin: 0 0 4px;
    font-family: var(--font-mono);
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-3);
}

.landing-page .lp-mini-stat strong {
    font-family: var(--font-mono);
    font-size: 19px;
    font-weight: 600;
    color: var(--text-1);
}

/* ---------- 3. Workflow ---------- */

.landing-page .lp-workflow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.landing-page .lp-workflow-line {
    position: absolute;
    top: 34px;
    left: 4%;
    right: 4%;
    height: 2px;
    border-radius: 2px;
    background: var(--line-soft);
    overflow: hidden;
    pointer-events: none;
}

.landing-page .lp-workflow-line::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--fuchsia), var(--violet));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.4s cubic-bezier(.22,.61,.36,1) .2s;
}

.landing-page .lp-workflow.is-drawn .lp-workflow-line::before { transform: scaleX(1); }

.landing-page .lp-workflow-spark {
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 14px 3px rgba(228, 92, 255, 0.8);
    transform: translate(-50%, -50%);
    opacity: 0;
}

.landing-page .lp-workflow.is-drawn .lp-workflow-spark {
    animation: lp-spark 1.4s cubic-bezier(.22,.61,.36,1) .2s forwards;
}

@keyframes lp-spark {
    0%   { left: 0%;   opacity: 1; }
    92%  { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

.landing-page .lp-flow-card {
    position: relative;
    z-index: 1;
    background: var(--ink-1);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-card);
    padding: 22px 20px;
    transition: transform .25s cubic-bezier(.22,.61,.36,1), border-color .25s ease;
}

.landing-page .lp-flow-card:hover {
    transform: translateY(-4px);
    border-color: var(--line-strong);
}

.landing-page .lp-flow-icon {
    width: 26px;
    height: 26px;
    filter: invert(1);
    opacity: 0.8;
    display: block;
    margin-bottom: 12px;
}

.landing-page .lp-flow-card h3 {
    margin: 0 0 6px;
    font-size: 16px;
}

.landing-page .lp-flow-card p {
    margin: 0;
    font-size: 13px;
    color: var(--text-2);
}

/* ---------- 4. Analytics showcase ---------- */

.landing-page .lp-analytics {
    background: var(--ink-1);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-card);
    padding: clamp(18px, 2.6vw, 28px);
}

.landing-page .lp-analytics-summary {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    margin-bottom: 20px;
    border: 1px solid var(--line-soft);
    border-radius: var(--r-md);
    background: var(--ink-2);
    overflow: hidden;
}

.landing-page .lp-sum-tile {
    padding: 16px 18px;
    border-left: 1px solid var(--line-soft);
}
.landing-page .lp-sum-tile:first-child { border-left: none; }

.landing-page .lp-sum-tile p {
    margin: 0 0 6px;
    font-family: var(--font-mono);
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-3);
}

.landing-page .lp-sum-tile strong {
    font-family: var(--font-mono);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-1);
}

.landing-page .lp-charts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.landing-page .lp-chart-card {
    margin: 0;
    background: var(--ink-2);
    border: 1px solid var(--line-soft);
    border-radius: var(--r-md);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.landing-page .lp-chart-card figcaption strong {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-1);
}

.landing-page .lp-chart-card figcaption span {
    font-size: 12px;
    color: var(--text-3);
}

/* Donut */
.landing-page .lp-donut-wrap {
    position: relative;
    width: 140px;
    margin: 4px auto;
}

.landing-page .lp-donut { width: 100%; height: auto; transform: rotate(-90deg); }

.landing-page .lp-donut-track {
    fill: none;
    stroke: rgba(251, 191, 36, 0.25);
    stroke-width: 14;
}

.landing-page .lp-donut-value {
    fill: none;
    stroke: var(--ok);
    stroke-width: 14;
    stroke-linecap: round;
    stroke-dasharray: 87.5 100;
    stroke-dashoffset: 100;
    filter: drop-shadow(0 0 6px rgba(74, 222, 128, 0.35));
}

.landing-page .lp-analytics.is-drawn .lp-donut-value {
    animation: lp-donut-draw 1.2s cubic-bezier(.22,.61,.36,1) .15s forwards;
}

@keyframes lp-donut-draw {
    to { stroke-dashoffset: 12.5; } /* 100 - 87.5 → draws to 87.5% */
}

.landing-page .lp-donut-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
}

.landing-page .lp-donut-center strong {
    font-family: var(--font-mono);
    font-size: 19px;
    color: var(--text-1);
}

.landing-page .lp-donut-center span {
    font-family: var(--font-mono);
    font-size: 9.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-3);
}

/* Bars */
.landing-page .lp-bars,
.landing-page .lp-lines { width: 100%; height: auto; }

.landing-page .lp-axis {
    stroke: rgba(196, 181, 253, 0.18);
    stroke-width: 1;
}

.landing-page .lp-tick {
    font-family: var(--font-mono);
    font-size: 8.5px;
    fill: var(--text-3);
}

.landing-page .lp-tick-name { font-size: 8px; }

.landing-page .lp-bar {
    fill: rgba(125, 211, 252, 0.85);
    transform-origin: 50% 120px;
    transform: scaleY(0);
}

.landing-page .lp-analytics.is-drawn .lp-bar {
    animation: lp-bar-grow .7s cubic-bezier(.22,.61,.36,1) var(--d, 0s) forwards;
}

@keyframes lp-bar-grow {
    to { transform: scaleY(1); }
}

/* Step lines */
.landing-page .lp-line {
    fill: none;
    stroke-width: 2.5;
    stroke-linejoin: round;
    stroke-linecap: round;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
}

.landing-page .lp-line-joins  { stroke: var(--ok); }
.landing-page .lp-line-leaves { stroke: var(--danger); }

.landing-page .lp-analytics.is-drawn .lp-line-joins {
    animation: lp-line-draw 1.3s cubic-bezier(.22,.61,.36,1) .2s forwards;
}
.landing-page .lp-analytics.is-drawn .lp-line-leaves {
    animation: lp-line-draw 1.3s cubic-bezier(.22,.61,.36,1) .5s forwards;
}

@keyframes lp-line-draw {
    to { stroke-dashoffset: 0; }
}

/* Legends */
.landing-page .lp-legend {
    display: flex;
    justify-content: center;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--text-2);
}

.landing-page .lp-legend li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.landing-page .lp-swatch {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    display: inline-block;
}
.landing-page .lp-swatch-ok     { background: var(--ok); }
.landing-page .lp-swatch-warn   { background: var(--warn); }
.landing-page .lp-swatch-danger { background: var(--danger); }

.landing-page .lp-rejoin-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 18px;
    padding: 14px 16px;
    border: 1px solid var(--line-soft);
    border-radius: var(--r-md);
    background: var(--ink-2);
}

.landing-page .lp-rejoin-row .ui-icon { margin-top: 2px; }

.landing-page .lp-rejoin-copy {
    font-size: 13px;
    color: var(--text-2);
}

/* ---------- 5. Feature grid ---------- */

.landing-page .lp-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.landing-page .lp-feature-card {
    background: var(--ink-1);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-card);
    padding: 24px 22px;
    transition: transform .25s cubic-bezier(.22,.61,.36,1), border-color .25s ease;
}

.landing-page .lp-feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--line-strong);
}

.landing-page .lp-feature-icon {
    width: 24px;
    height: 24px;
    filter: invert(1);
    opacity: 0.8;
    display: block;
    margin-bottom: 14px;
}

.landing-page .lp-feature-card h3 {
    margin: 0 0 6px;
    font-size: 16px;
}

.landing-page .lp-feature-card p {
    margin: 0;
    font-size: 13px;
    color: var(--text-2);
}

/* Stagger the feature reveals slightly */
.landing-page .lp-feature-grid .lp-reveal:nth-child(2) { transition-delay: .07s; }
.landing-page .lp-feature-grid .lp-reveal:nth-child(3) { transition-delay: .14s; }
.landing-page .lp-feature-grid .lp-reveal:nth-child(4) { transition-delay: .07s; }
.landing-page .lp-feature-grid .lp-reveal:nth-child(5) { transition-delay: .14s; }
.landing-page .lp-feature-grid .lp-reveal:nth-child(6) { transition-delay: .21s; }

/* ---------- 6. Integrations ---------- */

.landing-page .lp-integrations {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: stretch;
    gap: 16px;
}

.landing-page .lp-provider-card {
    background: var(--ink-1);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-card);
    padding: 24px 22px;
}

.landing-page .lp-provider-google { border-top: 2px solid rgba(74, 222, 128, 0.5); }
.landing-page .lp-provider-zoho   { border-top: 2px solid rgba(251, 191, 36, 0.5); }

.landing-page .lp-provider-kicker {
    margin: 0 0 8px;
    font-family: var(--font-mono);
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-3);
}

.landing-page .lp-provider-card h3 {
    margin: 0 0 8px;
    font-size: 17px;
}

.landing-page .lp-provider-card > p {
    margin: 0 0 14px;
    font-size: 13px;
    color: var(--text-2);
}

.landing-page .lp-provider-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: var(--text-2);
}

.landing-page .lp-provider-list li {
    position: relative;
    padding-left: 18px;
}

.landing-page .lp-provider-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-grad);
}

.landing-page .lp-provider-join {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 150px;
}

.landing-page .lp-provider-join-line {
    flex: 1;
    width: 2px;
    min-height: 22px;
    border-radius: 2px;
    background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.6), transparent);
}

.landing-page .lp-provider-join-node {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: var(--ink-2);
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lilac);
    box-shadow: 0 0 22px -8px rgba(228, 92, 255, 0.6);
    white-space: nowrap;
}

.landing-page .lp-integrations-note {
    margin: 18px auto 0;
    max-width: 60ch;
    text-align: center;
    font-size: 13px;
    color: var(--text-3);
}

/* ---------- 7. Benefits ---------- */

.landing-page .lp-benefits {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(24px, 4vw, 56px);
    align-items: start;
}

.landing-page .lp-benefit-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.landing-page .lp-benefit-list li {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 16px 0 16px 26px;
    border-bottom: 1px solid var(--line-soft);
    position: relative;
}

.landing-page .lp-benefit-list li:last-child { border-bottom: none; }

.landing-page .lp-benefit-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 24px;
    width: 14px;
    height: 2px;
    border-radius: 2px;
    background: var(--brand-grad);
}

.landing-page .lp-benefit-list strong {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--text-1);
}

.landing-page .lp-benefit-list span {
    font-size: 13px;
    color: var(--text-2);
}

/* ---------- 8. Security ---------- */

.landing-page .lp-security {
    background: var(--ink-1);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-card);
    padding: clamp(22px, 3vw, 32px);
}

.landing-page .lp-security-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.landing-page .lp-security-icon {
    width: 34px;
    height: 34px;
    filter: invert(1);
    opacity: 0.85;
    padding: 7px;
    box-sizing: content-box;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--ink-2);
}

.landing-page .lp-security-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 24px;
    font-size: 13.5px;
    color: var(--text-2);
}

.landing-page .lp-security-list li {
    position: relative;
    padding-left: 20px;
}

.landing-page .lp-security-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--ok);
    font-weight: 700;
}

/* ---------- 9. Final CTA ---------- */

.landing-page .lp-final { padding-bottom: clamp(56px, 6vw, 88px); }

.landing-page .lp-final-card {
    position: relative;
    text-align: center;
    background:
        radial-gradient(420px 200px at 50% 0%, rgba(228, 92, 255, 0.12), transparent 70%),
        var(--ink-1);
    border: 1px solid var(--line-strong);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-card), 0 0 44px -20px rgba(228, 92, 255, 0.5);
    padding: clamp(36px, 5vw, 60px) clamp(20px, 4vw, 48px);
}

.landing-page .lp-final-card h2 {
    max-width: 22ch;
    margin-left: auto;
    margin-right: auto;
}

.landing-page .lp-final-ctas {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.landing-page .lp-btn-zoho {
    border-color: rgba(251, 191, 36, 0.4);
    color: var(--warn);
}
.landing-page .lp-btn-zoho:hover {
    border-color: var(--warn);
    background: rgba(251, 191, 36, 0.1);
    color: #fde68a;
}

.landing-page .lp-final-note {
    margin: 18px 0 0;
    font-size: 13px;
    color: var(--text-3);
}

/* ---------- 10. Footer ---------- */

.landing-page .lp-footer {
    border-top: 1px solid var(--line-soft);
    background: rgba(10, 7, 18, 0.6);
}

.landing-page .lp-footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
    gap: 28px;
    width: 100%;
    max-width: 1460px;
    margin: 0 auto;
    padding: clamp(38px, 5vw, 68px) clamp(22px, 4vw, 56px) 32px;
}

.landing-page .lp-footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.landing-page .lp-footer-brand strong {
    display: block;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    color: var(--text-1);
    line-height: 1.2;
}

.landing-page .lp-footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.landing-page .lp-footer-col p {
    margin: 0 0 4px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-3);
}

.landing-page .lp-footer-col a {
    font-size: 13px;
    color: var(--text-2);
    width: fit-content;
}

.landing-page .lp-footer-col a:hover { color: var(--text-1); }

.landing-page .lp-footer-base {
    border-top: 1px solid var(--line-soft);
    text-align: center;
    padding: 16px 18px 22px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-3);
}



/* ============================================================
   LARGE-SCREEN PRESENCE
   Makes the landing page feel like the former 150% browser view
   while keeping browser zoom fully under the visitor's control.
   These enhancements apply only when the viewport has enough room.
   ============================================================ */

@media (min-width: 1200px) {
    /* Keep the enlarged desktop design compact vertically. */
    .landing-page .lp-section {
        padding-top: clamp(48px, 3.5vw, 64px);
        padding-bottom: clamp(48px, 3.5vw, 64px);
    }

    .landing-page .lp-hero {
        padding-top: clamp(58px, 4.5vw, 78px);
        padding-bottom: clamp(42px, 3.5vw, 58px);
    }

    .landing-page .lp-nav {
        padding: 16px clamp(34px, 3.2vw, 58px);
        gap: 24px;
    }

    .landing-page .lp-logo {
        height: clamp(40px, 2.8vw, 48px);
        border-radius: 11px;
    }

    .landing-page .lp-nav-brand { gap: 16px; }

    .landing-page .lp-nav-brand-text strong {
        font-size: clamp(17px, 1.25vw, 21px);
    }

    .landing-page .lp-nav-brand-text small,
    .landing-page .lp-footer-brand small {
        font-size: clamp(10px, .78vw, 12px);
    }

    .landing-page .lp-nav-menu { gap: 10px; }

    .landing-page .lp-nav-link {
        padding: 10px 15px;
        font-size: clamp(14px, 1.02vw, 17px);
    }

    .landing-page .lp-nav-menu .btn-sm {
        --btn-pad-y: 9px;
        --btn-pad-x: 17px;
        font-size: clamp(13px, .96vw, 16px);
        border-radius: 10px;
    }

    .landing-page .lp-hero {
        max-width: 1500px;
        padding-left: 24px;
        padding-right: 24px;
        grid-template-columns: minmax(0, 1.05fr) minmax(560px, 1fr);
        gap: clamp(54px, 4vw, 72px);
    }

    .landing-page .lp-hero .eyebrow {
        font-size: clamp(12px, .88vw, 15px);
        margin-bottom: 14px;
    }

    .landing-page .lp-hero h1 { margin-bottom: 22px; }
    .landing-page .lp-hero-sub { margin-bottom: 30px; }
    .landing-page .lp-hero-ctas { gap: 16px; }

    .landing-page .lp-btn-lg {
        --btn-pad-y: 16px;
        --btn-pad-x: 30px;
        min-height: 58px;
    }

    .landing-page .lp-hero-note {
        margin-top: 24px;
        font-size: clamp(11px, .82vw, 14px);
    }

    .landing-page .lp-console {
        padding: clamp(28px, 2.1vw, 36px);
        border-radius: 24px;
    }

    .landing-page .lp-console-head { margin-bottom: 20px; }

    .landing-page .lp-console-title {
        font-size: clamp(11px, .9vw, 14px);
    }

    .landing-page .lp-console-live {
        font-size: clamp(10px, .78vw, 12px);
    }

    .landing-page .lp-lifecycle {
        gap: 10px;
        margin-bottom: 24px;
    }

    .landing-page .lp-lifecycle li {
        padding: 11px 8px;
        border-radius: 10px;
        font-size: clamp(10.5px, .82vw, 13px);
    }

    .landing-page .lp-console-meeting {
        padding: 20px 22px;
        margin-bottom: 24px;
        border-radius: 16px;
    }

    .landing-page .lp-console-meeting-row { margin-bottom: 12px; }

    .landing-page .lp-console-meeting-row strong {
        font-size: clamp(16px, 1.25vw, 20px);
    }

    .landing-page .lp-chip {
        padding: 6px 13px;
        font-size: clamp(10px, .78vw, 12px);
    }

    .landing-page .lp-console-meeting-meta {
        gap: 10px 20px;
        font-size: clamp(13px, .96vw, 16px);
    }

    .landing-page .lp-timeline {
        gap: 14px;
        margin-bottom: 22px;
    }

    .landing-page .lp-timeline-label {
        font-size: clamp(10px, .76vw, 12px);
    }

    .landing-page .lp-timeline-track { height: 5px; }
    .landing-page .lp-dot { width: 11px; height: 11px; }

    .landing-page .lp-console-stats {
        padding-top: 20px;
        gap: 14px;
    }

    .landing-page .lp-mini-stat p {
        font-size: clamp(9.5px, .76vw, 12px);
    }

    .landing-page .lp-mini-stat strong {
        font-size: clamp(21px, 1.55vw, 26px);
    }

    .landing-page .lp-workflow,
    .landing-page .lp-feature-grid,
    .landing-page .lp-charts,
    .landing-page .lp-integrations {
        gap: 22px;
    }

    .landing-page .lp-flow-card,
    .landing-page .lp-feature-card,
    .landing-page .lp-provider-card {
        padding: 30px 28px;
        border-radius: 20px;
    }

    .landing-page .lp-flow-icon,
    .landing-page .lp-feature-icon {
        width: 31px;
        height: 31px;
        margin-bottom: 16px;
    }

    .landing-page .lp-flow-card h3,
    .landing-page .lp-feature-card h3 {
        font-size: 20px;
        margin-bottom: 9px;
    }

    .landing-page .lp-flow-card p,
    .landing-page .lp-feature-card p,
    .landing-page .lp-provider-card > p,
    .landing-page .lp-provider-list,
    .landing-page .lp-benefit-list span {
        font-size: 15px;
        line-height: 1.65;
    }

    .landing-page .lp-analytics { padding: 34px; }
    .landing-page .lp-sum-tile { padding: 21px 22px; }
    .landing-page .lp-sum-tile p { font-size: 11px; }
    .landing-page .lp-sum-tile strong { font-size: 27px; }
    .landing-page .lp-chart-card { padding: 24px; gap: 16px; }
    .landing-page .lp-chart-card figcaption strong { font-size: 13px; }
    .landing-page .lp-chart-card figcaption span { font-size: 14px; }

    .landing-page .lp-provider-card h3 { font-size: 21px; }
    .landing-page .lp-provider-kicker { font-size: 11px; }
    .landing-page .lp-provider-join { min-width: 190px; }
    .landing-page .lp-provider-join-node {
        padding: 12px 18px;
        font-size: 12px;
    }

    .landing-page .lp-benefit-list li {
        padding: 21px 0 21px 30px;
    }

    .landing-page .lp-benefit-list strong { font-size: 18px; }

    .landing-page .lp-security { padding: 38px; }
    .landing-page .lp-security-list {
        gap: 14px 34px;
        font-size: 16px;
    }

    .landing-page .lp-final-card {
        padding-top: 76px;
        padding-bottom: 76px;
    }

    .landing-page .lp-footer-brand strong { font-size: 18px; }
    .landing-page .lp-footer-col p { font-size: 11px; }
    .landing-page .lp-footer-col a { font-size: 15px; }
    .landing-page .lp-footer-base { font-size: 12px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .landing-page .lp-charts { grid-template-columns: 1fr 1fr; }
    .landing-page .lp-chart-card:first-child { grid-column: 1 / -1; }
    .landing-page .lp-analytics-summary { grid-template-columns: repeat(3, 1fr); }
    .landing-page .lp-sum-tile:nth-child(4) { border-left: none; }
    .landing-page .lp-sum-tile:nth-child(n+4) { border-top: 1px solid var(--line-soft); }
    .landing-page .lp-feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .landing-page .lp-hero {
        grid-template-columns: 1fr;
        padding-top: 40px;
    }
    .landing-page .lp-hero-visual { max-width: 560px; }

    .landing-page .lp-workflow { grid-template-columns: repeat(2, 1fr); }
    .landing-page .lp-workflow-line { display: none; }

    .landing-page .lp-integrations { grid-template-columns: 1fr; }
    .landing-page .lp-provider-join {
        flex-direction: row;
        min-width: 0;
        width: 100%;
    }
    .landing-page .lp-provider-join-line {
        width: auto;
        height: 2px;
        min-height: 0;
        min-width: 22px;
        background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.6), transparent);
    }

    .landing-page .lp-benefits { grid-template-columns: 1fr; }
    .landing-page .lp-footer-inner { grid-template-columns: 1fr 1fr; }
    .landing-page .lp-footer-brand { grid-column: 1 / -1; }
}

/* Tablet and mobile navigation.
   Portrait tablets such as iPad Air are too narrow for the full desktop menu,
   so switch to the hamburger before links begin to collide with the brand. */
@media (max-width: 1024px) {
    .landing-page .lp-nav {
        padding-left: max(18px, env(safe-area-inset-left));
        padding-right: max(18px, env(safe-area-inset-right));
    }

    .landing-page .lp-nav-toggle {
        display: flex;
        flex: 0 0 auto;
    }

    .landing-page .lp-nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        padding: 14px max(18px, env(safe-area-inset-left))
                 calc(18px + env(safe-area-inset-bottom))
                 max(18px, env(safe-area-inset-right));
        background: rgba(10, 7, 18, 0.98);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
        display: none;
    }

    .landing-page .lp-nav-menu.is-open { display: flex; }

    .landing-page .lp-nav-link { padding: 12px; }
    .landing-page .lp-nav-login { margin-left: 0; }
    .landing-page .lp-nav-menu .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 420px) {
    .landing-page .lp-nav-brand-text small { display: none; }
    .landing-page .lp-nav-brand-text strong { font-size: 14px; }
}

@media (max-width: 640px) {
    .landing-page .lp-console-glow { inset: 12% 0 -10% 0; }
    .landing-page .lp-console-stats { grid-template-columns: repeat(2, 1fr); }
    .landing-page .lp-console-stats .lp-mini-stat:nth-child(n+3) {
        border-top: 1px solid var(--line-soft);
        padding-top: 10px;
    }
    .landing-page .lp-charts { grid-template-columns: 1fr; }
    .landing-page .lp-chart-card:first-child { grid-column: auto; }
    .landing-page .lp-analytics-summary { grid-template-columns: repeat(2, 1fr); }
    .landing-page .lp-sum-tile:nth-child(3) { border-left: none; }
    .landing-page .lp-sum-tile:nth-child(n+3) { border-top: 1px solid var(--line-soft); }
    .landing-page .lp-feature-grid { grid-template-columns: 1fr; }
    .landing-page .lp-workflow { grid-template-columns: 1fr; }
    .landing-page .lp-security-list { grid-template-columns: 1fr; }
    .landing-page .lp-footer-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
    .landing-page .lp-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .landing-page .lp-console,
    .landing-page .lp-live-dot,
    .landing-page .lp-dot,
    .landing-page .lp-timeline-track::before,
    .landing-page .lp-workflow-spark {
        animation: none !important;
    }
    .landing-page .lp-dot { opacity: 0; }
    .landing-page .lp-timeline-track::before { transform: scaleX(1); }
    .landing-page .lp-workflow-line::before { transition: none; transform: scaleX(1); }
    .landing-page .lp-donut-value { animation: none !important; stroke-dashoffset: 12.5; }
    .landing-page .lp-bar { animation: none !important; transform: scaleY(1); }
    .landing-page .lp-line { animation: none !important; stroke-dashoffset: 0; }
}
