/* =========================================================================
   LastCo — home.css
   Public marketing / landing page. Shares the light pastel-aurora theme
   used by the auth, begin & company screens (soft white surfaces, indigo +
   pink + green accents). Fonts & shared tokens come from common.css.

   Layout language: editorial & asymmetric — tilted cards, an ink marquee
   band, outlined numerals, a bento feature grid. Image slots (.img-slot)
   mark where real screenshots/photos drop in later.
   ========================================================================= */

.home-page {
    /* light theme — override the dark globals from common.css */
    --bg:          #f6f7fc;
    --card:        rgba(255, 255, 255, 0.72);
    --card-solid:  #ffffff;
    --card-line:   rgba(23, 28, 56, 0.08);
    --line:        rgba(23, 28, 56, 0.10);
    --ink:         #131629;
    --ink-soft:    #5b6178;
    --ink-faint:   #9aa0b4;
    --indigo:      #5b5bf0;
    --indigo-700:  #4848e0;
    --indigo-tint: #eef0ff;
    --green:       #18c08a;
    --green-tint:  #e4f9f1;
    --pink:        #e83e8c;
    --pink-tint:   #ffe9f3;

    color: var(--ink);
    background: var(--bg);
    overflow-x: hidden;
}

/* ---------- Fixed aurora backdrop (matches begin / login screens) ---------- */
.hm-aurora {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

.hm-aurora::before,
.hm-aurora::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.85;
}

.hm-aurora::before {
    width: 46vmax;
    height: 46vmax;
    top: -16vmax;
    left: -14vmax;
    background: radial-gradient(circle at 40% 40%, #c9c9ff 0%, rgba(201, 201, 255, 0) 70%);
}

.hm-aurora::after {
    width: 48vmax;
    height: 48vmax;
    right: -18vmax;
    bottom: -20vmax;
    background:
        radial-gradient(circle at 60% 40%, #b8ecff 0%, rgba(184, 236, 255, 0) 68%),
        radial-gradient(circle at 20% 80%, #ffd0e4 0%, rgba(255, 208, 228, 0) 70%);
}

/* ---------- Shared layout helpers ---------- */
.hm-wrap {
    width: min(1140px, 100%);
    margin: 0 auto;
    padding-left: clamp(20px, 4vw, 32px);
    padding-right: clamp(20px, 4vw, 32px);
}

.hm-section {
    padding: clamp(64px, 9vw, 120px) 0;
}

.hm-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--indigo);
}

.hm-kicker::before {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--pink);
    box-shadow: 0 0 0 4px var(--pink-tint);
}

.hm-h2 {
    margin-top: 16px;
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: var(--ink);
    max-width: 21ch;
}

.hm-sub {
    margin-top: 14px;
    max-width: 54ch;
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    line-height: 1.6;
    color: var(--ink-soft);
}

.hm-grad {
    background: linear-gradient(100deg, var(--indigo) 0%, #7b5bf0 45%, var(--pink) 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---------- Buttons ---------- */
.hm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 26px;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    border-radius: 999px;
    white-space: nowrap;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.2s ease, filter 0.2s ease,
                background-color 0.2s ease, border-color 0.2s ease;
}

.hm-btn svg { width: 19px; height: 19px; }

.hm-btn--primary {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(115deg, var(--indigo) 0%, var(--indigo-700) 70%);
    box-shadow: 0 14px 32px -12px rgba(91, 91, 240, 0.75);
}

/* periodic shine sweep so the CTA is impossible to miss */
.hm-btn--primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -70%;
    width: 42%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-22deg);
    animation: hm-shine 4.2s ease-in-out infinite;
}

@keyframes hm-shine {
    0%, 64% { left: -70%; }
    100%    { left: 140%; }
}

.hm-btn--primary:hover {
    transform: translateY(-2px) scale(1.015);
    box-shadow: 0 20px 42px -14px rgba(91, 91, 240, 0.85);
    filter: brightness(1.05);
}

.hm-btn--primary:active { transform: translateY(0); }

.hm-btn--ghost {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.85);
    border: 1.5px solid var(--line);
    box-shadow: 0 10px 24px -18px rgba(23, 28, 56, 0.5);
}

.hm-btn--ghost:hover { transform: translateY(-2px); border-color: #c7c9f5; }

.hm-btn--xl {
    padding: 19px 34px;
    font-size: 1.16rem;
}

.hm-btn--header {
    padding: 12px 24px;
    font-size: 1rem;
}

/* =========================================================================
   HEADER — sticky glass bar with a loud Start button
   ========================================================================= */
.hm-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(246, 247, 252, 0.8);
    border-bottom: 1px solid var(--card-line);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hm-header-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.hm-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hm-brand-mark {
    width: 34px;
    height: 34px;
    filter: drop-shadow(0 8px 18px rgba(91, 91, 240, 0.3));
}

.hm-brand-word {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--ink);
}

.hm-brand-accent { color: var(--indigo); }

.hm-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.6vw, 30px);
    margin-left: auto;
}

.hm-nav a {
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--ink-soft);
    transition: color 0.18s ease;
}

.hm-nav a:hover { color: var(--ink); }

.hm-header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.hm-signin {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--ink);
    transition: color 0.18s ease;
}

.hm-signin:hover { color: var(--indigo); }

/* =========================================================================
   HERO — centered prompt: "What company do you want to create?"
   The idea input is the page's centerpiece; pillars sit right below.
   ========================================================================= */
.hm-hero {
    padding: clamp(44px, 6vw, 76px) 0 clamp(64px, 8vw, 104px);
    text-align: center;
}

.hm-hero-inner {
    position: relative;
    width: min(900px, 100%);
    margin: 0 auto;
}

.hm-hero .hm-kicker { animation: lc-rise 0.8s 0.05s var(--ease-out) both; }

.hm-hero h1 {
    margin-top: 20px;
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 5.2vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.038em;
    color: var(--ink);
    animation: lc-rise 0.85s 0.14s var(--ease-out) both;
}

/* hand-drawn squiggle under a key word */
.hm-sq {
    position: relative;
    white-space: nowrap;
}

.hm-sq svg {
    position: absolute;
    left: 2%;
    bottom: -0.16em;
    width: 96%;
    height: 0.3em;
    color: var(--pink);
    overflow: visible;
}

.hm-sq svg path {
    stroke-dasharray: 240;
    stroke-dashoffset: 240;
    animation: hm-draw 0.9s 0.9s var(--ease-out) forwards;
}

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

.hm-hero-sub {
    margin: 20px auto 0;
    max-width: 62ch;
    font-size: clamp(1.02rem, 1.4vw, 1.16rem);
    line-height: 1.62;
    color: var(--ink-soft);
    animation: lc-rise 0.85s 0.26s var(--ease-out) both;
}

.hm-hero-sub strong { color: var(--ink); font-weight: 700; }

/* ---------- The idea prompt — the page's centerpiece ---------- */
@property --hm-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.hm-prompt-wrap {
    position: relative;
    width: min(720px, 100%);
    margin: 36px auto 0;
    animation: lc-rise 0.85s 0.38s var(--ease-out) both;
}

/* slowly rotating conic-gradient border (static gradient where
   @property is unsupported) */
.hm-prompt {
    position: relative;
    padding: 2px;
    border-radius: 27px;
    background: conic-gradient(from var(--hm-angle, 0deg),
        #5b5bf0, #38bdf8 28%, #e83e8c 55%, #7b5bf0 80%, #5b5bf0);
    box-shadow: 0 30px 80px -32px rgba(91, 91, 240, 0.55);
    animation: hm-spin-border 7s linear infinite;
    transition: box-shadow 0.3s ease;
}

@keyframes hm-spin-border { to { --hm-angle: 360deg; } }

.hm-prompt:focus-within {
    box-shadow: 0 0 0 6px rgba(91, 91, 240, 0.14),
                0 36px 90px -30px rgba(91, 91, 240, 0.7);
}

.hm-prompt-inner {
    text-align: left;
    padding: 20px 20px 14px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hm-prompt-input {
    display: block;
    width: 100%;
    min-height: 86px;
    border: none;
    outline: none;
    resize: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.55;
    color: var(--ink);
}

.hm-prompt-input::placeholder { color: var(--ink-faint); }

.hm-prompt-foot {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 12px;
    border-top: 1px dashed var(--line);
}

.hm-prompt-hint {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--ink-faint);
}

.hm-prompt-hint svg {
    flex: none;
    width: 15px;
    height: 15px;
    color: var(--green);
}

.hm-prompt-foot .hm-btn {
    flex: none;
    margin-left: auto;
    padding: 13px 24px;
    font-size: 1rem;
}

/* one-tap idea starters */
.hm-ideas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    animation: lc-rise 0.85s 0.5s var(--ease-out) both;
}

.hm-idea {
    padding: 9px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink-soft);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--line);
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease,
                color 0.18s ease, background-color 0.18s ease;
}

.hm-idea:hover {
    transform: translateY(-2px);
    color: var(--ink);
    border-color: #c7c9f5;
    background: #fff;
}

/* founders / social proof row */
.hm-founders {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
    animation: lc-rise 0.85s 0.58s var(--ease-out) both;
}

.hm-founders-note { text-align: left; }

.hm-avs { display: flex; padding-left: 10px; }

.hm-av {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-left: -10px;
    font-size: 0.74rem;
    font-weight: 800;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 6px 14px -6px rgba(23, 28, 56, 0.35);
    overflow: hidden;          /* replace inner text with <img> later */
}

.hm-av img { width: 100%; height: 100%; object-fit: cover; }

.hm-av.is-a { color: var(--indigo); background: #dfe2ff; }
.hm-av.is-b { color: var(--pink);   background: #ffd9e9; }
.hm-av.is-c { color: var(--green);  background: #d3f3e6; }
.hm-av.is-d { color: #b07a1f;       background: #ffeccb; }

.hm-founders-note {
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--ink-soft);
}

.hm-founders-note strong {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--ink);
}

/* ---------- Validate / Advertise / Monetize pillars ---------- */
.hm-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 22px);
    width: min(1080px, 100%);
    margin: clamp(56px, 7vw, 84px) auto 0;
    text-align: left;
}

.hm-pillar {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: clamp(22px, 2.4vw, 28px);
    background: var(--card);
    border: 1px solid var(--card-line);
    border-radius: 22px;
    box-shadow: 0 18px 50px -28px rgba(23, 28, 56, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}

.hm-pillar:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px -26px rgba(23, 28, 56, 0.42);
}

/* colored beam across the top */
.hm-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.hm-pillar--validate::before { background: linear-gradient(90deg, var(--indigo), #38bdf8); }
.hm-pillar--ads::before      { background: linear-gradient(90deg, var(--green), #38bdf8); }
.hm-pillar--money::before    { background: linear-gradient(90deg, var(--pink), #ffb46b); }

.hm-pillar-step {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hm-pillar--validate .hm-pillar-step { color: var(--indigo); }
.hm-pillar--ads .hm-pillar-step      { color: var(--green); }
.hm-pillar--money .hm-pillar-step    { color: var(--pink); }

.hm-pillar h3 {
    font-size: clamp(1.15rem, 1.7vw, 1.32rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.hm-pillar p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--ink-soft);
}

/* network / payment badges inside pillars */
.hm-nets {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 8px;
}

.hm-net {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: 0 8px 18px -12px rgba(23, 28, 56, 0.35);
}

.hm-net svg { width: 15px; height: 15px; }

.hm-net--meta svg   { color: #0866ff; }
.hm-net--x svg      { color: #0f1419; }
.hm-net--tiktok svg { color: var(--pink); }
.hm-net--stripe svg { color: #635bff; }
.hm-net--adrev svg  { color: var(--green); }
.hm-net--mail svg   { color: var(--indigo); }
.hm-net--leads svg  { color: #38bdf8; }

/* document rows (also reused inside the bento dashboard card) */
.hm-mock-docs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.hm-mock-doc {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 14px;
    background: var(--card-solid);
    border: 1px solid var(--card-line);
    border-radius: 14px;
}

.hm-mock-doc-ico {
    flex: none;
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 9px;
}

.hm-mock-doc-ico svg { width: 17px; height: 17px; }

.hm-mock-doc-ico.is-indigo { color: var(--indigo); background: var(--indigo-tint); }
.hm-mock-doc-ico.is-green  { color: var(--green);  background: var(--green-tint); }
.hm-mock-doc-ico.is-pink   { color: var(--pink);   background: var(--pink-tint); }

.hm-mock-doc-name { font-size: 0.92rem; font-weight: 600; color: var(--ink); }

.hm-mock-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-left: auto;
    font-size: 0.78rem;
    font-weight: 700;
}

.hm-mock-status.is-ready { color: var(--green); }
.hm-mock-status.is-ready svg { width: 15px; height: 15px; }

.hm-mock-status.is-creating { color: var(--indigo); }

.hm-mock-status.is-creating::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--indigo);
    box-shadow: 0 0 10px rgba(91, 91, 240, 0.8);
    animation: hm-pulse 1.4s ease-in-out infinite;
}

@keyframes hm-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.35; transform: scale(0.72); }
}

/* small tinted avatar (used by the bento leads card) */
.hm-mock-lead-av {
    flex: none;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    font-size: 0.72rem;
    font-weight: 800;
    border-radius: 50%;
}

.hm-mock-lead-av.is-a { color: var(--indigo); background: var(--indigo-tint); }
.hm-mock-lead-av.is-b { color: var(--pink);   background: var(--pink-tint); }

/* floating accent chip */
.hm-chip {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0 22px 50px -22px rgba(23, 28, 56, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Hot-air balloons — each proof chip hangs as the basket of a colored
   balloon, parked in the hero's side gutters. Lifecycle: drift up into
   place → bob and sway on the breeze → then lift away off the top of
   the screen for good. Movement uses the standalone translate/scale/
   rotate properties so the stages compose cleanly. */
.hm-balloon {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 216px;
    pointer-events: none;
    transform-origin: 50% 0;     /* sway pivots from the balloon crown */
}

.hm-balloon-env {
    width: 180px;
    height: auto;
    margin-bottom: -6px;
    filter: drop-shadow(0 16px 22px rgba(19, 22, 41, 0.22));
}

.hm-balloon .hm-chip { position: static; }

.hm-chip-ico.is-pink-ico { color: var(--pink); background: var(--pink-tint); }

/* container top = balloon crown; the basket chip hangs ~150px lower,
   landing beside the narrow sub-copy / founders rows */
.hm-balloon--a {
    top: 62%;
    left: min(-52px, -4vw);
    animation: hm-bln-in 1.2s cubic-bezier(0.34, 1.4, 0.64, 1) 1s both,
               hm-bln-bob 3.8s ease-in-out 2.2s 1,
               hm-bln-sway 4.6s ease-in-out 1s infinite,
               hm-bln-away 3.4s cubic-bezier(0.5, 0.05, 0.65, 0.45) 6s forwards;
    --bln-drift: -9vw;
}

.hm-balloon--b {
    top: 10%;
    left: min(-60px, -4.5vw);
    animation: hm-bln-in 1.2s cubic-bezier(0.34, 1.4, 0.64, 1) 1.4s both,
               hm-bln-bob 4.1s ease-in-out 2.6s 1,
               hm-bln-sway 5.2s ease-in-out 1.4s infinite,
               hm-bln-away 3.4s cubic-bezier(0.5, 0.05, 0.65, 0.45) 6.7s forwards;
    --bln-drift: -5vw;
}

.hm-balloon--c {
    top: 10%;
    right: min(-60px, -4.5vw);
    animation: hm-bln-in 1.2s cubic-bezier(0.34, 1.4, 0.64, 1) 1.8s both,
               hm-bln-bob 4.4s ease-in-out 3s 1,
               hm-bln-sway 5.8s ease-in-out 1.8s infinite,
               hm-bln-away 3.4s cubic-bezier(0.5, 0.05, 0.65, 0.45) 7.4s forwards;
    --bln-drift: 8vw;
}

/* Entrance: float up from below with a soft overshoot, like the
   balloon finding its altitude. */
@keyframes hm-bln-in {
    0%   { opacity: 0; translate: 0 90px; scale: 0.82; }
    62%  { opacity: 1; translate: 0 -10px; scale: 1.02; }
    100% { opacity: 1; translate: 0 0; scale: 1; }
}

/* Idle: gentle vertical bob… */
@keyframes hm-bln-bob {
    0%, 100% { translate: 0 0; }
    50%      { translate: 0 -12px; }
}

/* …with a pendulum sway hanging from the crown */
@keyframes hm-bln-sway {
    0%, 100% { rotate: -2.4deg; }
    50%      { rotate: 2.4deg; }
}

/* Exit: a tiny dip (ballast away!), then a slow accelerating ascent
   off the top of the page, shrinking with altitude. */
@keyframes hm-bln-away {
    0%   { translate: 0 0; scale: 1; opacity: 1; }
    14%  { translate: 0 14px; }
    78%  { opacity: 1; }
    100% { translate: var(--bln-drift, -6vw) -130vh; scale: 0.5; opacity: 0; }
}

@keyframes hm-float {
    0%, 100% { translate: 0 0; }
    50%      { translate: 0 -8px; }
}

.hm-chip-ico {
    flex: none;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
}

.hm-chip-ico svg { width: 18px; height: 18px; }

.hm-chip-ico.is-grad { color: #fff; background: linear-gradient(135deg, var(--indigo), var(--pink)); }
.hm-chip-ico.is-green { color: var(--green); background: var(--green-tint); }

.hm-chip-title { font-size: 0.86rem; font-weight: 700; color: var(--ink); }
.hm-chip-sub   { font-size: 0.74rem; color: var(--ink-soft); }

/* =========================================================================
   MARQUEE — ink band ticker of everything LastCo produces
   ========================================================================= */
.hm-marquee {
    position: relative;
    width: 104vw;
    margin-left: -2vw;
    transform: rotate(-1.3deg);
    background: var(--ink);
    box-shadow: 0 24px 60px -30px rgba(19, 22, 41, 0.65);
    overflow: hidden;
}

.hm-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: hm-marquee 30s linear infinite;
}

.hm-marquee:hover .hm-marquee-track { animation-play-state: paused; }

.hm-mq-group {
    display: flex;
    align-items: center;
    flex: none;
}

.hm-mq-item {
    padding: 17px 0;
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2vw, 1.45rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    white-space: nowrap;
    color: #f4f7ff;
}

.hm-mq-star {
    padding: 0 22px;
    font-size: clamp(0.9rem, 1.6vw, 1.2rem);
}

.hm-mq-star.is-pink   { color: var(--pink); }
.hm-mq-star.is-indigo { color: #8b8bff; }
.hm-mq-star.is-green  { color: var(--green); }

@keyframes hm-marquee {
    to { transform: translateX(-50%); }
}

/* =========================================================================
   IMAGE SLOTS — placeholders for real screenshots / photos
   ========================================================================= */
.img-slot {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    background:
        linear-gradient(135deg, rgba(91, 91, 240, 0.08), rgba(255, 255, 255, 0.6) 48%, rgba(232, 62, 140, 0.08)),
        var(--card-solid);
    border: 1.5px dashed rgba(91, 91, 240, 0.4);
    border-radius: 16px;
    color: var(--ink-faint);
    overflow: hidden;
}

.img-slot svg {
    width: 26px;
    height: 26px;
    color: var(--indigo);
    opacity: 0.65;
}

.img-slot-name {
    font-family: ui-monospace, 'SF Mono', Menlo, monospace;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ink-soft);
}

.img-slot-size { font-size: 0.72rem; }

.img-slot--photo    { aspect-ratio: 4 / 3; }
.img-slot--portrait { aspect-ratio: 4 / 3; }
.img-slot--square   { aspect-ratio: 1; border-radius: 12px; }
.img-slot--phones   { aspect-ratio: 7 / 5; }

/* =========================================================================
   HOW IT WORKS — three tilted "polaroid" step cards
   ========================================================================= */
.hm-how-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.hm-how-cta { margin-bottom: 8px; }

.hm-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(22px, 3vw, 36px);
    margin-top: clamp(44px, 6vw, 72px);
}

.hm-step {
    position: relative;
    padding: 16px 16px 24px;
    background: var(--card-solid);
    border: 1px solid var(--card-line);
    border-radius: 20px;
    box-shadow: 0 24px 55px -30px rgba(23, 28, 56, 0.45);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}

.hm-step:nth-child(1) { transform: rotate(-1.7deg); }
.hm-step:nth-child(2) { transform: rotate(1.3deg) translateY(18px); }
.hm-step:nth-child(3) { transform: rotate(-0.9deg); }

.hm-step:hover {
    transform: rotate(0) translateY(-6px);
    box-shadow: 0 34px 70px -30px rgba(23, 28, 56, 0.5);
}

/* tape strip */
.hm-step::before {
    content: '';
    position: absolute;
    top: -13px;
    left: 50%;
    width: 86px;
    height: 24px;
    transform: translateX(-50%) rotate(-3deg);
    background: rgba(232, 62, 140, 0.16);
    border: 1px solid rgba(232, 62, 140, 0.1);
    border-radius: 3px;
}

.hm-step:nth-child(2)::before { background: rgba(91, 91, 240, 0.16); border-color: rgba(91, 91, 240, 0.1); }
.hm-step:nth-child(3)::before { background: rgba(24, 192, 138, 0.18); border-color: rgba(24, 192, 138, 0.12); }

/* big outlined numeral overlapping the photo */
.hm-step-num {
    position: absolute;
    top: -34px;
    left: -10px;
    z-index: 2;
    font-family: var(--font-display);
    font-size: clamp(4rem, 6.5vw, 5.4rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: transparent;
    -webkit-text-stroke: 2.5px var(--indigo);
    opacity: 0.85;
    pointer-events: none;
}

.hm-step:nth-child(2) .hm-step-num { -webkit-text-stroke-color: var(--pink); }
.hm-step:nth-child(3) .hm-step-num { -webkit-text-stroke-color: var(--green); }

.hm-step-body { padding: 18px 8px 0; }

.hm-step h3 {
    font-size: clamp(1.18rem, 1.8vw, 1.38rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.hm-step p {
    margin-top: 8px;
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--ink-soft);
}

/* =========================================================================
   BENTO — what you get, in mixed-size cards
   ========================================================================= */
.hm-bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: clamp(16px, 2vw, 22px);
    margin-top: clamp(36px, 5vw, 56px);
}

.b3 { grid-column: span 3; }
.b2 { grid-column: span 2; }
.b6 { grid-column: span 6; }

.hm-bcard {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: clamp(22px, 2.6vw, 30px);
    background: var(--card);
    border: 1px solid var(--card-line);
    border-radius: 24px;
    box-shadow: 0 18px 50px -28px rgba(23, 28, 56, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}

.hm-bcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px -26px rgba(23, 28, 56, 0.42);
}

.hm-bcard-label {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

.hm-bcard h3 {
    font-size: clamp(1.18rem, 1.8vw, 1.4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.hm-bcard p {
    font-size: 0.97rem;
    line-height: 1.55;
    color: var(--ink-soft);
}

/* --- solid indigo card: instant name & tagline --- */
.hm-bcard--indigo {
    background: linear-gradient(150deg, var(--indigo) 0%, var(--indigo-700) 100%);
    border-color: transparent;
    box-shadow: 0 28px 64px -28px rgba(91, 91, 240, 0.8);
}

.hm-bcard--indigo .hm-bcard-label { color: rgba(255, 255, 255, 0.6); }
.hm-bcard--indigo h3 { color: #fff; }
.hm-bcard--indigo p  { color: rgba(255, 255, 255, 0.78); }

.hm-bquote {
    margin: auto 0;
    padding: 18px 20px;
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.4vw, 1.8rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
}

.hm-bquote small {
    display: block;
    margin-top: 8px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.66);
}

/* cold-email variant: reads like a real outbound message */
.hm-bquote--mail {
    font-family: var(--font-body);
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0;
}

/* --- ad platform pills (social ads card) --- */
.hm-plats {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: auto;
}

.hm-plat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(24, 192, 138, 0.2);
    border-radius: 999px;
    box-shadow: 0 8px 18px -12px rgba(23, 28, 56, 0.35);
}

.hm-plat::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.hm-plat:nth-child(1)::before { background: var(--indigo); }
.hm-plat:nth-child(2)::before { background: var(--ink); }
.hm-plat:nth-child(3)::before { background: var(--pink); }

/* --- Stripe revenue stat (monetization card) --- */
.hm-rev {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-top: auto;
    padding: 16px 18px;
    background: var(--card-solid);
    border: 1px solid var(--card-line);
    border-radius: 16px;
    box-shadow: 0 14px 30px -20px rgba(23, 28, 56, 0.45);
}

.hm-rev-amt {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 2.6vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ink);
}

.hm-rev-up {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--green);
    background: var(--green-tint);
    border-radius: 999px;
}

.hm-rev-cap {
    width: 100%;
    font-size: 0.82rem;
    color: var(--ink-faint);
}

/* --- ad earnings ticks (in-app ads card) --- */
.hm-earn {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.hm-earn span {
    padding: 7px 12px;
    font-size: 0.84rem;
    font-weight: 800;
    color: var(--green);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(232, 62, 140, 0.14);
    border-radius: 999px;
}

/* --- tinted cards --- */
.hm-bcard--green { background: linear-gradient(160deg, #f0fcf7, var(--green-tint)); }
.hm-bcard--pink  { background: linear-gradient(160deg, #fff4f9, var(--pink-tint)); }

/* --- CSS bar chart (market research card) --- */
.hm-bars {
    display: flex;
    align-items: flex-end;
    gap: 9px;
    height: 96px;
    margin-top: auto;
}

.hm-bars i {
    flex: 1;
    height: var(--h, 40%);
    background: rgba(24, 192, 138, 0.28);
    border-radius: 7px 7px 3px 3px;
    transition: height 0.8s var(--ease-out);
}

.hm-bars i.is-hot {
    background: var(--green);
    box-shadow: 0 10px 20px -8px rgba(24, 192, 138, 0.6);
}

/* --- logo sample tiles (brand card) --- */
.hm-logo-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: auto;
}

/* --- masked leads rows (pink card) --- */
.hm-blead {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(232, 62, 140, 0.12);
    border-radius: 12px;
}

.hm-blead + .hm-blead { margin-top: 8px; }

.hm-blead-name { font-size: 0.88rem; font-weight: 700; color: var(--ink); }
.hm-blead-mail { margin-left: auto; font-size: 0.78rem; color: var(--ink-faint); letter-spacing: 0.04em; }

.hm-bleads { margin-top: auto; }

/* --- toast inside the live dashboard card --- */
.hm-btoast {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 4px;
    padding: 10px 16px;
    align-self: flex-start;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ink);
    background: var(--card-solid);
    border: 1px solid var(--card-line);
    border-radius: 999px;
    box-shadow: 0 14px 30px -16px rgba(23, 28, 56, 0.4);
}

.hm-btoast::before {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 10px rgba(24, 192, 138, 0.8);
}

/* --- wide web & mobile strip --- */
.hm-bcard--wide {
    flex-direction: row;
    align-items: center;
    gap: clamp(24px, 4vw, 48px);
}

.hm-bwide-text { flex: 1 1 50%; display: flex; flex-direction: column; gap: 14px; }

.hm-bwide-media { flex: 1 1 50%; max-width: 460px; }

/* =========================================================================
   PRICING — light Free card vs dark ink Pro card
   ========================================================================= */
.hm-plans {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2.6vw, 28px);
    width: min(900px, 100%);
    margin: clamp(36px, 5vw, 56px) auto 0;
}

.hm-plan {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: clamp(26px, 3vw, 36px);
    background: var(--card);
    border: 1.5px solid var(--card-line);
    border-radius: 26px;
    box-shadow: 0 18px 50px -28px rgba(23, 28, 56, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hm-plan-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.hm-plan-desc { margin-top: 6px; font-size: 0.95rem; color: var(--ink-soft); }

.hm-plan-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0 28px;
    list-style: none;
}

.hm-plan-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.97rem;
    line-height: 1.45;
    color: var(--ink);
}

.hm-plan-list svg {
    flex: none;
    width: 19px;
    height: 19px;
    margin-top: 2px;
    color: var(--green);
}

.hm-plan .hm-btn { margin-top: auto; width: 100%; }

/* dark Pro card */
.hm-plan--pro {
    background: linear-gradient(165deg, #181d36 0%, var(--ink) 60%);
    border-color: rgba(91, 91, 240, 0.55);
    transform: rotate(0.8deg);
    box-shadow: 0 0 0 4px rgba(91, 91, 240, 0.12),
                0 34px 80px -32px rgba(19, 22, 41, 0.85);
}

.hm-plan--pro .hm-plan-name,
.hm-plan--pro .hm-plan-list li { color: #f4f7ff; }
.hm-plan--pro .hm-plan-desc    { color: #aeb9d4; }
.hm-plan--pro .hm-plan-list svg { color: var(--pink); }

.hm-plan-badge {
    position: absolute;
    top: -14px;
    right: 24px;
    padding: 6px 14px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(100deg, var(--indigo), var(--pink));
    border-radius: 999px;
    transform: rotate(2deg);
    box-shadow: 0 10px 22px -10px rgba(91, 91, 240, 0.7);
}

/* =========================================================================
   COMING SOON — ticket-stub chips
   ========================================================================= */
.hm-soon { text-align: center; }

.hm-soon .hm-kicker { justify-content: center; }
.hm-soon .hm-h2,
.hm-soon .hm-sub { margin-left: auto; margin-right: auto; }

.hm-soon-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 30px;
}

.hm-soon-chip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 20px;
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--ink);
    background: var(--card-solid);
    border: 1.5px dashed rgba(91, 91, 240, 0.45);
    border-radius: 14px;
    box-shadow: 0 12px 28px -18px rgba(23, 28, 56, 0.4);
}

.hm-soon-chip:nth-child(1) { transform: rotate(-1.2deg); }
.hm-soon-chip:nth-child(2) { transform: rotate(0.9deg); }
.hm-soon-chip:nth-child(3) { transform: rotate(-0.7deg); }

.hm-soon-chip svg { width: 17px; height: 17px; color: var(--indigo); }

/* =========================================================================
   FINAL CTA — giant equation typography
   ========================================================================= */
.hm-final {
    text-align: center;
}

.hm-final-eq {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.4vw, 1.7rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--ink-soft);
}

.hm-final-eq .op {
    display: inline-block;
    margin: 0 6px;
    color: var(--indigo);
    font-weight: 800;
}

.hm-final h2 {
    margin-top: 10px;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6.4vw, 4.6rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.04;
}

.hm-final h2 .op { color: var(--ink); -webkit-text-fill-color: var(--ink); }

.hm-final .hm-btn { margin-top: 36px; }

.hm-final-note {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--ink-soft);
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.hm-footer {
    margin-top: clamp(40px, 6vw, 72px);
    border-top: 1px solid var(--card-line);
    background: rgba(255, 255, 255, 0.45);
}

.hm-footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 28px;
    padding-top: 26px;
    padding-bottom: 30px;
}

.hm-footer .hm-brand-mark { width: 26px; height: 26px; }
.hm-footer .hm-brand-word { font-size: 1.05rem; }

.hm-footer-copy { font-size: 0.88rem; color: var(--ink-soft); }

.hm-footer-links {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
}

.hm-footer-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink-soft);
    transition: color 0.18s ease;
}

.hm-footer-links a:hover { color: var(--indigo); }

/* =========================================================================
   Scroll reveal
   ========================================================================= */
/* Uses the standalone `translate` property (not `transform`) so it composes
   with the rotate() tilts on step cards, chips and the Pro plan. */
.reveal {
    opacity: 0;
    translate: 0 22px;
    transition: opacity 0.7s var(--ease-out), translate 0.7s var(--ease-out);
    transition-delay: var(--d, 0s);
}

.reveal.is-in { opacity: 1; translate: 0 0; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1020px) {
    .b3, .b2 { grid-column: span 3; }
    .b6 { grid-column: span 6; }
}

@media (max-width: 1180px) {
    .hm-balloon { display: none; }
}

@media (max-width: 920px) {
    .hm-pillars { grid-template-columns: minmax(0, 1fr); }

    .hm-steps { grid-template-columns: minmax(0, 1fr); gap: 40px; }

    .hm-step:nth-child(2) { transform: rotate(1.3deg); }

    .hm-bcard--wide { flex-direction: column; align-items: stretch; }
    .hm-bwide-media { max-width: none; }
}

@media (max-width: 760px) {
    .hm-nav { display: none; }
    .hm-plans { grid-template-columns: 1fr; }
    .hm-plan--pro { transform: none; }
}

@media (max-width: 640px) {
    .b3, .b2, .b6 { grid-column: span 6; }
}

@media (max-width: 560px) {
    .hm-header-inner { gap: 14px; }
    .hm-header-actions { gap: 12px; }
    .hm-btn--header { padding: 11px 18px; font-size: 0.95rem; }

    .hm-prompt-inner { padding: 16px 16px 12px; }

    .hm-prompt-foot {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .hm-prompt-hint { justify-content: center; }

    .hm-prompt-foot .hm-btn { margin-left: 0; width: 100%; }

    .hm-footer-links { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .hm-hero .hm-kicker,
    .hm-hero h1,
    .hm-hero-sub,
    .hm-prompt-wrap,
    .hm-prompt,
    .hm-ideas,
    .hm-founders,
    .hm-balloon--a,
    .hm-balloon--b,
    .hm-balloon--c,
    .hm-marquee-track,
    .hm-btn--primary::after,
    .hm-sq svg path,
    .hm-mock-status.is-creating::before { animation: none; }

    .hm-sq svg path { stroke-dashoffset: 0; }

    .reveal { opacity: 1; transform: none; transition: none; }
}
