:root {
    --ink: #10201e;
    --muted: #5c6f6a;
    --line: #dbe5e1;
    --paper: #ffffff;
    --soft: #f4f8f6;
    --deep: #0e332f;
    --teal: #0f7568;
    --mint: #c8f1df;
    --coral: #e75d4f;
    --amber: #f3bf45;
    --blue: #3856d6;
    --shadow: 0 24px 70px rgba(16, 32, 30, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 14px clamp(18px, 5vw, 72px);
    background: rgba(255, 255, 255, 0.93);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.1rem;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    color: #ffffff;
    background: var(--deep);
    font-size: 0.9rem;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    color: var(--muted);
    font-size: 0.94rem;
}

.main-nav a:hover,
.site-footer a:hover {
    color: var(--teal);
}

.header-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-weight: 750;
    white-space: nowrap;
}

.header-cta,
.button.primary {
    color: #ffffff;
    background: var(--deep);
}

.button.secondary {
    color: var(--deep);
    border-color: var(--line);
    background: #ffffff;
}

.header-cta:hover,
.button.primary:hover {
    background: #145148;
}

.button.secondary:hover {
    border-color: var(--teal);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: clamp(30px, 5vw, 72px);
    align-items: center;
    min-height: calc(100vh - 72px);
    padding: clamp(44px, 7vw, 94px) clamp(18px, 5vw, 72px) clamp(36px, 5vw, 70px);
    background:
        linear-gradient(135deg, rgba(200, 241, 223, 0.42), rgba(255, 255, 255, 0) 40%),
        linear-gradient(180deg, #ffffff 0%, #f6faf8 100%);
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--teal);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 18px;
    font-size: clamp(3.5rem, 11vw, 8rem);
    line-height: 0.9;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 4.25rem);
    line-height: 1.02;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.hero-lede {
    max-width: 650px;
    color: #314641;
    font-size: clamp(1.08rem, 2vw, 1.38rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0 30px;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 640px;
    margin: 0;
}

.trust-strip div {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
}

.trust-strip dt {
    font-size: 1.38rem;
    font-weight: 850;
}

.trust-strip dd {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.product-preview {
    min-height: 520px;
    padding: clamp(16px, 3vw, 26px);
    border: 1px solid #cbd9d4;
    border-radius: 8px;
    background: #fdfefe;
    box-shadow: var(--shadow);
}

.preview-topbar,
.insight-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 8px;
    color: #d9f7ee;
    background: var(--deep);
    font-size: 0.92rem;
}

.status-dot {
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--mint);
}

.preview-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
    margin: 16px 0;
}

.floor-plan {
    display: grid;
    grid-template-columns: repeat(4, minmax(54px, 1fr));
    grid-auto-rows: 92px;
    gap: 12px;
    min-height: 380px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(15, 117, 104, 0.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(15, 117, 104, 0.08) 1px, transparent 1px),
        #f7fbf9;
    background-size: 32px 32px;
}

.table {
    display: grid;
    place-items: center;
    min-width: 54px;
    min-height: 70px;
    border: 2px solid var(--teal);
    border-radius: 8px;
    color: var(--deep);
    background: #ffffff;
    font-weight: 850;
}

.table.wide {
    grid-column: span 2;
}

.table.busy {
    color: #ffffff;
    border-color: var(--deep);
    background: var(--deep);
}

.table.alert {
    color: #ffffff;
    border-color: var(--coral);
    background: var(--coral);
}

.table.hold {
    border-color: var(--amber);
    background: #fff3cb;
}

.booking-list {
    display: grid;
    gap: 12px;
    align-content: start;
}

.booking-row {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
}

.booking-row span,
.booking-row em {
    display: block;
    color: var(--muted);
    font-style: normal;
    font-size: 0.88rem;
}

.booking-row strong {
    display: block;
    margin: 3px 0;
    font-size: 1.02rem;
}

.booking-row.active {
    border-color: rgba(56, 86, 214, 0.4);
    background: #eef2ff;
}

.insight-bar {
    color: var(--ink);
    background: var(--mint);
}

.section {
    padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.band {
    background: var(--soft);
}

.section-heading {
    max-width: 880px;
    margin-bottom: 36px;
}

.section-heading p {
    max-width: 780px;
    color: var(--muted);
    font-size: 1.05rem;
}

.section-heading.compact {
    max-width: 720px;
}

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

.feature-card,
.price-card {
    min-height: 230px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
}

.feature-card p,
.price-card p,
.module-item span,
.proof-list p {
    color: var(--muted);
}

.feature-icon {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 28px;
    border-radius: 8px;
    color: #ffffff;
    background: var(--teal);
    font-weight: 850;
    font-size: 0.82rem;
}

.module-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
}

.module-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.module-item strong {
    font-size: 1.02rem;
}

.split-band {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(28px, 5vw, 70px);
    color: #ffffff;
    background: var(--deep);
}

.split-band .eyebrow,
.split-band .proof-list p {
    color: #c8f1df;
}

.split-band h2 {
    color: #ffffff;
}

.proof-list {
    display: grid;
    gap: 14px;
}

.proof-list p {
    margin: 0;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
}

.proof-list strong {
    color: #ffffff;
}

.price-card.highlighted {
    border-color: rgba(231, 93, 79, 0.5);
    box-shadow: 0 18px 50px rgba(231, 93, 79, 0.13);
}

.price {
    margin-bottom: 12px;
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 850;
}

.price span {
    color: var(--muted);
    font-size: 1rem;
    font-weight: 650;
}

.roadmap-band {
    background: #f7f8ff;
}

.roadmap {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.roadmap li {
    min-height: 150px;
    padding: 22px;
    border: 1px solid #d7dcfb;
    border-radius: 8px;
    background: #ffffff;
    color: var(--muted);
}

.roadmap span {
    display: block;
    margin-bottom: 18px;
    color: var(--blue);
    font-weight: 850;
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
    gap: clamp(30px, 5vw, 70px);
    align-items: start;
    background: #ffffff;
}

.contact-copy {
    position: sticky;
    top: 100px;
}

.contact-copy p {
    color: var(--muted);
}

.contact-note {
    margin-top: 26px;
    padding: 18px;
    border-left: 4px solid var(--coral);
    background: var(--soft);
}

.lead-form {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

label {
    display: grid;
    gap: 7px;
    margin-bottom: 14px;
    font-weight: 750;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #cbd9d4;
    border-radius: 8px;
    padding: 12px 13px;
    color: var(--ink);
    background: #ffffff;
    font: inherit;
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(15, 117, 104, 0.18);
    border-color: var(--teal);
}

.hidden-field {
    position: absolute;
    left: -9999px;
}

.check-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 550;
}

.check-line input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.form-button {
    width: 100%;
    border: 0;
    cursor: pointer;
    font-size: 1rem;
}

.form-success,
.form-errors {
    display: grid;
    gap: 6px;
    margin-bottom: 16px;
    padding: 14px;
    border-radius: 8px;
}

.form-success {
    color: #103b2c;
    background: #dff8ec;
}

.form-errors {
    color: #6f1f18;
    background: #ffe4df;
}

.form-errors ul {
    margin: 0;
    padding-left: 20px;
}

.site-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    padding: 24px clamp(18px, 5vw, 72px);
    color: #d7ebe4;
    background: #071d1a;
}

.site-footer span:first-child {
    color: #ffffff;
    font-weight: 850;
}

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

    .main-nav {
        display: none;
    }

    .hero,
    .contact-section,
    .split-band {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .product-preview {
        min-height: auto;
    }

    .feature-grid,
    .pricing-grid,
    .roadmap {
        grid-template-columns: 1fr;
    }

    .module-list {
        grid-template-columns: 1fr;
    }

    .contact-copy {
        position: static;
    }
}

@media (max-width: 680px) {
    .site-header {
        gap: 12px;
    }

    .header-cta {
        min-height: 38px;
        padding: 0 12px;
        font-size: 0.88rem;
    }

    .hero {
        padding-top: 34px;
    }

    .trust-strip,
    .preview-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .floor-plan {
        grid-template-columns: repeat(2, minmax(54px, 1fr));
        grid-auto-rows: 78px;
        min-height: 260px;
    }

    .module-item {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .preview-topbar,
    .insight-bar {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer {
        flex-direction: column;
    }
}
