:root {
    --product-ink: #172033;
    --product-muted: #65758b;
    --product-line: #d9e2ee;
    --product-bg: #f5f8fc;
    --product-primary: #1565c0;
    --product-primary-dark: #0f4d97;
    --product-accent: #21a67a;
}

body {
    color: var(--product-ink);
    background: #fff;
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.product-nav {
    border-bottom: 1px solid rgba(217, 226, 238, .86);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(12px);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 8px;
    background: var(--product-ink);
    color: #fff;
    font-size: .78rem;
    letter-spacing: 0;
}

.product-cta {
    --bs-btn-bg: var(--product-primary);
    --bs-btn-border-color: var(--product-primary);
    --bs-btn-hover-bg: var(--product-primary-dark);
    --bs-btn-hover-border-color: var(--product-primary-dark);
}

.hero-scene {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(10, 16, 28, .96), rgba(10, 16, 28, .7)),
        radial-gradient(circle at 78% 22%, rgba(33, 166, 122, .24), transparent 28%),
        #0a101c;
}

.hero-scene::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .22;
    background-image:
        linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 42px 42px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.min-vh-75 {
    min-height: 75vh;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.inspector-visual {
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    overflow: hidden;
    background: #f7fafc;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .42);
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: .45rem;
    height: 42px;
    padding: 0 .85rem;
    border-bottom: 1px solid #dce4ef;
    background: #fff;
    color: #607086;
    font-size: .8rem;
}

.browser-bar span {
    width: .72rem;
    height: .72rem;
    border-radius: 50%;
    background: #ff6b6b;
}

.browser-bar span:nth-child(2) { background: #f8c14a; }
.browser-bar span:nth-child(3) { background: #36c275; }

.preview-page {
    position: relative;
    min-height: 360px;
    padding: 34px;
    background: #eef4fb;
}

.preview-nav,
.preview-card,
.preview-button {
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(23, 32, 51, .08);
}

.preview-nav {
    height: 54px;
    margin-bottom: 34px;
}

.preview-button {
    border: 0;
    background: var(--product-primary);
    color: #fff;
    font-weight: 800;
    padding: 13px 18px;
}

.preview-card {
    width: 62%;
    height: 120px;
    margin-top: 28px;
}

.selection-outline {
    position: absolute;
    left: 33px;
    top: 121px;
    width: 158px;
    height: 51px;
    border: 2px solid var(--product-accent);
    border-radius: 8px;
    pointer-events: none;
}

.floating-inspector {
    position: absolute;
    right: 22px;
    top: 104px;
    width: min(285px, calc(100% - 44px));
    border: 1px solid #182235;
    border-radius: 8px;
    background: #111827;
    color: #f8fafc;
    padding: 14px;
    box-shadow: 0 18px 42px rgba(17, 24, 39, .28);
}

.floating-inspector code {
    display: block;
    color: #b7f7dc;
    font-size: .82rem;
    white-space: normal;
}

.product-section {
    padding: 78px 0;
}

.section-muted {
    background: var(--product-bg);
}

.feature-tile,
.price-card,
.example-card,
.pricing-strip {
    border: 1px solid var(--product-line);
    border-radius: 8px;
    background: #fff;
}

.feature-tile {
    height: 100%;
    padding: 26px;
}

.feature-tile i {
    color: var(--product-primary);
    font-size: 1.8rem;
}

.feature-tile p,
.static-copy,
.price-card li {
    color: var(--product-muted);
}

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

.workflow-grid div {
    border: 1px solid var(--product-line);
    border-radius: 8px;
    background: #fff;
    padding: 22px;
}

.workflow-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: #e8f2ff;
    color: var(--product-primary);
    font-weight: 900;
}

.workflow-grid strong,
.workflow-grid small,
.product-footer a {
    display: block;
}

.workflow-grid small {
    color: var(--product-muted);
    margin-top: .4rem;
}

.pricing-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 30px;
}

.price-card {
    height: 100%;
    padding: 30px;
}

.price-card.recommended {
    border-color: rgba(21, 101, 192, .45);
    box-shadow: 0 18px 40px rgba(21, 101, 192, .12);
}

.price {
    margin: 1rem 0;
    font-size: 2.6rem;
    font-weight: 900;
}

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

.price-card ul {
    display: grid;
    gap: .55rem;
    padding-left: 1.1rem;
    margin-bottom: 1.4rem;
}

.feature-list {
    display: grid;
    gap: .9rem;
}

.feature-list div {
    display: grid;
    grid-template-columns: 28px 150px 1fr;
    gap: .75rem;
    align-items: start;
    border: 1px solid var(--product-line);
    border-radius: 8px;
    padding: 18px;
}

.feature-list i {
    color: var(--product-accent);
}

.feature-list span {
    color: var(--product-muted);
}

.demo-surface {
    position: relative;
    border: 1px solid var(--product-line);
    border-radius: 8px;
    background: #f4f7fb;
    padding: 22px;
    min-height: 440px;
}

.demo-nav,
.demo-panel,
.demo-grid article {
    border: 1px solid #dbe4f0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(23, 32, 51, .07);
}

.demo-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
}

.demo-nav button,
.demo-primary {
    border: 0;
    border-radius: 8px;
    background: var(--product-primary);
    color: #fff;
    font-weight: 800;
    padding: 10px 15px;
}

.demo-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    margin-top: 18px;
    padding: 28px;
}

.demo-panel span {
    display: inline-block;
    border-radius: 999px;
    background: #dff7ec;
    color: #13704f;
    font-size: .8rem;
    font-weight: 800;
    padding: 5px 10px;
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.demo-grid article {
    padding: 24px;
}

.demo-grid strong {
    display: block;
    font-size: 2.1rem;
}

.demo-inspector {
    position: absolute;
    z-index: 5;
    width: 280px;
    border-radius: 8px;
    background: #111827;
    color: #fff;
    padding: 14px;
    box-shadow: 0 18px 42px rgba(17, 24, 39, .28);
    pointer-events: none;
}

.demo-inspector code {
    display: block;
    color: #b7f7dc;
    white-space: normal;
}

.is-demo-target {
    outline: 2px solid var(--product-accent);
    outline-offset: 3px;
}

.example-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.example-tabs a {
    border: 1px solid var(--product-line);
    border-radius: 999px;
    color: var(--product-ink);
    padding: 8px 13px;
    text-decoration: none;
}

.example-tabs a.active {
    border-color: var(--product-primary);
    background: #e8f2ff;
    color: var(--product-primary);
    font-weight: 800;
}

.example-card {
    padding: 22px;
}

.btn-pro-primary {
    border: 0;
    border-radius: 8px;
    background: #1565c0;
    color: #fff;
    font-weight: 700;
    padding: 12px 18px;
    box-shadow: 0 8px 18px rgba(21, 101, 192, .22);
}

.btn-pro-outline {
    border: 1px solid #b7c4d4;
    border-radius: 8px;
    background: #fff;
    color: #213043;
    font-weight: 700;
    padding: 11px 17px;
}

.shadow-product-panel,
.shadow-floating-menu {
    width: 150px;
    height: 70px;
    border-radius: 8px;
    background: #fff;
}

.shadow-product-panel {
    box-shadow: 0 18px 40px rgba(26, 35, 50, .12);
}

.shadow-floating-menu {
    box-shadow: 0 6px 16px rgba(26, 35, 50, .14), 0 1px 2px rgba(26, 35, 50, .08);
}

.input-inspector {
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    min-height: 44px;
    padding: 10px 12px;
}

.example-preview {
    display: flex;
    align-items: center;
    min-height: 96px;
    margin: 1rem 0;
    border-radius: 8px;
    background: #f4f7fb;
    padding: 20px;
}

.example-card pre {
    max-height: 180px;
    overflow: auto;
    border-radius: 8px;
    background: #111827;
    color: #d1fae5;
    padding: 14px;
}

.product-footer {
    border-top: 1px solid var(--product-line);
    background: #f8fafc;
    padding: 46px 0;
}

.product-footer a {
    color: var(--product-muted);
    margin-top: .45rem;
    text-decoration: none;
}

@media (max-width: 991.98px) {
    .workflow-grid,
    .demo-grid {
        grid-template-columns: 1fr;
    }

    .pricing-strip,
    .demo-panel {
        align-items: stretch;
        flex-direction: column;
    }

    .feature-list div {
        grid-template-columns: 28px 1fr;
    }

    .feature-list span {
        grid-column: 2;
    }
}

@media (max-width: 575.98px) {
    .hero-scene .display-3 {
        font-size: 2.45rem;
    }

    .product-section {
        padding: 54px 0;
    }

    .preview-page {
        padding: 18px;
    }

    .floating-inspector {
        position: static;
        margin-top: 18px;
        width: 100%;
    }

    .selection-outline {
        display: none;
    }
}

.brand-mark-img {
  display: inline-block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex: 0 0 auto;
}
.product-footer .brand-mark-img {
  width: 40px;
  height: 40px;
}

