:root {
    --blue: #075cff;
    --blue-dark: #0649cb;
    --blue-soft: #eaf1ff;
    --ink: #0b0e14;
    --muted: #626b7a;
    --line: #dce2ec;
    --surface: #ffffff;
    --off-white: #f7f9fc;
    --shadow: 0 24px 70px rgba(17, 38, 78, .12);
    --radius-lg: 30px;
    --radius-md: 20px;
    --shell: 1240px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.dialog-open {
    overflow: hidden;
}

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

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

button {
    font: inherit;
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    left: 16px;
    top: -100px;
    padding: 12px 16px;
    border-radius: 10px;
    color: #fff;
    background: var(--ink);
    transition: top .2s ease;
}

.skip-link:focus {
    top: 16px;
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    border-bottom: 1px solid rgba(220, 226, 236, .82);
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(18px);
}

.nav-wrap,
.footer-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-wrap {
    min-height: 78px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.brand-mark {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: var(--blue);
    box-shadow: 0 9px 20px rgba(7, 92, 255, .24);
    font-size: 19px;
    font-weight: 900;
    letter-spacing: -.06em;
}

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

.brand-copy strong {
    font-size: 18px;
    letter-spacing: .08em;
}

.brand-copy small {
    margin-top: 5px;
    color: #758092;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .18em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 14px;
    font-weight: 700;
}

.main-nav > a:not(.nav-cta) {
    color: #333a46;
}

.main-nav > a:not(.nav-cta):hover {
    color: var(--blue);
}

.nav-cta {
    padding: 12px 18px;
    border-radius: 12px;
    color: #fff;
    background: var(--ink);
    transition: transform .2s ease, background .2s ease;
}

.nav-cta:hover {
    background: var(--blue);
    transform: translateY(-1px);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 94px 0 106px;
    background:
        linear-gradient(90deg, rgba(11, 14, 20, .032) 1px, transparent 1px),
        linear-gradient(rgba(11, 14, 20, .032) 1px, transparent 1px),
        linear-gradient(180deg, #fff 0%, #f8faff 100%);
    background-size: 42px 42px, 42px 42px, auto;
}

.hero::after {
    position: absolute;
    right: -8%;
    bottom: -160px;
    width: 55%;
    height: 420px;
    border-radius: 50%;
    background: rgba(7, 92, 255, .075);
    filter: blur(80px);
    content: "";
}

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

.hero-glow-one {
    top: 70px;
    left: 49%;
    width: 13px;
    height: 13px;
    background: var(--blue);
    box-shadow: 0 0 0 8px rgba(7, 92, 255, .08);
}

.hero-glow-two {
    right: 4%;
    top: 35%;
    width: 8px;
    height: 8px;
    background: var(--ink);
    box-shadow: 0 0 0 7px rgba(11, 14, 20, .05);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
    align-items: center;
    gap: 68px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
}

.eyebrow span {
    width: 26px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
}

.hero h1 {
    max-width: 630px;
    margin: 21px 0 24px;
    font-size: clamp(48px, 5.4vw, 76px);
    line-height: .99;
    letter-spacing: -.06em;
}

.hero h1 span {
    position: relative;
    color: var(--blue);
    white-space: nowrap;
}

.hero h1 span::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 6px;
    border-radius: 50%;
    background: rgba(7, 92, 255, .15);
    content: "";
}

.hero-copy > p {
    max-width: 610px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

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

.hero-actions {
    margin-top: 34px;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 22px;
    border: 0;
    border-radius: 13px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.button svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

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

.button-primary {
    color: #fff;
    background: var(--blue);
    box-shadow: 0 13px 30px rgba(7, 92, 255, .24);
}

.button-primary:hover {
    background: var(--blue-dark);
    box-shadow: 0 16px 38px rgba(7, 92, 255, .3);
}

.button-secondary {
    border: 1px solid var(--line);
    color: var(--ink);
    background: rgba(255, 255, 255, .85);
}

.button-secondary:hover {
    border-color: #aeb8c9;
    box-shadow: 0 12px 30px rgba(28, 40, 63, .08);
}

.hero-proof {
    display: flex;
    gap: 28px;
    margin-top: 44px;
    padding-top: 27px;
    border-top: 1px solid var(--line);
}

.hero-proof div {
    display: grid;
    gap: 5px;
}

.hero-proof strong {
    font-size: 22px;
    letter-spacing: -.03em;
}

.hero-proof span {
    color: #7c8491;
    font-size: 11px;
    font-weight: 700;
}

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

.dashboard-window {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(159, 172, 194, .48);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 35px 90px rgba(22, 45, 90, .2), 0 0 0 10px rgba(255, 255, 255, .62);
    transform: perspective(1400px) rotateY(-3deg) rotateX(1deg);
}

.window-bar {
    display: flex;
    height: 47px;
    align-items: center;
    justify-content: space-between;
    padding: 0 17px;
    border-bottom: 1px solid #e5e9f0;
    color: #8992a1;
    background: #fbfcfe;
    font-size: 9px;
    font-weight: 700;
}

.window-bar b {
    padding: 5px 7px;
    border-radius: 6px;
    color: #0d9b66;
    background: #eafaf4;
    font-size: 7px;
    letter-spacing: .12em;
}

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

.window-dots i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ced4dd;
}

.window-dots i:first-child {
    background: #ff6b6b;
}

.window-dots i:nth-child(2) {
    background: #ffcd54;
}

.window-dots i:nth-child(3) {
    background: #48d49a;
}

.dashboard-body {
    display: grid;
    min-height: 410px;
    grid-template-columns: 68px 1fr;
    background: #f6f8fb;
}

.mini-sidebar {
    display: flex;
    align-items: center;
    gap: 22px;
    padding-top: 20px;
    background: #0c111c;
    flex-direction: column;
}

.mini-logo {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 10px;
    color: #fff;
    background: var(--blue);
    font-size: 14px;
    font-weight: 900;
}

.mini-sidebar i {
    position: relative;
    display: block;
    width: 17px;
    height: 17px;
    border: 2px solid #4d5667;
    border-radius: 5px;
}

.mini-sidebar i.active {
    border-color: #fff;
    background: rgba(255, 255, 255, .12);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, .06);
}

.mini-main {
    padding: 28px 27px;
}

.mini-heading,
.chart-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mini-heading span,
.chart-title span {
    display: grid;
    gap: 5px;
}

.mini-heading b {
    font-size: 14px;
}

.mini-heading small,
.chart-title small {
    color: #8991a0;
    font-size: 8px;
}

.mini-heading > i {
    width: 29px;
    height: 29px;
    border: 5px solid #d9e5ff;
    border-radius: 50%;
    background: var(--blue);
}

.mini-stats {
    display: grid;
    margin-top: 23px;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
}

.mini-stats article {
    position: relative;
    display: grid;
    min-width: 0;
    gap: 8px;
    padding: 16px 13px 14px;
    border: 1px solid #e4e8ef;
    border-radius: 12px;
    background: #fff;
}

.mini-stats article::after {
    position: absolute;
    top: 15px;
    right: 13px;
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: var(--blue);
    content: "";
}

.mini-stats span {
    color: #8b93a0;
    font-size: 7px;
    font-weight: 700;
}

.mini-stats strong {
    font-size: 16px;
    letter-spacing: -.04em;
}

.mini-stats em {
    color: #0fa36b;
    font-size: 7px;
    font-style: normal;
    font-weight: 800;
}

.mini-chart {
    margin-top: 11px;
    padding: 17px 17px 0;
    border: 1px solid #e4e8ef;
    border-radius: 12px;
    background: #fff;
}

.chart-title b {
    font-size: 10px;
}

.chart-title > i {
    width: 52px;
    height: 18px;
    border-radius: 7px;
    background: #edf2fb;
}

.mini-chart svg {
    display: block;
    width: 100%;
    height: 152px;
    margin-top: 5px;
}

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

.chart-line {
    fill: none;
    stroke: var(--blue);
    stroke-linecap: round;
    stroke-width: 4;
}

.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 15px;
    border: 1px solid #e1e6ee;
    border-radius: 14px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 40px rgba(27, 48, 85, .17);
    backdrop-filter: blur(14px);
}

.float-card-one {
    right: -7px;
    bottom: 1px;
}

.float-card-two {
    top: 2px;
    left: -12px;
}

.float-icon {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 9px;
    color: #fff;
    background: var(--blue);
    font-size: 13px;
    font-weight: 900;
}

.float-card-two .float-icon {
    background: var(--ink);
}

.float-card p {
    display: grid;
    gap: 4px;
    margin: 0;
}

.float-card strong {
    font-size: 10px;
}

.float-card small {
    color: #7a8493;
    font-size: 8px;
}

.plans-section {
    padding: 112px 0 124px;
}

.section-heading {
    display: grid;
    grid-template-columns: 1.1fr .7fr;
    align-items: end;
    gap: 70px;
    margin-bottom: 56px;
}

.section-heading h2,
.included-copy h2,
.final-cta-card h2 {
    margin: 15px 0 0;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: -.05em;
}

.section-heading > p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 18px;
}

.plan-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: 0 15px 45px rgba(25, 44, 75, .06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.plan-card:hover {
    border-color: #bfc8d7;
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.plan-basic {
    border: 2px solid var(--blue);
    box-shadow: 0 22px 60px rgba(7, 92, 255, .13);
}

.plan-premium {
    color: #fff;
    border-color: #242a35;
    background: #0b0e14;
    box-shadow: 0 25px 70px rgba(7, 11, 20, .24);
}

.plan-premium:hover {
    border-color: #405684;
    box-shadow: 0 30px 84px rgba(7, 11, 20, .32);
}

.premium-shine {
    position: absolute;
    top: -100px;
    right: -90px;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    background: rgba(7, 92, 255, .35);
    filter: blur(65px);
    pointer-events: none;
}

.popular-ribbon {
    position: absolute;
    top: 0;
    right: 28px;
    padding: 8px 13px;
    border-radius: 0 0 10px 10px;
    color: #fff;
    background: var(--blue);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .12em;
}

.premium-ribbon {
    color: var(--ink);
    background: #fff;
}

.plan-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

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

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

.plan-premium .plan-icon {
    color: #fff;
    background: var(--blue);
}

.plan-label {
    margin-right: 5px;
    color: #8d95a2;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .16em;
}

.plan-premium .plan-label {
    color: #aeb6c5;
}

.plan-card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 25px;
    letter-spacing: -.04em;
}

.plan-intro {
    position: relative;
    z-index: 1;
    min-height: 66px;
    margin: 10px 0 18px;
    color: #707988;
    font-size: 13px;
    line-height: 1.65;
}

.plan-premium .plan-intro {
    color: #aab2c0;
}

.price-row {
    display: flex;
    min-height: 74px;
    align-items: flex-start;
    padding: 4px 0;
}

.price-row .currency {
    margin-top: 10px;
    color: var(--blue);
    font-size: 19px;
    font-weight: 900;
}

.price-row > strong {
    margin-left: 2px;
    font-size: 58px;
    line-height: 1;
    letter-spacing: -.07em;
}

.price-label {
    margin: 13px 0 0 10px;
    color: #9199a6;
    font-size: 9px;
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
}

.billing-line {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: 1px;
    color: #7b8492;
    font-size: 12px;
}

.billing-line b {
    color: var(--ink);
    font-size: 17px;
}

.dual-pricing {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 87px;
    padding: 15px 0 12px;
    grid-template-columns: 1fr 1.16fr;
    gap: 12px;
}

.dual-pricing div {
    display: grid;
    gap: 6px;
}

.dual-pricing div + div {
    padding-left: 12px;
    border-left: 1px solid #353b47;
}

.dual-pricing span {
    color: #8f9aab;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .11em;
}

.dual-pricing strong {
    font-size: 31px;
    letter-spacing: -.06em;
}

.dual-pricing small {
    margin-right: 2px;
    color: #7aa6ff;
    font-size: 13px;
}

.premium-billing,
.premium-billing b {
    color: #fff;
}

.premium-billing {
    opacity: .82;
}

.plan-meta {
    display: grid;
    gap: 13px;
    margin: 24px 0;
    padding: 17px;
    border: 1px solid #e4e8ee;
    border-radius: 15px;
    background: #f8f9fb;
}

.plan-meta div {
    display: grid;
    gap: 5px;
}

.plan-meta div + div {
    padding-top: 12px;
    border-top: 1px solid #e3e7ed;
}

.plan-meta span {
    color: #8d96a4;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.plan-meta strong {
    font-size: 11px;
    line-height: 1.5;
}

.premium-meta {
    position: relative;
    z-index: 1;
    border-color: #303744;
    background: #141923;
}

.premium-meta p {
    margin: 0;
    color: #818c9e;
    font-size: 9px;
}

.included-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: -4px 0 21px;
    padding: 10px 12px;
    border-radius: 10px;
    color: #0753e4;
    background: var(--blue-soft);
    font-size: 10px;
    font-weight: 900;
}

.included-pill span {
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--blue);
    font-size: 9px;
}

.key-features {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.key-features li {
    display: grid;
    grid-template-columns: 21px 1fr;
    align-items: start;
    gap: 8px;
    color: #434b58;
    font-size: 12px;
    font-weight: 650;
    line-height: 1.45;
}

.key-features i {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 6px;
    color: var(--blue);
    background: var(--blue-soft);
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
}

.plan-premium .key-features li {
    color: #d8dde6;
}

.plan-premium .key-features i {
    color: #fff;
    background: #183a7b;
}

.feature-details {
    position: relative;
    z-index: 1;
    margin-top: 22px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.feature-details summary {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    list-style: none;
    color: #323945;
    font-size: 11px;
    font-weight: 900;
}

.feature-details summary::-webkit-details-marker {
    display: none;
}

.feature-details summary span {
    display: grid;
    width: 23px;
    height: 23px;
    place-items: center;
    border-radius: 7px;
    background: #f0f3f7;
    font-size: 15px;
    transition: transform .2s ease;
}

.feature-details[open] summary span {
    transform: rotate(45deg);
}

.feature-groups {
    display: grid;
    gap: 20px;
    padding: 4px 2px 20px;
}

.feature-groups h4 {
    margin: 0 0 9px;
    color: var(--blue);
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.feature-groups ul {
    display: grid;
    gap: 7px;
    margin: 0;
    padding-left: 17px;
    color: #646d7b;
    font-size: 10px;
    line-height: 1.45;
}

.premium-details {
    border-color: #313744;
}

.premium-details summary {
    color: #e8ebf0;
}

.premium-details summary span {
    background: #202632;
}

.premium-details .feature-groups ul {
    color: #9ca6b5;
}

.plan-actions {
    position: relative;
    z-index: 1;
    margin-top: 24px;
    flex-wrap: wrap;
}

.plan-actions .button {
    min-height: 47px;
    padding-inline: 15px;
    flex: 1 1 130px;
    font-size: 11px;
}

.button-preview {
    border: 1px solid #d9dfe8;
    color: #333b48;
    background: #fff;
}

.button-preview:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: #f8fbff;
}

.button-plan {
    color: #fff;
    background: var(--ink);
}

.button-plan:hover {
    background: var(--blue);
}

.premium-preview {
    border-color: #343b48;
    color: #e8ebef;
    background: #171c26;
}

.premium-preview:hover {
    border-color: #688ed7;
    color: #fff;
    background: #1c315b;
}

.premium-plan-button {
    color: var(--ink);
    background: #fff;
}

.premium-plan-button:hover {
    color: #fff;
    background: var(--blue);
}

.included-section {
    padding: 110px 0;
    color: #fff;
    background:
        radial-gradient(circle at 78% 10%, rgba(7, 92, 255, .34), transparent 28%),
        linear-gradient(135deg, #090c12 0%, #111723 100%);
}

.included-grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    align-items: center;
    gap: 90px;
}

.eyebrow-light {
    color: #79a5ff;
}

.included-copy h2 {
    max-width: 470px;
}

.included-copy p {
    max-width: 500px;
    margin: 23px 0 28px;
    color: #a8b0bf;
    font-size: 15px;
    line-height: 1.8;
}

.button-light {
    color: var(--ink);
    background: #fff;
}

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

.benefit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.benefit-grid article {
    min-height: 220px;
    padding: 26px;
    border: 1px solid #273040;
    border-radius: 19px;
    background: rgba(255, 255, 255, .035);
    transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.benefit-grid article:hover {
    border-color: #446aac;
    background: rgba(255, 255, 255, .06);
    transform: translateY(-3px);
}

.benefit-grid article > span {
    color: #6d95e7;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .15em;
}

.benefit-grid h3 {
    margin: 43px 0 12px;
    font-size: 17px;
    letter-spacing: -.025em;
}

.benefit-grid p {
    margin: 0;
    color: #98a2b2;
    font-size: 12px;
    line-height: 1.7;
}

.final-cta {
    padding: 92px 0;
}

.final-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 55px 60px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background:
        linear-gradient(90deg, rgba(7, 92, 255, .055) 1px, transparent 1px),
        linear-gradient(rgba(7, 92, 255, .055) 1px, transparent 1px),
        #f8faff;
    background-size: 28px 28px, 28px 28px, auto;
}

.final-cta-card > div > span {
    color: var(--blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .16em;
}

.final-cta-card h2 {
    max-width: 700px;
    font-size: clamp(31px, 3.5vw, 46px);
}

.final-cta-card .button {
    flex: 0 0 auto;
}

.site-footer {
    padding: 34px 0;
    border-top: 1px solid var(--line);
    color: #7c8491;
    background: #fff;
    font-size: 11px;
}

.footer-wrap {
    gap: 30px;
}

.footer-brand .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 15px;
}

.footer-brand .brand-copy strong {
    color: var(--ink);
    font-size: 15px;
}

.site-footer p {
    margin: 0;
}

.preview-dialog {
    width: min(1100px, calc(100% - 30px));
    max-height: calc(100vh - 36px);
    margin: auto;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 22px;
    color: var(--ink);
    background: #fff;
    box-shadow: 0 35px 120px rgba(0, 0, 0, .38);
}

.preview-dialog::backdrop {
    background: rgba(5, 9, 15, .78);
    backdrop-filter: blur(8px);
}

.dialog-bar,
.dialog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dialog-bar {
    padding: 18px 20px 16px 24px;
    border-bottom: 1px solid var(--line);
}

.dialog-bar > div {
    display: grid;
    gap: 4px;
}

.dialog-bar span {
    color: var(--blue);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .16em;
}

.dialog-bar h2 {
    margin: 0;
    font-size: 18px;
}

.dialog-close {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 0;
    border-radius: 11px;
    color: #39404c;
    background: #f0f3f7;
    cursor: pointer;
    font-size: 25px;
    line-height: 1;
}

.dialog-close:hover {
    color: #fff;
    background: var(--ink);
}

.dialog-image-wrap {
    max-height: calc(100vh - 180px);
    padding: 16px;
    overflow: auto;
    background: #edf1f7;
}

.dialog-image-wrap img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 10px 35px rgba(22, 41, 76, .15);
}

.dialog-footer {
    gap: 20px;
    padding: 14px 24px;
    border-top: 1px solid var(--line);
}

.dialog-footer p {
    margin: 0;
    color: #7d8591;
    font-size: 10px;
}

.dialog-footer a {
    color: var(--blue);
    font-size: 11px;
    font-weight: 900;
}

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

    .hero h1 {
        font-size: clamp(44px, 6vw, 63px);
    }

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

    .mini-stats article:last-child {
        display: none;
    }

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

    .plan-premium {
        grid-column: 1 / -1;
        width: min(620px, 100%);
        justify-self: center;
    }

    .included-grid {
        gap: 45px;
    }
}

@media (max-width: 800px) {
    .main-nav > a:not(.nav-cta) {
        display: none;
    }

    .main-nav {
        gap: 0;
    }

    .hero {
        padding: 70px 0 80px;
    }

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

    .hero h1 {
        max-width: 670px;
        font-size: clamp(46px, 11vw, 68px);
    }

    .hero-copy > p {
        max-width: 650px;
    }

    .hero-visual {
        width: min(680px, 100%);
        margin: 25px auto 0;
    }

    .section-heading,
    .included-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        gap: 20px;
    }

    .included-grid {
        gap: 52px;
    }

    .included-copy h2 {
        max-width: 650px;
    }

    .final-cta-card {
        align-items: flex-start;
        padding: 44px;
        flex-direction: column;
    }

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

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

    .nav-wrap {
        min-height: 70px;
    }

    .brand-copy small {
        display: none;
    }

    .nav-cta {
        padding: 11px 15px;
        font-size: 12px;
    }

    .hero {
        padding-top: 55px;
    }

    .hero h1 {
        font-size: clamp(42px, 13vw, 58px);
    }

    .hero-copy > p {
        font-size: 16px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

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

    .hero-proof {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .hero-proof strong {
        font-size: 19px;
    }

    .hero-proof span {
        font-size: 9px;
        line-height: 1.35;
    }

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

    .dashboard-window {
        border-radius: 18px;
        transform: none;
    }

    .dashboard-body {
        min-height: 320px;
        grid-template-columns: 50px 1fr;
    }

    .mini-sidebar {
        gap: 17px;
    }

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

    .mini-sidebar i {
        width: 14px;
        height: 14px;
    }

    .mini-main {
        padding: 20px 15px;
    }

    .mini-stats article {
        padding: 13px 10px;
    }

    .mini-stats strong {
        font-size: 13px;
    }

    .mini-chart svg {
        height: 105px;
    }

    .float-card {
        display: none;
    }

    .plans-section,
    .included-section {
        padding: 82px 0;
    }

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

    .plan-premium {
        grid-column: auto;
    }

    .plan-card {
        padding: 24px;
        border-radius: 24px;
    }

    .plan-intro {
        min-height: 0;
    }

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

    .benefit-grid article {
        min-height: 190px;
    }

    .final-cta {
        padding: 62px 0;
    }

    .final-cta-card {
        padding: 34px 25px;
    }

    .final-cta-card .button {
        width: 100%;
    }

    .dialog-footer p {
        display: none;
    }
}

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

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