/* ==========================================================================
   Home page — "Marked" direction
   --------------------------------------------------------------------------
   Loaded only on the home page, after landing.css. Everything is namespaced
   under body.home-marked with an `hm-` class prefix so it cannot collide with
   Bootstrap or the shared .lp-* landing styles used by the SEO pages.
   ========================================================================== */

body.home-marked {
    --hm-ink: #17101f;
    --hm-ink-soft: #544a60;
    --hm-ink-mute: #8c8496;
    --hm-violet: #7209b7;
    --hm-violet-deep: #2f0450;
    --hm-paper: #fff;
    --hm-wash: #f6f3f8;
    --hm-rule: #e4dfea;
    --hm-mark: #e03131;
    /* CC0 paper scan (ambientCG Paper003), high-passed to a neutral grain.
       See public/images/textures/CREDITS.md */
    --hm-grain: url('/images/textures/paper-grain.jpg');
    --hm-display: 'Bricolage Grotesque', system-ui, sans-serif;
    --hm-body: 'Public Sans', system-ui, sans-serif;
    --hm-mono: 'IBM Plex Mono', ui-monospace, monospace;

    background: var(--hm-paper);
    font-family: var(--hm-body);
    color: var(--hm-ink);
    -webkit-font-smoothing: antialiased;
    /* The hero margin notes overhang their column by 32px; clip rather than
       let that turn into a horizontal scrollbar on narrow desktops. */
    overflow-x: clip;
}

/* landing.css sets a serif display face and cream page tint for the SEO pages.
   Neither belongs in this direction, so reset them within this page only. */
body.home-marked h1,
body.home-marked h2,
body.home-marked h3,
body.home-marked h4 {
    font-family: var(--hm-display);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin: 0;
    color: var(--hm-ink);
    text-wrap: balance;
}

body.home-marked .hm-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

body.home-marked .hm-eyebrow {
    font-family: var(--hm-mono);
    font-size: 11.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--hm-violet);
    margin: 0 0 14px;
}

body.home-marked .hm-sec {
    padding: 96px 0;
}

body.home-marked .hm-sec--wash {
    position: relative;
    background: var(--hm-wash);
    border-top: 1px solid var(--hm-rule);
    border-bottom: 1px solid var(--hm-rule);
}
body.home-marked .hm-sec--wash::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--hm-grain);
    background-size: 300px;
    mix-blend-mode: multiply;
    opacity: 0.42;
    pointer-events: none;
    z-index: 0;
}
body.home-marked .hm-sec--wash > .hm-wrap {
    position: relative;
    z-index: 1;
}

body.home-marked .hm-sec-head {
    max-width: 38rem;
    margin-bottom: 52px;
}
body.home-marked .hm-sec-head h2 {
    font-size: clamp(30px, 3.4vw, 42px);
}
body.home-marked .hm-sec-head p {
    font-size: 17.5px;
    line-height: 1.62;
    color: var(--hm-ink-soft);
    margin: 18px 0 0;
    text-wrap: pretty;
}

/* ---------- navbar tuning ------------------------------------------------ */
body.home-marked .lp-nav {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(12px);
    box-shadow: 0 1px 0 var(--hm-rule);
}
body.home-marked .lp-nav .nav-link {
    font-family: var(--hm-body);
    font-weight: 600;
}
body.home-marked .lp-nav .btn-primary {
    background: var(--hm-violet);
    border-color: var(--hm-violet);
    font-family: var(--hm-body);
    font-weight: 600;
    border-radius: 8px;
}
body.home-marked .lp-nav .btn-primary:hover {
    background: #5d0796;
    border-color: #5d0796;
}

/* ---------- buttons ------------------------------------------------------ */
body.home-marked .hm-btn {
    display: inline-block;
    font-family: var(--hm-body);
    font-size: 16px;
    font-weight: 600;
    background: var(--hm-violet);
    color: #fff;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition:
        transform 0.15s ease,
        background 0.15s ease;
}
body.home-marked .hm-btn:hover {
    background: #5d0796;
    color: #fff;
    transform: translateY(-1px);
}
body.home-marked .hm-btn-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--hm-ink);
    text-decoration: none;
    border-bottom: 2px solid var(--hm-rule);
    padding-bottom: 2px;
}
body.home-marked .hm-btn-text:hover {
    color: var(--hm-ink);
    border-color: var(--hm-violet);
}
body.home-marked .hm-micro {
    margin: 22px 0 0;
    font-family: var(--hm-mono);
    font-size: 11.5px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--hm-ink-mute);
}

/* ---------- hero --------------------------------------------------------- */
body.home-marked .hm-hero {
    display: grid;
    /* The right column has to stay wide enough that the margin notes can sit
       on the violet field without covering the worksheet. */
    grid-template-columns: 1fr 1.18fr;
    gap: 72px;
    align-items: center;
    padding: 64px 0 96px;
}
/* Capped at 52px: the underlined phrase cannot wrap, so a larger size widens
   the text column's min-content and starves the artifact beside it. */
body.home-marked .hm-hero h1 {
    font-size: clamp(26px, 8.2vw, 52px);
}
body.home-marked .hm-pen {
    position: relative;
    white-space: nowrap;
}
body.home-marked .hm-pen svg {
    position: absolute;
    left: -1%;
    bottom: -0.19em;
    width: 102%;
    height: 0.34em;
    overflow: visible;
}
body.home-marked .hm-pen path {
    fill: none;
    stroke: var(--hm-mark);
    stroke-width: 3.4;
    stroke-linecap: round;
}
body.home-marked .hm-lead {
    font-size: 18.5px;
    line-height: 1.62;
    color: var(--hm-ink-soft);
    margin: 26px 0 0;
    max-width: 34em;
    text-wrap: pretty;
}
body.home-marked .hm-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 34px;
    flex-wrap: wrap;
}

/* ---------- hero artifact ------------------------------------------------ */
body.home-marked .hm-stage {
    position: relative;
    background-color: var(--hm-violet-deep);
    background-image: repeating-linear-gradient(
            to right,
            rgba(255, 255, 255, 0.055) 0 1px,
            transparent 1px 28px
        ),
        repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 28px);
    border-radius: 14px;
    padding: 64px 40px;
    min-height: 648px;
    display: flex;
    align-items: center;
    justify-content: center;
}
body.home-marked .hm-stage::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: radial-gradient(120% 90% at 78% 8%, rgba(255, 255, 255, 0.1), transparent 60%);
    pointer-events: none;
}
body.home-marked .hm-sheet {
    position: relative;
    z-index: 2;
    background: #fff;
    width: 100%;
    max-width: 300px;
    padding: 28px 26px 24px;
    border-radius: 3px;
    transform: rotate(-1.1deg);
    box-shadow:
        0 1px 1px rgba(0, 0, 0, 0.14),
        0 12px 26px rgba(0, 0, 0, 0.22),
        0 34px 60px rgba(0, 0, 0, 0.24);
}
body.home-marked .hm-sheet-title {
    font-family: var(--hm-display);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.01em;
}
body.home-marked .hm-sheet-meta {
    font-family: var(--hm-mono);
    font-size: 10.5px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--hm-ink-mute);
    margin-top: 7px;
    padding-bottom: 13px;
    border-bottom: 1px solid var(--hm-rule);
}
body.home-marked .hm-sheet p {
    font-size: 13.4px;
    line-height: 1.72;
    color: #31293b;
    margin: 15px 0 0;
}
body.home-marked .hm-sheet-q {
    margin-top: 17px;
    padding-top: 14px;
    border-top: 1px solid var(--hm-rule);
}
body.home-marked .hm-sheet-q ol {
    margin: 0;
    padding-left: 19px;
    font-size: 13.2px;
    line-height: 1.95;
    color: #31293b;
}
body.home-marked .hm-starters {
    margin-top: 16px;
    background: var(--hm-wash);
    border-left: 3px solid var(--hm-violet);
    padding: 12px 14px;
    border-radius: 0 5px 5px 0;
}
body.home-marked .hm-starters strong {
    display: block;
    font-family: var(--hm-mono);
    font-size: 10px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--hm-violet);
    margin-bottom: 6px;
}
body.home-marked .hm-starters span {
    font-size: 12.6px;
    line-height: 1.7;
    color: #4a4155;
    font-style: italic;
}
body.home-marked .hm-note {
    position: absolute;
    z-index: 3;
    font-family: var(--hm-mono);
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #fff;
    background: var(--hm-mark);
    padding: 7px 10px;
    border-radius: 5px;
    width: 96px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
body.home-marked .hm-note::after {
    content: '';
    position: absolute;
    height: 1px;
    background: var(--hm-mark);
}
body.home-marked .hm-note::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--hm-mark);
}
/* Only a small overhang: a wider one would push past the viewport edge on
   screens just above the 1200px wrap and create a horizontal scrollbar. */
body.home-marked .hm-note--1 {
    top: 76px;
    left: -32px;
}
body.home-marked .hm-note--1::after {
    right: -26px;
    top: 50%;
    width: 26px;
}
body.home-marked .hm-note--1::before {
    right: -30px;
    top: calc(50% - 2.5px);
}
body.home-marked .hm-note--2 {
    bottom: 112px;
    right: -32px;
    text-align: right;
}
body.home-marked .hm-note--2::after {
    left: -26px;
    top: 50%;
    width: 26px;
}
body.home-marked .hm-note--2::before {
    left: -30px;
    top: calc(50% - 2.5px);
}

/* ---------- trust strip -------------------------------------------------- */
body.home-marked .hm-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--hm-rule);
    border-bottom: 1px solid var(--hm-rule);
}
body.home-marked .hm-trust-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 26px 32px;
    border-left: 1px solid var(--hm-rule);
}
body.home-marked .hm-trust-item:first-child {
    border-left: 0;
    padding-left: 0;
}
body.home-marked .hm-trust-item i {
    font-size: 24px;
    color: var(--hm-violet);
    line-height: 1;
}
body.home-marked .hm-trust-item strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
}
body.home-marked .hm-trust-item span {
    display: block;
    font-size: 13.5px;
    color: var(--hm-ink-soft);
    margin-top: 3px;
}

/* ---------- drifting tool plane ------------------------------------------ */
body.home-marked .hm-plane-band {
    position: relative;
    padding: 132px 0;
    background: var(--hm-wash);
    border-top: 1px solid var(--hm-rule);
    border-bottom: 1px solid var(--hm-rule);
    overflow: hidden;
    isolation: isolate;
}
body.home-marked .hm-plane-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--hm-grain);
    background-size: 300px;
    mix-blend-mode: multiply;
    opacity: 0.42;
    pointer-events: none;
    z-index: 3;
}
body.home-marked .hm-plane {
    position: absolute;
    inset: -8% -4%;
    perspective: 1600px;
    z-index: 0;
    -webkit-mask-image: radial-gradient(78% 92% at 50% 50%, #000 30%, transparent 84%);
    mask-image: radial-gradient(78% 92% at 50% 50%, #000 30%, transparent 84%);
}
body.home-marked .hm-plane-inner {
    position: absolute;
    left: 50%;
    top: -14%;
    width: 1760px;
    margin-left: -880px;
    transform: rotateX(30deg) rotateZ(-7deg);
    transform-style: preserve-3d;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    animation: hmDrift 52s linear infinite;
}
@keyframes hmDrift {
    from {
        transform: rotateX(30deg) rotateZ(-7deg) translateY(0);
    }
    to {
        transform: rotateX(30deg) rotateZ(-7deg) translateY(-528px);
    }
}
body.home-marked .hm-ptile {
    background: #fff;
    border: 1px solid var(--hm-rule);
    border-radius: 9px;
    padding: 16px 18px;
    box-shadow: 0 6px 18px rgba(35, 20, 50, 0.05);
}
body.home-marked .hm-ptile i {
    font-size: 24px;
    line-height: 1;
    display: block;
    margin-bottom: 11px;
}
body.home-marked .hm-ptile-name {
    display: block;
    font-family: var(--hm-display);
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.25;
}
body.home-marked .hm-ptile-cat {
    display: block;
    font-family: var(--hm-mono);
    font-size: 9.5px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--hm-ink-mute);
    margin-top: 6px;
}
body.home-marked .hm-plane-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(
        46% 58% at 50% 50%,
        var(--hm-wash) 34%,
        rgba(246, 243, 248, 0.86) 58%,
        transparent 78%
    );
    pointer-events: none;
}
body.home-marked .hm-plane-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 36rem;
    margin: 0 auto;
    padding: 0 32px;
}
body.home-marked .hm-plane-content h2 {
    font-size: clamp(30px, 3.4vw, 42px);
}
body.home-marked .hm-plane-content p {
    font-size: 17.5px;
    line-height: 1.62;
    color: var(--hm-ink-soft);
    margin: 18px 0 0;
    text-wrap: pretty;
}

/* ---------- tool grid ---------------------------------------------------- */
body.home-marked .hm-tools {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
body.home-marked .hm-tool {
    display: block;
    padding: 20px 20px 22px;
    border: 1px solid var(--hm-rule);
    border-radius: 9px;
    background: #fff;
    text-decoration: none;
    transition:
        border-color 0.15s ease,
        transform 0.15s ease;
}
body.home-marked .hm-tool:hover {
    border-color: var(--hm-violet);
    transform: translateY(-2px);
}
body.home-marked .hm-tool i {
    font-size: 27px;
    line-height: 1;
    display: block;
    margin-bottom: 13px;
}
body.home-marked .hm-tool-name {
    display: block;
    font-family: var(--hm-display);
    font-size: 15.5px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--hm-ink);
}
body.home-marked .hm-tool-desc {
    display: block;
    font-size: 12.8px;
    line-height: 1.55;
    color: var(--hm-ink-soft);
    margin-top: 6px;
}
body.home-marked .hm-tools-foot {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 18px;
    font-family: var(--hm-mono);
    font-size: 11.5px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--hm-ink-mute);
}
body.home-marked .hm-tools-foot span {
    flex: 1;
    height: 1px;
    background: var(--hm-rule);
}

/* ---------- how it works ------------------------------------------------- */
body.home-marked .hm-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    align-items: start;
}
body.home-marked .hm-step-n {
    font-family: var(--hm-mono);
    font-size: 11.5px;
    letter-spacing: 0.12em;
    color: var(--hm-mark);
    margin-bottom: 12px;
}
body.home-marked .hm-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
body.home-marked .hm-step p {
    font-size: 15px;
    line-height: 1.62;
    color: var(--hm-ink-soft);
    margin: 0;
}

body.home-marked .hm-demo {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 44px;
    align-items: start;
    margin-top: 64px;
}
body.home-marked .hm-form {
    background: #fff;
    border: 1px solid var(--hm-rule);
    border-radius: 11px;
    padding: 26px 26px 28px;
    box-shadow: 0 10px 28px rgba(35, 20, 50, 0.06);
}
body.home-marked .hm-form h4 {
    font-size: 16.5px;
    margin-bottom: 20px;
}
body.home-marked .hm-f {
    margin-bottom: 15px;
}
body.home-marked .hm-f label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--hm-ink-soft);
    margin-bottom: 6px;
}
body.home-marked .hm-input {
    border: 1px solid var(--hm-rule);
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 14px;
    background: #fff;
    color: var(--hm-ink);
}
body.home-marked .hm-input.is-placeholder {
    color: var(--hm-ink-mute);
}
body.home-marked .hm-f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
body.home-marked .hm-select {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
body.home-marked .hm-select i {
    font-size: 13px;
    color: var(--hm-ink-mute);
}
body.home-marked .hm-submit {
    margin-top: 20px;
    background: var(--hm-violet);
    color: #fff;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    padding: 13px;
    border-radius: 7px;
}
body.home-marked .hm-out {
    background: #fff;
    border: 1px solid var(--hm-rule);
    border-radius: 11px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(35, 20, 50, 0.06);
}
body.home-marked .hm-out-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--hm-rule);
    background: var(--hm-wash);
}
body.home-marked .hm-out-bar h4 {
    font-size: 14.5px;
}
body.home-marked .hm-out-chips {
    display: flex;
    gap: 8px;
    font-family: var(--hm-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--hm-ink-mute);
}
body.home-marked .hm-out-chips b {
    font-weight: 500;
    border: 1px solid var(--hm-rule);
    background: #fff;
    border-radius: 4px;
    padding: 4px 8px;
}
body.home-marked .hm-out-body {
    padding: 24px 26px 28px;
}
body.home-marked .hm-out-title {
    font-family: var(--hm-display);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.015em;
}
body.home-marked .hm-out-meta {
    font-family: var(--hm-mono);
    font-size: 10.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--hm-ink-mute);
    margin-top: 6px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--hm-rule);
}
body.home-marked .hm-phase {
    margin-top: 16px;
}
body.home-marked .hm-phase b {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
}
body.home-marked .hm-phase span {
    display: block;
    font-size: 13.2px;
    line-height: 1.68;
    color: #4a4155;
    margin-top: 4px;
}
body.home-marked .hm-phase--hit {
    padding-left: 14px;
    border-left: 3px solid var(--hm-mark);
}
body.home-marked .hm-out-note {
    display: inline-block;
    margin-top: 18px;
    font-family: var(--hm-mono);
    font-size: 10.5px;
    letter-spacing: 0.03em;
    color: var(--hm-mark);
    border: 1px dashed var(--hm-mark);
    border-radius: 5px;
    padding: 7px 10px;
}

/* ---------- value cards -------------------------------------------------- */
body.home-marked .hm-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
body.home-marked .hm-value {
    padding-top: 22px;
    border-top: 2px solid var(--hm-ink);
}
body.home-marked .hm-value i {
    font-size: 26px;
    color: var(--hm-violet);
    display: block;
    margin-bottom: 14px;
}
body.home-marked .hm-value h3 {
    font-size: 17.5px;
    margin-bottom: 9px;
}
body.home-marked .hm-value p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--hm-ink-soft);
    margin: 0;
}

/* ---------- stats -------------------------------------------------------- */
body.home-marked .hm-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
body.home-marked .hm-stat {
    text-align: center;
    padding: 22px 8px;
}
body.home-marked .hm-stat-v {
    position: relative;
    display: inline-block;
    font-family: var(--hm-display);
    font-size: clamp(38px, 4vw, 54px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}
body.home-marked .hm-stat-v svg {
    position: absolute;
    left: -16%;
    top: -24%;
    width: 132%;
    height: 150%;
    overflow: visible;
    pointer-events: none;
}
body.home-marked .hm-stat-v ellipse {
    fill: none;
    stroke: var(--hm-mark);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-dasharray: 300;
    stroke-dashoffset: 14;
    opacity: 0.85;
}
body.home-marked .hm-stat-l {
    font-family: var(--hm-mono);
    font-size: 11px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--hm-ink-mute);
    margin-top: 18px;
}

/* ---------- checklist + quote -------------------------------------------- */
body.home-marked .hm-quote-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}
body.home-marked .hm-checks {
    list-style: none;
    margin: 26px 0 0;
    padding: 0;
}
body.home-marked .hm-checks li {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    padding: 13px 0;
    border-bottom: 1px solid var(--hm-rule);
    font-size: 15.5px;
    line-height: 1.55;
}
body.home-marked .hm-checks i {
    color: var(--hm-violet);
    font-size: 19px;
    line-height: 1.3;
}
body.home-marked .hm-quote {
    background: var(--hm-violet-deep);
    color: #fff;
    border-radius: 12px;
    padding: 44px 42px;
}
body.home-marked .hm-quote blockquote {
    margin: 0;
    font-family: var(--hm-display);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.42;
    letter-spacing: -0.015em;
}
body.home-marked .hm-quote-mark {
    font-family: var(--hm-display);
    font-size: 52px;
    font-weight: 800;
    color: var(--hm-mark);
    line-height: 0.6;
    display: block;
    margin-bottom: 18px;
}
body.home-marked .hm-quote-by {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}
body.home-marked .hm-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--hm-mark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--hm-mono);
    font-size: 13px;
    flex-shrink: 0;
}
body.home-marked .hm-quote-by strong {
    display: block;
    font-size: 14.5px;
}
body.home-marked .hm-quote-by span {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.66);
    margin-top: 2px;
}

/* ---------- faq ---------------------------------------------------------- */
body.home-marked .hm-faq {
    border-top: 2px solid var(--hm-ink);
}
body.home-marked .hm-faq-item {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    padding: 26px 0;
    border-bottom: 1px solid var(--hm-rule);
}
body.home-marked .hm-faq-item h3 {
    font-size: 17.5px;
}
body.home-marked .hm-faq-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--hm-ink-soft);
}

/* ---------- closing cta -------------------------------------------------- */
body.home-marked .hm-cta {
    position: relative;
    overflow: hidden;
    background-color: var(--hm-violet);
    color: #fff;
    text-align: center;
    padding: 96px 0;
}
body.home-marked .hm-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--hm-grain);
    background-size: 520px;
    mix-blend-mode: multiply;
    opacity: 0.55;
    pointer-events: none;
}
body.home-marked .hm-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(70% 90% at 50% 0%, rgba(255, 255, 255, 0.16), transparent 62%);
    pointer-events: none;
}
body.home-marked .hm-cta > .hm-wrap {
    position: relative;
    z-index: 2;
}
body.home-marked .hm-cta h2 {
    font-size: clamp(32px, 3.8vw, 48px);
    color: #fff;
}
body.home-marked .hm-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.82);
    margin: 18px 0 34px;
}
body.home-marked .hm-cta-btn {
    display: inline-block;
    background: #fff;
    color: var(--hm-violet);
    font-size: 16.5px;
    font-weight: 700;
    padding: 15px 34px;
    border-radius: 8px;
    text-decoration: none;
}
body.home-marked .hm-cta-btn:hover {
    color: var(--hm-violet);
    background: #f4edf8;
}
body.home-marked .hm-cta small {
    display: block;
    margin-top: 22px;
    font-family: var(--hm-mono);
    font-size: 11px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

/* The shared footer follows the CTA directly; kill the gap landing.css adds. */
body.home-marked .lp-footer {
    margin-top: 0;
}
body.home-marked .lp-footer-brand {
    font-family: var(--hm-display);
}

/* ---------- responsive --------------------------------------------------- */
@media (max-width: 1080px) {
    body.home-marked .hm-tools {
        grid-template-columns: repeat(3, 1fr);
    }
    body.home-marked .hm-values {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}
@media (max-width: 960px) {
    body.home-marked .hm-hero {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 32px 0 64px;
    }
    body.home-marked .hm-stage {
        padding: 44px 28px;
        min-height: 0;
    }
    body.home-marked .hm-note {
        display: none;
    }
    body.home-marked .hm-trust {
        grid-template-columns: 1fr;
    }
    body.home-marked .hm-trust-item {
        border-left: 0;
        padding-left: 0;
        border-top: 1px solid var(--hm-rule);
    }
    body.home-marked .hm-trust-item:first-child {
        border-top: 0;
    }
    body.home-marked .hm-steps {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    body.home-marked .hm-demo,
    body.home-marked .hm-quote-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    body.home-marked .hm-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    body.home-marked .hm-faq-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    body.home-marked .hm-plane-band {
        padding: 96px 0;
    }
    /* There is not enough width for the tiles to stay clear of the heading,
       so let them recede into the background rather than compete with it. */
    body.home-marked .hm-plane {
        opacity: 0.45;
    }
    body.home-marked .hm-plane-scrim {
        background: radial-gradient(
            78% 62% at 50% 50%,
            var(--hm-wash) 46%,
            rgba(246, 243, 248, 0.9) 72%,
            rgba(246, 243, 248, 0.4) 100%
        );
    }
}
@media (max-width: 640px) {
    body.home-marked .hm-wrap {
        padding: 0 22px;
    }
    body.home-marked .hm-tools {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    body.home-marked .hm-values {
        grid-template-columns: 1fr;
    }
    body.home-marked .hm-sec {
        padding: 64px 0;
    }
}
@media (prefers-reduced-motion: reduce) {
    body.home-marked .hm-plane-inner {
        animation: none;
    }
    body.home-marked * {
        transition: none !important;
    }
}
