:root {
    --sw-primary: #6d5dfc;
    --sw-primary-dark: #5544e7;
    --sw-primary-soft: #f0edff;
    --sw-ink: #15172a;
    --sw-muted: #697087;
    --sw-line: #e8e9f1;
    --sw-surface: #f7f8fc;
    --sw-success: #12a779;
    --sw-gradient: linear-gradient(135deg, #7165f5 0%, #9256d9 100%);
    --sw-shadow-sm: 0 10px 35px rgba(29, 25, 73, .07);
    --sw-shadow-lg: 0 30px 80px rgba(29, 25, 73, .16);
}

html { scroll-behavior: smooth; }

body.home {
    color: var(--sw-ink);
    background: #fff;
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

.home a,
.home button { transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease; }

.home a:focus-visible,
.home button:focus-visible {
    outline: 3px solid rgba(109, 93, 252, .28);
    outline-offset: 3px;
}

.home .container { max-width: 1180px; }

.home .navbar {
    min-height: 76px;
    border-bottom: 1px solid rgba(232, 233, 241, .88);
    box-shadow: 0 4px 24px rgba(29, 25, 73, .04) !important;
}

.home .navbar .nav-link-custom {
    color: #545a6e;
    font-size: .93rem;
    font-weight: 600;
}

.home .navbar .nav-link-custom:hover,
.home .navbar .nav-link-custom.active { color: var(--sw-primary); }

.home .navbar .btn-primary-gradient {
    padding: .63rem 1.18rem;
    border-radius: 10px;
    background: var(--sw-gradient);
    box-shadow: 0 8px 20px rgba(109, 93, 252, .22);
}

.home .navbar .btn-primary-gradient:hover {
    opacity: 1;
    transform: translateY(-1px);
    box-shadow: 0 11px 24px rgba(109, 93, 252, .3);
}

.sw-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 9.8rem 0 6.8rem;
    background:
        radial-gradient(circle at 13% 11%, rgba(109, 93, 252, .11), transparent 27%),
        radial-gradient(circle at 94% 24%, rgba(233, 105, 171, .1), transparent 24%),
        linear-gradient(180deg, #fbfaff 0%, #fff 100%);
}

.sw-hero::before {
    position: absolute;
    z-index: -1;
    inset: 76px 0 auto;
    height: 520px;
    content: "";
    opacity: .42;
    background-image:
        linear-gradient(rgba(109, 93, 252, .065) 1px, transparent 1px),
        linear-gradient(90deg, rgba(109, 93, 252, .065) 1px, transparent 1px);
    background-size: 50px 50px;
    -webkit-mask-image: linear-gradient(to bottom, #000, transparent 85%);
    mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.sw-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin-bottom: 1.35rem;
    padding: .5rem .78rem;
    border: 1px solid #ded9ff;
    border-radius: 999px;
    color: #594ccf;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 8px 24px rgba(55, 44, 140, .07);
    font-size: .77rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.sw-eyebrow__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--sw-success);
    box-shadow: 0 0 0 4px rgba(18, 167, 121, .12);
}

.sw-hero h1 {
    max-width: 690px;
    margin-bottom: 1.45rem;
    color: #17182b;
    font-size: clamp(3rem, 5.45vw, 5rem);
    font-weight: 780;
    letter-spacing: -.06em;
    line-height: .99;
}

.sw-text-gradient {
    color: transparent;
    background: var(--sw-gradient);
    -webkit-background-clip: text;
    background-clip: text;
}

.sw-hero__copy {
    max-width: 610px;
    margin-bottom: 2rem;
    color: var(--sw-muted);
    font-size: 1.14rem;
    line-height: 1.75;
}

.sw-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    min-height: 52px;
    padding: .78rem 1.35rem;
    border-radius: 12px;
    font-size: .94rem;
    font-weight: 750;
    text-decoration: none;
}

.sw-button--primary {
    border: 1px solid transparent;
    color: #fff;
    background: var(--sw-gradient);
    box-shadow: 0 13px 28px rgba(109, 93, 252, .24);
}

.sw-button--primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 17px 34px rgba(109, 93, 252, .32);
}

.sw-button--secondary {
    border: 1px solid #dfe1eb;
    color: #33364d;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 8px 22px rgba(29, 25, 73, .06);
}

.sw-button--secondary:hover {
    border-color: #cfc8ff;
    color: var(--sw-primary-dark);
    background: #fff;
    transform: translateY(-2px);
}

.sw-hero__proof {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem 1.35rem;
    margin: 1.6rem 0 0;
    padding: 0;
    color: #62697d;
    font-size: .85rem;
    list-style: none;
}

.sw-hero__proof li { display: flex; align-items: center; gap: .45rem; }
.sw-hero__proof i { color: var(--sw-success); }

.sw-product-stage { position: relative; padding: 1rem 0 1.5rem 2rem; }

.sw-product-stage::before {
    position: absolute;
    z-index: -1;
    inset: -9% -8% -11% 6%;
    border-radius: 45% 55% 51% 49%;
    content: "";
    background: linear-gradient(145deg, rgba(109, 93, 252, .2), rgba(229, 103, 174, .12));
    filter: blur(4px);
}

.sw-product-window {
    overflow: hidden;
    padding: .55rem;
    border: 1px solid rgba(213, 210, 231, .9);
    border-radius: 22px;
    background: rgba(255, 255, 255, .88);
    box-shadow: var(--sw-shadow-lg);
    transform: perspective(1300px) rotateY(-4deg) rotateX(1deg);
}

.sw-product-window__bar {
    display: flex;
    align-items: center;
    gap: .34rem;
    height: 30px;
    padding: 0 .55rem;
}

.sw-product-window__bar span { width: 7px; height: 7px; border-radius: 50%; background: #d7d6df; }
.sw-product-window__bar span:first-child { background: #ff8f8f; }
.sw-product-window__bar span:nth-child(2) { background: #ffd276; }
.sw-product-window__bar span:nth-child(3) { background: #79d8b2; }

.sw-product-window img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid #ebeaf2;
    border-radius: 14px;
}

.sw-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .72rem .88rem;
    border: 1px solid rgba(225, 223, 238, .9);
    border-radius: 13px;
    color: #2d3044;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 15px 34px rgba(31, 25, 75, .13);
    backdrop-filter: blur(10px);
    font-size: .76rem;
    font-weight: 750;
}

.sw-float-card i {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border-radius: 9px;
    color: #fff;
    background: var(--sw-gradient);
}

.sw-float-card--top { top: -1rem; right: -1.35rem; }
.sw-float-card--bottom { bottom: -.2rem; left: -.7rem; }
.sw-float-card--bottom i { background: var(--sw-success); }

.sw-value-strip {
    position: relative;
    z-index: 2;
    margin-top: -2.35rem;
}

.sw-value-strip__inner {
    display: grid;
    grid-template-columns: 1.15fr repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid var(--sw-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--sw-shadow-sm);
}

.sw-value-strip__title,
.sw-value-item { padding: 1.25rem 1.4rem; }

.sw-value-strip__title {
    display: flex;
    align-items: center;
    color: #303246;
    font-size: .88rem;
    font-weight: 750;
}

.sw-value-item {
    display: flex;
    align-items: center;
    gap: .65rem;
    border-left: 1px solid var(--sw-line);
    color: #62687b;
    font-size: .82rem;
    font-weight: 650;
}

.sw-value-item i { color: var(--sw-primary); font-size: 1rem; }

.sw-section { padding: 7.5rem 0; }
.sw-section--soft { background: var(--sw-surface); }

.sw-kicker {
    display: block;
    margin-bottom: .8rem;
    color: var(--sw-primary);
    font-size: .75rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.sw-section-title {
    margin: 0;
    color: var(--sw-ink);
    font-size: clamp(2.2rem, 4vw, 3.45rem);
    font-weight: 770;
    letter-spacing: -.045em;
    line-height: 1.08;
}

.sw-section-copy {
    max-width: 540px;
    margin: 0;
    color: var(--sw-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.sw-feature-grid { margin-top: 3.7rem; }

.sw-feature-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 2rem;
    border: 1px solid var(--sw-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(29, 25, 73, .045);
}

.sw-feature-card::after {
    position: absolute;
    inset: auto -35% -65% auto;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    content: "";
    background: rgba(109, 93, 252, .055);
}

.sw-feature-card:hover {
    border-color: #d7d2fb;
    box-shadow: 0 20px 44px rgba(29, 25, 73, .09);
    transform: translateY(-4px);
}

.sw-feature-card h3 {
    margin: 1.15rem 0 .7rem;
    font-size: 1.18rem;
    font-weight: 750;
    letter-spacing: -.02em;
}

.sw-feature-card p { margin: 0; color: var(--sw-muted); font-size: .9rem; line-height: 1.68; }

.sw-feature-icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 13px;
    color: var(--sw-primary);
    background: var(--sw-primary-soft);
    font-size: 1.16rem;
}

.sw-feature-card--lead {
    min-height: 520px;
    padding: 2.5rem;
    background: linear-gradient(145deg, #faf9ff, #fff);
}

.sw-feature-card--lead h3 { max-width: 400px; margin-top: 0; font-size: clamp(1.8rem, 3vw, 2.55rem); }
.sw-feature-card--lead > p { max-width: 44%; font-size: 1rem; }
.sw-feature-card--lead .sw-feature-list { max-width: 44%; }

.sw-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin: 1.6rem 0 0;
    padding: 0;
    list-style: none;
}

.sw-feature-list li {
    padding: .48rem .72rem;
    border: 1px solid #e3dfff;
    border-radius: 999px;
    color: #574f91;
    background: #fff;
    font-size: .76rem;
    font-weight: 700;
}

.sw-content-preview {
    position: absolute;
    right: -1.2rem;
    bottom: -1.6rem;
    width: 52%;
    min-width: 330px;
    padding: 1.2rem;
    border: 1px solid #dedbea;
    border-radius: 18px 0 0 0;
    background: rgba(255, 255, 255, .96);
    box-shadow: -18px -14px 44px rgba(36, 30, 88, .11);
    transform: rotate(-1.5deg);
}

.sw-content-preview__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .9rem; color: #33364a; font-size: .75rem; font-weight: 750; }
.sw-content-preview__status { color: var(--sw-success); }

.sw-content-row {
    display: grid;
    grid-template-columns: 31px 1fr auto;
    align-items: center;
    gap: .65rem;
    padding: .64rem 0;
    border-top: 1px solid #efeff5;
    color: #5c6275;
    font-size: .72rem;
}

.sw-content-row i { display: grid; width: 29px; height: 29px; place-items: center; border-radius: 8px; color: var(--sw-primary); background: var(--sw-primary-soft); }
.sw-content-row span:last-child { color: #a1a5b3; font-size: .65rem; }

.sw-feature-card--dark {
    min-height: 520px;
    border: 0;
    color: #fff;
    background:
        radial-gradient(circle at 100% 0, rgba(132, 109, 255, .4), transparent 32%),
        linear-gradient(145deg, #20213c, #17182c);
    box-shadow: 0 22px 50px rgba(23, 24, 44, .17);
}

.sw-feature-card--dark::after { background: rgba(255,255,255,.045); }
.sw-feature-card--dark .sw-feature-icon { color: #fff; background: rgba(255,255,255,.12); }
.sw-feature-card--dark h3 { margin-top: 1.35rem; color: #fff; font-size: 1.7rem; }
.sw-feature-card--dark p { color: rgba(255,255,255,.68); font-size: .96rem; }

.sw-seo-card {
    min-height: 520px;
    padding: 2.5rem;
    background:
        radial-gradient(circle at 100% 0, rgba(109, 93, 252, .11), transparent 34%),
        #fff;
}

.sw-seo-card h3 {
    max-width: 390px;
    margin-top: 0;
    font-size: clamp(1.7rem, 2.6vw, 2.25rem);
}

.sw-seo-card > p { max-width: 420px; font-size: .96rem; }

.sw-seo-preview {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    left: 2rem;
    z-index: 1;
    padding: 1.2rem;
    border: 1px solid #e1dff1;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 15px 35px rgba(29, 25, 73, .09);
}

.sw-seo-preview__url { display: block; margin-bottom: .25rem; color: #25845d; font-size: .68rem; }
.sw-seo-preview strong { display: block; overflow: hidden; color: #3659ac; font-size: .97rem; font-weight: 650; text-overflow: ellipsis; white-space: nowrap; }
.sw-seo-preview p { margin: .35rem 0 .8rem; color: #6e7384; font-size: .7rem; line-height: 1.5; }
.sw-seo-preview div { display: flex; flex-wrap: wrap; gap: .35rem; }
.sw-seo-preview div span { padding: .32rem .52rem; border-radius: 6px; color: #5a5196; background: var(--sw-primary-soft); font-size: .62rem; font-weight: 750; }

.sw-visual-feature {
    display: grid;
    grid-template-rows: auto 250px;
    min-height: 560px;
    padding: 0;
}

.sw-visual-feature__copy { position: relative; z-index: 2; padding: 2rem 2rem 1.5rem; background: #fff; }
.sw-visual-feature__copy h3 { max-width: 460px; margin-top: 0; font-size: 1.55rem; }
.sw-visual-feature__copy p { max-width: 510px; }

.sw-visual-feature__media {
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin: 0 1.2rem 1.2rem;
    border: 1px solid #e0dfeb;
    border-radius: 14px;
    background: #f1f2f6;
}

.sw-visual-feature__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform .45s ease;
}

.sw-visual-feature:hover .sw-visual-feature__media img { transform: scale(1.025); }

.sw-ai-feature {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: 26px;
    color: #fff;
    background:
        radial-gradient(circle at 8% 0, rgba(132, 109, 255, .38), transparent 32%),
        radial-gradient(circle at 100% 100%, rgba(209, 84, 181, .2), transparent 30%),
        #191a30;
    box-shadow: 0 24px 55px rgba(24, 25, 46, .18);
}

.sw-ai-feature::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    opacity: .16;
    background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: linear-gradient(90deg, #000, transparent 80%);
    mask-image: linear-gradient(90deg, #000, transparent 80%);
}

.sw-ai-feature h3 { margin: 0 0 1rem; font-size: clamp(2rem, 3.4vw, 3rem); font-weight: 760; letter-spacing: -.045em; line-height: 1.08; }
.sw-ai-feature p { max-width: 440px; margin-bottom: 1.4rem; color: rgba(255,255,255,.65); line-height: 1.7; }
.sw-ai-feature__link { color: #fff; font-size: .9rem; font-weight: 750; text-decoration: none; }
.sw-ai-feature__link:hover { color: #c9c1ff; }

.sw-ai-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; margin-bottom: .8rem; }
.sw-ai-tiers > div,
.sw-ai-controls > div { display: flex; align-items: center; gap: .75rem; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.07); backdrop-filter: blur(8px); }
.sw-ai-tiers > div { flex-direction: column; align-items: flex-start; min-height: 142px; padding: 1.15rem; border-radius: 15px; }
.sw-ai-tiers i { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 10px; color: #d6d0ff; background: rgba(132,109,255,.24); }
.sw-ai-tiers span,
.sw-ai-controls span { display: flex; flex-direction: column; }
.sw-ai-tiers strong,
.sw-ai-controls strong { color: #fff; font-size: .86rem; }
.sw-ai-tiers small,
.sw-ai-controls small { margin-top: .22rem; color: rgba(255,255,255,.52); font-size: .68rem; line-height: 1.45; }

.sw-ai-controls { display: grid; gap: .55rem; }
.sw-ai-controls > div { padding: .72rem .85rem; border-radius: 12px; }
.sw-ai-controls i { color: #aca0ff; font-size: 1.05rem; }

.sw-screenshot-browser {
    overflow: hidden;
    border: 1px solid #dadbe6;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 25px 65px rgba(29, 25, 73, .14);
}

.sw-screenshot-browser__bar {
    display: flex;
    align-items: center;
    gap: .38rem;
    min-height: 48px;
    padding: 0 1rem;
    border-bottom: 1px solid #e6e6ed;
    background: #fafafd;
}

.sw-screenshot-browser__bar > span { width: 9px; height: 9px; border-radius: 50%; background: #d4d5dd; }
.sw-screenshot-browser__bar > span:first-child { background: #ff8e8e; }
.sw-screenshot-browser__bar > span:nth-child(2) { background: #ffd176; }
.sw-screenshot-browser__bar > span:nth-child(3) { background: #72d6ad; }
.sw-screenshot-browser__bar strong { margin-left: .55rem; color: #555a6c; font-size: .74rem; font-weight: 750; }

.sw-screenshot-browser__viewport {
    overflow: auto;
    max-height: 650px;
    background: #eef0f5;
}

.sw-screenshot-browser__viewport img { display: block; width: 100%; height: auto; transition: opacity .2s ease; }

.sw-screenshot-option {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    align-items: center;
    gap: .75rem;
    width: 100%;
    min-height: 92px;
    padding: .9rem;
    border: 1px solid #e0e1e9;
    border-radius: 14px;
    color: #6b7081;
    background: #fff;
    text-align: left;
}

.sw-screenshot-option:hover { border-color: #cfc9fc; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(29,25,73,.07); }
.sw-screenshot-option.is-active { border-color: #bfb6ff; background: #faf9ff; box-shadow: 0 8px 22px rgba(109,93,252,.09); }
.sw-screenshot-option > span:first-child { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 9px; color: var(--sw-primary); background: var(--sw-primary-soft); font-size: .68rem; font-weight: 850; }
.sw-screenshot-option > span:nth-child(2) { display: flex; flex-direction: column; }
.sw-screenshot-option strong { color: #303347; font-size: .82rem; }
.sw-screenshot-option small { margin-top: .22rem; color: #858a9a; font-size: .68rem; line-height: 1.4; }
.sw-screenshot-option > i { color: #aaaebc; }

.sw-button--ghost { border: 1px solid rgba(255,255,255,.18); color: #fff; background: rgba(255,255,255,.08); }
.sw-button--ghost:hover { border-color: rgba(255,255,255,.35); color: #fff; background: rgba(255,255,255,.13); transform: translateY(-2px); }

.sw-integration-flow { position: relative; display: flex; align-items: center; justify-content: space-between; margin-top: 3.25rem; padding: 0 .35rem; }
.sw-integration-flow::before { position: absolute; top: 50%; right: 17%; left: 17%; height: 1px; content: ""; background: linear-gradient(90deg, rgba(255,255,255,.14), rgba(137,117,255,.8), rgba(255,255,255,.14)); }

.sw-flow-node {
    position: relative;
    z-index: 1;
    display: grid;
    width: 68px;
    height: 68px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 19px;
    background: #292a48;
    box-shadow: 0 12px 25px rgba(0,0,0,.15);
    font-size: 1.35rem;
}

.sw-flow-node--brand { color: #fff; background: var(--sw-gradient); }
.sw-flow-labels { display: flex; justify-content: space-between; margin-top: .65rem; color: rgba(255,255,255,.55); font-size: .68rem; font-weight: 650; text-align: center; }
.sw-flow-labels span { width: 76px; }

.sw-mini-feature { min-height: 255px; }
.sw-mini-feature:nth-child(2) .sw-feature-icon { color: #d35a8c; background: #fff0f6; }
.sw-mini-feature:nth-child(3) .sw-feature-icon { color: #067c91; background: #e9f9fc; }
.sw-mini-feature:nth-child(4) .sw-feature-icon { color: #ad6f00; background: #fff6df; }

.sw-workflow { overflow: hidden; }

.sw-workflow-panel {
    position: relative;
    padding: 3.2rem;
    border: 1px solid var(--sw-line);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--sw-shadow-sm);
}

.sw-step { position: relative; padding: 0 1.5rem; }
.sw-step:not(:last-child)::after { position: absolute; top: 26px; right: -8%; width: 16%; border-top: 1px dashed #c9c5e8; content: ""; }

.sw-step__number {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 1.25rem;
    place-items: center;
    border: 1px solid #ddd8ff;
    border-radius: 15px;
    color: var(--sw-primary);
    background: var(--sw-primary-soft);
    font-size: .84rem;
    font-weight: 850;
}

.sw-step h3 { font-size: 1.02rem; font-weight: 750; }
.sw-step p { margin-bottom: 0; color: var(--sw-muted); font-size: .86rem; line-height: 1.65; }

.sw-pricing-header { margin-bottom: 3.5rem; }
.sw-pricing-grid { max-width: 1160px; margin-inline: auto; }
.sw-pricing-column { display: flex; }

.sw-pricing-card {
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--sw-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--sw-shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.sw-pricing-card::before { display: block; height: 4px; content: ""; background: #eaeaf2; }
.sw-pricing-card:hover { border-color: #d5d0fb; transform: translateY(-5px); box-shadow: 0 22px 52px rgba(29,25,73,.12); }
.sw-pricing-card--popular { border-color: #cfc8ff; box-shadow: 0 18px 44px rgba(109,93,252,.15); }
.sw-pricing-card--popular::before { background: var(--sw-gradient); }
.sw-pricing-card .card-body { display: flex; flex-direction: column; padding: 2rem; }
.sw-pricing-card__eyebrow { color: var(--sw-primary); font-size: .68rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.sw-pricing-card__price { color: var(--sw-ink); font-size: 2.4rem; line-height: 1; letter-spacing: -.04em; }
.sw-pricing-card__description { min-height: 48px; font-size: .88rem; line-height: 1.55; }
.sw-pricing-card__features { flex-grow: 1; padding-top: .35rem; }
.sw-pricing-card__features li { display: flex; align-items: flex-start; gap: .65rem; margin-bottom: .76rem; color: #5d6375; font-size: .86rem; line-height: 1.4; }
.sw-pricing-card__features i { flex: 0 0 auto; margin-top: .08rem; color: var(--sw-success); }
.sw-popular-badge { top: 18px; right: 18px; z-index: 1; border-radius: 999px; background: var(--sw-gradient); box-shadow: 0 7px 18px rgba(109,93,252,.24); }
.sw-price-link { color: var(--sw-primary); font-size: .9rem; font-weight: 700; text-decoration: none; }
.sw-price-link:hover { color: var(--sw-primary-dark); }

.home .btn-primary-gradient {
    border: 0;
    color: #fff;
    background: var(--sw-gradient);
    box-shadow: 0 8px 20px rgba(109,93,252,.18);
}

.home .btn-primary-gradient:hover { color: #fff; opacity: 1; transform: translateY(-1px); }
.home .btn-outline-primary { border-color: #d4cffd; color: var(--sw-primary); }
.home .btn-outline-primary:hover { border-color: var(--sw-primary); color: #fff; background: var(--sw-primary); }

.sw-cta { padding: 2rem 0 7rem; }

.sw-cta__inner {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 4.5rem 2rem;
    border-radius: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 12% 10%, rgba(132,109,255,.45), transparent 29%),
        radial-gradient(circle at 90% 90%, rgba(224,85,171,.22), transparent 26%),
        #18192e;
    box-shadow: 0 30px 70px rgba(24,25,46,.18);
}

.sw-cta__inner::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    opacity: .17;
    background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
    background-size: 44px 44px;
    -webkit-mask-image: radial-gradient(circle at center, #000, transparent 75%);
    mask-image: radial-gradient(circle at center, #000, transparent 75%);
}

.sw-cta h2 { max-width: 690px; margin: 0 auto 1rem; font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 760; letter-spacing: -.045em; line-height: 1.08; }
.sw-cta p { max-width: 590px; margin: 0 auto 1.8rem; color: rgba(255,255,255,.66); }
.sw-cta .sw-button--primary { background: #fff; color: #2d2b50; box-shadow: 0 12px 28px rgba(0,0,0,.18); }
.sw-cta .sw-button--primary:hover { color: var(--sw-primary-dark); }

@media (max-width: 991.98px) {
    .home .navbar-collapse { margin-top: .8rem; padding: .75rem 0 1rem; border-top: 1px solid var(--sw-line); }
    .sw-hero { padding: 8.6rem 0 6rem; }
    .sw-hero h1 { font-size: clamp(3rem, 9vw, 4.6rem); }
    .sw-product-stage { max-width: 720px; margin: 3.5rem auto 0; padding-left: 0; }
    .sw-value-strip__inner { grid-template-columns: 1fr 1fr; }
    .sw-value-item:nth-child(2) { border-left: 0; }
    .sw-value-item:nth-child(n+3) { border-top: 1px solid var(--sw-line); }
    .sw-content-preview { width: 52%; }
    .sw-visual-feature { min-height: 590px; }
    .sw-screenshot-browser__viewport { max-height: 520px; }
    .sw-step { padding: 0 .75rem; }
}

@media (max-width: 767.98px) {
    .sw-section { padding: 5.3rem 0; }
    .sw-hero { padding: 7.8rem 0 5rem; }
    .sw-hero h1 { font-size: clamp(2.65rem, 12.5vw, 3.65rem); }
    .sw-hero__copy { font-size: 1rem; }
    .sw-button { width: 100%; }
    .sw-product-window { transform: none; }
    .sw-float-card--top { top: -1.4rem; right: -.25rem; }
    .sw-float-card--bottom { bottom: -.8rem; left: -.15rem; }
    .sw-value-strip { margin-top: -1.3rem; }
    .sw-value-strip__inner { display: block; }
    .sw-value-strip__title,
    .sw-value-item { padding: 1rem 1.15rem; }
    .sw-value-item { border-top: 1px solid var(--sw-line); border-left: 0; }
    .sw-section-title { margin-bottom: 1rem; }
    .sw-feature-grid { margin-top: 2.6rem; }
    .sw-feature-card--lead { min-height: 560px; padding: 1.7rem; }
    .sw-feature-card--lead > p,
    .sw-feature-card--lead .sw-feature-list { max-width: none; }
    .sw-content-preview { right: -1.8rem; bottom: -1rem; width: calc(100% - 1rem); min-width: 0; }
    .sw-feature-card--dark { min-height: 400px; }
    .sw-seo-card { min-height: 500px; padding: 1.7rem; }
    .sw-seo-preview { right: 1.2rem; bottom: 1.2rem; left: 1.2rem; }
    .sw-visual-feature { grid-template-rows: auto 230px; min-height: 570px; }
    .sw-visual-feature__copy { padding: 1.7rem 1.7rem 1.25rem; }
    .sw-ai-tiers { grid-template-columns: 1fr; }
    .sw-ai-tiers > div { flex-direction: row; align-items: center; min-height: 0; }
    .sw-screenshot-browser { border-radius: 16px; }
    .sw-screenshot-browser__viewport { max-height: 420px; }
    .sw-workflow-panel { padding: 2rem 1.3rem; }
    .sw-step { padding: 0 0 1.8rem 4rem; }
    .sw-step:not(:last-child)::after { top: 55px; right: auto; bottom: 0; left: 25px; width: 1px; height: calc(100% - 45px); border-top: 0; border-left: 1px dashed #c9c5e8; }
    .sw-step__number { position: absolute; top: 0; left: 0; }
    .sw-cta { padding-top: 0; padding-bottom: 5rem; }
    .sw-cta__inner { padding: 3.5rem 1.25rem; border-radius: 22px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .home *, .home *::before, .home *::after { transition-duration: .01ms !important; }
}
