:root {
    --immo-bg: #ffffff;
    --immo-card: #ffffff;
    --immo-panel: #fafafa;
    --immo-text: #050505;
    --immo-muted: #73737f;
    --immo-muted-2: #a4a4ad;
    --immo-border: #e5e5ea;
    --immo-border-soft: #eeeeF2;
    --immo-pink: #df45b8;
    --immo-purple: #ad4ce5;
    --immo-gradient: linear-gradient(135deg, #e43fa2 0%, #a94ceb 100%);
    --immo-shadow: 0 16px 36px rgba(15, 15, 20, 0.09);
    --immo-shadow-soft: 0 8px 18px rgba(15, 15, 20, 0.05);
}

* {
    box-sizing: border-box;
}

html.immomanager-page {
    background: var(--immo-bg);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body.immomanager-body {
    margin: 0;
    max-width: 100%;
    overflow-x: hidden;
    background: var(--immo-bg);
    color: var(--immo-text);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

.immomanager-body h1,
.immomanager-body h2,
.immomanager-body h3,
.brand,
.modal-title {
    font-family: "Inter Tight", "Inter", system-ui, sans-serif;
    letter-spacing: 0;
}

.immomanager-body p {
    margin: 0;
    color: var(--immo-muted);
}

.immomanager-body a {
    color: inherit;
    text-decoration: none;
}

.iconify {
    display: inline-block;
    width: 1em;
    height: 1em;
    flex: 0 0 auto;
    background: currentColor;
    -webkit-mask: var(--svg) center / contain no-repeat;
    mask: var(--svg) center / contain no-repeat;
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    display: grid;
    min-height: 65px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid var(--immo-border);
    background: rgba(255, 255, 255, 0.92);
    padding: 0 max(24px, calc((100vw - 1280px) / 2));
    backdrop-filter: blur(12px);
}

body.immomanager-body .brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--immo-pink);
    font-size: 28px;
    font-weight: 800;
    white-space: nowrap;
}

body.immomanager-body .site-footer .brand {
    color: var(--immo-pink);
}

.brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--immo-gradient);
    position: relative;
    box-shadow: 0 8px 18px rgba(173, 76, 229, 0.2);
}

.brand-mark::after {
    content: "";
    position: absolute;
    inset: 8px 7px;
    border: 3px solid #ffffff;
    border-top-width: 5px;
    transform: skewY(-11deg);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.desktop-nav a {
    color: #656570;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.desktop-nav a:hover {
    color: var(--immo-text);
}

.header-actions,
.hero-actions,
.modal-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.button {
    display: inline-flex;
    min-height: 40px;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 9px 16px;
    color: var(--immo-text);
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    border-color: transparent;
    background: var(--immo-gradient);
    color: #ffffff;
    box-shadow: 0 8px 14px rgba(173, 76, 229, 0.22);
}

.button-secondary {
    border-color: #d9d9df;
    background: #ffffff;
    color: #08080a;
}

.button-ghost {
    border-color: transparent;
    background: transparent;
    color: #08080a;
}

.button-large {
    min-width: 128px;
    min-height: 46px;
    padding: 12px 24px;
    font-size: 16px;
}

.hero-section {
    padding: 112px 24px 66px;
}

.hero-content {
    display: flex;
    max-width: 1040px;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.eyebrow,
.modal-kicker,
.module-label {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid rgba(173, 76, 229, 0.16);
    background: #f5e7f7;
    color: #161219;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
}

.eyebrow-spark {
    color: #111111;
    font-size: 22px;
    line-height: 1;
}

.hero-content h1 {
    max-width: 960px;
    margin: 44px 0 24px;
    color: #050505;
    font-size: clamp(56px, 8.4vw, 96px);
    font-weight: 800;
    line-height: 0.96;
    overflow-wrap: break-word;
}

.hero-content p {
    max-width: 680px;
    color: var(--immo-muted);
    font-size: 22px;
    line-height: 1.45;
}

.hero-actions {
    justify-content: center;
    margin-top: 44px;
    flex-wrap: wrap;
}

.tracked-card {
    display: grid;
    width: fit-content;
    min-width: 230px;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 12px;
    margin-top: 44px;
    border: 1px solid #dedee5;
    border-radius: 8px;
    background: #ffffff;
    padding: 12px 18px;
    box-shadow: var(--immo-shadow-soft);
    text-align: left;
}

.tracked-logo {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--immo-gradient);
    position: relative;
}

.tracked-logo::after {
    content: "";
    position: absolute;
    inset: 11px 9px;
    border: 3px solid #ffffff;
    border-top-width: 5px;
    transform: skewY(-10deg);
}

.tracked-card span {
    display: grid;
    color: var(--immo-text);
    font-size: 16px;
    font-weight: 800;
}

.tracked-card strong {
    color: #9b9baa;
    font-size: 12px;
    letter-spacing: 0.12em;
}

.tracked-card b {
    border-left: 1px solid var(--immo-border);
    padding-left: 16px;
    color: #111827;
    font-size: 28px;
    line-height: 1;
}

.tracked-card small {
    grid-column: 3;
    color: #6d6d78;
    font-size: 12px;
    font-weight: 700;
}

.product-demo {
    display: grid;
    width: min(980px, calc(100% - 32px));
    margin: 28px auto 88px;
    grid-template-columns: 1fr 0.95fr;
    gap: 44px;
    align-items: center;
    border: 1px solid #dedee5;
    border-radius: 8px;
    background: var(--immo-panel);
    padding: 48px;
    box-shadow: var(--immo-shadow);
}

.demo-copy h2 {
    margin: 0;
    color: #050505;
    font-size: clamp(38px, 4.8vw, 56px);
    font-weight: 800;
    line-height: 1.05;
}

.demo-copy h2 span {
    color: var(--immo-pink);
}

.demo-copy p {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.55;
}

.demo-input {
    display: flex;
    min-height: 54px;
    align-items: center;
    margin-top: 28px;
    border: 1px solid #d9d9df;
    border-radius: 8px;
    background: #ffffff;
    padding: 0 16px;
    color: #8a8a95;
    font-size: 18px;
}

.demo-input input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #4f4f5a;
    font: inherit;
}

.demo-button {
    width: 100%;
    margin-top: 14px;
}

.demo-quote {
    margin-top: 16px;
    font-size: 14px;
    font-style: italic;
}

.demo-quote code {
    color: #111111;
    font-style: normal;
}

.demo-card {
    border: 1px solid #dedee5;
    border-radius: 8px;
    background: #ffffff;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(15, 15, 20, 0.04);
}

.demo-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.demo-avatar {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 999px;
    background: var(--immo-gradient);
    color: #ffffff;
    font-weight: 800;
}

.demo-card-head strong,
.demo-list-row strong {
    display: block;
    color: var(--immo-text);
    font-size: 18px;
}

.demo-card-head span,
.demo-list-row span {
    color: var(--immo-muted);
    font-size: 14px;
}

.demo-divider {
    height: 1px;
    margin: 24px 0;
    background: var(--immo-border);
}

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

.demo-list-row {
    display: grid;
    grid-template-columns: 38px 1fr auto;
    align-items: center;
    gap: 12px;
    border-radius: 8px;
    background: #f6f6f8;
    padding: 14px;
}

.row-icon {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 8px;
    background: #ffffff;
    color: var(--immo-pink);
    font-size: 12px;
    font-weight: 800;
}

.demo-list-row b {
    color: #0c0c10;
    font-size: 14px;
    white-space: nowrap;
}

.proof-strip {
    display: grid;
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--immo-border);
    border-radius: 8px;
    background: #ffffff;
    overflow: hidden;
}

.proof-item {
    min-height: 148px;
    border-right: 1px solid var(--immo-border);
    padding: 30px;
}

.proof-item:last-child {
    border-right: 0;
}

.proof-item strong {
    display: block;
    margin-bottom: 12px;
    color: var(--immo-text);
    font-size: 26px;
    font-weight: 800;
}

.proof-item span {
    color: var(--immo-muted);
    font-size: 16px;
    line-height: 1.5;
}

.section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 110px 0;
}

.section-soft,
.security-section {
    width: 100%;
    max-width: none;
    padding-right: max(16px, calc((100vw - 1180px) / 2));
    padding-left: max(16px, calc((100vw - 1180px) / 2));
}

.section-soft {
    background: #ffffff;
}

.section-heading {
    max-width: 740px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading h2,
.compare-copy h2,
.security-panel h2,
.story-card h2,
.cta-section h2 {
    margin: 18px 0 14px;
    color: var(--immo-text);
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.02;
}

.section-heading p,
.compare-copy p,
.security-panel p,
.story-card p,
.cta-section p {
    color: var(--immo-muted);
    font-size: 19px;
    line-height: 1.55;
}

.benefit-grid,
.module-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.feature-card,
.module-card,
.story-card {
    border: 1px solid var(--immo-border);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--immo-shadow-soft);
}

.feature-card,
.module-card {
    min-height: 230px;
    padding: 24px;
    transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.feature-card:hover,
.module-card:hover {
    transform: translateY(-2px);
    border-color: #d8d8df;
    box-shadow: var(--immo-shadow);
}

.card-icon {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 8px;
    background: #f5e7f7;
    color: var(--immo-pink);
    font-size: 13px;
    font-weight: 800;
}

.feature-card h3,
.module-card h3 {
    margin: 22px 0 10px;
    color: var(--immo-text);
    font-size: 24px;
    font-weight: 800;
}

.feature-card p,
.module-card p {
    color: var(--immo-muted);
    font-size: 16px;
    line-height: 1.55;
}

.module-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.module-card a {
    width: fit-content;
    margin-top: 24px;
    color: var(--immo-pink);
    font-size: 15px;
    font-weight: 700;
}

.compare-section {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 50px;
}

.compare-copy .button {
    margin-top: 28px;
}

.compare-table {
    border: 1px solid var(--immo-border);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--immo-shadow-soft);
    overflow: hidden;
}

.compare-row {
    display: grid;
    grid-template-columns: 1.1fr 0.8fr 0.8fr;
    gap: 12px;
    align-items: center;
    border-bottom: 1px solid var(--immo-border);
    padding: 17px 18px;
    color: #42424c;
    font-size: 15px;
}

.compare-row:last-child {
    border-bottom: 0;
}

.compare-head {
    background: #f8f8fa;
    color: var(--immo-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.compare-row strong {
    color: #10a37f;
}

.compare-row em {
    color: #a4466f;
    font-style: normal;
}

.security-section {
    background: #08080a;
}

.security-panel {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
    color: #ffffff;
}

.security-panel .eyebrow {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.security-panel h2 {
    color: #ffffff;
}

.security-panel p {
    color: rgba(255, 255, 255, 0.68);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.security-grid div {
    min-height: 170px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    padding: 20px;
}

.security-grid strong {
    display: block;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 18px;
}

.security-grid span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.55;
}

.story-section {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 16px;
}

.story-card {
    padding: 34px;
}

.story-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.story-metrics div {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--immo-border);
    border-radius: 8px;
    background: #ffffff;
    padding: 24px 20px;
}

.story-metrics strong {
    margin-bottom: 10px;
    color: var(--immo-text);
    font-size: 38px;
    line-height: 1;
}

.story-metrics span {
    color: var(--immo-muted);
    font-size: 14px;
    line-height: 1.5;
}

.faq-section {
    padding-top: 30px;
}

.faq-list {
    max-width: 840px;
    margin: 0 auto;
}

.faq-list details {
    border: 1px solid var(--immo-border);
    border-radius: 8px;
    background: #ffffff;
}

.faq-list details + details {
    margin-top: 10px;
}

.faq-list summary {
    cursor: pointer;
    color: var(--immo-text);
    font-weight: 800;
    padding: 20px 22px;
}

.faq-list p {
    padding: 0 22px 22px;
    color: var(--immo-muted);
    font-size: 15px;
    line-height: 1.7;
}

.cta-section {
    display: flex;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 48px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border: 1px solid var(--immo-border);
    border-radius: 8px;
    background: #ffffff;
    padding: 42px;
    box-shadow: var(--immo-shadow-soft);
}

.site-footer {
    display: flex;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid var(--immo-border);
    padding: 34px 0 44px;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}

.site-footer a {
    color: var(--immo-muted);
    font-size: 14px;
    font-weight: 600;
}

.logged-in-notice {
    position: fixed;
    z-index: 60;
    right: 18px;
    bottom: 18px;
    display: none;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--immo-border);
    border-radius: 8px;
    background: #ffffff;
    padding: 10px 12px;
    box-shadow: var(--immo-shadow);
    color: var(--immo-text);
    font-size: 14px;
    font-weight: 700;
}

.logged-in-notice a {
    color: var(--immo-pink);
}

.immo-modal {
    padding: 0;
}

.immo-modal::backdrop {
    background: rgba(10, 10, 12, 0.45);
    backdrop-filter: blur(8px);
}

.immo-modal-box {
    position: relative;
    width: min(440px, calc(100vw - 28px));
    border: 1px solid var(--immo-border);
    border-radius: 8px;
    background: #ffffff;
    padding: 28px;
    box-shadow: var(--immo-shadow);
}

.immo-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
}

.icon-button {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--immo-border);
    border-radius: 8px;
    background: #ffffff;
    color: var(--immo-muted);
    cursor: pointer;
}

.modal-kicker {
    margin-bottom: 12px;
    font-size: 13px;
}

.modal-title {
    color: var(--immo-text);
    font-size: 30px;
    font-weight: 800;
}

.immo-form {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.immo-form fieldset {
    min-width: 0;
    border: 0;
    padding: 0;
}

.immo-form legend {
    margin-bottom: 8px;
    color: #4d4d58;
    font-size: 13px;
    font-weight: 700;
}

.input-row {
    display: flex;
    min-height: 46px;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--immo-border);
    border-radius: 8px;
    background: #ffffff;
    padding: 0 12px;
    color: var(--immo-muted);
}

.input-row:focus-within {
    border-color: rgba(173, 76, 229, 0.58);
    box-shadow: 0 0 0 4px rgba(173, 76, 229, 0.09);
}

.input-row.input-error {
    border-color: #ef4444;
}

.input-row input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--immo-text);
    font-size: 15px;
}

.modal-actions {
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-top: 6px;
}

.modal-alert {
    border-radius: 8px;
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: auto 1fr;
    }

    .desktop-nav {
        display: none;
    }

    .product-demo,
    .proof-strip,
    .benefit-grid,
    .module-grid,
    .compare-section,
    .security-panel,
    .security-grid,
    .story-section,
    .story-metrics {
        grid-template-columns: 1fr;
    }

    .proof-item {
        border-right: 0;
        border-bottom: 1px solid var(--immo-border);
    }

    .proof-item:last-child {
        border-bottom: 0;
    }

    .cta-section,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer nav {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .site-header {
        min-height: 58px;
        grid-template-columns: 1fr;
        padding: 0 16px;
    }

    .brand {
        font-size: 20px;
    }

    .brand-mark {
        width: 26px;
        height: 26px;
    }

    .header-actions {
        display: none;
    }

    .hero-section {
        padding: 70px 16px 38px;
    }

    .eyebrow {
        font-size: 12px;
        line-height: 1.3;
        padding: 8px 12px;
    }

    .hero-content h1 {
        margin-top: 30px;
        font-size: clamp(34px, 10vw, 42px);
        line-height: 1.06;
        overflow-wrap: anywhere;
    }

    .hero-content p {
        font-size: 17px;
        line-height: 1.55;
    }

    .hero-actions {
        width: 100%;
        margin-top: 30px;
    }

    .hero-actions .button,
    .modal-actions .button {
        width: 100%;
    }

    .tracked-card {
        width: 100%;
        grid-template-columns: 40px 1fr auto;
        margin-top: 30px;
    }

    .product-demo {
        width: calc(100% - 32px);
        margin-bottom: 64px;
        padding: 24px;
        gap: 28px;
    }

    .demo-copy h2 {
        font-size: 34px;
        overflow-wrap: anywhere;
    }

    .demo-copy p,
    .demo-input {
        font-size: 16px;
    }

    .demo-list-row {
        grid-template-columns: 34px 1fr;
    }

    .demo-list-row b {
        grid-column: 2;
    }

    .section,
    .section-soft,
    .security-section {
        width: 100%;
        padding: 72px 16px;
    }

    .section-heading h2,
    .compare-copy h2,
    .security-panel h2,
    .story-card h2,
    .cta-section h2 {
        font-size: 36px;
    }

    .section-heading p,
    .compare-copy p,
    .security-panel p,
    .story-card p,
    .cta-section p {
        font-size: 16px;
    }

    .proof-strip,
    .cta-section,
    .site-footer {
        width: calc(100% - 32px);
    }

    .compare-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .compare-head {
        display: none;
    }

    .cta-section {
        padding: 28px;
    }
}
