:root {
    --sm-ink: #0f2a24;
    --sm-forest: #1a5c4a;
    --sm-mint: #2d9b78;
    --sm-sand: #e8f0ec;
    --sm-cream: #f7faf8;
    --sm-accent: #c45c26;
    --sm-white: #ffffff;
    --sm-muted: #5a726a;
    --font-display: "Manrope", system-ui, sans-serif;
    --font-body: "Source Sans 3", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

.landing-body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--sm-ink);
    background: var(--sm-cream);
    min-height: 100vh;
    overflow-x: hidden;
}

.landing-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 50% at 10% -10%, rgba(45, 155, 120, 0.22), transparent 55%),
        radial-gradient(ellipse 60% 40% at 90% 10%, rgba(196, 92, 38, 0.12), transparent 50%),
        linear-gradient(165deg, #eef6f2 0%, #f7faf8 40%, #e6efe9 100%);
}

.grid-fade {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(26, 92, 74, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 92, 74, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 75%);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.45;
    animation: orbFloat 12s ease-in-out infinite;
}
.orb-a { width: 280px; height: 280px; background: #2d9b78; left: -40px; top: 20%; }
.orb-b { width: 220px; height: 220px; background: #c45c26; right: -30px; top: 8%; animation-delay: -4s; }
.orb-c { width: 180px; height: 180px; background: #1a5c4a; right: 20%; bottom: 10%; animation-delay: -7s; opacity: 0.25; }

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -24px) scale(1.08); }
}

.landing-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.1rem 5vw;
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(12px);
    background: rgba(247, 250, 248, 0.82);
    border-bottom: 1px solid rgba(15, 42, 36, 0.06);
}

.landing-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: var(--sm-ink);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
}

.logo-mark {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 0.55rem;
    background: linear-gradient(135deg, var(--sm-forest), var(--sm-mint));
    color: white;
    display: grid;
    place-items: center;
    font-size: 0.75rem;
    letter-spacing: 0.02em;
}

.landing-nav-links {
    display: flex;
    gap: 1.25rem;
    margin-left: 1rem;
}

.landing-nav-links a {
    color: var(--sm-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
}

.landing-nav-links a:hover { color: var(--sm-forest); }

.landing-nav-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-nav-login {
    min-height: 2.55rem;
    padding: 0.55rem 1.25rem;
    border-radius: 0.85rem;
    font-weight: 700;
}


.landing-jump {
    display: none !important;
}
.landing-jump::-webkit-scrollbar { display: none; }
.landing-jump a {
    flex: 0 0 auto;
    text-decoration: none;
    color: var(--sm-muted);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 42, 36, 0.1);
    background: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
}
.landing-jump a.is-active {
    color: #fff;
    background: var(--sm-forest);
    border-color: var(--sm-forest);
}
.landing-jump .jump-cta {
    color: #fff;
    background: var(--sm-mint);
    border-color: var(--sm-mint);
    margin-left: auto;
}
.landing-nav-links a.is-active {
    color: var(--sm-forest);
    font-weight: 700;
}

.btn-solid, .btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-solid {
    background: var(--sm-forest);
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(26, 92, 74, 0.25);
}

.btn-solid:hover,
.btn-solid:focus,
.btn-solid:visited {
    background: var(--sm-mint);
    transform: translateY(-1px);
    color: #fff !important;
}

.btn-ghost {
    background: transparent;
    color: var(--sm-ink);
    border: 1px solid rgba(15, 42, 36, 0.15);
}

.btn-ghost:hover {
    background: rgba(26, 92, 74, 0.06);
    color: var(--sm-ink);
}

.btn-lg { padding: 0.85rem 1.5rem; font-size: 1rem; }

.scroll-hint {
    position: fixed;
    left: 50%;
    bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    text-decoration: none;
    color: var(--sm-forest);
    opacity: 0.92;
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: auto;
}

.scroll-hint.is-hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
    pointer-events: none;
}

.scroll-hint-label {
    font-size: 0.75rem;
    font-weight: 650;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.scroll-hint i {
    font-size: 1.45rem;
    animation: scrollBounce 1.6s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    min-height: calc(100vh - 76px);
    padding: 3rem 5vw 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-hero {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--sm-forest);
    margin: 0 0 0.75rem;
    animation: brandIn 0.9s ease both;
}

.hero h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    line-height: 1.25;
    margin: 0 0 1rem;
    color: var(--sm-ink);
    max-width: 18ch;
}

.hero-lead {
    font-size: 1.08rem;
    line-height: 1.55;
    color: var(--sm-muted);
    max-width: 36ch;
    margin: 0 0 1.75rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.hero-note {
    color: var(--sm-muted);
    font-size: 0.9rem;
    margin: 0;
}

.hero-trust {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-trust li {
    font-size: 0.82rem;
    font-weight: 650;
    color: var(--sm-forest);
    background: rgba(45, 155, 120, 0.1);
    border: 1px solid rgba(26, 92, 74, 0.12);
    border-radius: 999px;
    padding: 0.4rem 0.8rem;
}


.hero-visual {
    position: relative;
    min-height: 420px;
    perspective: 900px;
}

.plan-card, .kp-card {
    border-radius: 1.25rem;
    background: var(--sm-white);
    box-shadow: 0 20px 50px rgba(15, 42, 36, 0.12);
}

.kp-line {
    height: 8px;
    border-radius: 4px;
    background: #dce8e3;
    margin-bottom: 0.65rem;
}

.kp-line.w80 { width: 80%; }
.kp-line.w60 { width: 60%; }
.kp-line.w90 { width: 90%; }

.section {
    padding: 4.5rem 5vw;
    max-width: 1100px;
    margin: 0 auto;
}

.section-alt {
    background: rgba(255,255,255,0.55);
    border-radius: 2rem;
    max-width: 1200px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    margin: 0 0 0.5rem;
    letter-spacing: -0.03em;
}

.section-lead {
    color: var(--sm-muted);
    margin: 0 0 2.5rem;
}

.steps, .features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.features { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 901px) {
    .features {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step, .feature {
    background: var(--sm-white);
    border-radius: 1.1rem;
    padding: 1.5rem;
    border: 1px solid rgba(15, 42, 36, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover, .feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(15, 42, 36, 0.1);
}

.step-num {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--sm-mint);
    font-size: 1.4rem;
}

.step h3, .feature h3 {
    font-family: var(--font-display);
    margin: 0.6rem 0 0.4rem;
    font-size: 1.15rem;
}

.step p, .feature p {
    margin: 0;
    color: var(--sm-muted);
    line-height: 1.5;
}

.feature a {
    color: var(--sm-forest);
    text-decoration: none;
}

.feature a:hover {
    text-decoration: underline;
}

.feature-icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.75rem;
    display: grid;
    place-items: center;
    background: var(--sm-sand);
    color: var(--sm-forest);
    font-size: 1.25rem;
    margin-bottom: 0.15rem;
    animation: iconBob 3.5s ease-in-out infinite;
}

.feature:nth-child(2) .feature-icon { animation-delay: 0.4s; }
.feature:nth-child(3) .feature-icon { animation-delay: 0.8s; }
.feature:nth-child(4) .feature-icon { animation-delay: 1.2s; }

@keyframes iconBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.price-block {
    text-align: center;
    background: linear-gradient(145deg, var(--sm-forest), #134d3d);
    color: white;
    border-radius: 1.75rem;
    padding: 3rem 2rem;
}

.price-block h2 {
    font-family: var(--font-display);
    margin: 0 0 0.75rem;
}

.price-amount {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    font-weight: 800;
    margin: 0 0 0.5rem;
}

.price-amount span {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.8;
}

.price-note {
    opacity: 0.85;
    margin: 0 0 1.5rem;
}

.price-block .btn-solid {
    background: white;
    color: var(--sm-forest);
    box-shadow: none;
}

.landing-final-cta {
    padding-top: 1rem;
    padding-bottom: 4rem;
}

.final-cta-inner {
    text-align: center;
    padding: 2.25rem 1.5rem;
    border-radius: 1.5rem;
    background:
        linear-gradient(145deg, rgba(26, 92, 74, 0.96), rgba(45, 155, 120, 0.92));
    color: #fff;
    box-shadow: 0 18px 40px rgba(26, 92, 74, 0.22);
}

.final-cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 3vw, 1.9rem);
    letter-spacing: -0.03em;
    margin: 0 0 0.55rem;
}

.final-cta-inner p {
    margin: 0 auto 1.35rem;
    max-width: 34rem;
    opacity: 0.9;
    line-height: 1.5;
}

.final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
}

.final-cta-inner .btn-solid {
    background: #fff;
    color: var(--sm-forest) !important;
    box-shadow: none;
}

.final-cta-inner .btn-solid:hover {
    background: #f2faf6;
    color: var(--sm-forest) !important;
}

.final-cta-inner .btn-ghost {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.final-cta-inner .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.landing-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.25rem;
    flex-wrap: wrap;
    padding: 2rem 5vw 2.5rem;
    color: var(--sm-muted);
    font-size: 0.92rem;
    border-top: 1px solid rgba(15, 42, 36, 0.06);
}

.landing-footer strong {
    color: var(--sm-ink);
    margin-right: 0.75rem;
}

.footer-brand {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.85rem;
}

.footer-brand a {
    color: var(--sm-forest);
    text-decoration: none;
}

.footer-brand a:hover { text-decoration: underline; }

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.1rem;
    align-items: center;
}

.footer-legal a {
    color: var(--sm-muted);
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-legal a:hover { color: var(--sm-forest); }

/* Cookie banner on landing */
.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1080;
    max-width: 720px;
    margin: 0 auto;
}

.cookie-banner-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1.1rem 1.25rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 42, 36, 0.1);
    box-shadow: 0 18px 40px rgba(15, 42, 36, 0.14);
    backdrop-filter: blur(10px);
}

.cookie-banner-title {
    margin: 0 0 0.35rem;
    font-family: Manrope, sans-serif;
    font-weight: 700;
    color: var(--sm-ink);
    font-size: 1rem;
}

.cookie-banner-desc {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--sm-muted);
    max-width: 34rem;
}

.cookie-banner-desc a {
    color: var(--sm-forest);
}

.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cookie-banner-actions .btn,
.cookie-banner-actions button {
    border-radius: 10px;
    border: 1px solid rgba(15, 42, 36, 0.15);
    padding: 0.45rem 0.9rem;
    font-size: 0.88rem;
    font-family: Manrope, sans-serif;
    font-weight: 600;
    cursor: pointer;
    background: #fff;
    color: var(--sm-ink);
}

.cookie-banner-actions #cookie-accept-all {
    background: var(--sm-forest);
    border-color: var(--sm-forest);
    color: #fff;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

@keyframes brandIn {
    from { opacity: 0; transform: translateY(16px) scale(0.98); }
    to { opacity: 1; transform: none; }
}

@keyframes floatY {
    0%, 100% { transform: translate3d(var(--px, 0), calc(var(--py, 0px) + 0px), 0); }
    50% { transform: translate3d(var(--px, 0), calc(var(--py, 0px) - 10px), 0); }
}

@keyframes aiPulse {
    0% { box-shadow: 0 0 0 0 rgba(45, 155, 120, 0.5); }
    70% { box-shadow: 0 0 0 18px rgba(45, 155, 120, 0); }
    100% { box-shadow: 0 0 0 0 rgba(45, 155, 120, 0); }
}

/* Hero scene */
.scene {
    position: relative;
    min-height: 420px;
    transform-style: preserve-3d;
}

.scene-side {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.scene-side .shot { pointer-events: auto; }

.shot {
    position: absolute;
    background: var(--sm-white);
    border-radius: 1.25rem;
    box-shadow: 0 22px 50px rgba(15, 42, 36, 0.14);
    border: 1px solid rgba(15, 42, 36, 0.06);
    overflow: hidden;
    will-change: transform;
    transition: box-shadow 0.3s ease;
}

.shot-label {
    position: absolute;
    top: 0.7rem;
    left: 0.7rem;
    z-index: 4;
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(255,255,255,0.94);
    padding: 0.28rem 0.6rem;
    border-radius: 999px;
    color: var(--sm-forest);
    box-shadow: 0 4px 12px rgba(15, 42, 36, 0.08);
}

.shot-plan {
    inset: 0 16% 18% 0;
    background: linear-gradient(145deg, #134d3d 0%, #1a5c4a 45%, #2d9b78 100%);
}

.floorplan {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.fp-wall {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: drawPath 1.8s ease forwards;
}

.delay-w1 { animation-delay: 0.25s; }
.delay-w2 { animation-delay: 0.45s; }
.delay-w3 { animation-delay: 0.65s; }
.delay-w4 { animation-delay: 0.8s; }

@keyframes drawPath {
    to { stroke-dashoffset: 0; }
}

.fp-room {
    opacity: 0;
    animation: roomIn 0.7s ease forwards;
}

.room-living { animation-delay: 1.0s; }
.room-kitchen { animation-delay: 1.2s; }
.room-bed { animation-delay: 1.35s; }
.room-bath { animation-delay: 1.5s; }
.room-hall { animation-delay: 1.65s; }

@keyframes roomIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fp-room.room-living {
    animation:
        roomIn 0.7s ease forwards 1s,
        roomPulse 3.4s ease-in-out 2s infinite;
}

@keyframes roomPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.65; }
}

.fp-labels .lbl {
    opacity: 0;
    animation: fadeUp 0.55s ease forwards;
}
.lbl-1, .lbl-1a { animation-delay: 1.7s; }
.lbl-2, .lbl-2a { animation-delay: 1.9s; }
.lbl-3, .lbl-3a { animation-delay: 2.05s; }
.lbl-4 { animation-delay: 2.2s; }
.lbl-5 { animation-delay: 2.3s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: none; }
}

.fp-windows, .fp-doors, .fp-furniture {
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 1.4s;
}

.ai-trace {
    stroke-dasharray: 520;
    stroke-dashoffset: 520;
    animation: drawPath 2.2s ease 2.4s infinite;
}

.ai-dot {
    opacity: 0;
    animation: dotTravel 2.2s ease 2.4s infinite;
}

@keyframes dotTravel {
    0% { opacity: 0; offset-distance: 0%; }
    10% { opacity: 1; }
    100% { opacity: 0; cx: 244; cy: 144; }
}

.scan-line {
    position: absolute;
    left: 0; right: 0;
    height: 2px;
    z-index: 3;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
    box-shadow: 0 0 18px rgba(159, 224, 200, 0.7);
    animation: scan 3.2s linear infinite;
}

@keyframes scan {
    from { top: 8%; opacity: 0; }
    10% { opacity: 1; }
    to { top: 90%; opacity: 0; }
}

.metric-chip {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255,255,255,0.95);
    color: var(--sm-forest);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(15, 42, 36, 0.16);
    opacity: 0;
    animation: chipIn 0.55s ease forwards;
}

.chip-a { right: 12%; top: 18%; animation-delay: 2.5s; }
.chip-b { left: 10%; bottom: 16%; animation-delay: 2.9s; }

@keyframes chipIn {
    from { opacity: 0; transform: translateY(8px) scale(0.92); }
    to { opacity: 1; transform: none; }
}

.shot-ai {
    width: 40%;
    right: 0;
    top: 4%;
    padding: 2.3rem 1rem 1.1rem;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, #f3faf7 100%);
}

.ai-ring {
    width: 72px;
    height: 72px;
    margin: 0.2rem auto 0.75rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
    background: radial-gradient(circle, rgba(45,155,120,0.18), transparent 70%);
}

.ai-ring::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--sm-mint);
    border-right-color: var(--sm-forest);
    animation: spin 2.4s linear infinite;
}

.ai-core {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--sm-forest), var(--sm-mint));
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(26, 92, 74, 0.3);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.ai-status {
    margin: 0 0 0.65rem;
    color: var(--sm-muted);
    font-size: 0.88rem;
    min-height: 1.2em;
}

.ai-bars {
    display: flex;
    justify-content: center;
    gap: 4px;
    height: 22px;
    align-items: flex-end;
}

.ai-bars span {
    width: 5px;
    border-radius: 99px;
    background: var(--sm-mint);
    animation: barPulse 1.1s ease-in-out infinite;
}
.ai-bars span:nth-child(1) { height: 8px; animation-delay: 0s; }
.ai-bars span:nth-child(2) { height: 14px; animation-delay: 0.15s; }
.ai-bars span:nth-child(3) { height: 20px; animation-delay: 0.3s; }
.ai-bars span:nth-child(4) { height: 11px; animation-delay: 0.45s; }

@keyframes barPulse {
    0%, 100% { transform: scaleY(0.55); opacity: 0.55; }
    50% { transform: scaleY(1); opacity: 1; }
}

.shot-kp {
    width: 46%;
    right: 3%;
    bottom: 0;
    padding: 2.15rem 1.1rem 1.1rem;
    background: #fff;
}

.kp-doc { display: flex; flex-direction: column; gap: 0.35rem; }

.kp-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.45rem;
}

.kp-brand {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--sm-forest);
    font-size: 0.9rem;
}

.kp-badge {
    background: var(--sm-accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
}

.kp-line {
    height: 7px;
    border-radius: 4px;
    background: #dce8e3;
    margin-bottom: 0.35rem;
    transform-origin: left;
    opacity: 0;
    animation: lineGrow 0.6s ease forwards;
}
.kp-line.w80 { width: 80%; animation-delay: 0.8s; }
.kp-line.w55 { width: 55%; animation-delay: 1.0s; }
.kp-line.w90 { width: 90%; animation-delay: 1.2s; }

@keyframes lineGrow {
    from { opacity: 0; transform: scaleX(0.2); }
    to { opacity: 1; transform: scaleX(1); }
}

.kp-row {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--sm-muted);
    margin-top: 0.2rem;
    opacity: 0;
    animation: fadeUp 0.5s ease forwards 1.5s;
}
.kp-row strong { color: var(--sm-ink); }

.kp-total {
    margin-top: 0.65rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--sm-accent);
    opacity: 0;
    animation: fadeUp 0.5s ease forwards 1.9s;
}

.float-a { animation: floatY 5.2s ease-in-out infinite; }
.float-b { animation: floatY 5.2s ease-in-out 0.7s infinite; }
.float-c { animation: floatY 5.6s ease-in-out 1.2s infinite; }

.step-illu {
    height: 88px;
    border-radius: 0.9rem;
    margin-bottom: 0.85rem;
    background: linear-gradient(135deg, #eef6f2, #dceee6);
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.mini-illu {
    width: 100%;
    height: 100%;
}

.draw-mini {
    stroke-dasharray: 180;
    stroke-dashoffset: 180;
    animation: drawPath 1.6s ease forwards 0.3s;
}
.draw-mini.d2 { animation-delay: 0.7s; }

.pulse-dot {
    animation: aiPulse 1.8s ease-out infinite;
}

@keyframes dashPulse {
    0%, 100% { opacity: 0.55; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1); }
}

.pricing-grid, .token-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.price-card, .token-card {
    position: relative;
    background: var(--sm-white);
    border-radius: 1.25rem;
    padding: 1.5rem 1.35rem;
    border: 1px solid rgba(15, 42, 36, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-card:hover, .token-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 42, 36, 0.12);
}

.price-card.is-featured, .token-card.is-featured {
    border-color: var(--sm-mint);
    box-shadow: 0 16px 36px rgba(26, 92, 74, 0.16);
    transform: scale(1.03);
}

.price-card.is-featured:hover, .token-card.is-featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.price-badge {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    background: var(--sm-accent);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
}

.price-card h3, .token-card .token-label {
    font-family: var(--font-display);
    margin: 0 0 0.75rem;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 0.55rem;
    margin-bottom: 0.25rem;
}

.old-price {
    text-decoration: line-through;
    color: var(--sm-muted);
    font-size: 0.95rem;
}

.new-price {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.85rem;
    color: var(--sm-forest);
}

.per-month {
    color: var(--sm-muted);
    font-size: 0.88rem;
    margin: 0 0 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    flex: 1;
}

.feature-list li {
    display: flex;
    gap: 0.45rem;
    align-items: flex-start;
    margin-bottom: 0.45rem;
    color: var(--sm-muted);
    font-size: 0.92rem;
}

.feature-list i { color: var(--sm-mint); margin-top: 0.15rem; }

.w-100 { width: 100%; text-align: center; }

.token-count {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--sm-forest);
    line-height: 1;
}

.token-label {
    color: var(--sm-muted);
    margin-bottom: 0.35rem !important;
}

.token-meta {
    margin: 0 0 0.35rem;
    color: var(--sm-muted);
    font-size: 0.92rem;
}

.token-price {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--sm-ink);
    margin: 0 0 0.85rem;
}

.token-rate-banner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1rem;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    background: var(--sm-forest);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    box-shadow: 0 8px 20px rgba(26, 92, 74, 0.22);
}

.delay-0 { transition-delay: 0s; }

/* —— Mobile / tablet —— */
.nav-burger {
    display: none;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(15, 42, 36, 0.12);
    border-radius: 0.7rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.55rem;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}
.nav-burger span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: var(--sm-ink);
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0.35rem 5vw 1.15rem;
    background: #fff;
    border-bottom: 1px solid rgba(15, 42, 36, 0.12);
    box-shadow: 0 10px 24px rgba(15, 42, 36, 0.08);
    position: sticky;
    top: 64px;
    z-index: 19;
}
.mobile-menu:not([hidden]) { display: flex; }
.mobile-menu > a {
    color: var(--sm-ink);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.95rem 0.25rem;
    border-bottom: 1px solid #d7e3dd;
    background: transparent;
}
.mobile-menu > a:last-of-type {
    border-bottom: 1px solid #d7e3dd;
}
.mobile-menu > a:hover,
.mobile-menu > a:active {
    color: var(--sm-forest);
}
.mobile-menu-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin-top: 0.85rem;
    padding-top: 0.95rem;
    border-top: 2px solid #1a5c4a;
}
.mobile-menu-actions .btn-solid,
.mobile-menu-actions .btn-ghost {
    width: 100%;
    min-height: 2.75rem;
}
.mobile-menu-actions .btn-solid {
    color: #fff !important;
}
.mobile-menu-actions .btn-ghost {
    color: var(--sm-ink);
    background: #fff;
    border: 1px solid #d7e3dd;
}

@media (max-width: 1100px) {
    .pricing-grid, .token-grid { grid-template-columns: repeat(2, 1fr); }
    .token-grid .token-card:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: 420px; margin: 0 auto; width: 100%; }
}

@media (max-width: 900px) {
    .landing-nav {
        padding: 0.85rem 5vw;
        gap: 0.75rem;
    }
    .landing-nav-links { display: none; }
    .btn-nav-login {
        display: inline-flex;
        min-height: 2.65rem;
        padding: 0.55rem 1.15rem;
        font-size: 0.95rem;
    }

    .logo-text { font-size: 1rem; }
    .logo-mark { width: 2rem; height: 2rem; font-size: 0.68rem; }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 2.5rem;
        padding: 2.25rem 5vw 3.25rem;
        align-items: stretch;
    }
    .hero-visual { order: 2; min-height: 0; }
    .hero-copy { order: 1; }

    .brand-hero {
        font-size: clamp(2rem, 10vw, 2.6rem);
        margin-bottom: 0.75rem;
    }
    .hero h1 {
        max-width: none;
        font-size: clamp(1.25rem, 4.8vw, 1.5rem);
        margin-bottom: 1rem;
    }
    .hero-lead {
        max-width: none;
        font-size: 1.05rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    .hero-cta .btn-solid,
    .hero-cta .btn-ghost {
        width: 100%;
        min-height: 3.1rem;
        padding: 0.9rem 1.15rem;
    }
    .hero-note {
        font-size: 0.9rem;
        line-height: 1.45;
        margin-top: 0.25rem;
    }

    .scene {
        min-height: 0;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .scene-side {
        position: relative;
        inset: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.85rem;
        pointer-events: auto;
    }
    .shot {
        position: relative !important;
        inset: auto !important;
        width: 100% !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        animation: none !important;
        transform: none !important;
    }
    .shot-plan {
        aspect-ratio: 420 / 300;
        min-height: 210px;
        max-height: 280px;
    }
    .floorplan { object-fit: cover; }
    .metric-chip {
        font-size: 0.65rem;
        padding: 0.28rem 0.5rem;
    }
    .chip-a { right: 8%; top: 14%; }
    .chip-b { left: 8%; bottom: 12%; }

    .shot-ai,
    .shot-kp {
        padding: 2rem 0.85rem 0.9rem;
    }
    .shot-ai { width: 100%; }
    .shot-kp { width: 100%; }
    .ai-ring { width: 56px; height: 56px; margin-bottom: 0.45rem; }
    .ai-core { width: 36px; height: 36px; font-size: 1rem; }
    .ai-status { font-size: 0.78rem; }
    .ai-bars { height: 16px; }
    .kp-row { font-size: 0.7rem; }
    .kp-brand { font-size: 0.8rem; }
    .kp-total { font-size: 0.85rem; margin-top: 0.4rem; }
    .fp-labels text { font-size: 11px; }

    .section {
        padding: 4rem 5vw;
    }
    .section-alt {
        border-radius: 1.5rem;
        margin-left: 3vw;
        margin-right: 3vw;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        padding-left: 5vw;
        padding-right: 5vw;
        padding-top: 3.25rem;
        padding-bottom: 3.25rem;
        max-width: none;
    }
    .section-title {
        font-size: clamp(1.45rem, 6vw, 1.85rem);
        margin-bottom: 0.75rem;
    }
    .section-lead {
        margin-bottom: 2rem;
        font-size: 1rem;
        line-height: 1.55;
    }

    .steps, .features,
    .pricing-grid, .token-grid {
        grid-template-columns: 1fr;
        gap: 1.15rem;
    }
    .token-grid .token-card:last-child:nth-child(odd) {
        grid-column: auto;
        max-width: none;
    }

    .step, .feature, .price-card, .token-card {
        padding: 1.45rem 1.25rem;
    }
    .step-illu {
        margin-bottom: 1rem;
    }
    .step h3, .feature h3 {
        margin: 0.75rem 0 0.5rem;
    }
    .token-rate-banner {
        margin-bottom: 1.25rem;
        padding: 0.75rem 1.35rem;
    }
    .token-meta {
        margin-bottom: 1.1rem;
    }
    .price-card.is-featured, .token-card.is-featured {
        transform: none;
    }
    .price-card.is-featured:hover, .token-card.is-featured:hover {
        transform: translateY(-3px);
    }
    .new-price { font-size: 1.6rem; }
    .token-count { font-size: 2.1rem; }

    .landing-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        padding: 2.5rem 5vw 7rem;
    }
    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }
    .footer-legal {
        gap: 0.85rem 1rem;
    }

    .cookie-banner {
        left: 0.65rem;
        right: 0.65rem;
        bottom: 0.65rem;
    }
    .cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        gap: 0.85rem;
    }
    .cookie-banner-actions {
        display: grid;
        grid-template-columns: 1fr;
    }
    .cookie-banner-actions .btn,
    .cookie-banner-actions button {
        width: 100%;
        min-height: 2.6rem;
    }

    .orb-a, .orb-b, .orb-c { opacity: 0.22; filter: blur(36px); }
    .orb-a { width: 160px; height: 160px; }
    .orb-b { width: 120px; height: 120px; }
    .orb-c { display: none; }
}

@media (max-width: 480px) {
    .landing-nav {
        padding: 0.75rem 5vw;
        padding-top: calc(0.75rem + env(safe-area-inset-top, 0px));
    }
    .hero { padding: 1.75rem 5vw 2.75rem; gap: 2rem; }
    .section { padding: 3.5rem 5vw; }
    .section-alt {
        margin-left: 4vw;
        margin-right: 4vw;
        padding-top: 2.75rem;
        padding-bottom: 2.75rem;
    }
    .steps, .features, .pricing-grid, .token-grid { gap: 1rem; }
    .step, .feature, .price-card, .token-card { padding: 1.35rem 1.15rem; border-radius: 1rem; }
    .shot-plan { min-height: 190px; max-height: 240px; }
    .scene-side { grid-template-columns: 1fr; gap: 0.85rem; }
    .shot-label { font-size: 0.7rem; top: 0.55rem; left: 0.55rem; }
    .metric-chip.chip-b { display: none; }
    .fp-furniture { display: none; }
    .mobile-menu { top: 58px; padding: 0.85rem 5vw 1.25rem; }
    body.menu-open { overflow: hidden; }
    .landing-footer { padding: 2.25rem 5vw 7rem; }
    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 0.55rem;
        width: 100%;
    }
    .hero-cta .btn,
    .price-card .btn,
    .token-card .btn,
    .final-cta-actions .btn-solid,
    .final-cta-actions .btn-ghost {
        width: 100%;
        min-height: 2.95rem;
        border-radius: 0.95rem;
        justify-content: center;
    }
    .final-cta-actions {
        flex-direction: column;
    }
    .hero-trust {
        gap: 0.4rem;
    }
    .hero-trust li {
        font-size: 0.78rem;
        padding: 0.35rem 0.7rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}
