:root {
    --bg: #f6f7f3;
    --surface: #ffffff;
    --surface-soft: #f1f3ef;

    --ink: #101522;
    --ink-soft: #626a78;
    --ink-muted: #9299a4;

    --line: rgba(16, 21, 34, 0.09);
    --line-strong: rgba(16, 21, 34, 0.16);

    --primary: #315cf4;
    --primary-soft: #e9edff;

    --mint: #59d99f;
    --mint-dark: #27845f;
    --mint-soft: #e9fbf3;

    --dark: #101522;

    --warning: #ac672f;
    --warning-soft: #fff2e5;

    --danger: #c94c4c;
    --danger-soft: #fff0f0;

    --shadow-small:
        0 10px 30px rgba(18, 24, 40, 0.06);

    --shadow-medium:
        0 24px 70px rgba(18, 24, 40, 0.11);

    --shadow-large:
        0 40px 100px rgba(18, 24, 40, 0.15);

    --container: 1220px;
    --header-height: 82px;
}


/* =========================================================
   RESET
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background: var(--bg);
    color: var(--ink);

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Inter,
        Helvetica,
        Arial,
        sans-serif;

    font-size: 16px;
    line-height: 1.5;

    -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
    overflow: hidden;
}

button,
input {
    font: inherit;
}

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

button {
    color: inherit;
}

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

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}


/* =========================================================
   GLOBAL
   ========================================================= */

.container {
    width:
        min(
            calc(100% - 48px),
            var(--container)
        );

    margin-inline: auto;
}

.skip-link {
    position: fixed;

    left: 12px;
    top: 12px;

    z-index: 5000;

    padding: 10px 14px;

    border-radius: 10px;

    background: var(--ink);
    color: #fff;

    transform: translateY(-150%);
}

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

.section-kicker {
    display: block;

    margin-bottom: 16px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 750;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: fixed;

    inset:
        0 0 auto;

    z-index: 1000;

    height: var(--header-height);

    border-bottom:
        1px solid transparent;

    background:
        rgba(248, 249, 246, 0.88);

    backdrop-filter:
        blur(18px)
        saturate(130%);

    transition:
        background 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.site-header.scrolled {
    border-color: var(--line);

    background:
        rgba(248, 249, 246, 0.97);

    box-shadow:
        0 8px 25px
        rgba(18, 24, 40, 0.035);
}

.header-inner {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    white-space: nowrap;
}

.brand-mark {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: var(--ink);
    color: #fff;

    font-size: 14px;
    font-weight: 800;
}

.brand-copy {
    display: flex;
    align-items: baseline;

    gap: 4px;
}

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

    letter-spacing: -0.035em;
}

.brand-copy span {
    color: var(--ink-soft);

    font-size: 15px;
}

.desktop-nav {
    display: flex;
    align-items: center;

    gap: 31px;

    margin-left: auto;
}

.desktop-nav a {
    color: #525b68;

    font-size: 14px;
    font-weight: 620;
}

.desktop-nav a:hover {
    color: var(--ink);
}

.header-actions {
    display: flex;
    align-items: center;

    margin-left: 5px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border:
        1px solid transparent;

    border-radius: 13px;

    font-weight: 720;

    cursor: pointer;

    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        background 160ms ease,
        border-color 160ms ease,
        opacity 160ms ease;
}

.button:not(:disabled):hover {
    transform: translateY(-1px);
}

.button:disabled {
    opacity: 0.4;

    cursor: not-allowed;
}

.button-small {
    min-height: 44px;

    padding:
        0 18px;

    font-size: 13px;
}

.button-large {
    min-height: 56px;

    padding:
        0 25px;

    font-size: 14px;
}

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

    box-shadow:
        0 10px 25px
        rgba(16, 21, 34, 0.16);
}

.button-primary:not(:disabled):hover {
    background: #202737;

    box-shadow:
        0 14px 30px
        rgba(16, 21, 34, 0.2);
}

.button-secondary {
    border-color: var(--line-strong);

    background: #fff;
    color: var(--ink);
}

.text-button {
    padding: 8px;

    border: 0;

    background: transparent;
    color: var(--ink-soft);

    font-size: 11px;
    font-weight: 650;

    cursor: pointer;
}


/* =========================================================
   MOBILE NAV
   ========================================================= */

.menu-button {
    display: none;

    width: 44px;
    height: 44px;

    border: 0;
    border-radius: 12px;

    background:
        rgba(16, 21, 34, 0.05);

    cursor: pointer;
}

.menu-button span {
    display: block;

    width: 18px;
    height: 2px;

    margin: 4px auto;

    border-radius: 999px;

    background: var(--ink);
}

.mobile-nav {
    display: none;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: 820px;

    padding:
        calc(var(--header-height) + 82px)
        0 90px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #f8f9f6,
            var(--bg)
        );
}

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(16, 21, 34, 0.024) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(16, 21, 34, 0.024) 1px,
            transparent 1px
        );

    background-size: 58px 58px;

    mask-image:
        linear-gradient(
            to bottom,
            #000,
            transparent 80%
        );

    pointer-events: none;
}

.hero-glow {
    position: absolute;

    border-radius: 999px;

    filter: blur(20px);

    pointer-events: none;
}

.hero-glow-one {
    width: 500px;
    height: 500px;

    right: -170px;
    top: 100px;

    background:
        radial-gradient(
            circle,
            rgba(80, 118, 255, 0.3),
            transparent 68%
        );
}

.hero-glow-two {
    width: 560px;
    height: 560px;

    left: 20%;
    bottom: -250px;

    background:
        radial-gradient(
            circle,
            rgba(89, 217, 159, 0.18),
            transparent 68%
        );
}

.hero-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 0.88fr)
        minmax(560px, 1.12fr);

    align-items: center;

    gap: 72px;
}

.hero-copy {
    max-width: 550px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 24px;

    padding:
        7px 11px;

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

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.65);

    color: #505865;

    font-size: 12px;
    font-weight: 700;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;

    border-radius: 999px;

    background: var(--mint);

    box-shadow:
        0 0 0 4px
        rgba(89, 217, 159, 0.15);
}

.hero h1 {
    margin: 0;

    max-width: 610px;

    font-size:
        clamp(50px, 5vw, 73px);

    line-height: 0.98;

    font-weight: 780;

    letter-spacing: -0.065em;
}

.hero h1 span {
    display: block;

    color: #717987;
}

.hero-lead {
    margin:
        20px 0 0;

    color: var(--primary);

    font-size: 20px;
    font-weight: 720;
}

.hero-description {
    margin:
        16px 0 0;

    max-width: 540px;

    color: var(--ink-soft);

    font-size: 17px;
    line-height: 1.68;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;

    gap: 20px;

    margin-top: 28px;
}

.hero-point {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: #646c78;

    font-size: 12px;
    font-weight: 620;
}

.check {
    width: 20px;
    height: 20px;

    display: grid;
    place-items: center;

    border-radius: 999px;

    background: var(--mint-soft);
    color: var(--mint-dark);

    font-size: 11px;
    font-weight: 800;
}


/* =========================================================
   PLATFORM MOCKUP
   ========================================================= */

.hero-product {
    position: relative;

    min-width: 0;

    perspective: 1200px;
}

.product-caption {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    margin:
        0 0 12px 10px;

    color: #7c8490;

    font-size: 10px;
    font-weight: 650;
}

.product-caption-dot {
    width: 6px;
    height: 6px;

    border-radius: 999px;

    background: var(--primary);
}

.platform-window {
    overflow: hidden;

    border:
        1px solid rgba(16, 21, 34, 0.1);

    border-radius: 24px;

    background: #fff;

    box-shadow: var(--shadow-large);

    transform:
        rotateY(-1.3deg)
        rotateX(0.8deg);

    transition:
        transform 220ms ease;
}

.platform-toolbar {
    height: 54px;

    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items: center;

    padding:
        0 17px;

    border-bottom:
        1px solid #e5e9ed;

    background: #f9fafb;
}

.window-controls {
    display: flex;

    gap: 6px;
}

.window-controls span {
    width: 8px;
    height: 8px;

    border-radius: 999px;

    background: #ccd2da;
}

.toolbar-url {
    min-width: 160px;

    padding:
        7px 18px;

    border:
        1px solid #dfe3e8;

    border-radius: 999px;

    background: #fff;

    color: #737c88;

    font-size: 9px;

    text-align: center;
}

.toolbar-user {
    justify-self: end;

    width: 26px;
    height: 26px;

    display: grid;
    place-items: center;

    border-radius: 8px;

    background: #e9edf2;

    font-size: 8px;
    font-weight: 800;
}

.platform-layout {
    display: grid;

    grid-template-columns:
        146px 1fr;

    min-height: 490px;
}

.platform-sidebar {
    display: flex;
    flex-direction: column;

    padding:
        24px 16px 18px;

    border-right:
        1px solid #e9edf0;

    background: #fafbfb;
}

.demo-brand {
    display: flex;
    align-items: center;

    gap: 9px;
}

.demo-logo {
    width: 31px;
    height: 31px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background: var(--ink);
    color: #fff;

    font-size: 11px;
    font-weight: 800;
}

.demo-brand > div:last-child {
    display: flex;
    flex-direction: column;
}

.demo-brand strong {
    font-size: 9px;
}

.demo-brand span {
    color: var(--ink-muted);

    font-size: 8px;
}

.demo-nav {
    display: grid;

    gap: 6px;

    margin-top: 35px;
}

.demo-nav-item {
    display: flex;
    align-items: center;

    gap: 9px;

    padding:
        9px 10px;

    border-radius: 9px;

    color: #727a85;

    font-size: 8px;
    font-weight: 650;
}

.demo-nav-item.active {
    background: #e9edf3;
    color: var(--ink);
}

.demo-help {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-top: auto;

    padding: 10px;

    border:
        1px solid #e4e8ec;

    border-radius: 10px;

    background: #fff;
}

.help-icon {
    width: 25px;
    height: 25px;

    display: grid;
    place-items: center;

    border-radius: 8px;

    background: var(--primary-soft);
    color: var(--primary);

    font-size: 10px;
    font-weight: 800;
}

.demo-help > div {
    display: flex;
    flex-direction: column;
}

.demo-help strong {
    font-size: 7px;
}

.demo-help span:last-child {
    color: var(--ink-muted);

    font-size: 6px;
}

.platform-main {
    padding:
        26px 28px;

    background:
        linear-gradient(
            180deg,
            #fff,
            #f9fafc
        );
}

.platform-main-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hello {
    display: block;

    color: var(--ink-muted);

    font-size: 8px;
}

.platform-main h2 {
    margin:
        1px 0 0;

    font-size: 22px;
}

.avatar {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: #e9edf2;

    font-size: 9px;
    font-weight: 800;
}

.required-panel {
    margin-top: 26px;
}

.panel-heading {
    display: flex;
    justify-content: space-between;

    margin-bottom: 12px;
}

.panel-heading > div {
    display: flex;
    align-items: baseline;

    gap: 8px;
}

.panel-heading span {
    color: #747c88;

    font-size: 8px;
}

.panel-heading strong {
    font-size: 9px;
}

.status-pill {
    padding:
        5px 8px;

    border-radius: 999px;

    background: var(--warning-soft);
    color: var(--warning) !important;

    font-size: 6px !important;
    font-weight: 700;
}

.training-card {
    display: grid;

    grid-template-columns:
        42px 1fr 29px;

    align-items: center;

    gap: 12px;

    margin-bottom: 10px;

    padding: 13px;

    border:
        1px solid #e4e8ed;

    border-radius: 13px;

    background: #fff;

    box-shadow: var(--shadow-small);
}

.training-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    font-size: 13px;
    font-weight: 800;
}

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

.training-icon.green {
    background: var(--mint-soft);
    color: var(--mint-dark);
}

.training-body small {
    color: #808895;

    font-size: 6px;
    font-weight: 800;
}

.training-body h3 {
    margin:
        2px 0 0;

    font-size: 9px;
}

.training-details {
    display: flex;

    gap: 10px;

    margin-top: 5px;

    color: var(--ink-muted);

    font-size: 6px;
}

.progress-track {
    height: 3px;

    margin-top: 9px;

    overflow: hidden;

    border-radius: 999px;

    background: #e5e9ee;
}

.progress-track span {
    display: block;

    width: 62%;
    height: 100%;

    background: var(--primary);
}

.continue-button {
    width: 29px;
    height: 29px;

    display: grid;
    place-items: center;

    border:
        1px solid #dde2e8;

    border-radius: 8px;

    background: #f8fafc;

    font-size: 10px;
}

.mini-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;

    margin-top: 19px;
}

.mini-card {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 15px;

    border:
        1px solid #e5e9ed;

    border-radius: 13px;

    background: #fff;
}

.mini-card span {
    color: var(--ink-muted);

    font-size: 7px;
}

.mini-card strong {
    font-size: 18px;
}

.floating-card {
    position: absolute;

    z-index: 4;

    display: flex;
    align-items: center;

    gap: 10px;

    padding:
        11px 13px;

    border:
        1px solid rgba(16, 21, 34, 0.08);

    border-radius: 13px;

    background:
        rgba(255, 255, 255, 0.97);

    box-shadow: var(--shadow-medium);
}

.floating-card-top {
    top: 120px;
    right: -25px;
}

.floating-card-bottom {
    left: -32px;
    bottom: 62px;
}

.floating-card > div:last-child {
    display: flex;
    flex-direction: column;
}

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

.floating-card span {
    color: var(--ink-muted);

    font-size: 6px;
}

.floating-icon {
    width: 27px;
    height: 27px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background: var(--mint-soft);
    color: var(--mint-dark);

    font-size: 10px;
}

.floating-progress {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border:
        4px solid var(--primary-soft);

    border-top-color: var(--primary);

    border-radius: 999px;

    font-size: 7px;
    font-weight: 800;
}


/* =========================================================
   STRIP
   ========================================================= */

.audience-strip {
    padding:
        30px 0;

    border-top:
        1px solid var(--line);

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

    background: #fff;
}

.audience-strip .container {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 14px;
}

.audience-strip p {
    margin: 0;

    color: #8a929d;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.1em;
}

.audience-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

    gap: 15px;

    color: #505967;

    font-size: 13px;
    font-weight: 650;
}

.audience-items i {
    width: 4px;
    height: 4px;

    border-radius: 999px;

    background: #bcc3cc;
}


/* =========================================================
   SHARED HEADINGS
   ========================================================= */

.section-intro {
    max-width: 850px;

    margin-bottom: 50px;
}

.section-intro h2,
.split-heading h2,
.content-section h2,
.faq-intro h2 {
    margin: 0;

    font-size:
        clamp(38px, 4vw, 57px);

    line-height: 1.04;

    letter-spacing: -0.055em;
}

.section-intro p,
.section-copy {
    max-width: 620px;

    margin:
        20px 0 0;

    color: var(--ink-soft);

    font-size: 16px;
    line-height: 1.7;
}

.split-heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.52fr);

    align-items: end;

    gap: 80px;

    margin-bottom: 50px;
}

.split-heading h2 {
    max-width: 680px;
}

.split-heading > p {
    margin:
        0 0 4px;

    color: var(--ink-soft);

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   ROLES
   ========================================================= */

.experience-section {
    padding:
        110px 0;

    background: #fff;
}

.experience-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.experience-card {
    padding: 27px;

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

    border-radius: 22px;

    background:
        linear-gradient(
            180deg,
            #fff,
            #fafbfa
        );
}

.experience-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 26px;
}

.experience-card-head > span {
    padding:
        5px 9px;

    border-radius: 999px;

    background: var(--surface-soft);

    color: #68717e;

    font-size: 10px;
    font-weight: 650;
}

.experience-card-head small {
    color: #adb4bd;

    font-size: 11px;
}

.experience-card h3 {
    margin: 0;

    font-size: 23px;

    letter-spacing: -0.04em;
}

.experience-card > p {
    min-height: 69px;

    margin:
        12px 0 26px;

    color: var(--ink-soft);

    font-size: 13px;
    line-height: 1.65;
}

.role-widget {
    min-height: 242px;

    padding: 18px;

    border:
        1px solid #e4e8ec;

    border-radius: 17px;

    background: #fff;

    box-shadow: var(--shadow-small);
}

.role-widget-head,
.team-summary,
.admin-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.role-widget-head > div,
.team-summary > div,
.admin-status > div {
    display: flex;
    flex-direction: column;
}

.role-widget-head small,
.team-summary small,
.admin-status small {
    color: var(--ink-muted);

    font-size: 9px;
}

.role-widget-head strong,
.team-summary strong {
    font-size: 15px;
}

.role-widget-head > span {
    width: 31px;
    height: 31px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background: #edf0f4;

    font-size: 9px;
    font-weight: 800;
}

.role-task {
    margin-top: 22px;

    padding: 15px;

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

    border-radius: 13px;

    background: #fcfcfd;
}

.role-task > small {
    color: var(--primary);

    font-size: 8px;
    font-weight: 800;
}

.role-task > strong {
    display: block;

    margin-top: 6px;

    font-size: 13px;
}

.role-task > span {
    display: block;

    margin-top: 4px;

    color: var(--ink-muted);

    font-size: 9px;
}

.role-progress {
    height: 4px;

    margin-top: 13px;

    border-radius: 999px;

    background: #e8ebef;

    overflow: hidden;
}

.role-progress i {
    display: block;

    width: 62%;
    height: 100%;

    background: var(--primary);
}

.role-action {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 11px;

    padding:
        11px 13px;

    border-radius: 10px;

    background: var(--ink);
    color: #fff;

    font-size: 9px;
    font-weight: 700;
}

.team-summary > span {
    width: 47px;
    height: 47px;

    display: grid;
    place-items: center;

    border:
        5px solid var(--primary-soft);

    border-top-color: var(--primary);

    border-radius: 999px;

    font-size: 9px;
    font-weight: 800;
}

.team-line {
    display: grid;

    grid-template-columns:
        8px 1fr auto;

    align-items: center;

    gap: 10px;

    padding:
        13px 0;

    border-bottom:
        1px solid #edf0f2;
}

.team-line:last-child {
    border-bottom: 0;
}

.team-line i {
    width: 8px;
    height: 8px;

    border-radius: 999px;
}

.team-line.good i {
    background: var(--mint);
}

.team-line.warning i {
    background: #f0ad68;
}

.team-line.danger i {
    background: #ea7474;
}

.team-line span {
    color: var(--ink-soft);

    font-size: 11px;
}

.team-line strong {
    font-size: 11px;
}

.admin-status > div strong {
    font-size: 27px;
}

.admin-status > span {
    padding:
        5px 8px;

    border-radius: 999px;

    background: var(--mint-soft);
    color: var(--mint-dark);

    font-size: 8px;
    font-weight: 700;
}

.admin-bar {
    display: grid;

    grid-template-columns:
        68px 1fr 25px;

    align-items: center;

    gap: 9px;

    margin-top: 15px;
}

.admin-bar > span {
    color: var(--ink-muted);

    font-size: 8px;
}

.admin-bar > div {
    height: 5px;

    overflow: hidden;

    border-radius: 999px;

    background: #e8ebef;
}

.admin-bar i {
    display: block;

    height: 100%;

    border-radius: inherit;

    background: var(--primary);
}

.admin-bar strong {
    font-size: 8px;

    text-align: right;
}

.mock-button {
    margin-top: 23px;

    padding: 10px;

    border:
        1px solid #dde2e7;

    border-radius: 10px;

    background: #fafbfc;

    color: #59616c;

    font-size: 9px;
    font-weight: 700;

    text-align: center;
}


/* =========================================================
   INCLUDED
   ========================================================= */

.included-section {
    padding:
        108px 0;

    background: var(--bg);
}

.included-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;
}

.included-card {
    min-height: 320px;

    padding: 25px;

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

    border-radius: 20px;

    background: #fff;
}

.included-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    margin-bottom: 42px;

    border-radius: 13px;

    background: var(--primary-soft);
    color: var(--primary);

    font-weight: 800;
}

.included-card h3 {
    margin: 0;

    font-size: 20px;
}

.included-card > p {
    min-height: 64px;

    margin:
        11px 0 19px;

    color: var(--ink-soft);

    font-size: 13px;
    line-height: 1.62;
}

.included-card ul {
    display: grid;

    gap: 10px;

    padding-top: 18px;

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

.included-card li {
    position: relative;

    padding-left: 16px;

    color: #5c6571;

    font-size: 11px;
}

.included-card li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 7px;

    width: 5px;
    height: 5px;

    border-radius: 999px;

    background: var(--primary);
}

.included-card-dark {
    border-color: var(--dark);

    background: var(--dark);
    color: #fff;
}

.included-card-dark .included-icon {
    background:
        rgba(89, 217, 159, 0.13);

    color: var(--mint);
}

.included-card-dark > p,
.included-card-dark li {
    color: #adb5c0;
}

.included-card-dark ul {
    border-color:
        rgba(255, 255, 255, 0.1);
}

.included-card-dark li::before {
    background: var(--mint);
}


/* =========================================================
   CONTENT
   ========================================================= */

.content-section {
    padding:
        110px 0;

    background: #fff;
}

.content-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(450px, 0.68fr);

    align-items: center;

    gap: 110px;
}

.content-section h2 {
    max-width: 590px;
}

.content-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 28px;
}

.content-tags span {
    padding:
        7px 11px;

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

    border-radius: 999px;

    background: var(--bg);

    color: #5b6470;

    font-size: 10px;
    font-weight: 650;
}

.content-note {
    margin-top: 20px;

    color: var(--ink-muted);

    font-size: 12px;
}

.content-library {
    padding: 22px;

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

    border-radius: 22px;

    background: #fff;

    box-shadow: var(--shadow-medium);
}

.content-library-head {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 17px;

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

.content-library-head strong {
    font-size: 12px;
}

.content-library-head span {
    color: var(--ink-muted);

    font-size: 9px;
}

.library-row {
    display: grid;

    grid-template-columns:
        42px 1fr auto;

    align-items: center;

    gap: 13px;

    padding:
        15px 0;

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

.library-row:last-child {
    border-bottom: 0;
}

.format {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    font-size: 9px;
    font-weight: 800;
}

.format-blue {
    background: var(--primary-soft);
    color: var(--primary);
}

.format-green {
    background: var(--mint-soft);
    color: var(--mint-dark);
}

.format-orange {
    background: #fff0df;
    color: #a56728;
}

.format-violet {
    background: #f0ebff;
    color: #7252bf;
}

.library-row > div {
    display: flex;
    flex-direction: column;
}

.library-row > div strong {
    font-size: 11px;
}

.library-row > div small {
    margin-top: 3px;

    color: var(--ink-muted);

    font-size: 9px;
}

.library-row > i {
    padding:
        5px 7px;

    border-radius: 999px;

    background: var(--mint-soft);
    color: var(--mint-dark);

    font-style: normal;
    font-size: 8px;
    font-weight: 700;
}


/* =========================================================
   HOW
   ========================================================= */

.how-section {
    padding:
        108px 0;

    background: var(--bg);
}

.steps-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.step-card {
    position: relative;

    min-height: 225px;

    padding: 27px;

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

    border-radius: 21px;

    background: #fff;
}

.step-card > small {
    position: absolute;

    top: 25px;
    right: 25px;

    color: #adb4bd;

    font-size: 11px;
}

.step-card > span {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    margin-bottom: 34px;

    border-radius: 13px;

    background: var(--primary-soft);
    color: var(--primary);
}

.step-card h3 {
    margin: 0;

    font-size: 22px;
}

.step-card p {
    margin:
        11px 0 0;

    color: var(--ink-soft);

    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   MANAGED
   ========================================================= */

.managed-section {
    padding:
        110px 0;

    background:
        radial-gradient(
            circle at 82% 20%,
            rgba(49, 92, 244, 0.25),
            transparent 34%
        ),
        var(--dark);

    color: #fff;
}

.managed-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(420px, 0.7fr);

    align-items: center;

    gap: 90px;
}

.dark-kicker {
    display: block;

    margin-bottom: 18px;

    color: #9db2ff;

    font-size: 12px;
    font-weight: 750;
}

.managed-section h2 {
    margin: 0;

    max-width: 630px;

    font-size:
        clamp(40px, 4vw, 58px);

    line-height: 1.03;

    letter-spacing: -0.055em;
}

.managed-section p {
    max-width: 560px;

    margin:
        22px 0 0;

    color: #abb2bf;

    font-size: 16px;
    line-height: 1.7;
}

.managed-list {
    display: grid;

    gap: 13px;

    margin-top: 32px;
}

.managed-list > div {
    display: flex;
    align-items: center;

    gap: 11px;

    color: #d7dbe1;

    font-size: 13px;
}

.managed-list span {
    width: 23px;
    height: 23px;

    display: grid;
    place-items: center;

    border-radius: 999px;

    background:
        rgba(89, 217, 159, 0.13);

    color: var(--mint);

    font-size: 10px;
}

.operations-card {
    padding: 25px;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: 23px;

    background:
        rgba(255, 255, 255, 0.07);

    box-shadow:
        0 40px 90px
        rgba(0, 0, 0, 0.25);
}

.operations-card-head {
    display: flex;
    justify-content: space-between;

    color: #cdd3dc;

    font-size: 11px;
}

.operations-card-head > div {
    display: flex;
    align-items: center;

    gap: 8px;
}

.operations-card-head small {
    color: #7f8895;

    font-size: 9px;
}

.live-dot {
    width: 7px;
    height: 7px;

    border-radius: 999px;

    background: var(--mint);
}

.health-ring {
    width: 132px;
    height: 132px;

    display: grid;
    place-items: center;

    margin:
        38px auto;

    border:
        10px solid
        rgba(255, 255, 255, 0.08);

    border-top-color: var(--mint);
    border-right-color: var(--mint);

    border-radius: 999px;
}

.health-ring > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.health-ring strong {
    font-size: 31px;
}

.health-ring span {
    color: #87909d;

    font-size: 9px;
}

.health-list > div {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding:
        13px 0;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.07);

    color: #858e9b;

    font-size: 10px;
}

.health-list strong {
    color: #dce0e5;

    font-size: 10px;
}

.health-list strong::first-letter {
    color: var(--mint);
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-section {
    padding:
        110px 0;

    background: #fff;
}

.faq-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.72fr)
        minmax(520px, 0.9fr);

    gap: 110px;
}

.faq-intro > p {
    max-width: 470px;

    margin:
        20px 0 0;

    color: var(--ink-soft);

    font-size: 14px;
    line-height: 1.7;
}

.faq-list {
    border-top:
        1px solid var(--line);
}

.faq-item {
    border-bottom:
        1px solid var(--line);
}

.faq-question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding:
        24px 0;

    border: 0;

    background: transparent;

    text-align: left;

    cursor: pointer;
}

.faq-question span {
    font-size: 16px;
    font-weight: 680;
}

.faq-question i {
    width: 31px;
    height: 31px;

    flex:
        0 0 31px;

    display: grid;
    place-items: center;

    border-radius: 999px;

    background: var(--surface-soft);

    font-style: normal;
    font-size: 17px;

    transition:
        transform 180ms ease;
}

.faq-item.open .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition:
        max-height 240ms ease;
}

.faq-answer p {
    margin:
        0 0 25px;

    color: var(--ink-soft);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   CTA
   ========================================================= */

.final-cta {
    padding:
        90px 0;

    background: var(--bg);
}

.final-cta-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 70px;

    padding:
        50px 54px;

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

    border-radius: 26px;

    background:
        radial-gradient(
            circle at 82% 50%,
            rgba(49, 92, 244, 0.08),
            transparent 30%
        ),
        #fff;
}

.final-cta h2 {
    margin: 0;

    font-size:
        clamp(36px, 4vw, 52px);

    letter-spacing: -0.05em;
}

.final-cta p {
    max-width: 560px;

    margin:
        17px 0 0;

    color: var(--ink-soft);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding:
        30px 0;

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

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.brand-footer .brand-mark {
    width: 30px;
    height: 30px;
}

.footer-meta {
    display: flex;
    align-items: center;

    gap: 10px;

    color: var(--ink-muted);

    font-size: 10px;
}

.footer-meta i {
    width: 3px;
    height: 3px;

    border-radius: 999px;

    background: #b7bec7;
}


/* =========================================================
   CONFIGURATOR DIALOG
   ========================================================= */

.configurator {
    width:
        min(
            900px,
            calc(100% - 32px)
        );

    max-height:
        calc(100vh - 32px);

    margin: auto;

    padding: 0;

    border: 0;
    border-radius: 25px;

    background: #fff;

    color: var(--ink);

    box-shadow:
        0 40px 130px
        rgba(10, 15, 28, 0.32);

    overflow: hidden;
}

.configurator::backdrop {
    background:
        rgba(10, 15, 27, 0.58);

    backdrop-filter: blur(8px);
}

.configurator-shell {
    max-height:
        calc(100vh - 32px);

    overflow-y: auto;
}

.configurator-top {
    position: sticky;

    top: 0;

    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding:
        20px 24px;

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

    background:
        rgba(255, 255, 255, 0.98);
}

.configurator-brand {
    display: flex;
    align-items: center;

    gap: 11px;
}

.configurator-brand .brand-mark {
    width: 32px;
    height: 32px;
}

.configurator-brand > div {
    display: flex;
    flex-direction: column;
}

.configurator-brand strong {
    font-size: 13px;
}

.configurator-brand span {
    margin-top: 2px;

    color: var(--ink-muted);

    font-size: 9px;
}

.configurator-close {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border: 0;
    border-radius: 11px;

    background: #f1f3f5;
    color: #636b77;

    font-size: 24px;

    cursor: pointer;
}

.configurator-progress-track {
    height: 3px;

    background: #edf0f2;
}

.configurator-progress-track span {
    display: block;

    width: 20%;
    height: 100%;

    background: var(--primary);

    transition:
        width 220ms ease;
}

.configurator-form {
    padding:
        45px 50px 28px;
}

.configurator-step {
    display: none;
}

.configurator-step.active {
    display: block;

    animation:
        stepIn 200ms ease;
}

@keyframes stepIn {

    from {
        opacity: 0;
        transform: translateY(7px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.question-kicker {
    display: block;

    margin-bottom: 10px;

    color: var(--primary);

    font-size: 10px;
    font-weight: 760;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}

.configurator-step h2 {
    margin: 0;

    max-width: 680px;

    font-size:
        clamp(31px, 4vw, 44px);

    line-height: 1.06;

    letter-spacing: -0.05em;
}

.configurator-step > p,
.branding-grid > div > p {
    margin:
        12px 0 0;

    color: var(--ink-soft);

    font-size: 14px;
}


/* =========================================================
   CHOICES
   ========================================================= */

.choice-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;

    margin-top: 32px;
}

.choice-grid-two {
    grid-template-columns:
        repeat(2, 1fr);
}

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

.choice-card {
    position: relative;

    min-height: 155px;

    display: flex;
    flex-direction: column;

    padding: 20px;

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

    border-radius: 17px;

    background: #fff;

    cursor: pointer;

    transition:
        transform 150ms ease,
        border-color 150ms ease,
        box-shadow 150ms ease,
        background 150ms ease;
}

.choice-card:hover {
    transform: translateY(-2px);

    border-color:
        rgba(49, 92, 244, 0.3);
}

.choice-card:has(input:checked) {
    border-color: var(--primary);

    background:
        linear-gradient(
            180deg,
            #fff,
            #f5f7ff
        );

    box-shadow:
        0 0 0 3px
        rgba(49, 92, 244, 0.08);
}

.choice-card input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.choice-icon {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    margin-bottom: 22px;

    border-radius: 11px;

    background: var(--surface-soft);
    color: #59626f;
}

.choice-card:has(input:checked)
.choice-icon {
    background: var(--primary-soft);
    color: var(--primary);
}

.choice-card strong {
    font-size: 14px;
}

.choice-card small {
    margin-top: 7px;

    color: var(--ink-soft);

    font-size: 11px;
    line-height: 1.55;
}

.choice-card-compact {
    min-height: 105px;

    justify-content: flex-end;
}

.choice-check {
    position: absolute;

    top: 15px;
    right: 15px;

    width: 22px;
    height: 22px;

    display: grid;
    place-items: center;

    border:
        1px solid #dbe0e6;

    border-radius: 7px;

    color: transparent;

    font-size: 10px;
}

.choice-card:has(input:checked)
.choice-check {
    border-color: var(--primary);

    background: var(--primary);
    color: #fff;
}


/* =========================================================
   BRANDING
   ========================================================= */

.branding-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.86fr)
        minmax(360px, 0.74fr);

    align-items: center;

    gap: 54px;
}

.builder-fields {
    display: grid;

    gap: 15px;

    margin-top: 28px;
}

.builder-field {
    display: grid;

    gap: 7px;
}

.builder-field > span,
.save-fields label > span {
    color: #59616d;

    font-size: 10px;
    font-weight: 680;
}

.builder-field input[type="text"],
.save-fields input {
    width: 100%;

    min-height: 48px;

    padding:
        0 14px;

    border:
        1px solid #dce1e6;

    border-radius: 11px;

    background: #fff;
    color: var(--ink);

    outline: 0;

    font-size: 13px;
}

.builder-field input:focus,
.save-fields input:focus {
    border-color: var(--primary);

    box-shadow:
        0 0 0 3px
        rgba(49, 92, 244, 0.08);
}

.color-field {
    display: flex;
    align-items: center;

    gap: 10px;

    width: fit-content;

    padding:
        7px 11px 7px 7px;

    border:
        1px solid #dce1e6;

    border-radius: 11px;
}

.color-field input {
    width: 35px;
    height: 35px;

    padding: 0;

    border: 0;

    cursor: pointer;
}

.color-field span {
    color: #59616d;

    font-size: 11px;
    font-weight: 650;
}

.brand-preview {
    --preview-color: #315cf4;

    padding: 22px;

    border:
        1px solid #e0e5ea;

    border-radius: 20px;

    background:
        linear-gradient(
            180deg,
            #fff,
            #f8fafb
        );

    box-shadow: var(--shadow-medium);
}

.brand-preview-head {
    display: flex;
    align-items: center;

    gap: 10px;

    padding-bottom: 20px;

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

.brand-preview-logo {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: var(--preview-color);
    color: #fff;

    font-size: 12px;
    font-weight: 800;
}

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

.brand-preview-user {
    display: flex;
    flex-direction: column;

    margin-top: 24px;
}

.brand-preview-user small {
    color: var(--ink-muted);

    font-size: 8px;
}

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

.brand-preview-card {
    margin-top: 19px;

    padding: 16px;

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

    border-radius: 13px;

    background: #fff;
}

.brand-preview-card > small {
    color: var(--preview-color);

    font-size: 7px;
    font-weight: 800;
}

.brand-preview-card > strong {
    display: block;

    margin-top: 6px;

    font-size: 11px;
}

.brand-preview-card > span {
    display: block;

    margin-top: 4px;

    color: var(--ink-muted);

    font-size: 8px;
}

.brand-preview-card > div {
    height: 4px;

    margin-top: 13px;

    overflow: hidden;

    border-radius: 999px;

    background: #e8ebef;
}

.brand-preview-card i {
    display: block;

    width: 64%;
    height: 100%;

    background: var(--preview-color);
}

.brand-preview-action {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 11px;

    padding:
        11px 13px;

    border-radius: 10px;

    background: var(--preview-color);
    color: #fff;

    font-size: 9px;
    font-weight: 700;
}


/* =========================================================
   RESULT
   ========================================================= */

.result-step {
    text-align: center;
}

.result-badge {
    display: inline-flex;

    margin-top: 24px;

    padding:
        6px 10px;

    border-radius: 999px;

    background: var(--mint-soft);
    color: var(--mint-dark);

    font-size: 9px;
    font-weight: 700;
}

.result-step h2 {
    margin:
        12px auto 0;

    font-size:
        clamp(45px, 6vw, 64px);
}

.result-summary {
    max-width: 590px;

    margin:
        13px auto 0 !important;

    font-size: 15px !important;
}

.result-platform {
    --result-color: #315cf4;

    display: inline-flex;
    align-items: center;

    gap: 11px;

    margin-top: 25px;

    padding:
        12px 17px 12px 12px;

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

    border-radius: 14px;

    background: #fff;

    text-align: left;
}

.result-logo {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: var(--result-color);
    color: #fff;

    font-size: 12px;
    font-weight: 800;
}

.result-platform > div {
    display: flex;
    flex-direction: column;
}

.result-platform small {
    color: var(--ink-muted);

    font-size: 8px;
}

.result-platform strong {
    font-size: 12px;
}

.result-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    margin-top: 30px;

    overflow: hidden;

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

    border-radius: 16px;

    background: #fafbfa;
}

.result-grid > div {
    padding:
        18px 15px;

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

.result-grid > div:last-child {
    border-right: 0;
}

.result-grid span {
    display: block;

    color: var(--ink-muted);

    font-size: 9px;
}

.result-grid strong {
    display: block;

    margin-top: 4px;

    font-size: 11px;
}

.result-needs {
    margin-top: 19px;

    text-align: left;
}

.result-needs > span {
    color: var(--ink-muted);

    font-size: 9px;
}

.result-needs > div {
    display: flex;
    flex-wrap: wrap;

    gap: 6px;

    margin-top: 8px;
}

.result-need-pill {
    padding:
        6px 9px;

    border-radius: 999px;

    background: var(--primary-soft);
    color: #4a5c9b;

    font-size: 9px;
    font-weight: 650;
}


/* =========================================================
   SAVE CONFIGURATION
   ========================================================= */

.save-configuration {
    display: grid;

    grid-template-columns:
        minmax(0, 0.7fr)
        minmax(0, 1fr);

    gap: 35px;

    margin-top: 30px;

    padding: 25px;

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

    border-radius: 18px;

    background: var(--bg);

    text-align: left;
}

.save-copy > span {
    color: var(--primary);

    font-size: 9px;
    font-weight: 750;

    text-transform: uppercase;

    letter-spacing: 0.07em;
}

.save-copy h3 {
    margin:
        7px 0 0;

    font-size: 22px;

    letter-spacing: -0.035em;
}

.save-copy p {
    margin:
        9px 0 0;

    color: var(--ink-soft);

    font-size: 11px;
    line-height: 1.6;
}

.save-fields {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 12px;
}

.save-fields label {
    display: grid;

    gap: 6px;
}

.save-button {
    grid-column:
        1 / -1;

    min-height: 47px;
}

.save-status {
    grid-column:
        1 / -1;

    min-height: 18px;

    font-size: 10px;
}

.save-status.success {
    color: var(--mint-dark);
}

.save-status.error {
    color: var(--danger);
}

.website-field {
    position: absolute !important;

    left: -9999px !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;
}

.draft-reference {
    margin-top: 16px;

    color: var(--ink-muted);

    font-size: 9px;
}

.draft-reference strong {
    color: var(--ink-soft);
}


/* =========================================================
   CONFIG ACTIONS
   ========================================================= */

.configurator-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    margin-top: 38px;

    padding-top: 21px;

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

.configurator-actions-right {
    display: flex;
    align-items: center;

    gap: 8px;
}

.configurator-actions .button {
    min-height: 47px;

    padding:
        0 20px;

    font-size: 12px;
}

.result-close-button {
    display: none;
}

.configurator-form.on-result
[data-configurator-back],
.configurator-form.on-result
[data-configurator-next] {
    display: none;
}

.configurator-form.on-result
.result-close-button {
    display: inline-flex;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1120px) {

    .hero-grid {
        grid-template-columns:
            minmax(0, 0.9fr)
            minmax(480px, 1.1fr);

        gap: 45px;
    }

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

}


@media (max-width: 980px) {

    :root {
        --header-height: 74px;
    }

    .desktop-nav,
    .header-actions > .button {
        display: none;
    }

    .menu-button {
        display: block;

        margin-left: auto;
    }

    .mobile-nav {
        position: fixed;

        top: var(--header-height);
        left: 16px;
        right: 16px;

        display: grid;

        gap: 5px;

        padding: 14px;

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

        border-radius: 18px;

        background: #fff;

        box-shadow: var(--shadow-medium);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);
    }

    .mobile-nav.open {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }

    .mobile-nav > a {
        padding: 12px;

        font-size: 14px;
    }

    .mobile-nav .button {
        min-height: 48px;

        margin-top: 5px;
    }

    .hero {
        min-height: auto;

        padding:
            calc(var(--header-height) + 65px)
            0 80px;
    }

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

        gap: 58px;
    }

    .hero-copy {
        max-width: 700px;

        margin-inline: auto;

        text-align: center;
    }

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

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

    .hero-product {
        max-width: 720px;

        margin-inline: auto;
    }

    .platform-window {
        transform: none;
    }

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

    .experience-card > p {
        min-height: 0;
    }

    .split-heading,
    .content-grid,
    .managed-grid,
    .faq-grid {
        grid-template-columns: 1fr;

        gap: 46px;
    }

    .content-library,
    .operations-card {
        max-width: 600px;
    }

    .branding-grid {
        grid-template-columns: 1fr;

        gap: 34px;
    }

    .brand-preview {
        max-width: 520px;
    }

    .save-configuration {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 680px) {

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

    .brand-copy span {
        display: none;
    }

    .hero {
        padding-top:
            calc(var(--header-height) + 48px);
    }

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

    .hero-lead {
        font-size: 18px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-actions {
        display: grid;

        grid-template-columns: 1fr;

        width: 100%;
        max-width: 420px;

        margin:
            28px auto 0;
    }

    .button-large {
        width: 100%;
    }

    .platform-layout {
        grid-template-columns: 1fr;

        min-height: 500px;
    }

    .platform-sidebar {
        display: none;
    }

    .platform-main {
        padding:
            22px 18px;
    }

    .floating-card {
        display: none;
    }

    .experience-section,
    .included-section,
    .content-section,
    .how-section,
    .faq-section {
        padding:
            78px 0;
    }

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

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

    .included-card > p {
        min-height: 0;
    }

    .managed-section {
        padding:
            80px 0;
    }

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

    .final-cta-inner {
        flex-direction: column;
        align-items: flex-start;

        padding:
            31px 24px;
    }

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

    .footer-meta {
        flex-wrap: wrap;
    }

    .configurator {
        width:
            calc(100% - 20px);

        max-height:
            calc(100vh - 20px);
    }

    .configurator-shell {
        max-height:
            calc(100vh - 20px);
    }

    .configurator-form {
        padding:
            32px 20px 22px;
    }

    .choice-grid,
    .choice-grid-two,
    .choice-grid-needs {
        grid-template-columns: 1fr;
    }

    .choice-card {
        min-height: auto;
    }

    .choice-card-compact {
        min-height: 92px;
    }

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

    .result-grid > div {
        border-right: 0;

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

    .result-grid > div:last-child {
        border-bottom: 0;
    }

    .save-fields {
        grid-template-columns: 1fr;
    }

    .configurator-actions {
        align-items: flex-end;
    }

    .configurator-actions-right {
        flex-wrap: wrap;

        justify-content: flex-end;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

}


/* =========================================================
   V9 — IMMEDIATE CONTINUATION
   ========================================================= */

.continue-success-card {
    grid-column:
        1 / -1;

    padding: 17px;

    border-radius: 13px;

    background: #e9fbf3;
    color: #287a5b;
}


.continue-success-card strong {
    display: block;

    font-size: 13px;
}


.continue-success-card span {
    display: block;

    margin-top: 5px;

    font-size: 10px;
}


.continue-workspace-button {
    grid-column:
        1 / -1;

    min-height: 50px;
}


.continue-email-note {
    grid-column:
        1 / -1;

    color: #69717d;

    font-size: 10px;
    line-height: 1.6;

    text-align: center;
}