@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
    --ink: #10162f;
    --ink-soft: #4b536d;
    --navy: #111936;
    --navy-deep: #090d22;
    --violet: #7257f5;
    --violet-dark: #5940d9;
    --cyan: #18b6c9;
    --cyan-soft: #dff9fb;
    --line: #e7e9f2;
    --surface: #ffffff;
    --surface-soft: #f7f8fc;
    --success: #17856f;
    --shadow: 0 24px 70px rgba(22, 26, 60, .12);
    --shadow-soft: 0 12px 36px rgba(27, 31, 70, .08);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-color: var(--violet) #eef0f7;
    scrollbar-width: thin;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: #eef0f7;
}

body::-webkit-scrollbar-thumb {
    border: 2px solid #eef0f7;
    border-radius: 99px;
    background: linear-gradient(var(--violet), var(--cyan));
}

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

img {
    display: block;
    max-width: 100%;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid rgba(24, 182, 201, .45);
    outline-offset: 3px;
}

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

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

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

.section {
    padding: 108px 0;
}

.section-soft {
    background:
        radial-gradient(circle at 9% 15%, rgba(114, 87, 245, .08), transparent 23%),
        radial-gradient(circle at 91% 85%, rgba(24, 182, 201, .09), transparent 24%),
        var(--surface-soft);
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    height: 84px;
    border-bottom: 1px solid transparent;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(18px);
    transition: height .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
    height: 74px;
    border-color: rgba(218, 220, 233, .8);
    box-shadow: 0 10px 34px rgba(27, 31, 70, .06);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand-logo {
    width: 176px;
}

.site-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-menu > a:not(.button) {
    padding: .65rem .8rem;
    border-radius: 10px;
    color: #515972;
    font-size: .94rem;
    font-weight: 600;
    transition: color .2s ease, background .2s ease;
}

.site-menu > a:not(.button):hover,
.site-menu > a[aria-current="page"]:not(.button) {
    color: var(--ink);
    background: #f1f0fb;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 9px;
    background: var(--ink);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    min-height: 48px;
    padding: .75rem 1.25rem;
    border: 1px solid transparent;
    border-radius: 13px;
    font-weight: 700;
    line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button-primary {
    color: #fff;
    background: linear-gradient(105deg, var(--violet), #526de7 58%, var(--cyan));
    box-shadow: 0 12px 28px rgba(89, 64, 217, .25);
}

.button-primary:hover {
    box-shadow: 0 16px 34px rgba(89, 64, 217, .33);
}

.button-secondary {
    border-color: #dfe2ec;
    color: var(--ink);
    background: rgba(255, 255, 255, .85);
}

.button-secondary:hover {
    border-color: #cfd3e1;
    box-shadow: var(--shadow-soft);
}

.button-small {
    min-height: 42px;
    padding: .65rem 1rem;
    font-size: .9rem;
}

.arrow {
    font-size: 1.15em;
    transition: transform .2s ease;
}

.button:hover .arrow,
.text-link:hover .arrow {
    transform: translateX(3px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 18px;
    color: var(--violet-dark);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 22px;
    height: 2px;
    border-radius: 9px;
    background: linear-gradient(90deg, var(--violet), var(--cyan));
    content: "";
}

.hero {
    position: relative;
    min-height: 780px;
    padding: 174px 0 110px;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 16%, rgba(114, 87, 245, .14), transparent 24%),
        radial-gradient(circle at 91% 80%, rgba(24, 182, 201, .13), transparent 27%),
        linear-gradient(180deg, #fbfaff 0%, #fff 82%);
}

.hero::before,
.hero::after {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    content: "";
}

.hero::before {
    top: 132px;
    right: -120px;
    width: 410px;
    height: 410px;
    border: 1px solid rgba(114, 87, 245, .12);
    box-shadow: inset 0 0 0 52px rgba(114, 87, 245, .025), inset 0 0 0 104px rgba(24, 182, 201, .025);
}

.hero::after {
    bottom: 48px;
    left: -70px;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(114, 87, 245, .08), rgba(24, 182, 201, .05));
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(540px, 1.1fr);
    align-items: center;
    gap: 64px;
}

.hero-copy h1,
.page-hero h1 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    letter-spacing: -.055em;
    line-height: 1.04;
}

.hero-copy h1 {
    max-width: 650px;
    font-size: clamp(3rem, 5.2vw, 5rem);
}

.gradient-text {
    color: transparent;
    background: linear-gradient(100deg, var(--violet-dark) 5%, #526de7 48%, #0b99aa 92%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-lead {
    max-width: 590px;
    margin: 25px 0 31px;
    color: var(--ink-soft);
    font-size: 1.13rem;
}

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

.hero-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 24px 0 0;
    color: #657087;
    font-size: .89rem;
}

.hero-note::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 5px rgba(23, 133, 111, .11);
    content: "";
}

.product-stage {
    position: relative;
}

.product-glow {
    position: absolute;
    inset: 8% 5% -9%;
    border-radius: 50%;
    background: linear-gradient(110deg, rgba(114, 87, 245, .28), rgba(24, 182, 201, .2));
    filter: blur(58px);
}

.product-window {
    position: relative;
    overflow: hidden;
    min-height: 506px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 26px;
    background: #f7f8fc;
    box-shadow: 0 38px 100px rgba(32, 26, 84, .22), 0 4px 15px rgba(30, 34, 67, .08);
    transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.window-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 45px;
    padding: 0 16px;
    border-bottom: 1px solid #e9eaf1;
    background: rgba(255, 255, 255, .9);
}

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

.window-bar span {
    margin-left: auto;
    color: #8990a3;
    font-size: .69rem;
    font-style: normal;
    font-weight: 600;
}

.product-ui {
    display: grid;
    grid-template-columns: 122px 1fr;
    min-height: 460px;
}

.mock-sidebar {
    padding: 21px 14px;
    color: #dfe2f2;
    background:
        radial-gradient(circle at 20% 12%, rgba(24, 182, 201, .18), transparent 27%),
        linear-gradient(165deg, var(--navy), #2d245f 58%, #243c68);
}

.mock-brand {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 27px;
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: .76rem;
    font-weight: 800;
}

.mock-brand img {
    width: 25px;
}

.mock-nav {
    display: grid;
    gap: 9px;
}

.mock-nav span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 9px;
    border-radius: 8px;
    font-size: .58rem;
    font-weight: 600;
}

.mock-nav span::before {
    width: 7px;
    height: 7px;
    border: 1px solid currentColor;
    border-radius: 2px;
    content: "";
}

.mock-nav span.active {
    color: #fff;
    background: linear-gradient(100deg, rgba(126, 103, 249, .92), rgba(29, 185, 199, .62));
}

.mock-main {
    padding: 25px 24px;
}

.mock-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.mock-topline strong {
    font-family: "Manrope", sans-serif;
    font-size: .98rem;
}

.mock-avatar {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(135deg, var(--violet), var(--cyan));
    font-size: .58rem;
    font-weight: 800;
}

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

.mock-metric {
    padding: 13px;
    border: 1px solid #eaebf2;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 15px rgba(34, 39, 73, .04);
}

.mock-metric small {
    display: block;
    margin-bottom: 5px;
    color: #8b91a3;
    font-size: .51rem;
}

.mock-metric strong {
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
}

.mock-composer {
    margin-top: 13px;
    padding: 16px;
    border: 1px solid #e6e8f0;
    border-radius: 14px;
    background: #fff;
}

.mock-composer-head,
.mock-publish-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mock-composer-head strong {
    font-size: .68rem;
}

.mock-status {
    padding: 4px 7px;
    border-radius: 20px;
    color: #5e49c4;
    background: #eeebff;
    font-size: .45rem;
    font-weight: 800;
    text-transform: uppercase;
}

.mock-input {
    height: 78px;
    margin: 12px 0;
    padding: 11px;
    border: 1px solid #ececf3;
    border-radius: 9px;
    color: #8a90a1;
    background: #fafafe;
    font-size: .53rem;
}

.mock-channels {
    display: flex;
    gap: 5px;
}

.channel-dot {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 7px;
    color: #fff;
    font-size: .49rem;
    font-weight: 800;
}

.channel-dot.fb { background: #1877f2; }
.channel-dot.ig { background: linear-gradient(135deg, #7148d8, #db3288, #f4a336); }
.channel-dot.x { background: #141414; }
.channel-dot.th { color: #171717; background: #f1f1f1; }

.mock-publish {
    padding: 7px 11px;
    border-radius: 7px;
    color: #fff;
    background: linear-gradient(100deg, var(--violet), var(--cyan));
    font-size: .48rem;
    font-weight: 700;
}

.floating-card {
    position: absolute;
    z-index: 2;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .76);
    border-radius: 14px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 40px rgba(32, 26, 84, .14);
    backdrop-filter: blur(10px);
}

.floating-card strong {
    display: block;
    font-size: .75rem;
}

.floating-card span {
    color: #777f94;
    font-size: .62rem;
}

.floating-card.one {
    top: 21%;
    right: -25px;
}

.floating-card.two {
    bottom: 11%;
    left: -29px;
}

.floating-card .check {
    display: inline-grid;
    place-items: center;
    width: 21px;
    height: 21px;
    margin-right: 8px;
    border-radius: 50%;
    color: #fff;
    background: var(--success);
    font-size: .7rem;
}

.platform-strip {
    padding: 27px 0;
    border-block: 1px solid #ececf3;
    background: #fff;
}

.platform-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.platform-row > p {
    max-width: 205px;
    margin: 0;
    color: #70778b;
    font-size: .84rem;
    font-weight: 600;
}

.platforms {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.platform-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px 8px 9px;
    border: 1px solid #e7e8f0;
    border-radius: 99px;
    color: #4e556b;
    background: #fafbfe;
    font-size: .82rem;
    font-weight: 700;
}

.platform-chip i {
    display: grid;
    place-items: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    color: #fff;
    font-size: .68rem;
    font-style: normal;
}

.section-heading {
    max-width: 670px;
    margin-bottom: 52px;
}

.section-heading.center {
    margin-inline: auto;
    text-align: center;
}

.section-heading h2,
.split-copy h2,
.cta-panel h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(2.15rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.12;
}

.section-heading p,
.split-copy > p {
    margin: 18px 0 0;
    color: var(--ink-soft);
    font-size: 1.05rem;
}

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

.feature-card {
    position: relative;
    min-height: 270px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: 0 10px 35px rgba(28, 32, 68, .045);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.feature-card:hover {
    border-color: #d9d5f5;
    box-shadow: var(--shadow-soft);
    transform: translateY(-5px);
}

.feature-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--violet), var(--cyan));
    box-shadow: 0 10px 20px rgba(96, 75, 220, .18);
    font-family: "Manrope", sans-serif;
    font-size: .82rem;
    font-weight: 800;
}

.feature-card h3,
.step h3,
.value-card h3 {
    margin: 0 0 10px;
    font-family: "Manrope", sans-serif;
    font-size: 1.16rem;
}

.feature-card p,
.step p,
.value-card p {
    margin: 0;
    color: #626a80;
    font-size: .94rem;
}

.split {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: center;
    gap: 90px;
}

.check-list {
    display: grid;
    gap: 14px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #3d455d;
    font-weight: 600;
}

.check-list li::before {
    display: grid;
    place-items: center;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    margin-top: 1px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--violet), var(--cyan));
    content: "✓";
    font-size: .72rem;
}

.security-panel {
    position: relative;
    min-height: 470px;
    padding: 34px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    color: #fff;
    background:
        radial-gradient(circle at 80% 18%, rgba(45, 212, 223, .2), transparent 24%),
        radial-gradient(circle at 20% 83%, rgba(144, 125, 251, .22), transparent 27%),
        linear-gradient(145deg, #10172f, #262052 58%, #153b55);
    box-shadow: var(--shadow);
}

.security-orbit {
    position: absolute;
    top: 38px;
    right: 37px;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    box-shadow: inset 0 0 0 40px rgba(255, 255, 255, .025), inset 0 0 0 80px rgba(255, 255, 255, .018);
}

.security-lock {
    position: relative;
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    margin-bottom: 78px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 21px;
    background: linear-gradient(135deg, rgba(144, 125, 251, .86), rgba(45, 212, 223, .74));
    box-shadow: 0 18px 40px rgba(4, 8, 25, .24);
    font-family: "Manrope", sans-serif;
    font-weight: 800;
}

.security-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.security-item {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 14px;
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(8px);
}

.security-item strong {
    display: block;
    margin-bottom: 3px;
    font-size: .85rem;
}

.security-item span {
    color: rgba(255, 255, 255, .64);
    font-size: .7rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    counter-reset: steps;
}

.step {
    position: relative;
    padding: 30px 30px 30px 74px;
    border-top: 1px solid #dfe1eb;
    counter-increment: steps;
}

.step::before {
    position: absolute;
    top: 26px;
    left: 5px;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    color: var(--violet-dark);
    background: #eeebff;
    content: "0" counter(steps);
    font-family: "Manrope", sans-serif;
    font-size: .78rem;
    font-weight: 800;
}

.cta-wrap {
    padding: 0 0 100px;
}

.cta-panel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 62px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    color: #fff;
    background:
        radial-gradient(circle at 85% 15%, rgba(45, 212, 223, .23), transparent 26%),
        linear-gradient(120deg, #17163c, #473492 54%, #137a88);
    box-shadow: var(--shadow);
}

.cta-panel::after {
    position: absolute;
    right: -85px;
    bottom: -120px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
    box-shadow: inset 0 0 0 52px rgba(255, 255, 255, .03);
    content: "";
}

.cta-panel > div,
.cta-panel > a {
    position: relative;
    z-index: 1;
}

.cta-panel h2 {
    max-width: 650px;
}

.cta-panel p {
    max-width: 620px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .7);
}

.cta-panel .button {
    flex: 0 0 auto;
    color: var(--ink);
    background: #fff;
}

.site-footer {
    padding: 70px 0 25px;
    color: rgba(255, 255, 255, .74);
    background:
        radial-gradient(circle at 12% 15%, rgba(114, 87, 245, .14), transparent 25%),
        var(--navy-deep);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .7fr .7fr .9fr;
    gap: 50px;
    padding-bottom: 54px;
}

.footer-brand img {
    width: 175px;
    margin-bottom: 18px;
}

.footer-brand p {
    max-width: 300px;
    margin: 0;
    font-size: .91rem;
}

.footer-column h3 {
    margin: 4px 0 18px;
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: .78rem;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a {
    font-size: .88rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .09);
    font-size: .8rem;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-status::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4dd9be;
    box-shadow: 0 0 0 4px rgba(77, 217, 190, .09);
    content: "";
}

.page-hero {
    position: relative;
    padding: 180px 0 96px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 14% 10%, rgba(45, 212, 223, .16), transparent 24%),
        radial-gradient(circle at 88% 80%, rgba(144, 125, 251, .2), transparent 27%),
        linear-gradient(145deg, #10172f, #292056 56%, #183e59);
}

.page-hero::after {
    position: absolute;
    top: 115px;
    right: 8%;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    box-shadow: inset 0 0 0 45px rgba(255, 255, 255, .02), inset 0 0 0 90px rgba(255, 255, 255, .018);
    content: "";
}

.page-hero .eyebrow {
    color: #7ee7ef;
}

.page-hero h1 {
    max-width: 800px;
    font-size: clamp(2.8rem, 6vw, 5.2rem);
}

.page-hero p {
    max-width: 680px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .7);
    font-size: 1.12rem;
}

.page-hero .meta {
    display: inline-flex;
    margin-top: 24px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 99px;
    color: rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .06);
    font-size: .78rem;
}

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

.value-card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
}

.value-number {
    display: inline-block;
    margin-bottom: 40px;
    color: var(--violet);
    font-family: "Manrope", sans-serif;
    font-size: .78rem;
    font-weight: 800;
}

.story-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 100px;
}

.story-grid h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    letter-spacing: -.045em;
    line-height: 1.15;
}

.story-copy {
    color: var(--ink-soft);
    font-size: 1.03rem;
}

.story-copy p:first-child {
    margin-top: 0;
}

.legal-shell {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    align-items: start;
    gap: 68px;
}

.legal-aside {
    position: sticky;
    top: 105px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fafafe;
}

.legal-aside strong {
    display: block;
    margin-bottom: 12px;
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    font-size: .86rem;
}

.legal-aside a {
    display: block;
    padding: 7px 0;
    color: #626a80;
    font-size: .84rem;
}

.legal-aside a:hover,
.legal-aside a[aria-current="page"] {
    color: var(--violet-dark);
}

.legal-document {
    max-width: 780px;
}

.legal-document section + section {
    margin-top: 42px;
    padding-top: 42px;
    border-top: 1px solid var(--line);
}

.legal-document h2 {
    margin: 0 0 14px;
    font-family: "Manrope", sans-serif;
    font-size: 1.35rem;
    letter-spacing: -.02em;
}

.legal-document p,
.legal-document li {
    color: #555e75;
}

.legal-document p {
    margin: 0 0 14px;
}

.legal-document ul,
.legal-document ol {
    display: grid;
    gap: 9px;
    padding-left: 1.25rem;
}

.legal-document a,
.contact-card a {
    color: var(--violet-dark);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(89, 64, 217, .24);
    text-underline-offset: 3px;
}

.legal-callout {
    padding: 28px !important;
    border: 1px solid #dcd7fb !important;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(114, 87, 245, .08), rgba(24, 182, 201, .06));
}

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

.contact-card {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
}

.contact-card .feature-icon {
    margin-bottom: 32px;
}

.contact-card h2 {
    margin: 0 0 10px;
    font-family: "Manrope", sans-serif;
    font-size: 1.35rem;
}

.contact-card p {
    margin: 0 0 18px;
    color: var(--ink-soft);
}

.contact-note {
    margin-top: 24px;
    padding: 18px 20px;
    border-radius: var(--radius-md);
    color: #60687e;
    background: #f5f6fa;
    font-size: .88rem;
}

@media (max-width: 1050px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 750px;
        text-align: center;
        margin-inline: auto;
    }

    .hero-copy h1,
    .hero-lead {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-note {
        justify-content: center;
    }

    .product-stage {
        width: min(100%, 690px);
        margin-inline: auto;
    }

    .split {
        gap: 50px;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 820px) {
    .section {
        padding: 80px 0;
    }

    .menu-toggle {
        display: block;
    }

    .site-menu {
        position: fixed;
        top: 74px;
        right: 20px;
        left: 20px;
        display: grid;
        gap: 4px;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: rgba(255, 255, 255, .98);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    }

    .site-menu.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .site-menu > a {
        width: 100%;
    }

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

    .split,
    .story-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .security-panel {
        order: 2;
    }

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

    .cta-panel {
        align-items: flex-start;
        flex-direction: column;
        padding: 46px;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .legal-shell {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .legal-aside {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 6px 18px;
    }

    .legal-aside strong {
        flex-basis: 100%;
    }
}

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

    .site-header,
    .site-header.is-scrolled {
        height: 70px;
    }

    .brand-logo {
        width: 154px;
    }

    .site-menu {
        top: 70px;
        right: 14px;
        left: 14px;
    }

    .hero {
        min-height: 0;
        padding: 135px 0 82px;
    }

    .hero-grid {
        gap: 48px;
    }

    .hero-copy h1 {
        font-size: clamp(2.65rem, 13vw, 4rem);
    }

    .hero-lead {
        font-size: 1rem;
    }

    .hero-actions .button {
        width: 100%;
    }

    .product-window {
        min-height: 380px;
        transform: none;
    }

    .product-ui {
        grid-template-columns: 82px 1fr;
        min-height: 335px;
    }

    .mock-sidebar {
        padding: 16px 8px;
    }

    .mock-brand {
        font-size: 0;
    }

    .mock-brand img {
        width: 28px;
    }

    .mock-nav span {
        padding: 7px 5px;
        font-size: 0;
    }

    .mock-nav span::before {
        width: 9px;
        height: 9px;
    }

    .mock-main {
        padding: 18px 13px;
    }

    .mock-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .mock-metric:last-child {
        display: none;
    }

    .floating-card {
        display: none;
    }

    .platform-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .platforms {
        justify-content: flex-start;
    }

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

    .feature-card {
        min-height: 0;
    }

    .security-panel {
        min-height: 0;
        padding: 26px;
    }

    .security-lock {
        margin-bottom: 45px;
    }

    .security-list {
        grid-template-columns: 1fr;
    }

    .cta-wrap {
        padding-bottom: 70px;
    }

    .cta-panel {
        padding: 38px 27px;
        border-radius: 24px;
    }

    .cta-panel .button {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 22px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .page-hero {
        padding: 142px 0 72px;
    }

    .page-hero::after {
        right: -120px;
    }

    .legal-aside {
        display: block;
    }
}

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

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