:root {
    --ink: #172328;
    --slate: #41545B;
    --slate-dark: #2A3A40;
    --green: #4BCC8E;
    --green-soft: #E8F7F0;
    --red: #FF5E5B;
    --paper: #FAFBFA;
    --white: #FFF;
    --warm: #F4EEE6;
    --warm-2: #E9DED1;
    --line: #D7E0DC;
    --line-strong: #C4D0CB;
    --muted: #65757B;
    --max: 1160px;
    --shadow: 0 18px 44px rgba(33, 49, 55, .09);
    --green-ink: #23704B;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    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
}

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

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.1;
    letter-spacing: -.035em
}

h1,
h2 {
    color: var(--slate)
}

h1 {
    font-size: clamp(43px, 5.7vw, 55px)
}

h2 {
    font-size: clamp(29px, 3.8vw, 43px)
}

h3 {
    font-size: 19px;
    color: var(--ink)
}

p {
    margin: 0
}

.lead {
    font-size: 17px;
    color: var(--muted);
    max-width: var(--max);
}

.small {
    font-size: 13px;
    color: var(--muted)
}

.eyebrow {
    margin: 0 0 11px;
    color: var(--ink);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .12em;
    text-transform: uppercase
}

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

.btn {
    min-height: 43px;
    padding: 0 17px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: .15s ease
}

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

.btn-primary {
    background: var(--slate);
    color: white
}

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

.btn-secondary {
    background: white;
    border-color: var(--line-strong)
}

.btn-ghost {
    color: white
}

.icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-grid;
    place-items: center;
    background: var(--green-soft);
    color: var(--slate);
    flex: none
}

.icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.icon.warm {
    background: var(--warm);
    color: var(--slate)
}

.icon.cold {
    background: var(--white);
    color: var(--slate)
}

.icon.dark {
    background: var(--slate);
    color: white
}

.icon.small-icon {
    width: 31px;
    height: 31px;
    border-radius: 8px
}

.icon.small-icon svg {
    width: 17px;
    height: 17px
}

header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(65, 84, 91, 1);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.nav {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 850;
    letter-spacing: -.02em;
    color: white
}

.brand-mark {
    width: 33px;
    height: 33px;
    border-radius: 8px;
    background: white;
    color: var(--slate);
    display: grid;
    place-items: center;
    font-size: 14px
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, .78)
}

.nav-links a {
    padding: 22px 0 19px;
    border-bottom: 3px solid transparent
}

.nav-links a:hover {
    color: white
}

.nav-links a[aria-current="page"] {
    font-weight: 700;
    color: white;
    border-color: var(--green)
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 9px
}

.nav-actions .btn-primary {
    background: var(--green);
    color: #17332A
}

.nav-actions .btn-primary:hover {
    background: #63D89F
}

.menu-btn {
    display: none
}

section {
    padding: 64px 0
}

.hero {
    padding: 72px 0 58px;
    background: linear-gradient(rgba(65, 84, 91, .026) 1px, transparent 1px), linear-gradient(90deg, rgba(65, 84, 91, .026) 1px, transparent 1px);
    background-size: 44px 44px
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 52px;
    align-items: center
}

.hero .lead {
    margin: 40px 0 25px
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 40px
}

.trust {
    border-top: 1px solid var(--line);
    padding-top: 10px;
    font-size: 12px;
    color: var(--muted)
}

.trust strong {
    display: block;
    color: var(--ink);
    font-size: 13px;
    margin-bottom: 2px
}

.product-frame {
    background: var(--warm);
    border: 1px solid var(--warm-2);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden
}

.product-top {
    height: 44px;
    background: var(--slate-dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    font-size: 12px
}

.dots {
    display: flex;
    gap: 6px
}

.dots i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .32)
}

.product-body {
    display: grid;
    grid-template-columns: 115px 1fr;
    min-height: 390px
}

.sidebar {
    background: #E7DDD1;
    border-right: 1px solid #D6C8B8;
    padding: 12px 8px
}

.sidebar div {
    padding: 8px;
    border-radius: 7px;
    font-size: 10px;
    color: #6E716F;
    margin-bottom: 4px
}

.sidebar .active {
    background: white;
    color: var(--slate);
    font-weight: 700
}

.workspace {
    padding: 16px
}

.workspace-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    margin-bottom: 12px
}

.status {
    padding: 4px 7px;
    border-radius: 99px;
    background: var(--green-soft);
    color: #23704B;
    font-size: 9px;
    font-weight: 700
}

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

.metric {
    background: white;
    border: 1px solid #DED2C5;
    border-radius: 8px;
    padding: 9px
}

.metric small {
    color: var(--muted)
}

.metric strong {
    display: block;
    font-size: 17px;
    margin-top: 2px
}

.home-map {
    margin-top: 10px;
    background: white;
    border: 1px solid #DED2C5;
    border-radius: 9px;
    padding: 11px
}

.home-map-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-top: 8px
}

.home-cell {
    background: #FAF7F2;
    border: 1px solid #E6DDD3;
    border-radius: 6px;
    padding: 7px;
    font-size: 9px
}

.home-cell strong {
    display: block;
    font-size: 10px;
    margin-bottom: 1px
}

.issue {
    margin-top: 9px;
    border-left: 3px solid var(--red);
    background: #FFF4F3;
    border-radius: 7px;
    padding: 9px;
    font-size: 10px
}

.band {
    background: var(--slate-dark);
    color: white;
    padding: 32px 0
}

.band-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 42px;
    align-items: center
}

.band h2 {
    color: white;
    font-size: clamp(27px, 3.5vw, 39px)
}

.band p {
    font-size: 16px;
    color: #D2DDDA
}

.section-head {
    max-width: var(--max); /*790px;*/
    margin-bottom: 28px
}

.section-head .lead {
    margin-top: 13px
}

.ecosystem {
    background: white;
    border: 1px solid var(--line);
    border-radius: 13px;
    padding: 24px;
    box-shadow: 0 12px 32px rgba(34, 50, 55, .055)
}

.eco-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr 1fr;
    gap: 18px;
    align-items: center
}

.stack {
    display: grid;
    gap: 8px
}

.stack-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 11px;
    background: #FCFDFC
}

.stack-card strong {
    display: block;
    font-size: 13px;
    margin-bottom: 2px
}

.stack-card small {
    font-size: 11px;
    color: var(--muted)
}

.core {
    border: 1px solid var(--slate);
    border-radius: 11px;
    background: var(--warm);
    padding: 17px
}

.core-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid #D9CDBF;
    padding-bottom: 11px;
    margin-bottom: 11px
}

.core-head strong {
    font-size: 19px
}

.badge {
    padding: 4px 6px;
    background: white;
    border: 1px solid #DDD2C6;
    border-radius: 99px;
    font-size: 9px;
    font-weight: 700
}

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

.core-cell {
    background: white;
    border: 1px solid #E0D6CA;
    border-radius: 6px;
    padding: 7px;
    font-size: 9px
}

.core-cell strong {
    display: block;
    font-size: 10px
}

.lifetime-strip {
    margin-top: 18px;
    background: var(--slate);
    color: white;
    border-radius: 12px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 17px 19px
}

.lifetime-strip .icon {
    background: rgba(255, 255, 255, .13);
    color: white
}

.lifetime-strip strong {
    display: block;
    font-size: 17px;
    margin-bottom: 2px
}

.lifetime-strip p {
    color: #DCE5E2;
    font-size: 13px
}

.lifetime-strip .mini-flow {
    font-size: 12px;
    color: #DCE5E2;
    white-space: nowrap
}

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

.card,
.pillar,
.role,
.fact,
.price {
    background: white;
    border: 1px solid var(--line);
    border-radius: 10px
}

.card {
    padding: 18px
}

.card-top {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 10px
}

.card h3 {
    margin: 0
}

.card p {
    font-size: 14px;
    color: var(--muted)
}

.pillars {
    background: #F0F4F2
}

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

.pillar {
    padding: 19px
}

.pillar h3 {
    margin: 11px 0 7px
}

.pillar p {
    font-size: 14px;
    color: var(--muted)
}

.link {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--slate)
}

.cta {
    padding: 54px 0;
    background: var(--slate-dark);
    color: white;
    text-align: center
}

.cta h2 {
    color: white
}

.cta p {
    max-width: 680px;
    margin: 14px auto 21px;
    color: #D2DDDA;
    font-size: 16px
}

.page-hero {
    padding: 58px 0 44px;
    border-bottom: 1px solid var(--line);
    background: white
}

.page-hero .lead {
    margin-top: 15px
}

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

.feature-list {
    display: grid;
    gap: 12px;
    margin-top: 18px
}

.feature {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 11px;
    align-items: start
}

.feature strong {
    display: block;
    font-size: 14px;
    margin: 1px 0 2px
}

.feature p {
    font-size: 13px;
    color: var(--muted)
}

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

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

.role {
    padding: 18px
}

.role .icon {
    margin-bottom: 10px
}

.role h3 {
    margin-bottom: 6px
}

.role p {
    font-size: 14px;
    color: var(--muted)
}

.workflow {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 7px;
    margin: 20px 0
}

.stage {
    text-align: center;
    font-size: 10px;
    color: var(--slate)
}

.stage span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 6px;
    background: var(--green-soft);
    border: 1px solid #BAD8C8;
    font-weight: 700
}

.stage.active span {
    background: var(--slate);
    border-color: var(--slate);
    color: white
}

.mock-app {
    background: var(--warm);
    border: 1px solid var(--warm-2);
    border-radius: 14px;
    box-shadow: var(--shadow);
    overflow: hidden
}

.mock-toolbar {
    height: 42px;
    background: var(--slate);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    font-size: 11px
}

.mock-content {
    padding: 14px
}

.mock-tabs {
    display: flex;
    gap: 6px;
    border-bottom: 1px solid #D7CABD;
    padding-bottom: 9px;
    margin-bottom: 11px
}

.mock-tab {
    font-size: 9px;
    padding: 5px 7px;
    border-radius: 6px;
    color: #6E7471
}

.mock-tab.active {
    background: white;
    color: var(--slate);
    font-weight: 700
}

.mock-panel {
    background: white;
    border: 1px solid #DED2C5;
    border-radius: 8px;
    padding: 10px
}

.mock-panel+.mock-panel {
    margin-top: 9px
}

.mock-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 8px
}

.mock-chip {
    font-size: 8px;
    padding: 3px 5px;
    border-radius: 99px;
    background: var(--green-soft);
    color: #26724F;
    font-weight: 700
}

.mock-table {
    display: grid
}

.mock-row-line {
    display: grid;
    grid-template-columns: 1.3fr .9fr .7fr;
    gap: 8px;
    font-size: 9px;
    padding: 6px 0;
    border-top: 1px solid #EEE7DF
}

.mock-row-line:first-child {
    border-top: 0
}

.mock-row-line span:last-child {
    text-align: right;
    color: var(--muted)
}

.mock-note {
    margin-top: 9px;
    padding: 8px;
    border-radius: 7px;
    background: #F8F5F0;
    border: 1px solid #E8DED3;
    font-size: 9px;
    color: #5E6966
}

.task-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    align-items: center;
    padding: 7px 0;
    border-top: 1px solid #EEE7DF;
    font-size: 9px
}

.task-row:first-child {
    border-top: 0
}

.task-check {
    width: 15px;
    height: 15px;
    border-radius: 4px;
    background: var(--green-soft);
    display: grid;
    place-items: center;
    color: #26724F;
    font-weight: 800
}

.task-due {
    color: var(--muted)
}

.portal-layout {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 10px
}

.portal-nav {
    display: grid;
    gap: 6px
}

.portal-nav div {
    padding: 7px;
    border-radius: 6px;
    background: #E7DDD1;
    font-size: 9px
}

.portal-nav .active {
    background: var(--slate);
    color: white
}

.feed-item {
    padding: 8px 0;
    border-top: 1px solid #EEE7DF;
    font-size: 9px
}

.feed-item:first-child {
    border-top: 0
}

.feed-item strong {
    display: block;
    font-size: 10px
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px
}

.dashboard-metric {
    background: white;
    border: 1px solid #DED2C5;
    border-radius: 7px;
    padding: 8px
}

.dashboard-metric strong {
    display: block;
    font-size: 16px;
    color: var(--slate)
}

.dashboard-metric small {
    font-size: 8px;
    color: var(--muted)
}

.bar-row {
    display: grid;
    grid-template-columns: 92px 1fr 28px;
    gap: 7px;
    align-items: center;
    font-size: 8px;
    padding: 6px 0
}

.bar-track {
    height: 7px;
    border-radius: 99px;
    background: #ECE5DC;
    overflow: hidden
}

.bar-fill {
    height: 100%;
    background: var(--green);
    border-radius: 99px
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px
}

.price {
    padding: 19px;
    display: flex;
    flex-direction: column
}

.price.featured {
    border: 2px solid var(--slate);
    position: relative
}

.price.featured:before {
    content: "Most common";
    position: absolute;
    top: -11px;
    left: 18px;
    background: var(--slate);
    color: white;
    border-radius: 99px;
    padding: 4px 8px;
    font-size: 9px;
    font-weight: 700
}

.price h3 {
    min-height: 42px
}

.price-value {
    font-size: 30px;
    font-weight: 750;
    color: var(--slate);
    margin: 11px 0 4px
}

.price-value small {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500
}

.price .small {
    min-height: 38px
}

.price .btn {
    margin-top: 16px
}

.pricing-principles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px
}

.principle {
    background: white;
    border: 1px solid var(--line);
    border-radius: 9px;
    padding: 14px
}

.principle .icon {
    margin-bottom: 8px
}

.principle strong {
    display: block;
    font-size: 13px;
    margin-bottom: 2px
}

.about-grid {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 42px;
    align-items: center
}

.photo-placeholder {
    aspect-ratio: 4/5;
    border-radius: 13px;
    background: linear-gradient(145deg, #E9DED1, #BFCAC6);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    text-align: center;
    padding: 20px;
    color: var(--slate)
}

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

.fact {
    padding: 12px
}

.form-wrap {
    max-width: 720px;
    margin: 0 auto;
    background: white;
    border: 1px solid var(--line);
    border-radius: 13px;
    padding: 24px
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px
}

label {
    display: grid;
    gap: 5px;
    font-size: 12px;
    font-weight: 700
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 11px;
    background: white;
    color: var(--ink)
}

textarea {
    min-height: 105px;
    resize: vertical
}

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

footer {
    background: #1C292E;
    color: #C7D2CE;
    padding: 36px 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    gap: 28px
}

.footer-title {
    color: white;
    font-weight: 700;
    margin-bottom: 9px
}

.footer-links {
    display: grid;
    gap: 8px;
    font-size: 13px
}

@media(max-width:1000px) {
    .nav-links {
        display: none
    }

    .menu-btn {
        display: inline-flex
    }

    .hero-grid,
    .band-grid,
    .split,
    .about-grid {
        grid-template-columns: 1fr
    }

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

    .outcomes,
    .pillar-grid,
    .role-grid {
        grid-template-columns: repeat(2, 1fr)
    }

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

    .product-frame {
        max-width: 760px
    }
}

@media(max-width:720px) {
    .container {
        width: min(calc(100% - 28px), var(--max))
    }

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

    h1 {
        font-size: 42px
    }

    .hero {
        padding: 52px 0 48px
    }

    .trust-row,
    .outcomes,
    .pillar-grid,
    .feature-grid,
    .role-grid,
    .fact-grid,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr
    }

    .product-body {
        grid-template-columns: 1fr
    }

    .sidebar {
        display: none
    }

    .workflow {
        grid-template-columns: repeat(4, 1fr)
    }

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

    .lifetime-strip {
        grid-template-columns: auto 1fr
    }

    .lifetime-strip .mini-flow {
        grid-column: 1/-1;
        white-space: normal
    }

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

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

    section {
        padding: 52px 0
    }
}

@media(max-width:520px) {

    .price-grid,
    .pricing-principles {
        grid-template-columns: 1fr
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}
 
/* --- External links inside fact tiles --- */
.fact a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--green-ink);
    border-bottom: 1px solid rgba(35, 112, 75, .3);
    transition: border-color .15s ease
}
 
.fact a:hover {
    border-bottom-color: var(--green-ink)
}
 
.fact a:focus-visible {
    outline: 2px solid var(--green-ink);
    outline-offset: 3px;
    border-radius: 2px
}
 
.fact a .ext {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: none;
    opacity: .7
}
 
.fact a:hover .ext {
    opacity: 1
}
 
/* --- Profile link chip --- */
.profile-links {
    margin-top: 18px
}
 
.profile-links a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: var(--slate);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    transition: border-color .15s ease, color .15s ease, box-shadow .15s ease
}
 
.profile-links a:hover {
    border-color: var(--green);
    color: var(--ink);
    box-shadow: 0 6px 16px rgba(33, 49, 55, .08)
}
 
.profile-links a:focus-visible {
    outline: 2px solid var(--green-ink);
    outline-offset: 3px
}
 
.profile-links a .brandmark {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex: none;
    color: #0A66C2
}
 
.profile-links a:hover .brandmark {
    color: #004182
}