:root {
    --blue: #3b82f6;
    --blue-deep: #245fbd;
    --blue-soft: #eaf2ff;
    --green: #10b981;
    --green-deep: #087c5b;
    --green-soft: #e8faf4;
    --ink: #142239;
    --text: #40516a;
    --muted: #6b7b90;
    --line: #dfe7f1;
    --surface: #ffffff;
    --background: #f7f9fc;
    --shadow: 0 24px 70px rgba(27, 61, 107, 0.12);
    --shadow-soft: 0 16px 40px rgba(27, 61, 107, 0.08);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background: var(--background);
    color: var(--ink);
    font-family: Verdana, Arial, sans-serif;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

img {
    max-width: 100%;
}

.skip-link {
    position: fixed;
    top: 0.5rem;
    left: 0.5rem;
    z-index: 200;
    padding: 0.75rem 1rem;
    border-radius: 9px;
    background: var(--ink);
    color: #fff;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.landing-container {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.landing-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    min-height: 74px;
    border-bottom: 1px solid transparent;
    background: rgba(247, 249, 252, 0.82);
    backdrop-filter: blur(18px);
    transition: min-height 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.landing-header.is-scrolled {
    min-height: 64px;
    border-color: rgba(203, 213, 225, 0.7);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 28px rgba(27, 61, 107, 0.07);
}

.landing-header__inner {
    display: flex;
    min-height: inherit;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.landing-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.72rem;
    color: var(--ink);
    text-decoration: none;
}

.landing-brand__mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(59, 130, 246, 0.14);
    border-radius: 13px;
    background: linear-gradient(135deg, #fff, var(--blue-soft));
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.11);
}

.landing-brand__mark img {
    width: 29px;
    height: 29px;
    object-fit: contain;
}

.landing-brand strong,
.landing-brand small {
    display: block;
}

.landing-brand strong {
    font-size: 0.94rem;
    line-height: 1.05;
}

.landing-brand small {
    margin-top: 0.15rem;
    color: var(--muted);
    font-size: 0.7rem;
    letter-spacing: 0.04em;
}

.landing-navigation {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.landing-navigation__links,
.landing-navigation__actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.landing-navigation__links {
    margin-left: auto;
}

.landing-navigation__links a {
    padding: 0.62rem 0.72rem;
    border-radius: 9px;
    color: #536279;
    font-size: 0.76rem;
    font-weight: 700;
    text-decoration: none;
}

.landing-navigation__links a:hover,
.landing-navigation__links a:focus-visible {
    background: var(--blue-soft);
    color: var(--blue-deep);
    outline: none;
}

.button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.7rem 1rem;
    border: 1px solid transparent;
    border-radius: 11px;
    font-size: 0.75rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 150ms ease, background 150ms ease, color 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

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

.button:focus-visible {
    outline: 3px solid rgba(59, 130, 246, 0.25);
    outline-offset: 3px;
}

.button--primary {
    background: linear-gradient(135deg, var(--blue), #3778e5);
    color: #fff;
    box-shadow: 0 9px 22px rgba(59, 130, 246, 0.22);
}

.button--primary:hover {
    background: linear-gradient(135deg, var(--blue), var(--green));
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.2);
}

.button--ghost {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.72);
    color: #45566d;
}

.button--ghost:hover,
.button--soft:hover {
    border-color: #bfd0e5;
    background: #fff;
    color: var(--blue-deep);
}

.button--soft {
    border-color: #d9e5f4;
    background: var(--blue-soft);
    color: var(--blue-deep);
}

.button--large {
    min-height: 50px;
    padding: 0.82rem 1.18rem;
    border-radius: 13px;
    font-size: 0.8rem;
}

.button--white {
    background: #fff;
    color: var(--blue-deep);
    box-shadow: 0 12px 30px rgba(10, 60, 120, 0.16);
}

.button--outline-white {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.button--outline-white:hover {
    background: #fff;
    color: var(--blue-deep);
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: #fff;
    color: var(--ink);
    cursor: pointer;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    padding: 142px 0 88px;
    background:
        linear-gradient(180deg, rgba(247, 249, 252, 0.2), var(--background)),
        linear-gradient(120deg, #f8fbff, #f4fbf8);
}

.hero::before {
    position: absolute;
    inset: 0;
    content: '';
    opacity: 0.36;
    background-image: radial-gradient(rgba(59, 130, 246, 0.18) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(to bottom, #000, transparent 75%);
    pointer-events: none;
}

.hero__glow {
    position: absolute;
    width: 470px;
    height: 470px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.18;
}

.hero__glow--blue {
    top: -170px;
    left: -160px;
    background: var(--blue);
}

.hero__glow--green {
    right: -160px;
    bottom: -130px;
    background: var(--green);
}

.hero__layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.1rem;
    padding: 0.4rem 0.65rem 0.4rem 0.45rem;
    border: 1px solid #dce8f7;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #50647d;
    font-size: 0.68rem;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(27, 61, 107, 0.05);
}

.hero__eyebrow span {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 50%;
    background: var(--green-soft);
    color: var(--green);
}

.hero h1 {
    max-width: 640px;
    margin: 0;
    font-size: clamp(2.35rem, 5.2vw, 4.15rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.hero h1 span {
    position: relative;
    color: transparent;
    background: linear-gradient(100deg, var(--blue), var(--green));
    background-clip: text;
}

.hero__lead {
    max-width: 610px;
    margin: 1.35rem 0 0;
    color: var(--text);
    font-size: clamp(1rem, 1.5vw, 1.12rem);
    line-height: 1.75;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.75rem;
}

.hero__reassurance {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.1rem;
    margin: 1.35rem 0 0;
    padding: 0;
    color: #596b82;
    font-size: 0.68rem;
    list-style: none;
}

.hero__reassurance li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero__reassurance i {
    color: var(--green);
}

.independence-note {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    margin: 1rem 0 0;
    color: #8794a6;
    font-size: 0.62rem;
    line-height: 1.5;
}

.independence-note i {
    margin-top: 0.12rem;
}

.hero-product {
    position: relative;
    min-width: 0;
    perspective: 1300px;
}

.product-window {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 36px 90px rgba(29, 71, 126, 0.2), 0 3px 12px rgba(29, 71, 126, 0.08);
    transform: rotateY(-3deg) rotateX(1.5deg);
}

.product-window__bar {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    height: 42px;
    padding: 0 0.85rem;
    border-bottom: 1px solid #e8edf4;
    background: #fbfcfe;
}

.product-window__bar > span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cad4e1;
}

.product-window__bar > span:first-child {
    background: #f49a98;
}

.product-window__bar > span:nth-child(2) {
    background: #f4cf75;
}

.product-window__bar > span:nth-child(3) {
    background: #78d7ac;
}

.product-window__bar strong {
    margin-left: 0.65rem;
    color: #708097;
    font-size: 0.58rem;
}

.product-window__body {
    display: grid;
    grid-template-columns: 56px 1fr;
    min-height: 410px;
}

.product-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0.55rem;
    background: #1d2e47;
}

.product-sidebar__logo,
.product-sidebar > span {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 9px;
    color: #8fa1b9;
    font-size: 0.68rem;
}

.product-sidebar__logo {
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--blue), var(--green));
    color: #fff;
}

.product-sidebar > span.is-active {
    background: rgba(59, 130, 246, 0.22);
    color: #7fb0ff;
}

.product-dashboard {
    min-width: 0;
    padding: 1.15rem;
    background: #f5f8fc;
}

.product-dashboard__welcome,
.product-register__heading,
.product-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.product-dashboard__welcome small,
.product-dashboard__welcome strong {
    display: block;
}

.product-dashboard__welcome small {
    color: #7b899c;
    font-size: 0.55rem;
}

.product-dashboard__welcome strong {
    margin-top: 0.22rem;
    font-size: 0.76rem;
}

.product-dashboard__welcome > span {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 9px;
    background: #fff;
    color: #708097;
    font-size: 0.62rem;
}

.product-stats {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 0.6rem;
    margin-top: 1rem;
}

.product-stats > div {
    min-width: 0;
    padding: 0.78rem;
    border: 1px solid #e6ecf4;
    border-radius: 11px;
    background: #fff;
}

.product-stats span,
.product-stats strong,
.product-stats small {
    display: block;
}

.product-stats span {
    color: #8390a2;
    font-size: 0.5rem;
}

.product-stats strong {
    margin-top: 0.35rem;
    overflow: hidden;
    font-size: 0.74rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-stats small {
    margin-top: 0.3rem;
    color: #8a97a8;
    font-size: 0.46rem;
}

.positive {
    color: var(--green-deep) !important;
}

.negative {
    color: #c64242 !important;
}

.product-register {
    margin-top: 0.7rem;
    padding: 0.85rem;
    border: 1px solid #e6ecf4;
    border-radius: 12px;
    background: #fff;
}

.product-register__heading strong,
.product-register__heading small {
    display: block;
}

.product-register__heading strong {
    font-size: 0.66rem;
}

.product-register__heading small {
    margin-top: 0.18rem;
    color: #8b98a9;
    font-size: 0.47rem;
}

.product-register__heading button {
    padding: 0.42rem 0.55rem;
    border: 0;
    border-radius: 7px;
    background: var(--blue);
    color: #fff;
    font-size: 0.48rem;
}

.product-row {
    justify-content: flex-start;
    margin-top: 0.7rem;
    padding-top: 0.7rem;
    border-top: 1px solid #edf1f6;
}

.product-row__icon {
    display: grid;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 8px;
    font-size: 0.5rem;
}

.product-row__icon.income {
    background: var(--green-soft);
    color: var(--green-deep);
}

.product-row__icon.expense {
    background: #fff0f0;
    color: #c64242;
}

.product-row > div {
    min-width: 0;
}

.product-row > div strong,
.product-row > div small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-row > div strong {
    font-size: 0.55rem;
}

.product-row > div small {
    margin-top: 0.18rem;
    color: #8b98a9;
    font-size: 0.44rem;
}

.product-row b {
    margin-left: auto;
    font-size: 0.55rem;
    white-space: nowrap;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 42px rgba(28, 68, 120, 0.18);
    backdrop-filter: blur(12px);
}

.floating-card > span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 10px;
    font-size: 0.65rem;
}

.floating-card strong,
.floating-card small {
    display: block;
    white-space: nowrap;
}

.floating-card strong {
    font-size: 0.61rem;
}

.floating-card small {
    margin-top: 0.18rem;
    color: #7b899b;
    font-size: 0.48rem;
}

.floating-card--roles {
    top: -28px;
    right: -22px;
}

.floating-card--roles > span {
    background: var(--blue-soft);
    color: var(--blue);
}

.floating-card--ocr {
    bottom: -30px;
    left: -24px;
}

.floating-card--ocr > span {
    background: var(--green-soft);
    color: var(--green-deep);
}

.problem-section {
    padding: 4.5rem 0;
    border-top: 1px solid rgba(203, 213, 225, 0.55);
    border-bottom: 1px solid rgba(203, 213, 225, 0.55);
    background: #fff;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 7vw, 6rem);
    align-items: center;
}

.section {
    padding: clamp(5rem, 9vw, 7.5rem) 0;
}

.section-kicker {
    margin: 0 0 0.7rem;
    color: var(--blue);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.section-heading h2,
.collaboration-copy h2,
.story-card__copy h2,
.final-cta h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3.8vw, 3rem);
    line-height: 1.13;
    letter-spacing: -0.035em;
}

.section-heading > p:last-child {
    max-width: 680px;
    margin: 1rem auto 0;
    color: var(--muted);
    line-height: 1.7;
}

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

.problem-copy p {
    margin: 0;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.8;
}

.problem-copy p + p {
    margin-top: 1rem;
}

.problem-copy strong {
    color: var(--ink);
}

.features {
    background: var(--background);
}

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

.feature-card {
    position: relative;
    overflow: hidden;
    min-height: 245px;
    padding: 1.5rem;
    border: 1px solid rgba(203, 213, 225, 0.72);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
    border-color: #bfd3ed;
    box-shadow: 0 22px 54px rgba(27, 61, 107, 0.11);
    transform: translateY(-4px);
}

.feature-card--large {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: auto minmax(0, 1fr) minmax(240px, 0.75fr);
    gap: 1.25rem;
    min-height: 310px;
    align-items: start;
    background: linear-gradient(135deg, #fff, #f6faff);
}

.feature-card__icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 13px;
    background: var(--blue-soft);
    color: var(--blue);
}

.feature-card__icon--green {
    background: var(--green-soft);
    color: var(--green-deep);
}

.feature-card__label {
    margin: 1rem 0 0.45rem;
    color: var(--blue);
    font-size: 0.62rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.feature-card--large .feature-card__label {
    margin-top: 0;
}

.feature-card h3 {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.35;
}

.feature-card--large h3 {
    font-size: 1.35rem;
}

.feature-card > p:last-child,
.feature-card > div > p {
    margin: 0.7rem 0 0;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.7;
}

.feature-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    margin: 1rem 0 0;
    padding: 0;
    color: #53667e;
    font-size: 0.68rem;
    list-style: none;
}

.feature-card li i {
    margin-right: 0.3rem;
    color: var(--green);
}

.mini-chart {
    display: flex;
    height: 180px;
    align-items: flex-end;
    justify-content: center;
    gap: 0.55rem;
    align-self: center;
    padding: 1.2rem 1rem 0;
    border: 1px solid #e1e9f3;
    border-radius: 14px;
    background:
        repeating-linear-gradient(to top, transparent 0, transparent 39px, #edf2f7 40px),
        #fff;
}

.mini-chart span {
    width: 22px;
    height: var(--height);
    border-radius: 7px 7px 3px 3px;
    background: linear-gradient(to top, var(--blue), #7cb5ff);
}

.mini-chart span:nth-child(even) {
    background: linear-gradient(to top, var(--green), #69d9b4);
}

.mini-chart__bar--38 { --height: 38%; }
.mini-chart__bar--62 { --height: 62%; }
.mini-chart__bar--47 { --height: 47%; }
.mini-chart__bar--84 { --height: 84%; }
.mini-chart__bar--70 { --height: 70%; }
.mini-chart__bar--96 { --height: 96%; }

.collaboration {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.collaboration::before {
    position: absolute;
    top: 10%;
    left: -180px;
    width: 420px;
    height: 420px;
    content: '';
    border-radius: 50%;
    background: var(--blue-soft);
    filter: blur(2px);
    opacity: 0.6;
}

.collaboration-layout {
    position: relative;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(2.5rem, 8vw, 7rem);
    align-items: center;
}

.collaboration-copy > p:not(.section-kicker) {
    margin: 1.15rem 0 0;
    color: var(--muted);
    line-height: 1.75;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.35rem;
    color: var(--blue-deep);
    font-size: 0.75rem;
    font-weight: 850;
    text-decoration: none;
}

.text-link:hover i {
    transform: translateX(4px);
}

.text-link i {
    transition: transform 150ms ease;
}

.role-stack {
    display: grid;
    gap: 0.75rem;
}

.role-stack article {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.9rem;
    align-items: center;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(27, 61, 107, 0.06);
    transition: transform 160ms ease, border-color 160ms ease;
}

.role-stack article:hover {
    border-color: #bfd3ed;
    transform: translateX(5px);
}

.role-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
}

.role-icon--blue {
    background: var(--blue-soft);
    color: var(--blue);
}

.role-icon--green {
    background: var(--green-soft);
    color: var(--green-deep);
}

.role-icon--purple {
    background: #f0eaff;
    color: #7450be;
}

.role-icon--orange {
    background: #fff3e4;
    color: #c67419;
}

.role-stack strong,
.role-stack p {
    display: block;
    margin: 0;
}

.role-stack strong {
    font-size: 0.78rem;
}

.role-stack p {
    margin-top: 0.28rem;
    color: var(--muted);
    font-size: 0.68rem;
    line-height: 1.4;
}

.role-stack article > small {
    padding: 0.34rem 0.5rem;
    border-radius: 999px;
    background: #f4f7fb;
    color: #718096;
    font-size: 0.55rem;
    font-weight: 800;
    white-space: nowrap;
}

.steps {
    background: linear-gradient(180deg, #f7f9fc, #f3f8fc);
}

.steps-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 3rem 0 0;
    padding: 0;
    list-style: none;
}

.steps-grid::before {
    position: absolute;
    top: 49px;
    right: 16%;
    left: 16%;
    height: 2px;
    content: '';
    background: linear-gradient(90deg, var(--blue-soft), #cce8df, var(--green-soft));
}

.steps-grid li {
    position: relative;
    padding: 1.5rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.steps-grid li > span {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #c2ccda;
    font-size: 0.62rem;
    font-weight: 850;
}

.steps-grid li > i {
    display: grid;
    width: 54px;
    height: 54px;
    margin: 0 auto;
    place-items: center;
    border-radius: 16px;
    background: var(--blue-soft);
    color: var(--blue);
    box-shadow: 0 0 0 9px #fff;
}

.steps-grid li:nth-child(2) > i {
    background: linear-gradient(135deg, var(--blue-soft), var(--green-soft));
    color: #398a78;
}

.steps-grid li:nth-child(3) > i {
    background: var(--green-soft);
    color: var(--green-deep);
}

.steps-grid h3 {
    margin: 1.2rem 0 0;
    font-size: 0.9rem;
}

.steps-grid p {
    margin: 0.6rem 0 0;
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.65;
}

.story {
    background: #fff;
}

.story-card {
    display: grid;
    grid-template-columns: 0.55fr 1.45fr;
    gap: clamp(2rem, 7vw, 6rem);
    overflow: hidden;
    padding: clamp(1.5rem, 4vw, 3.5rem);
    border: 1px solid #dce6f2;
    border-radius: 26px;
    background:
        radial-gradient(circle at 10% 10%, rgba(59, 130, 246, 0.11), transparent 18rem),
        linear-gradient(135deg, #f8fbff, #f5fbf8);
    box-shadow: var(--shadow);
}

.story-card__visual {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.story-card__logo {
    display: grid;
    width: 124px;
    height: 124px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 22px 55px rgba(41, 81, 131, 0.13);
    transform: rotate(-3deg);
}

.story-card__logo img {
    width: 88px;
}

.story-card__line {
    width: 1px;
    height: 54px;
    margin: 1.1rem 0 0.7rem;
    background: linear-gradient(var(--blue), var(--green));
}

.story-card__visual small {
    color: #718096;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.story-card__copy > p:not(.section-kicker) {
    margin: 1rem 0 0;
    color: var(--text);
    font-size: 0.84rem;
    line-height: 1.8;
}

.story-card blockquote {
    margin: 1.35rem 0 0;
    padding: 1rem 1.1rem;
    border-left: 3px solid var(--green);
    border-radius: 0 12px 12px 0;
    background: rgba(255, 255, 255, 0.7);
    color: #315348;
    font-size: 0.77rem;
    font-weight: 700;
    line-height: 1.65;
}

.final-cta {
    padding: 1rem 0 5rem;
    background: #fff;
}

.final-cta__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    overflow: hidden;
    padding: clamp(2rem, 5vw, 3.5rem);
    border-radius: 24px;
    background: linear-gradient(125deg, #337bec, #238cc9 50%, #0faa80);
    color: #fff;
    box-shadow: 0 24px 60px rgba(36, 107, 185, 0.24);
}

.final-cta__inner::after {
    position: absolute;
    right: -90px;
    bottom: -160px;
    width: 340px;
    height: 340px;
    content: '';
    border: 55px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.final-cta .section-kicker {
    color: rgba(255, 255, 255, 0.78);
}

.final-cta h2 {
    max-width: 700px;
    font-size: clamp(1.7rem, 3.6vw, 2.8rem);
}

.final-cta p:last-child {
    margin: 0.8rem 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
}

.final-cta__actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex: 0 0 auto;
    gap: 0.65rem;
}

.landing-footer {
    padding-top: 4rem;
    border-top: 1px solid var(--line);
    background: #f4f7fb;
}

.landing-footer__top {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 2rem;
    padding-bottom: 3rem;
}

.landing-footer__brand p {
    max-width: 300px;
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 0.7rem;
    line-height: 1.65;
}

.landing-footer__column {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.6rem;
}

.landing-footer__column strong {
    margin-bottom: 0.25rem;
    font-size: 0.7rem;
}

.landing-footer__column a,
.landing-footer__column span {
    color: var(--muted);
    font-size: 0.65rem;
    line-height: 1.5;
    text-decoration: none;
}

.landing-footer__column a:hover {
    color: var(--blue-deep);
}

.landing-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.1rem;
    padding-bottom: 1.4rem;
    border-top: 1px solid var(--line);
    color: #8290a2;
    font-size: 0.6rem;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1050px) {
    .hero {
        padding-top: 124px;
    }

    .hero__layout {
        grid-template-columns: 1fr;
    }

    .hero__content {
        max-width: 760px;
        text-align: center;
        justify-self: center;
    }

    .hero__eyebrow,
    .hero__actions,
    .hero__reassurance {
        justify-content: center;
    }

    .independence-note {
        justify-content: center;
    }

    .hero-product {
        width: min(720px, 100%);
        margin: 2rem auto 0;
    }

    .product-window {
        transform: none;
    }

    .collaboration-layout {
        grid-template-columns: 1fr 1.25fr;
        gap: 2rem;
    }

    .final-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 820px) {
    .mobile-menu-button {
        display: inline-grid;
        place-items: center;
    }

    .landing-navigation {
        position: fixed;
        top: 74px;
        right: 1rem;
        left: 1rem;
        display: none;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        align-items: stretch;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        border: 1px solid var(--line);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow);
    }

    .landing-navigation.is-open {
        display: flex;
    }

    .landing-navigation__links,
    .landing-navigation__actions {
        align-items: stretch;
        flex-direction: column;
        margin: 0;
    }

    .landing-navigation__links a {
        padding: 0.85rem;
    }

    .problem-grid,
    .collaboration-layout,
    .story-card {
        grid-template-columns: 1fr;
    }

    .feature-card--large {
        grid-template-columns: auto 1fr;
    }

    .mini-chart {
        grid-column: 1 / -1;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid::before {
        display: none;
    }

    .story-card__visual {
        padding: 1rem 0;
    }

    .story-card__line {
        height: 30px;
    }

    .landing-footer__top {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .landing-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    .landing-container {
        width: min(100% - 1.25rem, 1180px);
    }

    .hero {
        min-height: auto;
        padding: 112px 0 72px;
    }

    .hero h1 {
        font-size: clamp(2.15rem, 12vw, 3.15rem);
    }

    .hero__actions,
    .final-cta__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero__actions .button,
    .final-cta__actions .button {
        width: 100%;
    }

    .hero__reassurance {
        align-items: flex-start;
        flex-direction: column;
        width: max-content;
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
        text-align: left;
    }

    .product-window__body {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .product-sidebar {
        padding-right: 0.3rem;
        padding-left: 0.3rem;
    }

    .product-sidebar__logo,
    .product-sidebar > span {
        width: 28px;
        height: 28px;
    }

    .product-dashboard {
        padding: 0.7rem;
    }

    .product-stats {
        grid-template-columns: 1fr 1fr;
    }

    .product-stats > div:first-child {
        grid-column: 1 / -1;
    }

    .floating-card {
        display: none;
    }

    .product-row:nth-child(n + 4) {
        display: none;
    }

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

    .feature-card--large {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .mini-chart {
        grid-column: auto;
    }

    .role-stack article {
        grid-template-columns: auto 1fr;
    }

    .role-stack article > small {
        display: none;
    }

    .final-cta__inner {
        padding: 1.5rem;
    }

    .landing-footer__top {
        grid-template-columns: 1fr 1fr;
    }

    .landing-footer__brand,
    .landing-footer__column:last-child {
        grid-column: 1 / -1;
    }

    .landing-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

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