:root {
    --navy: #071936;
    --navy-2: #0d274f;
    --gold: #d5a833;
    --gold-light: #f1cf72;
    --blue: #2563eb;
    --green: #10b981;
    --slate: #64748b;
    --muted: #f6f8fb;
    --line: #e5eaf1;
    --white: #fff;
    --shadow: 0 24px 70px rgba(7, 25, 54, .12);
    --radius: 22px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--navy);
    background: #fff;
    line-height: 1.55
}

button,
input,
select,
textarea {
    font: inherit
}

button {
    cursor: pointer
}

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

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto
}

.section {
    padding: 96px 0
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(229, 234, 241, .85)
}

.nav-wrap {
    height: 76px;
    display: flex;
    align-items: center;
    gap: 34px
}

.brand {
    width: 190px;
    height: 52px;
    display: flex;
    align-items: center;
    overflow: hidden
}

.brand img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.main-nav {
    display: flex;
    gap: 30px;
    margin-left: auto
}

.main-nav a {
    font-size: 14px;
    font-weight: 600;
    color: #38465e
}

.main-nav a:hover {
    color: var(--blue)
}

.nav-actions {
    display: flex;
    gap: 10px
}

.btn {
    border: 0;
    border-radius: 10px;
    padding: 12px 18px;
    font-weight: 700;
    transition: .2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px
}

.btn:hover {
    transform: translateY(-2px)
}

.btn-primary {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 10px 25px rgba(7, 25, 54, .18)
}

.btn-primary:hover {
    background: var(--blue)
}

.btn-secondary {
    background: #fff;
    color: var(--navy);
    border: 1px solid #cfd7e3
}

.btn-ghost {
    background: transparent;
    color: var(--navy)
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--navy)
}

.btn-large {
    padding: 15px 22px
}

.full {
    width: 100%
}

.menu-toggle {
    display: none;
    background: none;
    border: 0
}

.menu-toggle span {
    display: block;
    width: 23px;
    height: 2px;
    background: var(--navy);
    margin: 5px
}

.hero {
    padding-top: 37px;
    background: radial-gradient(circle at 70% 10%, rgba(213, 168, 51, .10), transparent 34%), linear-gradient(#fff, #fbfcff)
}

.hero-grid {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: 64px;
    align-items: center
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: .12em;
    font-weight: 800;
    color: var(--blue);
    text-transform: uppercase
}

.eyebrow span {
    width: 26px;
    height: 2px;
    background: var(--gold)
}

.eyebrow.light {
    color: var(--gold-light)
}

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

.hero h1 {
    font-size: clamp(48px, 5vw, 74px);
    line-height: 1.04;
    letter-spacing: -.045em;
    margin: 18px 0 24px
}

.hero h1 em {
    font-style: normal;
    color: var(--gold)
}

.hero-lead {
    font-size: 18px;
    color: #526078;
    max-width: 610px
}

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

.trust-line {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    color: var(--slate)
}

.trust-line p {
    margin: 0
}

.avatar-stack {
    display: flex
}

.avatar-stack span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: #fff;
    border: 2px solid #fff;
    margin-left: -8px;
    font-size: 11px
}

.avatar-stack span:first-child {
    margin-left: 0;
    background: var(--gold);
    color: var(--navy)
}

.product-shell {
    border: 1px solid #dfe5ee;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg)
}

.window-bar {
    height: 34px;
    background: #f7f9fc;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    border-bottom: 1px solid var(--line)
}

.window-bar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d4dbe5
}

.dashboard {
    display: grid;
    grid-template-columns: 128px 1fr;
    min-height: 430px
}

.sidebar {
    background: var(--navy);
    padding: 18px 12px;
    display: flex;
    flex-direction: column;
    gap: 5px
}

.mini-brand {
    width: 38px;
    height: 38px;
    margin: 0 auto 10px;
    overflow: hidden;
    border-radius: 10px
}

.mini-brand img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.sidebar a {
    padding: 9px 10px;
    border-radius: 7px;
    color: #b7c3d5;
    font-size: 10px
}

.sidebar a.active,
.sidebar a:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff
}

.dash-main {
    padding: 22px;
    background: #f8fafc
}

.dash-top {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.dash-top small,
.metric-grid small {
    color: #7d899d;
    font-size: 10px
}

.dash-top h3 {
    margin: 3px 0 0;
    font-size: 18px
}

.round {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: var(--blue);
    color: #fff;
    display: grid;
    place-items: center
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 18px 0
}

.metric-grid article,
.activity-card,
.ai-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 14px
}

.metric-grid strong {
    display: block;
    font-size: 20px;
    margin: 3px 0
}

.metric-grid span {
    font-size: 9px;
    color: #e04d5c
}

.dashboard-lower {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 10px
}

.card-heading {
    display: flex;
    justify-content: space-between
}

.card-heading h4,
.ai-title h4 {
    font-size: 12px;
    margin: 0
}

.card-heading span {
    font-size: 9px;
    color: var(--blue)
}

.activity-card ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0
}

.activity-card li {
    font-size: 9px;
    padding: 10px 0;
    border-top: 1px solid #eef1f5;
    display: flex;
    align-items: center;
    gap: 7px
}

.activity-card i {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%
}

.activity-card time {
    margin-left: auto;
    color: #8793a5
}

.ai-title {
    display: flex;
    gap: 8px;
    align-items: center
}

.ai-title b {
    color: var(--gold)
}

.ai-title small {
    font-size: 8px;
    color: #8793a5
}

.prompt,
.ai-response {
    font-size: 9px;
    padding: 9px;
    border-radius: 8px;
    margin-top: 12px
}

.prompt {
    background: #eef4ff
}

.ai-response {
    background: #f8f5e9
}

.logo-strip {
    padding: 30px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.logo-strip p {
    text-align: center;
    color: #98a3b3;
    font-size: 10px;
    letter-spacing: .18em
}

.wordmarks {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    color: #7c8798;
    font-weight: 700;
    font-size: 14px
}

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

.section-heading h2,
.solutions h2,
.ai-section h2,
.demo-section h2,
.cta h2 {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -.035em;
    margin: 12px 0 14px
}

.section-heading p,
.solutions-copy>p,
.demo-grid>div>p {
    color: var(--slate);
    font-size: 17px
}

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

.feature-card {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    transition: .25s
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(7, 25, 54, .09);
    border-color: #c9d4e3
}

.feature-card .icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: #f4f7fb;
    color: var(--gold);
    font-size: 22px
}

.feature-card h3 {
    margin: 18px 0 8px
}

.feature-card p {
    margin: 0;
    color: var(--slate);
    font-size: 14px
}

.solutions {
    background: var(--muted)
}

.solutions-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: center
}

.industry-tabs {
    display: grid;
    gap: 8px;
    margin-top: 28px
}

.industry-tabs button {
    border: 1px solid transparent;
    background: transparent;
    text-align: left;
    padding: 12px 14px;
    border-radius: 10px;
    font-weight: 700;
    color: #56647a
}

.industry-tabs button.active {
    background: #fff;
    color: var(--navy);
    border-color: var(--line);
    box-shadow: 0 8px 20px rgba(7, 25, 54, .06)
}

.industry-preview {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 34px;
    box-shadow: var(--shadow)
}

.preview-top {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #8692a4
}

.status {
    color: var(--green);
    font-weight: 800
}

.industry-preview h3 {
    font-size: 27px;
    margin: 18px 0 8px
}

.industry-preview>p {
    color: var(--slate)
}

.preview-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 26px 0
}

.preview-columns div {
    padding: 16px;
    border-radius: 12px;
    background: #f7f9fc
}

.preview-columns small {
    display: block;
    color: #8490a2;
    font-size: 10px
}

.preview-columns strong {
    font-size: 22px
}

.industry-preview ul,
.price-card ul {
    list-style: none;
    padding: 0
}

.industry-preview li,
.price-card li {
    margin: 11px 0;
    color: #536177;
    font-size: 14px
}

.industry-preview li span {
    color: var(--green);
    font-weight: 800;
    margin-right: 7px
}

.ai-section {
    background: linear-gradient(135deg, #06162f, #0b2c5b);
    color: #fff
}

.ai-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    align-items: center
}

.ai-grid p {
    color: #bdc9d9;
    font-size: 17px
}

.ai-conversation {
    display: grid;
    gap: 14px
}

.bubble {
    max-width: 82%;
    padding: 16px 18px;
    border-radius: 16px;
    font-size: 14px
}

.bubble.user {
    margin-left: auto;
    background: #fff;
    color: var(--navy);
    border-bottom-right-radius: 4px
}

.bubble.system {
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .16);
    border-bottom-left-radius: 4px
}

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

.price-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 30px;
    background: #fff
}

.price-card.featured {
    border: 2px solid var(--gold);
    box-shadow: var(--shadow)
}

.plan {
    font-weight: 800;
    color: var(--blue);
    font-size: 13px
}

.coming {
    position: absolute;
    right: 22px;
    top: 24px;
    font-size: 9px;
    letter-spacing: .12em;
    background: #f5ead0;
    color: #8b6813;
    padding: 6px 8px;
    border-radius: 99px;
    font-weight: 800
}

.price-card h3 {
    font-size: 30px;
    margin: 14px 0 8px
}

.price-card p {
    color: var(--slate);
    min-height: 65px
}

.price-card li:before {
    content: '✓';
    color: var(--green);
    font-weight: 800;
    margin-right: 8px
}

.demo-section {
    background: #fbfcfe
}

.demo-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 70px;
    align-items: start
}

.contact-points {
    display: flex;
    flex-direction: column;
    gap: 9px;
    color: #506078;
    font-size: 14px
}

.contact-points span:before {
    color: var(--green)
}

.lead-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 16px 50px rgba(7, 25, 54, .07)
}

.lead-form label {
    font-size: 12px;
    font-weight: 700;
    color: #44536b
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    margin-top: 7px;
    border: 1px solid #d7dee8;
    border-radius: 10px;
    padding: 13px;
    background: #fff;
    color: var(--navy);
    outline: none
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .10)
}

.full-width {
    grid-column: 1/-1
}

.form-note {
    text-align: center;
    color: #8793a4;
    font-size: 10px;
    margin: 0
}

.cta-section {
    padding: 40px 0 90px;
    background: #fbfcfe
}

.cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--navy);
    color: #fff;
    border-radius: 26px;
    padding: 44px 50px;
    overflow: hidden;
    position: relative
}

.cta:after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border: 55px solid rgba(213, 168, 51, .15);
    border-radius: 50%;
    right: -70px;
    top: -90px
}

.cta p {
    color: #c2cede;
    margin: 0
}

.cta .btn {
    position: relative;
    z-index: 1
}

.footer {
    background: #041126;
    color: #b4bfd0;
    padding: 64px 0 24px
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 50px
}

.footer-logo {
    width: 170px;
    height: 90px;
    object-fit: contain;
    object-position: left center
}

.footer h4 {
    color: #fff
}

.footer a {
    display: block;
    font-size: 13px;
    margin: 9px 0
}

.footer a:hover {
    color: var(--gold)
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 42px;
    padding-top: 22px;
    font-size: 11px
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    place-items: center;
    padding: 20px
}

.modal.open {
    display: grid
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 13, 29, .70);
    backdrop-filter: blur(6px)
}

.modal-panel {
    position: relative;
    width: min(650px, 100%);
    max-height: 90vh;
    overflow: auto;
    background: #fff;
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .35)
}

.modal-close {
    position: absolute;
    right: 18px;
    top: 14px;
    border: 0;
    background: transparent;
    font-size: 30px;
    color: #6f7b8c
}

.modal-head {
    text-align: center;
    margin: 0 auto 22px;
    max-width: 470px
}

.modal-head h2 {
    font-size: 34px;
    letter-spacing: -.03em;
    margin: 10px 0
}

.modal-head p {
    color: var(--slate)
}

.lead-form.compact {
    box-shadow: none;
    border: 0;
    padding: 0
}

.text-button {
    background: none;
    border: 0;
    color: var(--blue);
    font-weight: 700
}

.success-message {
    text-align: center;
    padding: 28px 10px
}

.success-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #e7f8f2;
    color: var(--green);
    font-size: 30px;
    margin: 0 auto 18px
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: .7s ease
}

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

@media(max-width:980px) {
    .main-nav {
        display: none
    }

    .nav-actions .btn-ghost {
        display: none
    }

    .hero-grid,
    .solutions-grid,
    .ai-grid,
    .demo-grid {
        grid-template-columns: 1fr
    }

    .hero-copy {
        text-align: center
    }

    .hero-lead {
        margin-inline: auto
    }

    .hero-actions,
    .trust-line {
        justify-content: center
    }

    .product-shell {
        transform: none
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .pricing-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr
    }

    .footer-grid>div:last-child {
        display: none
    }
}

@media(max-width:700px) {
    .container {
        width: min(100% - 28px, 1180px)
    }

    .section {
        padding: 72px 0
    }

    .nav-wrap {
        height: 70px
    }

    .brand {
        width: 145px
    }

    .menu-toggle {
        display: block;
        margin-left: auto
    }

    .nav-actions {
        display: none
    }

    .site-header.menu-open .main-nav {
        display: flex;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        flex-direction: column;
        border-bottom: 1px solid var(--line)
    }

    .hero {
        padding-top: 58px
    }

    .hero h1 {
        font-size: 46px
    }

    .hero-actions {
        flex-direction: column
    }

    .hero-actions .btn {
        width: 100%
    }

    .dashboard {
        grid-template-columns: 78px 1fr
    }

    .sidebar a {
        font-size: 0;
        padding: 10px
    }

    .sidebar a:before {
        content: '•';
        font-size: 18px
    }

    .metric-grid {
        grid-template-columns: 1fr
    }

    .dashboard-lower {
        grid-template-columns: 1fr
    }

    .product-shell {
        overflow-x: auto
    }

    .feature-grid {
        grid-template-columns: 1fr
    }

    .preview-columns {
        grid-template-columns: 1fr
    }

    .lead-form {
        grid-template-columns: 1fr
    }

    .lead-form label,
    .full-width {
        grid-column: 1
    }

    .cta {
        padding: 36px 28px;
        display: block
    }

    .cta .btn {
        margin-top: 22px;
        width: 100%
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .footer-grid>div:first-child {
        grid-column: 1/-1
    }

    .footer-bottom {
        display: block
    }

    .footer-bottom span {
        display: block;
        margin-top: 7px
    }

    .modal-panel {
        padding: 30px 20px
    }

    .wordmarks {
        justify-content: center
    }
}


.product-shell {
    animation: dashboardFloat 6s ease-in-out infinite
}

.ai-card {
    animation: softGlow 4s ease-in-out infinite
}

.metric-grid article {
    transition: transform .25s ease, box-shadow .25s ease
}

.metric-grid article:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(7, 25, 54, .08)
}

@keyframes dashboardFloat {

    0%,
    100% {
        transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) translateY(0)
    }

    50% {
        transform: perspective(1200px) rotateY(-1deg) rotateX(.5deg) translateY(-7px)
    }
}

@keyframes softGlow {

    0%,
    100% {
        box-shadow: none
    }

    50% {
        box-shadow: 0 12px 32px rgba(213, 168, 51, .14)
    }
}

@media(max-width:980px) {
    .product-shell {
        animation: none
    }
}

/* Public release refinements */
.brand {
    width: 190px;
    height: 58px
}

.nav-wrap {
    height: 88px
}

.product-shell {
    box-shadow: 0 28px 90px rgba(7, 25, 54, .16)
}

.metric-grid article,
.activity-card,
.ai-card {
    box-shadow: 0 8px 22px rgba(7, 25, 54, .045)
}

.error-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    background: radial-gradient(circle at 50% 15%, rgba(213, 168, 51, .12), transparent 35%), #fff
}

.error-page img {
    width: min(320px, 80vw);
    margin-bottom: 30px
}

.error-page h1 {
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.05;
    margin: 16px 0
}

.error-page p {
    color: var(--slate);
    font-size: 18px;
    margin-bottom: 28px
}

@media(max-width:700px) {
    .brand {
        width: 155px;
        height: 52px
    }

    .nav-wrap {
        height: 72px
    }
}