:root {
    color-scheme: dark;
    --bg: #07101d;
    --bg-soft: #0b1626;
    --surface: #0f1c2f;
    --surface-2: #14243a;
    --surface-3: #192b45;
    --line: rgba(148, 171, 205, 0.18);
    --line-strong: rgba(148, 171, 205, 0.30);
    --text: #f8fbff;
    --text-soft: #dce8f7;
    --muted: #98abc4;
    --muted-strong: #b8c8da;
    --primary: #4f8cff;
    --primary-2: #7a5cff;
    --primary-dark: #2f6ee5;
    --success: #39d98a;
    --warning: #ffca68;
    --danger: #ff7182;
    --shadow-lg: 0 28px 90px rgba(0, 0, 0, 0.38);
    --shadow-md: 0 18px 55px rgba(0, 0, 0, 0.24);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --radius-xl: 34px;
    --container: 1180px;
    --header-height: 76px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 10% 0%, rgba(79, 140, 255, 0.11), transparent 31rem),
        radial-gradient(circle at 95% 20%, rgba(122, 92, 255, 0.08), transparent 28rem),
        var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

a {
    color: inherit;
}

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

button:focus-visible,
a:focus-visible {
    outline: 3px solid rgba(79, 140, 255, 0.48);
    outline-offset: 3px;
}

::selection {
    background: rgba(79, 140, 255, 0.35);
    color: #fff;
}

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

.section-pad {
    position: relative;
    padding: 112px 0;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    background: #fff;
    color: #07101d;
    font-weight: 850;
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

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

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    border-bottom: 1px solid transparent;
    background: rgba(7, 16, 29, 0.66);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
    border-bottom-color: var(--line);
    background: rgba(7, 16, 29, 0.91);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
}

.nav-wrap {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--text);
    text-decoration: none;
    flex: 0 0 auto;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: linear-gradient(145deg, var(--primary), var(--primary-2));
    color: #fff;
    box-shadow: 0 12px 34px rgba(79, 140, 255, 0.28);
}

.brand-mark svg {
    width: 28px;
    height: 28px;
}

.brand-copy {
    display: grid;
    line-height: 1.05;
}

.brand-copy strong {
    font-size: 19px;
    letter-spacing: -0.03em;
}

.brand-copy small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-left: auto;
}

.desktop-nav a {
    position: relative;
    padding: 10px 0;
    color: var(--muted-strong);
    font-size: 14px;
    font-weight: 720;
    text-decoration: none;
    transition: color 0.2s ease;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--primary), var(--primary-2));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--text);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    transform: scaleX(1);
}

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

.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 19px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 850;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease,
        box-shadow 0.2s ease, color 0.2s ease;
}

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

.button:active {
    transform: translateY(0);
}

.button-small {
    min-height: 42px;
    padding-inline: 16px;
}

.button-large {
    min-height: 56px;
    padding-inline: 24px;
    border-radius: 14px;
    font-size: 15px;
}

.button-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 14px 35px rgba(79, 140, 255, 0.28);
}

.button-primary:hover {
    box-shadow: 0 18px 44px rgba(79, 140, 255, 0.38);
}

.button-ghost {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.025);
    color: var(--text-soft);
}

.button-ghost:hover {
    border-color: rgba(79, 140, 255, 0.48);
    background: rgba(79, 140, 255, 0.08);
    color: #fff;
}

.button-light {
    background: #fff;
    color: #14233a;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.button-light:hover {
    background: #f2f6ff;
}

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

.button-outline-light:hover {
    border-color: rgba(255, 255, 255, 0.54);
    background: rgba(255, 255, 255, 0.14);
}

.menu-toggle {
    width: 46px;
    height: 46px;
    display: none;
    place-items: center;
    gap: 5px;
    padding: 11px;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    cursor: pointer;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    border-radius: 99px;
    background: currentColor;
}

.mobile-menu {
    position: fixed;
    z-index: 9999;
    inset: 0;
    isolation: isolate;
}

.mobile-menu[hidden] {
    display: none !important;
}

.mobile-menu-backdrop {
    position: fixed;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background-color: rgba(2, 7, 13, 0.84);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    cursor: pointer;
}

.mobile-menu-panel {
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;

    width: min(88vw, 390px);
    min-height: 100vh;
    height: 100dvh;

    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;

    padding:
        max(22px, env(safe-area-inset-top))
        max(22px, env(safe-area-inset-right))
        max(22px, env(safe-area-inset-bottom))
        22px;

    border-left: 1px solid rgba(148, 171, 205, 0.24);

    /*
     * Background dibuat benar-benar solid.
     * Menu juga dipindah keluar dari header sticky agar
     * backdrop-filter header tidak membuat panel transparan.
     */
    background-color: #0b1626 !important;
    background-image:
        radial-gradient(
            circle at 100% 0%,
            rgba(79, 140, 255, 0.18),
            transparent 18rem
        ),
        linear-gradient(
            180deg,
            #0d192a 0%,
            #0b1626 48%,
            #091321 100%
        ) !important;
    opacity: 1;

    box-shadow:
        -28px 0 80px rgba(0, 0, 0, 0.58);

    transform: translate3d(100%, 0, 0);
    animation: mobilePanelIn 0.24s ease forwards;
}

.mobile-menu-panel::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background-color: #0b1626;
    content: "";
}

@keyframes mobilePanelIn {
    to {
        transform: translate3d(0, 0, 0);
    }
}

.mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    margin-bottom: 22px;
    padding-bottom: 18px;

    border-bottom: 1px solid var(--line);
}

.mobile-menu-head > div {
    display: grid;
    gap: 5px;
}

.mobile-menu-head strong {
    color: var(--text);
    font-size: 17px;
    font-weight: 900;
}

.mobile-menu-head small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 650;
}

.menu-close {
    flex: 0 0 auto;

    width: 42px;
    height: 42px;

    border: 1px solid var(--line-strong);
    border-radius: 11px;

    background-color: #14243a;
    color: #fff;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;
}

.menu-close:hover {
    border-color: rgba(79, 140, 255, 0.55);
    background-color: #192d48;
}

.mobile-menu nav {
    display: grid;
    gap: 8px;
}

.mobile-menu nav a {
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 13px 14px;

    border: 1px solid rgba(148, 171, 205, 0.12);
    border-radius: 12px;

    background-color: rgba(255, 255, 255, 0.035);
    color: var(--text-soft);

    font-size: 14px;
    font-weight: 800;
    text-decoration: none;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.mobile-menu nav a:hover,
.mobile-menu nav a:focus-visible {
    border-color: rgba(79, 140, 255, 0.34);
    background-color: rgba(79, 140, 255, 0.13);
    transform: translateX(2px);
}

.mobile-menu-actions {
    display: grid;
    gap: 10px;
    margin-top: auto;
    padding-top: 26px;
}

.mobile-menu-actions .button {
    width: 100%;
}

.mobile-menu-note {
    margin: 16px 3px 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.55;
    text-align: center;
}

.hero {
    min-height: calc(100svh - var(--header-height));
    display: flex;
    align-items: center;
    padding-top: 82px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 82%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(12px);
    pointer-events: none;
}

.hero-glow-one {
    top: 4%;
    left: -14%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(79, 140, 255, 0.2), transparent 68%);
}

.hero-glow-two {
    right: -10%;
    bottom: 4%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(122, 92, 255, 0.17), transparent 70%);
}

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

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #a9c7ff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.eyebrow {
    padding: 9px 13px;
    border: 1px solid rgba(79, 140, 255, 0.25);
    border-radius: 999px;
    background: rgba(79, 140, 255, 0.07);
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 5px rgba(57, 217, 138, 0.11);
}

.hero h1 {
    max-width: 730px;
    margin: 26px 0 22px;
    font-size: clamp(48px, 6.3vw, 82px);
    line-height: 0.99;
    letter-spacing: -0.06em;
}

.hero h1 span {
    display: block;
    background: linear-gradient(92deg, #8eb8ff 4%, #9e8cff 56%, #65dbff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    max-width: 680px;
    margin: 0;
    color: var(--muted-strong);
    font-size: 18px;
    line-height: 1.75;
}

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

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 26px;
    margin-top: 24px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 720;
}

.hero-trust div {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-trust svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--success);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-visual {
    position: relative;
    min-width: 0;
    padding: 30px 0 42px;
}

.visual-orbit {
    position: absolute;
    border: 1px solid rgba(112, 155, 255, 0.11);
    border-radius: 50%;
    pointer-events: none;
}

.orbit-one {
    inset: -50px -60px -20px -40px;
}

.orbit-two {
    inset: 18px -20px 40px 15px;
}

.app-window {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid rgba(143, 174, 219, 0.23);
    border-radius: 24px;
    background: #0b1525;
    box-shadow: var(--shadow-lg), 0 0 0 8px rgba(255, 255, 255, 0.015);
    transform: perspective(1200px) rotateY(-4deg) rotateX(1.5deg);
    transform-origin: center;
}

.app-window-top {
    min-height: 49px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    border-bottom: 1px solid var(--line);
    background: #0d192b;
}

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

.window-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34465f;
}

.window-dots span:first-child {
    background: #ff7182;
}

.window-dots span:nth-child(2) {
    background: #ffca68;
}

.window-dots span:nth-child(3) {
    background: #39d98a;
}

.window-title {
    color: var(--muted-strong);
    font-size: 11px;
    font-weight: 800;
}

.window-status {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 6px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 750;
}

.window-status span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
}

.app-body {
    min-height: 460px;
    display: grid;
    grid-template-columns: 56px 1fr;
}

.preview-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 14px 8px;
    border-right: 1px solid var(--line);
    background: #0a1422;
}

.preview-logo {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    margin-bottom: 5px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.preview-sidebar > span {
    width: 25px;
    height: 25px;
    border-radius: 8px;
    background: #17263a;
}

.preview-sidebar > span.active {
    background: rgba(79, 140, 255, 0.22);
    box-shadow: inset 3px 0 0 var(--primary);
}

.preview-content {
    min-width: 0;
    padding: 18px;
}

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

.preview-head div:first-child {
    display: grid;
    gap: 4px;
}

.preview-head small,
.preview-stats span,
.preview-stats small,
.preview-card-title small,
.preview-ai-card small {
    color: var(--muted);
    font-size: 9px;
}

.preview-head strong {
    font-size: 15px;
}

.preview-pill {
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--muted-strong);
    font-size: 8px;
}

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

.preview-stats article {
    display: grid;
    gap: 5px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #101e31;
}

.preview-stats strong {
    font-size: 19px;
}

.preview-stats small.positive {
    color: var(--success);
}

.preview-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(150px, 0.55fr);
    gap: 10px;
    margin-top: 10px;
}

.preview-chart-card,
.preview-ai-card,
.preview-table {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #101e31;
}

.preview-chart-card {
    min-width: 0;
    padding: 12px;
}

.preview-card-title {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--text-soft);
    font-size: 9px;
    font-weight: 800;
}

.chart-area {
    position: relative;
    height: 124px;
    margin-top: 10px;
}

.chart-grid-lines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 100% 31px;
}

.chart-area svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.chart-area-fill {
    fill: url(#areaGradient);
}

.chart-line {
    fill: none;
    stroke: #69a4ff;
    stroke-width: 3;
    stroke-linecap: round;
}

.chart-point {
    fill: #b4d0ff;
    stroke: #4f8cff;
    stroke-width: 4;
}

.preview-ai-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 13px;
    background:
        linear-gradient(145deg, rgba(79, 140, 255, 0.12), rgba(122, 92, 255, 0.05)),
        #101e31;
}

.ai-icon {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: rgba(79, 140, 255, 0.18);
    color: #9cc0ff;
}

.preview-ai-card > div:nth-child(2) {
    display: grid;
    gap: 6px;
}

.preview-ai-card strong {
    font-size: 11px;
}

.preview-ai-card p {
    margin: 0;
    color: var(--muted);
    font-size: 8px;
    line-height: 1.6;
}

.ai-link {
    margin-top: auto;
    color: #8bb5ff;
    font-size: 8px;
    font-weight: 850;
}

.preview-table {
    margin-top: 10px;
    overflow: hidden;
}

.preview-table-head,
.preview-table-row {
    display: grid;
    grid-template-columns: 0.8fr 1.3fr 0.8fr 0.55fr;
    align-items: center;
    gap: 10px;
    padding: 9px 11px;
    font-size: 8px;
}

.preview-table-head {
    border-bottom: 1px solid var(--line);
    color: var(--muted);
}

.preview-table-row + .preview-table-row {
    border-top: 1px solid rgba(148, 171, 205, 0.1);
}

.preview-table-row strong {
    font-size: 9px;
}

.preview-table-row > span:nth-child(2) {
    color: var(--muted-strong);
}

.tag {
    width: fit-content;
    padding: 4px 6px;
    border-radius: 999px;
}

.tag-good {
    background: rgba(57, 217, 138, 0.1);
    color: #76e7aa;
}

.tag-warn {
    background: rgba(255, 202, 104, 0.1);
    color: #ffd687;
}

.result-positive {
    color: var(--success);
    font-weight: 850;
}

.result-negative {
    color: var(--danger);
    font-weight: 850;
}

.floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 175px;
    padding: 12px 14px;
    border: 1px solid rgba(148, 171, 205, 0.22);
    border-radius: 14px;
    background: rgba(15, 28, 47, 0.92);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
}

.floating-card-one {
    bottom: 12px;
    left: -30px;
}

.floating-card-two {
    top: 10px;
    right: -30px;
}

.floating-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 10px;
    font-weight: 900;
}

.floating-icon.success {
    background: rgba(57, 217, 138, 0.12);
    color: var(--success);
}

.floating-icon.ai {
    background: rgba(79, 140, 255, 0.14);
    color: #90b8ff;
}

.floating-card div {
    display: grid;
    gap: 3px;
}

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

.floating-card strong {
    font-size: 11px;
}

.trust-strip {
    border-block: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.015);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-grid > div {
    min-height: 118px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 24px 26px;
}

.trust-grid > div + div {
    border-left: 1px solid var(--line);
}

.trust-grid strong {
    font-size: 15px;
}

.trust-grid span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

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

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

.section-heading h2,
.workflow-copy h2,
.ai-copy h2,
.faq-copy h2,
.cta-copy h2 {
    margin: 16px 0 18px;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.section-heading p,
.workflow-copy > p,
.ai-copy > p,
.faq-copy > p,
.cta-copy > p {
    margin: 0;
    color: var(--muted-strong);
    font-size: 17px;
    line-height: 1.75;
}

.problem-section {
    background:
        radial-gradient(circle at 85% 20%, rgba(79, 140, 255, 0.08), transparent 28rem),
        #08121f;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.problem-card,
.feature-card,
.audience-card,
.pricing-card,
.step-card,
.faq-item {
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.006));
}

.problem-card {
    position: relative;
    overflow: hidden;
    padding: 27px;
    border-radius: var(--radius-md);
}

.problem-card::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -55px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(79, 140, 255, 0.05);
}

.problem-number {
    margin-bottom: 36px;
    color: #6c9efa;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.problem-card h3,
.feature-card h3,
.audience-card h3,
.step-card h3,
.pricing-card h3 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.problem-card p,
.feature-card p,
.audience-card p,
.step-card p,
.pricing-description {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

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

.feature-card {
    min-height: 305px;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border-radius: var(--radius-md);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 140, 255, 0.32);
    background: linear-gradient(145deg, rgba(79, 140, 255, 0.06), rgba(255, 255, 255, 0.01));
}

.feature-card-large {
    min-height: 390px;
    grid-column: span 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 270px;
    align-items: center;
    gap: 28px;
    background:
        radial-gradient(circle at 85% 15%, rgba(79, 140, 255, 0.15), transparent 18rem),
        linear-gradient(145deg, rgba(79, 140, 255, 0.055), rgba(255, 255, 255, 0.01));
}

.feature-card-large .feature-icon,
.feature-card-large .feature-label,
.feature-card-large h3,
.feature-card-large p {
    grid-column: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border: 1px solid rgba(79, 140, 255, 0.22);
    border-radius: 14px;
    background: rgba(79, 140, 255, 0.09);
    color: #8cb6ff;
}

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

.feature-label {
    display: block;
    margin-bottom: 10px;
    color: #8cb6ff;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.feature-card h3 {
    font-size: 24px;
}

.mini-journal {
    grid-column: 2;
    grid-row: 1 / span 4;
    align-self: stretch;
    display: grid;
    align-content: center;
    gap: 10px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(7, 16, 29, 0.62);
}

.mini-journal div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(148, 171, 205, 0.11);
}

.mini-journal div:last-child {
    border-bottom: 0;
}

.mini-journal span {
    color: var(--muted);
    font-size: 12px;
}

.mini-journal strong {
    font-size: 12px;
    text-align: right;
}

.good-text {
    color: var(--success);
}

.feature-card-coming {
    background:
        linear-gradient(145deg, rgba(122, 92, 255, 0.08), rgba(255, 255, 255, 0.01));
}

.coming-badge {
    width: fit-content;
    margin-top: auto;
    padding: 8px 11px;
    border: 1px solid rgba(122, 92, 255, 0.24);
    border-radius: 999px;
    background: rgba(122, 92, 255, 0.09);
    color: #b2a4ff;
    font-size: 11px;
    font-weight: 850;
}

.workflow-section {
    overflow: hidden;
}

.workflow-section::before {
    content: "";
    position: absolute;
    inset: auto -180px 0 auto;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 140, 255, 0.09), transparent 70%);
}

.workflow-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 78px;
    align-items: center;
}

.workflow-copy {
    position: sticky;
    top: calc(var(--header-height) + 28px);
}

.workflow-note {
    display: flex;
    gap: 14px;
    margin-top: 30px;
    padding: 17px;
    border: 1px solid rgba(57, 217, 138, 0.18);
    border-radius: 14px;
    background: rgba(57, 217, 138, 0.055);
}

.workflow-note svg {
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
    fill: none;
    stroke: var(--success);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.workflow-note div {
    display: grid;
    gap: 5px;
}

.workflow-note strong {
    font-size: 14px;
}

.workflow-note span {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.steps-list {
    position: relative;
    display: grid;
    gap: 14px;
}

.steps-list::before {
    content: "";
    position: absolute;
    top: 44px;
    bottom: 44px;
    left: 38px;
    width: 1px;
    background: linear-gradient(to bottom, rgba(79, 140, 255, 0.55), rgba(79, 140, 255, 0.05));
}

.step-card {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    padding: 24px;
    border-radius: var(--radius-md);
    background: rgba(15, 28, 47, 0.66);
}

.step-index {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(79, 140, 255, 0.26);
    border-radius: 15px;
    background: #0d1b2d;
    color: #86b0ff;
    font-weight: 900;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.step-card h3 {
    margin-top: 2px;
}

.ai-section {
    background:
        radial-gradient(circle at 12% 60%, rgba(122, 92, 255, 0.1), transparent 30rem),
        #08121f;
}

.ai-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: center;
    gap: 72px;
}

.ai-console {
    overflow: hidden;
    padding: 20px;
    border: 1px solid rgba(148, 171, 205, 0.24);
    border-radius: 24px;
    background: #0b1727;
    box-shadow: var(--shadow-lg);
}

.ai-console-head {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 12px;
    padding-bottom: 17px;
    border-bottom: 1px solid var(--line);
}

.ai-console-avatar {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(79, 140, 255, 0.24), rgba(122, 92, 255, 0.18));
    color: #a8c5ff;
    font-size: 18px;
}

.ai-console-head > div:nth-child(2) {
    display: grid;
    gap: 4px;
}

.ai-console-head strong {
    font-size: 14px;
}

.ai-console-head span {
    color: var(--muted);
    font-size: 10px;
}

.online-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 9px;
    border-radius: 999px;
    background: rgba(57, 217, 138, 0.07);
    color: #79e6ad !important;
    font-size: 9px !important;
    font-weight: 800;
}

.online-status i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
}

.chat-bubble {
    max-width: 86%;
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.65;
}

.user-bubble {
    margin-left: auto;
    border-bottom-right-radius: 5px;
    background: linear-gradient(135deg, #356fcd, #3c67b8);
    color: #fff;
}

.ai-bubble {
    border: 1px solid var(--line);
    border-bottom-left-radius: 5px;
    background: #111f33;
    color: var(--text-soft);
}

.typing-label {
    margin-bottom: 9px;
    color: #8cb6ff;
    font-size: 9px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ai-bubble p {
    margin: 0;
}

.ai-list {
    display: grid;
    gap: 7px;
    margin-top: 12px;
}

.ai-list span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted-strong);
    font-size: 11px;
}

.ai-list i {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 6px;
    background: rgba(79, 140, 255, 0.12);
    color: #8cb6ff;
    font-style: normal;
    font-size: 9px;
    font-weight: 850;
}

.ai-input-fake {
    min-height: 49px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 8px 8px 8px 14px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #091423;
}

.ai-input-fake span {
    flex: 1;
    color: #6f849f;
    font-size: 11px;
}

.ai-input-fake button {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    font-weight: 900;
}

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

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: var(--text-soft);
    line-height: 1.55;
}

.check-list span {
    width: 23px;
    height: 23px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 7px;
    background: rgba(57, 217, 138, 0.1);
    color: var(--success);
    font-size: 12px;
    font-weight: 900;
}

.security-callout {
    margin-top: 28px;
    padding: 17px;
    border: 1px solid rgba(255, 202, 104, 0.18);
    border-radius: 14px;
    background: rgba(255, 202, 104, 0.045);
}

.security-callout strong {
    color: #ffdc98;
    font-size: 13px;
}

.security-callout p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.audience-section {
    overflow: hidden;
}

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

.audience-card {
    min-height: 270px;
    padding: 28px;
    border-radius: var(--radius-md);
}

.audience-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    margin-bottom: 36px;
    border-radius: 14px;
    background: rgba(79, 140, 255, 0.08);
    color: #82adff;
    font-size: 12px;
    font-weight: 900;
}

.pricing-section {
    background:
        radial-gradient(circle at 50% 0%, rgba(79, 140, 255, 0.08), transparent 34rem),
        #08121f;
}

.trial-banner {
    display: grid;
    grid-template-columns: 50px 1fr auto;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    padding: 18px 20px;
    border: 1px solid rgba(57, 217, 138, 0.2);
    border-radius: 16px;
    background: rgba(57, 217, 138, 0.05);
}

.trial-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(57, 217, 138, 0.1);
    color: #79e6ad;
    font-size: 18px;
}

.trial-banner > div:nth-child(2) {
    display: grid;
    gap: 5px;
}

.trial-banner strong {
    font-size: 15px;
}

.trial-banner span {
    color: var(--muted);
    font-size: 12px;
}

.trial-banner a {
    color: #79e6ad;
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 29px;
    border-radius: 22px;
}

.pricing-popular {
    border-color: rgba(79, 140, 255, 0.48);
    background:
        radial-gradient(circle at 90% 0%, rgba(79, 140, 255, 0.17), transparent 16rem),
        linear-gradient(145deg, rgba(79, 140, 255, 0.07), rgba(255, 255, 255, 0.01));
    box-shadow: 0 22px 65px rgba(21, 67, 138, 0.2);
}

.popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    padding: 7px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    white-space: nowrap;
    transform: translateX(-50%);
    box-shadow: 0 10px 28px rgba(79, 140, 255, 0.28);
}

.pricing-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
}

.pricing-head h3 {
    margin-top: 7px;
    font-size: 25px;
}

.plan-code {
    color: #8cb6ff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.plan-dot {
    width: 12px;
    height: 12px;
    margin-top: 6px;
    border: 3px solid rgba(79, 140, 255, 0.18);
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 5px rgba(79, 140, 255, 0.08);
}

.price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 24px;
}

.price strong {
    font-size: 36px;
    line-height: 1;
    letter-spacing: -0.04em;
}

.price span {
    color: var(--muted);
    font-size: 12px;
}

.pricing-description {
    min-height: 72px;
    margin-top: 18px;
    font-size: 13px;
}

.pricing-features {
    display: grid;
    gap: 12px;
    margin: 24px 0 28px;
    padding: 22px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted-strong);
    font-size: 12px;
    line-height: 1.55;
}

.pricing-features span {
    color: var(--success);
    font-weight: 900;
}

.pricing-button {
    width: 100%;
    margin-top: auto;
}

.pricing-note {
    max-width: 760px;
    margin: 22px auto 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.65;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    align-items: start;
    gap: 72px;
}

.faq-copy {
    position: sticky;
    top: calc(var(--header-height) + 28px);
}

.text-link {
    display: inline-flex;
    margin-top: 24px;
    color: #8cb6ff;
    font-weight: 850;
    text-decoration: none;
}

.faq-list {
    display: grid;
    gap: 11px;
}

.faq-item {
    overflow: hidden;
    border-radius: 15px;
    background: rgba(15, 28, 47, 0.56);
}

.faq-item h3 {
    margin: 0;
}

.faq-question {
    width: 100%;
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border: 0;
    background: transparent;
    color: var(--text-soft);
    font: inherit;
    font-size: 14px;
    font-weight: 830;
    text-align: left;
    cursor: pointer;
}

.faq-question i {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 9px;
    color: #8cb6ff;
    font-style: normal;
    font-size: 20px;
    font-weight: 400;
    transition: transform 0.2s ease, background 0.2s ease;
}

.faq-question[aria-expanded="true"] i {
    background: rgba(79, 140, 255, 0.09);
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px 20px;
}

.faq-answer[hidden] {
    display: none;
}

.faq-answer p {
    margin: 0;
    padding-top: 2px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

.final-cta {
    padding-top: 70px;
}

.cta-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 42px;
    padding: 64px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    background: linear-gradient(135deg, #2e6fd6 0%, #4b62cf 48%, #6a4dcc 100%);
    box-shadow: 0 30px 90px rgba(32, 63, 134, 0.33);
}

.cta-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.17;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent);
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    filter: blur(2px);
}

.cta-orb-one {
    top: -120px;
    right: -80px;
    width: 340px;
    height: 340px;
}

.cta-orb-two {
    bottom: -150px;
    left: 35%;
    width: 260px;
    height: 260px;
}

.cta-copy,
.cta-actions {
    position: relative;
    z-index: 2;
}

.light-kicker {
    color: #dfe9ff;
}

.cta-copy h2 {
    max-width: 720px;
    margin-bottom: 14px;
    color: #fff;
}

.cta-copy > p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.78);
}

.cta-actions {
    display: grid;
    gap: 11px;
    min-width: 220px;
}

.site-footer {
    padding: 36px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 70px;
    padding-bottom: 34px;
}

.footer-brand {
    max-width: 430px;
}

.footer-brand p {
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 42px;
}

.footer-links > div {
    display: grid;
    align-content: start;
    gap: 11px;
}

.footer-links strong {
    margin-bottom: 5px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links a {
    color: var(--muted);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.footer-bottom p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.6;
}

.footer-disclaimer {
    max-width: 620px;
    text-align: right;
}

.mobile-cta-bar {
    display: none;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

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

.legal-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 10% 0%, rgba(79, 140, 255, 0.12), transparent 28rem),
        var(--bg);
}

.legal-header {
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 16, 29, 0.82);
    backdrop-filter: blur(14px);
}

.legal-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.legal-main {
    padding: 70px 0 100px;
}

.legal-shell {
    max-width: 880px;
}

.legal-hero {
    margin-bottom: 32px;
}

.legal-hero h1 {
    margin: 16px 0 12px;
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.legal-hero p {
    margin: 0;
    color: var(--muted-strong);
    line-height: 1.75;
}

.legal-card {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(15, 28, 47, 0.74);
}

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

.legal-card h2 {
    margin: 0 0 12px;
    font-size: 23px;
    letter-spacing: -0.02em;
}

.legal-card p,
.legal-card li {
    color: var(--muted-strong);
    line-height: 1.78;
}

.legal-card ul {
    display: grid;
    gap: 8px;
    margin: 13px 0 0;
    padding-left: 22px;
}

.legal-note {
    margin-bottom: 24px;
    padding: 15px 17px;
    border: 1px solid rgba(255, 202, 104, 0.2);
    border-radius: 14px;
    background: rgba(255, 202, 104, 0.05);
    color: #ffe3a7;
    font-size: 13px;
    line-height: 1.65;
}

@media (max-width: 1120px) {
    .desktop-nav {
        gap: 20px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
        gap: 40px;
    }

    .floating-card-two {
        right: -8px;
    }

    .floating-card-one {
        left: -8px;
    }

    .feature-card-large {
        grid-template-columns: minmax(0, 1fr) 230px;
    }

    .cta-card {
        padding: 52px;
    }
}

@media (max-width: 980px) {
    :root {
        --header-height: 70px;
    }

    .desktop-nav,
    .desktop-action {
        display: none;
    }

    .menu-toggle {
        display: grid;
    }

    .hero {
        min-height: auto;
        padding-top: 74px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 58px;
    }

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

    .hero h1 {
        margin-inline: auto;
    }

    .hero-lead {
        margin-inline: auto;
    }

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

    .hero-visual {
        width: min(100%, 760px);
        margin-inline: auto;
    }

    .app-window {
        transform: none;
    }

    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-grid > div:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .trust-grid > div:nth-child(4) {
        border-top: 1px solid var(--line);
    }

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

    .problem-card {
        min-height: 190px;
    }

    .problem-number {
        margin-bottom: 24px;
    }

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

    .feature-card-large {
        grid-column: 1 / -1;
    }

    .workflow-grid,
    .ai-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .workflow-copy,
    .faq-copy {
        position: static;
    }

    .workflow-copy,
    .ai-copy {
        max-width: 760px;
    }

    .ai-console {
        order: 2;
    }

    .ai-copy {
        order: 1;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
        margin-inline: auto;
    }

    .pricing-description {
        min-height: 0;
    }

    .cta-card {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-width: 0;
    }

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

@media (max-width: 760px) {
    :root {
        --radius-lg: 22px;
        --radius-xl: 26px;
    }

    body {
        padding-bottom: 76px;
    }

    .container {
        width: min(100% - 28px, var(--container));
    }

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

    .brand-mark {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .brand-copy strong {
        font-size: 18px;
    }

    .hero {
        padding-top: 56px;
        padding-bottom: 70px;
    }

    .hero::before {
        background-size: 48px 48px;
    }

    .eyebrow {
        font-size: 10px;
        letter-spacing: 0.09em;
    }

    .hero h1 {
        margin-top: 22px;
        font-size: clamp(40px, 13vw, 62px);
        line-height: 1.02;
    }

    .hero-lead {
        font-size: 16px;
        line-height: 1.7;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

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

    .hero-trust {
        display: grid;
        grid-template-columns: 1fr;
        justify-content: start;
        width: fit-content;
        margin-inline: auto;
        text-align: left;
    }

    .hero-visual {
        padding-bottom: 0;
    }

    .app-window {
        border-radius: 17px;
    }

    .app-window-top {
        min-height: 42px;
        padding: 0 11px;
    }

    .window-title {
        font-size: 9px;
    }

    .window-status {
        display: none;
    }

    .app-window-top {
        grid-template-columns: 1fr auto;
    }

    .app-body {
        min-height: 360px;
        grid-template-columns: 42px 1fr;
    }

    .preview-sidebar {
        gap: 11px;
        padding: 10px 5px;
    }

    .preview-sidebar > span {
        width: 22px;
        height: 22px;
    }

    .preview-logo {
        width: 28px;
        height: 28px;
    }

    .preview-content {
        padding: 12px;
    }

    .preview-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .preview-stats article:nth-child(3) {
        display: none;
    }

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

    .preview-ai-card {
        display: none;
    }

    .chart-area {
        height: 105px;
    }

    .preview-table-head,
    .preview-table-row {
        grid-template-columns: 0.9fr 1.2fr 0.8fr;
    }

    .preview-table-head span:nth-child(3),
    .preview-table-row span:nth-child(3) {
        display: none;
    }

    .floating-card {
        display: none;
    }

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

    .trust-grid > div {
        min-height: auto;
        padding: 20px 4px;
    }

    .trust-grid > div + div,
    .trust-grid > div:nth-child(3),
    .trust-grid > div:nth-child(4) {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .section-heading {
        margin-bottom: 36px;
    }

    .section-heading h2,
    .workflow-copy h2,
    .ai-copy h2,
    .faq-copy h2,
    .cta-copy h2 {
        font-size: clamp(33px, 10vw, 46px);
    }

    .section-heading p,
    .workflow-copy > p,
    .ai-copy > p,
    .faq-copy > p,
    .cta-copy > p {
        font-size: 15px;
    }

    .problem-card,
    .feature-card,
    .audience-card,
    .pricing-card {
        padding: 23px;
    }

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

    .feature-card {
        min-height: 280px;
    }

    .feature-card-large {
        min-height: auto;
        display: flex;
        grid-column: auto;
    }

    .mini-journal {
        width: 100%;
        margin-top: 20px;
    }

    .workflow-grid,
    .ai-grid,
    .faq-grid {
        gap: 42px;
    }

    .steps-list::before {
        left: 29px;
    }

    .step-card {
        grid-template-columns: 42px 1fr;
        gap: 14px;
        padding: 19px;
    }

    .step-index {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .ai-console {
        padding: 14px;
        border-radius: 18px;
    }

    .chat-bubble {
        max-width: 94%;
        font-size: 12px;
    }

    .audience-card {
        min-height: 230px;
    }

    .trial-banner {
        grid-template-columns: 44px 1fr;
    }

    .trial-banner > a {
        grid-column: 1 / -1;
        padding-top: 12px;
        border-top: 1px solid rgba(57, 217, 138, 0.13);
    }

    .price strong {
        font-size: 34px;
    }

    .faq-question {
        min-height: 68px;
        padding: 16px;
        font-size: 13px;
    }

    .faq-answer {
        padding: 0 16px 17px;
    }

    .cta-card {
        gap: 30px;
        padding: 38px 23px;
        border-radius: 23px;
    }

    .cta-actions {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        gap: 42px;
    }

    .footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 24px;
    }

    .footer-links > div:last-child {
        grid-column: 1 / -1;
    }

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

    .footer-disclaimer {
        text-align: left;
    }

    .mobile-cta-bar {
        position: fixed;
        z-index: 950;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 9px;
        padding: 10px max(14px, env(safe-area-inset-right)) calc(10px + env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
        border-top: 1px solid var(--line);
        background: rgba(7, 16, 29, 0.94);
        backdrop-filter: blur(16px);
        box-shadow: 0 -12px 35px rgba(0, 0, 0, 0.28);
    }

    .mobile-login,
    .mobile-primary {
        min-height: 47px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 16px;
        border-radius: 12px;
        font-size: 13px;
        font-weight: 900;
        text-decoration: none;
    }

    .mobile-login {
        border: 1px solid var(--line-strong);
        color: var(--text-soft);
    }

    .mobile-primary {
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: #fff;
    }

    .mobile-cta-bar:has(.mobile-primary:only-child) {
        grid-template-columns: 1fr;
    }

    .legal-header .container {
        align-items: flex-start;
    }

    .legal-main {
        padding: 48px 0 80px;
    }

    .legal-card {
        padding: 22px;
        border-radius: 18px;
    }
}

@media (max-width: 420px) {
    .container {
        width: min(100% - 22px, var(--container));
    }

    .brand-copy small {
        display: none;
    }

    .hero h1 {
        font-size: 39px;
    }

    .eyebrow {
        padding-inline: 10px;
    }

    .app-body {
        grid-template-columns: 36px 1fr;
    }

    .preview-sidebar {
        padding-inline: 3px;
    }

    .preview-sidebar > span {
        width: 19px;
        height: 19px;
    }

    .preview-content {
        padding: 9px;
    }

    .preview-head strong {
        font-size: 13px;
    }

    .preview-pill {
        display: none;
    }

    .preview-stats article {
        padding: 9px;
    }

    .preview-stats strong {
        font-size: 16px;
    }

    .feature-card,
    .problem-card,
    .audience-card,
    .pricing-card {
        padding: 20px;
    }

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

    .footer-links > div:last-child {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

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


@media (max-width: 430px) {
    .mobile-menu-panel {
        width: min(92vw, 370px);
        padding-left: 17px;
    }
}
