:root {
    --orange: #e07b00;
    --orange-light: #f59e0b;
    --orange-pale: #fff7ed;
    --orange-mid: #fde8c8;
    --navy: #1c2b4a;
    --navy-mid: #2d4270;
    --blue: #2563eb;
    --blue-pale: #eff6ff;
    --text: #1a1a2e;
    --muted: #64748b;
    --border: #e2e8f0;
    --white: #ffffff;
    --bg-light: #f8f9fc;
    --radius: 12px;
    --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: "Georgia", serif;
    line-height: 1.2;
}

a {
    color: var(--orange);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── NAV ─────────────────────────────────────────────── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
}

.logo-text {
    font-family: "Open Sans", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
}

.logo-text span {
    color: var(--orange);
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--orange);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: 8px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
}
.btn-primary:hover {
    background: #c96f00;
    color: var(--white);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(224, 123, 0, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
}
.btn-outline:hover {
    background: var(--orange-pale);
    text-decoration: none;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-white {
    background: var(--white);
    color: var(--orange);
}
.btn-white:hover {
    background: var(--orange-pale);
    text-decoration: none;
}

/* ─── HERO ────────────────────────────────────────────── */
.hero {
    background: linear-gradient(
        135deg,
        var(--navy) 0%,
        var(--navy-mid) 55%,
        #1a3a6e 100%
    );
    color: var(--white);
    padding: 100px 0 90px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -120px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(224, 123, 0, 0.18) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -80px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(37, 99, 235, 0.15) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(224, 123, 0, 0.2);
    border: 1px solid rgba(224, 123, 0, 0.4);
    color: #ffb347;
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 22px;
    letter-spacing: -0.01em;
}

.hero h1 em {
    font-style: italic;
    color: #ffb347;
}

.hero-sub {
    font-size: 1.65rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 36px;
    max-width: 500px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* App Screenshot Card */
.hero-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    transform: perspective(800px) rotateY(-4deg) rotateX(2deg);
}

.hcard-topbar {
    background: var(--navy);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hcard-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.hcard-nav {
    background: var(--white);
    border-bottom: 2px solid var(--border);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hcard-logo {
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text);
}

.hcard-logo span {
    color: var(--orange);
}

.hcard-body {
    padding: 16px;
}

.hcard-org {
    border-left: 4px solid var(--orange);
    padding: 10px 14px;
    background: var(--bg-light);
    border-radius: 0 8px 8px 0;
    margin-bottom: 14px;
}

.hcard-org-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text);
}
.hcard-org-sub {
    font-size: 0.7rem;
    color: var(--muted);
}

.hcard-section-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hcard-meeting {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 7px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hcard-meeting-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
}
.hcard-meeting-meta {
    font-size: 0.65rem;
    color: var(--muted);
}

.badge-upcoming {
    background: var(--blue);
    color: var(--white);
    font-size: 0.6rem;
    padding: 3px 8px;
    border-radius: 999px;
    font-weight: 600;
}

/* ─── PROBLEM STRIP ───────────────────────────────────── */
.problem-strip {
    background: var(--orange-pale);
    border-top: 3px solid var(--orange-mid);
    border-bottom: 3px solid var(--orange-mid);
    padding: 60px 0;
}

.problem-strip h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 14px;
    color: var(--navy);
}

.problem-strip .lead {
    text-align: center;
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto 48px;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.pain-card {
    background: var(--white);
    border: 1px solid var(--orange-mid);
    border-radius: var(--radius);
    padding: 22px 24px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
}

.pain-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.pain-card h4 {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 4px;
    color: var(--navy);
}

.pain-card p {
    font-size: 1.1rem;
    color: var(--muted);
}

/* ─── FEATURES ────────────────────────────────────────── */
.features {
    padding: 90px 0;
}

.section-eyebrow {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--orange);
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 14px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 560px;
    margin-bottom: 56px;
}

.persona-tabs {
    display: flex;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--border);
    margin-bottom: 40px;
    width: fit-content;
}

.persona-tab {
    padding: 10px 26px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: var(--white);
    color: var(--muted);
    transition: all 0.2s;
    font-family: "Open Sans", sans-serif;
}

.persona-tab.active {
    background: var(--orange);
    color: var(--white);
}

.persona-panel {
    display: none;
}
.persona-panel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.feature-icon {
    width: 42px;
    height: 42px;
    background: var(--orange-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 14px;
}

.feature-card h4 {
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 6px;
    color: var(--navy);
}

.feature-card p {
    font-size: 1.2rem;
    color: var(--muted);
}

/* ─── HOW IT WORKS ────────────────────────────────────── */
.how-it-works {
    background: var(--navy);
    padding: 90px 0;
    color: var(--white);
}

.how-it-works .section-title {
    color: var(--white);
}
.how-it-works .section-sub {
    color: rgba(255, 255, 255, 0.7);
}

.steps-row {
    display: flex;
    gap: 0;
    position: relative;
}

.steps-row::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 0 0 6px rgba(224, 123, 0, 0.2);
}

.step h4 {
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--white);
}

.step p {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.65);
}

/* ─── BENEFITS TABLE ──────────────────────────────────── */
.benefits {
    padding: 90px 0;
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.benefit-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 4px solid var(--orange);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s;
}

.benefit-card:hover {
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 1.8rem;
    margin-bottom: 14px;
}

.benefit-card h4 {
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--navy);
}
.benefit-card h3 {
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: var(--navy);
}

.benefit-card p {
    font-size: 1.2rem;
    color: var(--muted);
}

/* ─── MULTI-TENANT ────────────────────────────────────── */
.multi-tenant {
    padding: 90px 0;
    background: var(--white);
}

.tenant-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tenant-diagram {
    background: var(--bg-light);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 32px;
}

.td-level {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 0;
    text-align: center;
}

.td-level.l1 {
    border-color: var(--orange);
    background: var(--orange-pale);
}
.td-level.l2 {
    border-color: var(--navy-mid);
    background: #eef2ff;
}
.td-level.l3 {
    border-color: var(--blue);
    background: var(--blue-pale);
}
.td-level.l4 {
    border-color: #94a3b8;
    background: #f8fafc;
}

.td-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--muted);
    margin-bottom: 4px;
}

.td-title {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text);
}

.td-arrow {
    text-align: center;
    color: var(--muted);
    font-size: 1.2rem;
    margin: 4px 0;
}

.td-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

/* ─── ROADMAP ─────────────────────────────────────────── */
.roadmap {
    padding: 90px 0;
    background: var(--bg-light);
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 52px;
}

.roadmap-col h4 {
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
    padding: 7px 14px;
    border-radius: 6px;
}

.roadmap-col.now h4 {
    background: var(--orange);
    color: var(--white);
}
.roadmap-col.next h4 {
    background: var(--navy);
    color: var(--white);
}
.roadmap-col.later h4 {
    background: var(--blue);
    color: var(--white);
}
.roadmap-col.future h4 {
    background: var(--border);
    color: var(--muted);
}

.roadmap-item {
    font-size: 1.1rem;
    color: var(--text);
    padding: 8px 10px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    margin-bottom: 7px;
    display: flex;
    gap: 7px;
    align-items: flex-start;
}

.roadmap-item .ri-dot {
    color: var(--orange);
    font-size: 1.1rem;
    line-height: 1.4;
    flex-shrink: 0;
}

/* ─── TECH ────────────────────────────────────────────── */
.tech-strip {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 50px 0;
}

.tech-label {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 28px;
}

.tech-badges {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.tech-badge {
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}

/* ─── CTA ─────────────────────────────────────────────── */
.cta {
    background: linear-gradient(135deg, var(--orange) 0%, #c96f00 100%);
    padding: 90px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.cta h2 {
    font-size: 2.6rem;
    color: var(--white);
    margin-bottom: 16px;
}

.cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 500px;
    margin: 0 auto 36px;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
}

/* ─── FOOTER ──────────────────────────────────────────── */
footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 50px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    color: var(--white);
    font-size: 1.1rem;
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 12px;
    max-width: 240px;
}

footer h5 {
    font-family: "Open Sans", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 14px;
}

footer ul {
    list-style: none;
}
footer ul li {
    margin-bottom: 8px;
}
footer ul a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    text-decoration: none;
}
footer ul a:hover {
    color: #ffb347;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-tagline {
    font-style: italic;
    color: #ffb347;
}

/* ─── ANIMATIONS ──────────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    animation: fadeUp 0.65s ease forwards;
}
.fade-up.d1 {
    animation-delay: 0.1s;
}
.fade-up.d2 {
    animation-delay: 0.25s;
}
.fade-up.d3 {
    animation-delay: 0.4s;
}
.fade-up.d4 {
    animation-delay: 0.55s;
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-card {
        display: none;
    }
    .hero h1 {
        font-size: 2.4rem;
    }
    .pain-grid {
        grid-template-columns: 1fr;
    }
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
    .roadmap-grid {
        grid-template-columns: 1fr 1fr;
    }
    .tenant-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .persona-panel.active {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .nav-links {
        display: none;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .roadmap-grid {
        grid-template-columns: 1fr;
    }
    .steps-row {
        flex-direction: column;
        gap: 28px;
    }
    .steps-row::before {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
