﻿:root {
    --ws-font-body: "Manrope", "Segoe UI", sans-serif;
    --ws-font-display: "Sora", "Manrope", "Segoe UI", sans-serif;
    --ws-bg-deep: #071321;
    --ws-bg-strong: #0d2036;
    --ws-bg-mid: #102b45;
    --ws-ink-strong: #091426;
    --ws-ink: #0f213b;
    --ws-text: #102540;
    --ws-text-soft: #5d7292;
    --ws-white: #ffffff;
    --ws-line: rgba(118, 146, 182, 0.18);
    --ws-line-strong: rgba(61, 97, 143, 0.26);
    --ws-surface: rgba(255, 255, 255, 0.88);
    --ws-surface-strong: rgba(255, 255, 255, 0.96);
    --ws-surface-muted: rgba(243, 247, 252, 0.9);
    --ws-teal: #1096a5;
    --ws-cyan: #5fc4d4;
    --ws-amber: #f2bb63;
    --ws-amber-strong: #e39b31;
    --ws-green: #1d9168;
    --ws-red: #d95d53;
    --ws-shadow-lg: 0 28px 80px rgba(10, 26, 52, 0.18);
    --ws-shadow-md: 0 20px 48px rgba(12, 29, 51, 0.12);
    --ws-shadow-sm: 0 12px 24px rgba(12, 29, 51, 0.08);
    --ws-radius-xxl: 38px;
    --ws-radius-xl: 28px;
    --ws-radius-lg: 22px;
    --ws-radius-md: 16px;
    --ws-radius-sm: 12px;
    --ws-hero-overlay:
        radial-gradient(circle at 18% 18%, rgba(95, 196, 212, 0.18), transparent 34%),
        radial-gradient(circle at 86% 14%, rgba(242, 187, 99, 0.15), transparent 28%),
        linear-gradient(135deg, rgba(9, 24, 45, 0.98), rgba(14, 43, 71, 0.92) 56%, rgba(19, 110, 109, 0.85));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: var(--ws-font-body);
    color: var(--ws-text);
    line-height: 1.65;
    background:
        radial-gradient(circle at top left, rgba(95, 196, 212, 0.18), transparent 25%),
        radial-gradient(circle at 92% 8%, rgba(242, 187, 99, 0.16), transparent 22%),
        linear-gradient(180deg, #061220 0%, #0a1830 14%, #eef4fb 42%, #f5f7fb 64%, #f8f3ea 100%);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    pointer-events: none;
    z-index: -1;
}

body::before {
    top: 110px;
    left: -140px;
    width: 380px;
    height: 380px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(95, 196, 212, 0.14), transparent 72%);
    filter: blur(18px);
}

body::after {
    right: -130px;
    bottom: 140px;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(242, 187, 99, 0.15), transparent 72%);
    filter: blur(18px);
}

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

a {
    color: inherit;
}

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

.public-shell {
    overflow-x: clip;
}

.container {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}

.page-body {
    padding-top: 118px;
}

section {
    position: relative;
    padding: 34px 0;
}

.fade-up {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 999;
    padding: 16px 0 0;
}

.nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 14px 18px 14px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background:
        linear-gradient(135deg, rgba(8, 19, 34, 0.94), rgba(16, 38, 61, 0.92) 58%, rgba(13, 90, 94, 0.85));
    box-shadow: 0 18px 50px rgba(6, 15, 28, 0.26);
    backdrop-filter: blur(18px);
}

.logo a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-family: var(--ws-font-display);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #081321;
    background: linear-gradient(135deg, #ffd28a, #f0b454 58%, #65c7d2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.logo-word {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    font-family: var(--ws-font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.94);
}

.logo-word span {
    color: #f2bb63;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 14px;
    color: rgba(237, 244, 252, 0.74);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
    color: var(--ws-white);
    background: rgba(255, 255, 255, 0.08);
}

.nav-links a.active {
    color: var(--ws-white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-links .btn-outline {
    margin-left: 8px;
}

.nav-utilities {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-menu {
    position: relative;
}

.lang-menu-details {
    position: relative;
}

.lang-menu-details[open] {
    z-index: 8;
}

.lang-menu-trigger {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 152px;
    min-height: 78px;
    padding: 12px 16px;
    border: 1px solid rgba(155, 214, 185, 0.48);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(242, 253, 247, 0.98), rgba(227, 245, 234, 0.96));
    box-shadow: 0 18px 34px rgba(7, 17, 31, 0.16);
    cursor: pointer;
    list-style: none;
}

.lang-menu-trigger::-webkit-details-marker {
    display: none;
}

.lang-menu-globe {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: rgba(213, 242, 223, 0.95);
    color: #1e8a55;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.lang-menu-globe svg {
    width: 22px;
    height: 22px;
}

.lang-menu-current {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #122130;
}

.lang-menu-chevron {
    margin-left: auto;
    width: 13px;
    height: 13px;
    border-right: 3px solid #1d7f51;
    border-bottom: 3px solid #1d7f51;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s ease;
}

.lang-menu-details[open] .lang-menu-chevron {
    transform: rotate(225deg) translateY(-1px);
}

.lang-menu-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    display: grid;
    gap: 10px;
    min-width: 152px;
    padding: 14px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 48px rgba(7, 17, 31, 0.18);
    border: 1px solid rgba(196, 224, 207, 0.78);
}

.lang-menu-option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    border: none;
    border-radius: 24px;
    background: transparent;
    color: #182231;
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.lang-menu-option:hover {
    background: rgba(221, 245, 229, 0.72);
    color: #1d7f51;
    transform: translateY(-1px);
}

.lang-menu-option.active {
    background: linear-gradient(180deg, rgba(223, 245, 230, 0.98), rgba(210, 238, 220, 0.96));
    color: #197648;
}

.lang-dropdown {
    width: 100%;
    min-height: 48px;
    padding: 0 44px 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: var(--ws-white);
    background: rgba(255, 255, 255, 0.04);
    font-weight: 700;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.lang-dropdown:focus {
    outline: none;
    border-color: rgba(95, 196, 212, 0.56);
    box-shadow: 0 0 0 3px rgba(95, 196, 212, 0.16);
}

.btn-primary,
.btn-outline {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #081321 !important;
    background: linear-gradient(135deg, #ffd28a, #f0b454 52%, #55bfd0);
    box-shadow: 0 14px 28px rgba(13, 32, 54, 0.22);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 30px rgba(13, 32, 54, 0.26);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--ws-white) !important;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.btn-outline:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.1);
}

.btn-large {
    min-height: 56px;
    padding: 0 28px;
    border-radius: 17px;
    font-size: 1rem;
}

.mobile-menu-btn {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--ws-white);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    width: min(1280px, calc(100% - 48px));
    margin: 14px auto 0;
    padding: 18px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(160deg, rgba(9, 21, 37, 0.98), rgba(12, 34, 56, 0.95));
    box-shadow: 0 18px 48px rgba(7, 17, 31, 0.22);
}

.mobile-menu.open {
    display: grid;
    gap: 10px;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 14px;
    text-decoration: none;
    color: rgba(242, 247, 252, 0.84);
    background: rgba(255, 255, 255, 0.04);
    font-weight: 600;
}

.mobile-lang-dropdown {
    margin-top: 8px;
}

.footer {
    margin-top: 44px;
    padding: 24px 0 34px;
}

.footer-shell {
    display: grid;
    grid-template-columns: 1.8fr 1fr auto;
    gap: 28px;
    align-items: start;
    padding: 30px 34px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 10% 0, rgba(95, 196, 212, 0.16), transparent 28%),
        linear-gradient(135deg, rgba(8, 19, 34, 0.96), rgba(14, 41, 67, 0.94) 55%, rgba(17, 95, 101, 0.86));
    color: rgba(239, 245, 252, 0.88);
    box-shadow: 0 24px 52px rgba(7, 17, 31, 0.18);
}

.footer-brand {
    display: grid;
    gap: 14px;
    max-width: 520px;
}

.footer-mark {
    font-family: var(--ws-font-display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--ws-white);
}

.footer-brand p,
.footer-copy {
    color: rgba(239, 245, 252, 0.68);
    font-size: 0.95rem;
}

.footer-contact {
    display: grid;
    gap: 6px;
}

.footer-contact strong {
    margin-top: 4px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(239, 245, 252, 0.88);
}

.footer-contact span {
    color: rgba(239, 245, 252, 0.74);
    font-size: 0.92rem;
}

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

.footer-links a {
    color: rgba(239, 245, 252, 0.82);
    text-decoration: none;
    font-weight: 600;
}

.footer-copy {
    justify-self: end;
    align-self: end;
    text-align: right;
    max-width: 220px;
}

.ws-home-eyebrow,
.ws-features-eyebrow,
.ws-pricing-eyebrow,
.ws-about-eyebrow,
.ws-demo-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(240, 247, 252, 0.88);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.ws-home-section-intro > span,
.ws-features-section-intro > span,
.ws-pricing-section-intro > span,
.ws-about-section-intro > span,
.ws-demo-section-intro > span,
.ws-pricing-stage-panel > span,
.ws-pricing-stage-note > span,
.ws-features-stage-topline > span,
.ws-about-stage-card > span,
.ws-home-logo-heading > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(92, 133, 184, 0.18);
    background: linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(235, 242, 249, 0.96));
    color: #5f7898;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

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

.ws-home-section-intro,
.ws-features-section-intro,
.ws-pricing-section-intro,
.ws-about-section-intro,
.ws-demo-section-intro {
    display: grid;
    gap: 16px;
    max-width: 760px;
}

.ws-home-section-intro h2,
.ws-features-section-intro h2,
.ws-pricing-section-intro h2,
.ws-about-section-intro h2,
.ws-demo-section-intro h2 {
    font-family: var(--ws-font-display);
    font-size: clamp(1.9rem, 3vw, 2.95rem);
    line-height: 1.04;
    letter-spacing: -0.05em;
    color: var(--ws-ink-strong);
}

.ws-home-section-intro p,
.ws-features-section-intro p,
.ws-pricing-section-intro p,
.ws-about-section-intro p,
.ws-demo-section-intro p {
    font-size: 1.05rem;
    color: var(--ws-text-soft);
}

.ws-home-hero,
.ws-features-hero,
.ws-pricing-hero,
.ws-about-hero,
.ws-demo-hero {
    padding-top: 18px;
}

.ws-home-hero {
    padding-bottom: clamp(56px, 8vw, 124px);
}

.ws-home-hero-grid,
.ws-features-hero-grid,
.ws-pricing-hero-grid,
.ws-about-hero-grid,
.ws-demo-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 34px;
    align-items: stretch;
}

.ws-features-hero-grid,
.ws-pricing-hero-grid,
.ws-about-hero-grid {
    grid-template-columns: minmax(0, 0.97fr) minmax(0, 1.03fr);
}

.ws-home-hero-copy,
.ws-features-hero-copy,
.ws-pricing-hero-copy,
.ws-about-hero-copy,
.ws-demo-hero-copy {
    position: relative;
    padding: 38px 40px 40px;
    border-radius: var(--ws-radius-xxl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--ws-hero-overlay);
    color: var(--ws-white);
    box-shadow: 0 28px 80px rgba(7, 17, 31, 0.28);
    overflow: hidden;
}

.ws-home-hero-copy::after,
.ws-features-hero-copy::after,
.ws-pricing-hero-copy::after,
.ws-about-hero-copy::after,
.ws-demo-hero-copy::after {
    content: "";
    position: absolute;
    right: -72px;
    bottom: -110px;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(242, 187, 99, 0.18), transparent 70%);
    filter: blur(10px);
}

.ws-home-hero-copy h1,
.ws-features-hero-copy h1,
.ws-pricing-hero-copy h1,
.ws-about-hero-copy h1,
.ws-demo-hero-copy h1 {
    margin-top: 18px;
    font-family: var(--ws-font-display);
    font-size: clamp(2.5rem, 4vw, 4.55rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    color: var(--ws-white);
}

.ws-pricing-hero-copy h1,
.ws-about-hero-copy h1 {
    font-size: clamp(2.45rem, 3.7vw, 4rem);
}

.ws-home-hero-subtitle,
.ws-features-hero-subtitle,
.ws-pricing-hero-subtitle,
.ws-about-hero-subtitle,
.ws-demo-hero-subtitle {
    margin-top: 18px;
    max-width: 720px;
    font-size: 1.05rem;
    color: rgba(241, 246, 252, 0.78);
}

.ws-home-hero-pills,
.ws-features-hero-pills,
.ws-pricing-hero-pills,
.ws-home-cta-pills,
.ws-features-cta-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.ws-home-hero-pills span,
.ws-features-hero-pills span,
.ws-pricing-hero-pills span,
.ws-home-cta-pills span,
.ws-features-cta-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(243, 248, 252, 0.86);
    font-size: 0.88rem;
    font-weight: 700;
}

.ws-home-hero-actions,
.ws-features-hero-actions,
.ws-pricing-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.ws-home-proof-strip,
.ws-demo-hero-points {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.ws-home-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ws-home-proof-item,
.ws-demo-hero-point {
    display: grid;
    gap: 8px;
    padding: 18px 18px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.08);
}

.ws-home-proof-item strong,
.ws-demo-hero-point strong {
    font-size: 1rem;
    color: var(--ws-white);
}

.ws-home-proof-item span,
.ws-demo-hero-point span {
    font-size: 0.92rem;
    color: rgba(240, 247, 252, 0.72);
}

.ws-home-hero-stage,
.ws-features-hero-stage,
.ws-pricing-stage,
.ws-about-hero-stage,
.ws-demo-form-shell {
    position: relative;
}

.ws-home-hero-stage {
    display: grid;
    align-content: start;
    gap: 16px;
}

.ws-home-stage-panel,
.ws-features-stage-panel,
.ws-pricing-stage-panel,
.ws-pricing-stage-note,
.ws-about-stage-card,
.ws-demo-form-shell,
.ws-home-lane-card,
.ws-home-advantage-card,
.ws-home-platform-metric,
.ws-home-trust-stat,
.ws-features-strip-card,
.ws-features-card,
.ws-features-proof-card,
.ws-pricing-plan,
.ws-pricing-compare-card,
.ws-pricing-addon-card,
.ws-about-value-card,
.ws-about-approach-card,
.ws-demo-process-card {
    padding: 26px;
    border-radius: 28px;
    border: 1px solid var(--ws-line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.92));
    box-shadow: var(--ws-shadow-md);
}

.ws-home-stage-panel,
.ws-features-stage-panel,
.ws-pricing-stage-panel {
    display: grid;
    gap: 16px;
    padding: 28px;
    min-height: 100%;
    border: 1px solid rgba(92, 133, 184, 0.2);
    background:
        radial-gradient(circle at top right, rgba(242, 187, 99, 0.18), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 245, 251, 0.94));
}

.ws-visual-board {
    display: grid;
    gap: 16px;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(67, 104, 150, 0.14);
    background:
        radial-gradient(circle at top right, rgba(95, 196, 212, 0.14), transparent 32%),
        linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(237, 244, 250, 0.94));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.ws-visual-board-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ws-visual-board-toolbar span,
.ws-visual-panel-head span,
.ws-visual-plan-card label,
.ws-visual-lane-card label,
.ws-visual-feature-card label,
.ws-visual-commercial-note span {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ws-text-soft);
}

.ws-visual-board-toolbar strong,
.ws-visual-panel-head strong,
.ws-visual-commercial-note strong {
    font-family: var(--ws-font-display);
    font-size: 1rem;
    line-height: 1.16;
    color: var(--ws-ink-strong);
}

.ws-visual-metric-row,
.ws-visual-split-grid,
.ws-visual-lane-grid,
.ws-visual-quad-grid,
.ws-visual-plan-stack,
.ws-visual-demo-list {
    display: grid;
    gap: 12px;
}

.ws-visual-metric-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.ws-visual-metric-card,
.ws-visual-panel,
.ws-visual-lane-card,
.ws-visual-feature-card,
.ws-visual-plan-card,
.ws-visual-commercial-note {
    display: grid;
    gap: 6px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(67, 104, 150, 0.12);
    background: rgba(255, 255, 255, 0.82);
}

.ws-visual-metric-card label,
.ws-visual-metric-card span,
.ws-visual-line-item span {
    color: var(--ws-text-soft);
}

.ws-visual-metric-card label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.ws-visual-metric-card strong {
    font-family: var(--ws-font-display);
    font-size: 2rem;
    line-height: 0.95;
    letter-spacing: -0.05em;
    color: var(--ws-ink-strong);
}

.ws-visual-metric-card span {
    font-size: 0.84rem;
    font-weight: 600;
}

.ws-visual-metric-card.accent,
.ws-visual-lane-card.accent,
.ws-visual-feature-card.accent,
.ws-visual-plan-card.featured {
    background:
        linear-gradient(180deg, rgba(239, 251, 249, 0.98), rgba(228, 246, 242, 0.92));
    border-color: rgba(29, 145, 104, 0.18);
}

.ws-visual-metric-card.soft {
    background:
        linear-gradient(180deg, rgba(251, 247, 241, 0.98), rgba(247, 239, 229, 0.92));
    border-color: rgba(227, 155, 49, 0.18);
}

.ws-visual-panel-head {
    display: grid;
    gap: 4px;
}

.ws-visual-line-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid rgba(67, 104, 150, 0.12);
}

.ws-visual-line-item:first-of-type {
    border-top: none;
    padding-top: 6px;
}

.ws-visual-line-item strong {
    font-size: 0.94rem;
    color: var(--ws-ink-strong);
}

.ws-visual-stack-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-content: start;
}

.ws-visual-stack-badges span,
.ws-visual-board-footer span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(9, 24, 45, 0.06);
    color: var(--ws-ink);
    font-size: 0.82rem;
    font-weight: 700;
}

.ws-visual-board-platform,
.ws-visual-board-about {
    min-height: 420px;
    align-content: start;
}

.ws-visual-lane-grid,
.ws-visual-quad-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ws-visual-lane-card strong,
.ws-visual-feature-card strong,
.ws-visual-plan-card strong {
    font-family: var(--ws-font-display);
    font-size: 1.08rem;
    line-height: 1.16;
    color: var(--ws-ink-strong);
}

.ws-visual-board-footer {
    display: flex;
    justify-content: flex-start;
}

.ws-visual-board-pricing {
    gap: 14px;
}

.ws-visual-plan-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ws-visual-plan-card strong {
    font-size: 2.1rem;
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.ws-visual-plan-card span {
    color: var(--ws-text-soft);
    font-size: 0.85rem;
    font-weight: 600;
}

.ws-visual-commercial-note strong {
    max-width: 420px;
}

.ws-visual-board-demo {
    background:
        radial-gradient(circle at top right, rgba(242, 187, 99, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(237, 244, 250, 0.94));
}

.ws-home-stage-header,
.ws-features-stage-topline {
    display: grid;
    gap: 6px;
}

.ws-features-card-header {
    display: grid;
    gap: 12px;
    align-content: start;
}

.ws-home-stage-header span,
.ws-features-stage-topline strong,
.ws-pricing-stage-panel strong,
.ws-about-stage-card strong,
.ws-pricing-stage-note strong {
    color: var(--ws-ink-strong);
}

.ws-home-stage-header span,
.ws-features-stage-topline span {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ws-text-soft);
}

.ws-home-stage-header strong,
.ws-features-stage-topline strong {
    font-family: var(--ws-font-display);
    font-size: 1.28rem;
    line-height: 1.15;
}

.ws-home-stage-rail,
.ws-features-stage-rail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.ws-home-stage-card,
.ws-features-stage-card {
    display: grid;
    gap: 8px;
    padding: 20px 20px 18px;
    border-radius: 22px;
    border: 1px solid var(--ws-line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--ws-shadow-sm);
}

.ws-home-stage-card.accent,
.ws-features-stage-card.accent,
.ws-features-card.accent,
.ws-pricing-addon-card.accent {
    background:
        linear-gradient(180deg, rgba(245, 252, 250, 0.98), rgba(234, 247, 244, 0.92));
    border-color: rgba(29, 145, 104, 0.18);
}

.ws-home-stage-card strong,
.ws-features-stage-card strong {
    font-family: var(--ws-font-display);
    font-size: 1.05rem;
    line-height: 1.15;
    color: var(--ws-ink-strong);
}

.ws-home-stage-card p,
.ws-features-stage-card p {
    font-size: 0.93rem;
    color: var(--ws-text-soft);
}

.ws-home-stage-card-label {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ws-teal);
}

.ws-product-chip-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ws-product-chip-strip span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(9, 24, 45, 0.06);
    color: var(--ws-text);
    font-size: 0.83rem;
    font-weight: 700;
}

.ws-product-stage-shell {
    position: relative;
    min-height: 420px;
    padding-bottom: 40px;
}

.ws-product-shot.primary {
    position: relative;
    z-index: 2;
}

.ws-product-shot.secondary {
    position: absolute;
    right: -10px;
    bottom: 0;
    width: min(47%, 290px);
    z-index: 3;
}

.ws-mockup-frame {
    position: relative;
    padding: 14px 14px 18px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background:
        linear-gradient(160deg, rgba(8, 19, 34, 0.96), rgba(15, 42, 69, 0.9));
    box-shadow: 0 32px 62px rgba(7, 17, 31, 0.18);
    overflow: hidden;
}

.ws-generated-stage-frame {
    padding: 10px 10px 14px;
}

.ws-mockup-frame.light {
    border-color: rgba(67, 104, 150, 0.18);
    background:
        linear-gradient(160deg, rgba(250, 252, 255, 0.96), rgba(234, 241, 249, 0.92));
    box-shadow: 0 26px 48px rgba(10, 26, 52, 0.12);
}

.ws-mockup-frame.compact {
    padding: 12px 12px 16px;
    border-radius: 26px;
}

.ws-mockup-glow {
    position: absolute;
    inset: auto -8% -22% auto;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(95, 196, 212, 0.22), transparent 72%);
    filter: blur(10px);
}

.ws-mockup-glow.warm {
    background: radial-gradient(circle, rgba(242, 187, 99, 0.22), transparent 72%);
}

.ws-mockup-chrome {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 20px;
    margin-bottom: 12px;
}

.ws-mockup-chrome span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
}

.ws-mockup-frame.light .ws-mockup-chrome span {
    background: rgba(15, 33, 59, 0.18);
}

.ws-mockup-image {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.ws-generated-stage-image {
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: contain;
    object-position: center center;
    background: linear-gradient(180deg, rgba(245, 249, 253, 0.92), rgba(235, 242, 249, 0.76));
}

.ws-mockup-badge {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(8, 19, 34, 0.78);
    backdrop-filter: blur(12px);
    color: var(--ws-white);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.top-left {
    top: 18px;
    left: 18px;
}

.top-right {
    top: 18px;
    right: 18px;
}

.bottom-left {
    bottom: 18px;
    left: 18px;
}

.ws-home-lane-grid,
.ws-features-catalog-grid,
.ws-pricing-plan-grid,
.ws-pricing-addon-grid,
.ws-about-values,
.ws-about-approach-grid,
.ws-demo-process-grid,
.ws-pricing-compare-grid {
    display: grid;
    gap: 20px;
}

.ws-home-lane-grid,
.ws-features-catalog-grid,
.ws-pricing-addon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ws-home-lane-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ws-home-lanes,
.ws-home-platform,
.ws-home-trust,
.ws-home-cta,
.ws-features-strip,
.ws-features-catalog,
.ws-features-proof,
.ws-features-cta,
.ws-pricing-plans,
.ws-pricing-compare,
.ws-pricing-addons,
.ws-pricing-cta,
.ws-about-story,
.ws-about-approach,
.ws-about-cta,
.ws-demo-process {
    padding-top: 40px;
}

.ws-home-lanes {
    margin-top: 0;
}

.ws-home-lanes .ws-home-section-intro p {
    color: #445a72;
    font-weight: 600;
}

.ws-home-lanes-note {
    color: #2c455d !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.12);
}

.ws-home-lane-card,
.ws-features-card,
.ws-pricing-addon-card,
.ws-about-value-card,
.ws-about-approach-card,
.ws-demo-process-card {
    display: grid;
    gap: 14px;
}

.ws-home-lane-card > span,
.ws-features-card-header > span,
.ws-pricing-addon-card > span,
.ws-about-value-card > span,
.ws-about-approach-card > span,
.ws-demo-process-card > span,
.ws-pricing-stage-metric label,
.ws-pricing-plan-tier,
.ws-pricing-compare-card > span {
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ws-text-soft);
}

.ws-home-lane-card strong,
.ws-features-card-header strong,
.ws-pricing-addon-card strong,
.ws-about-value-card strong,
.ws-about-approach-card strong,
.ws-demo-process-card strong {
    font-family: var(--ws-font-display);
    font-size: 1.24rem;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--ws-ink-strong);
}

.ws-home-lane-card p,
.ws-features-card p,
.ws-pricing-addon-card p,
.ws-demo-process-card p {
    color: var(--ws-text-soft);
}

.ws-home-lane-tags,
.ws-features-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ws-home-lane-tags span,
.ws-features-card-tags span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(9, 24, 45, 0.06);
    color: var(--ws-ink);
    font-size: 0.8rem;
    font-weight: 700;
}

.ws-home-platform-grid,
.ws-home-trust-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 24px;
    align-items: stretch;
}

.ws-home-platform-copy,
.ws-home-trust-copy {
    display: grid;
    gap: 22px;
}

.ws-home-advantage-stack {
    display: grid;
    gap: 16px;
}

.ws-home-advantage-card p {
    color: var(--ws-text-soft);
}

.ws-home-platform-metrics,
.ws-home-trust-stats {
    display: grid;
    gap: 14px;
}

.ws-home-platform-metric strong,
.ws-home-trust-stat strong {
    display: block;
    margin-top: 8px;
    font-family: var(--ws-font-display);
    font-size: 1.05rem;
    color: var(--ws-ink-strong);
}

.ws-home-platform-metric span,
.ws-home-trust-stat span {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ws-text-soft);
}

.ws-home-platform-stage,
.ws-about-hero-stage {
    position: relative;
    display: grid;
    gap: 16px;
    min-height: 100%;
    padding: 26px;
    border-radius: 34px;
    border: 1px solid var(--ws-line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 245, 251, 0.94));
    box-shadow: var(--ws-shadow-lg);
    overflow: hidden;
}

.ws-home-platform-stage::before,
.ws-about-hero-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(95, 196, 212, 0.16), transparent 28%),
        radial-gradient(circle at bottom right, rgba(242, 187, 99, 0.16), transparent 30%);
    pointer-events: none;
}

.ws-home-platform-stage .ws-product-stage-shell,
.ws-about-hero-stage .ws-product-stage-shell {
    min-height: 430px;
}

.ws-home-stage-secondary,
.ws-about-stage-secondary,
.ws-features-stage-secondary,
.ws-pricing-stage-secondary {
    width: min(46%, 280px);
}

.ws-home-platform-note-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    position: relative;
    z-index: 2;
}

.ws-home-platform-float,
.ws-about-stage-card {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 8px;
    padding: 20px;
    border-radius: 22px;
    border: 1px solid rgba(67, 104, 150, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 252, 0.94));
    box-shadow: var(--ws-shadow-sm);
    color: var(--ws-ink-strong);
}

.ws-home-platform-float span {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ws-teal);
}

.ws-home-platform-float strong,
.ws-about-stage-card strong {
    font-family: var(--ws-font-display);
    font-size: 1rem;
    line-height: 1.16;
    color: var(--ws-ink-strong);
}

.ws-about-stage-card {
    max-width: none;
}

.ws-home-logo-shell {
    display: grid;
    gap: 18px;
    align-content: start;
}

.ws-home-logo-heading {
    display: grid;
    gap: 12px;
    padding: 24px 24px 22px;
    border-radius: 28px;
    border: 1px solid var(--ws-line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.94));
    box-shadow: var(--ws-shadow-sm);
}

.ws-home-logo-heading strong {
    font-family: var(--ws-font-display);
    font-size: 1.18rem;
    line-height: 1.16;
    color: var(--ws-ink-strong);
}

.ws-home-logo-heading p {
    color: var(--ws-text-soft);
}

.ws-home-logo-cloud {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-content: start;
}

.logo-item {
    width: 100%;
    min-height: 124px;
    object-fit: contain;
    padding: 26px;
    border-radius: 26px;
    border: 1px solid var(--ws-line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.92));
    box-shadow: var(--ws-shadow-sm);
}

.ws-home-testimonial-shell {
    position: relative;
    display: grid;
    gap: 28px;
    padding: 34px;
    border-radius: 34px;
    border: 1px solid var(--ws-line);
    background:
        radial-gradient(circle at top right, rgba(95, 196, 212, 0.14), transparent 26%),
        radial-gradient(circle at bottom left, rgba(242, 187, 99, 0.14), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 252, 0.95));
    box-shadow: var(--ws-shadow-lg);
    overflow: hidden;
}

.ws-home-testimonial-intro {
    display: grid;
    gap: 14px;
    max-width: 900px;
}

.ws-home-testimonial-intro > span {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ws-teal);
}

.ws-home-testimonial-intro h2 {
    font-family: var(--ws-font-display);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.04;
    letter-spacing: -0.05em;
    color: var(--ws-ink-strong);
}

.ws-home-testimonial-intro p {
    max-width: 760px;
    color: var(--ws-text-soft);
}

.ws-home-testimonial-note-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ws-home-testimonial-note-row span,
.ws-home-testimonial-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(9, 24, 45, 0.06);
    color: var(--ws-ink);
    font-size: 0.82rem;
    font-weight: 700;
}

.ws-home-testimonial-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 30px;
    align-items: stretch;
}

.ws-home-testimonial-stack {
    position: relative;
    display: grid;
    gap: 22px;
    align-content: center;
    padding: 28px 0;
}

.ws-home-testimonial-stack::before {
    content: "";
    position: absolute;
    inset: 16px 48px 16px 52px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(95, 196, 212, 0.12), rgba(242, 187, 99, 0.08));
    filter: blur(0.2px);
}

.ws-home-testimonial-featured,
.ws-home-testimonial-card {
    display: grid;
    gap: 18px;
    padding: 24px;
    border-radius: 28px;
    border: 1px solid rgba(67, 104, 150, 0.16);
    box-shadow: var(--ws-shadow-sm);
}

.ws-home-testimonial-featured {
    position: relative;
    min-height: 100%;
    align-content: start;
    padding: 34px;
    background:
        radial-gradient(circle at top right, rgba(95, 196, 212, 0.18), transparent 28%),
        linear-gradient(145deg, rgba(8, 19, 34, 0.98), rgba(14, 43, 71, 0.92) 54%, rgba(14, 108, 104, 0.84));
    color: var(--ws-white);
    box-shadow: 0 32px 66px rgba(7, 17, 31, 0.24);
    overflow: hidden;
}

.ws-home-testimonial-featured::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -42px;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 68%);
    pointer-events: none;
}

.ws-home-testimonial-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 249, 253, 0.95));
    box-shadow: 0 24px 44px rgba(10, 26, 52, 0.1);
    z-index: 1;
}

.ws-home-testimonial-card.accent {
    background:
        linear-gradient(180deg, rgba(245, 252, 250, 0.99), rgba(233, 247, 243, 0.94));
    border-color: rgba(29, 145, 104, 0.16);
}

.ws-home-testimonial-card.swap-left {
    margin-right: 84px;
    transform: rotate(-2.3deg) translateX(-10px);
}

.ws-home-testimonial-card.swap-right {
    margin-top: -10px;
    margin-left: 84px;
    transform: rotate(2deg) translateX(12px);
}

.ws-home-testimonial-person {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ws-home-testimonial-avatar {
    width: 74px;
    height: 74px;
    border-radius: 24px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(67, 104, 150, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.94));
    box-shadow: 0 14px 28px rgba(12, 29, 51, 0.1);
}

.ws-home-testimonial-avatar.featured {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 30px rgba(2, 8, 23, 0.24);
}

.ws-home-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ws-home-testimonial-person-copy {
    display: grid;
    gap: 4px;
}

.ws-home-testimonial-person-copy span {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ws-teal);
}

.ws-home-testimonial-featured .ws-home-testimonial-person-copy span {
    color: rgba(144, 221, 231, 0.88);
}

.ws-home-testimonial-person-copy strong {
    font-family: var(--ws-font-display);
    font-size: 1.12rem;
    line-height: 1.1;
    color: var(--ws-ink-strong);
}

.ws-home-testimonial-featured .ws-home-testimonial-person-copy strong {
    color: var(--ws-white);
}

.ws-home-testimonial-person-copy small {
    color: var(--ws-text-soft);
    line-height: 1.45;
}

.ws-home-testimonial-featured .ws-home-testimonial-person-copy small {
    color: rgba(232, 241, 248, 0.76);
}

.ws-home-testimonial-stars {
    font-size: 1rem;
    letter-spacing: 0.18em;
    color: var(--ws-amber);
}

.ws-home-testimonial-featured .ws-home-testimonial-stars {
    color: #ffd58b;
}

.ws-home-testimonial-featured blockquote,
.ws-home-testimonial-card blockquote {
    margin: 0;
    font-family: var(--ws-font-display);
    font-size: clamp(1.12rem, 1.6vw, 1.48rem);
    line-height: 1.42;
    letter-spacing: -0.03em;
}

.ws-home-testimonial-featured blockquote {
    color: rgba(250, 253, 255, 0.98);
}

.ws-home-testimonial-card blockquote {
    color: var(--ws-ink-strong);
}

.ws-home-testimonial-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ws-home-testimonial-featured .ws-home-testimonial-tags span {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(248, 251, 255, 0.94);
}

.ws-home-testimonial-tags.compact span {
    min-height: 34px;
    font-size: 0.78rem;
}

.ws-home-mobile {
    padding-top: 8px;
}

.ws-home-mobile-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    gap: 26px;
    align-items: center;
    padding: 32px 34px;
    border-radius: 34px;
    border: 1px solid var(--ws-line);
    background:
        radial-gradient(circle at top right, rgba(95, 196, 212, 0.14), transparent 28%),
        radial-gradient(circle at bottom left, rgba(242, 187, 99, 0.14), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 246, 252, 0.95));
    box-shadow: var(--ws-shadow-lg);
}

.ws-home-mobile-copy {
    display: grid;
    gap: 14px;
}

.ws-home-mobile-side {
    display: grid;
    gap: 18px;
}

.ws-home-mobile-copy > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(92, 133, 184, 0.18);
    background: linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(235, 242, 249, 0.96));
    color: #5f7898;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.ws-home-mobile-copy h2 {
    font-family: var(--ws-font-display);
    font-size: clamp(1.95rem, 3vw, 3rem);
    line-height: 1.04;
    letter-spacing: -0.05em;
    color: var(--ws-ink-strong);
}

.ws-home-mobile-copy p {
    max-width: 720px;
    color: var(--ws-text-soft);
}

.ws-home-mobile-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ws-home-mobile-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(9, 24, 45, 0.06);
    color: var(--ws-ink);
    font-size: 0.84rem;
    font-weight: 700;
}

.ws-home-mobile-proof-grid {
    display: grid;
    gap: 14px;
}

.ws-home-mobile-proof-card {
    display: grid;
    gap: 10px;
    padding: 18px 20px;
    border-radius: 24px;
    border: 1px solid rgba(92, 133, 184, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 246, 252, 0.86));
    box-shadow: 0 18px 32px rgba(10, 29, 50, 0.08);
}

.ws-home-mobile-proof-card.accent {
    background: linear-gradient(135deg, rgba(13, 37, 60, 0.96), rgba(19, 92, 97, 0.88));
    border-color: rgba(84, 194, 210, 0.22);
}

.ws-home-mobile-proof-card span {
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6281a6;
}

.ws-home-mobile-proof-card strong {
    font-family: var(--ws-font-display);
    font-size: 1.18rem;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--ws-ink-strong);
}

.ws-home-mobile-proof-card p {
    color: var(--ws-text-soft);
    font-size: 0.96rem;
}

.ws-home-mobile-proof-card.accent span {
    color: rgba(154, 235, 233, 0.82);
}

.ws-home-mobile-proof-card.accent strong {
    color: rgba(249, 252, 255, 0.98);
}

.ws-home-mobile-proof-card.accent p {
    color: rgba(223, 235, 246, 0.82);
}

.ws-home-mobile-actions {
    display: grid;
    gap: 16px;
    justify-items: start;
}

.ws-home-mobile-store-note {
    color: #4f6785;
    font-weight: 600;
    line-height: 1.6;
}

.ws-store-badge-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    text-decoration: none;
}

.ws-store-badge {
    width: min(100%, 250px);
    height: auto;
    display: block;
    filter: drop-shadow(0 18px 30px rgba(7, 17, 31, 0.14));
}

.ws-home-cta-shell,
.ws-features-cta-shell,
.ws-pricing-cta-shell,
.ws-about-cta-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) auto;
    gap: 24px;
    align-items: end;
    padding: 34px 36px;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--ws-hero-overlay);
    box-shadow: 0 24px 54px rgba(7, 17, 31, 0.24);
    color: var(--ws-white);
}

.ws-home-cta-shell h2,
.ws-features-cta-shell h2,
.ws-pricing-cta-shell h2,
.ws-about-cta-shell h2 {
    margin-top: 16px;
    font-family: var(--ws-font-display);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.ws-home-cta-shell p,
.ws-features-cta-shell p,
.ws-pricing-cta-shell p,
.ws-about-cta-shell p {
    margin-top: 14px;
    max-width: 720px;
    color: rgba(240, 247, 252, 0.78);
}

.ws-home-cta-actions,
.ws-features-cta-actions,
.ws-pricing-cta-actions,
.ws-about-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end;
}

.ws-features-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.ws-features-strip-card {
    display: grid;
    gap: 10px;
}

.ws-features-strip-card span {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ws-teal);
}

.ws-features-strip-card strong {
    font-family: var(--ws-font-display);
    font-size: 1.08rem;
    line-height: 1.18;
    color: var(--ws-ink-strong);
}

.ws-features-proof-shell,
.ws-pricing-compare-shell,
.ws-about-story-shell {
    display: grid;
    gap: 26px;
    padding: 30px 32px;
    border-radius: 34px;
    border: 1px solid var(--ws-line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.94));
    box-shadow: var(--ws-shadow-md);
}

.ws-features-proof-shell .ws-features-eyebrow,
.ws-pricing-compare-shell .ws-pricing-eyebrow,
.ws-about-story-shell .ws-about-eyebrow {
    border: 1px solid rgba(92, 133, 184, 0.18);
    background: linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(235, 242, 249, 0.96));
    color: #5f7898;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.ws-features-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.ws-features-proof-card {
    display: grid;
    gap: 10px;
}

.ws-features-proof-card span {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6280a5;
}

.ws-features-proof-card strong {
    font-size: 1.08rem;
    line-height: 1.2;
}

.ws-pricing-stage {
    display: grid;
    gap: 18px;
}

.ws-pricing-stage-panel strong {
    font-family: var(--ws-font-display);
    font-size: 1.2rem;
    line-height: 1.15;
}

.ws-pricing-stage-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.ws-pricing-stage-metric {
    display: grid;
    gap: 10px;
    padding: 18px 18px 16px;
    border-radius: 18px;
    background: rgba(9, 24, 45, 0.05);
    border: 1px solid rgba(67, 104, 150, 0.12);
}

.ws-pricing-stage-metric strong {
    font-family: var(--ws-font-display);
    font-size: 1rem;
    line-height: 1.2;
    color: var(--ws-ink-strong);
}

.ws-pricing-stage-note {
    display: grid;
    gap: 10px;
    background:
        linear-gradient(180deg, rgba(249, 245, 238, 0.96), rgba(247, 239, 229, 0.92));
    border-color: rgba(227, 155, 49, 0.18);
}

.ws-pricing-plan-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.ws-pricing-plan {
    display: grid;
    gap: 16px;
    align-content: start;
    padding-top: 32px;
}

.ws-pricing-plan.featured {
    position: relative;
    transform: translateY(-8px);
    border-color: rgba(16, 150, 165, 0.24);
    background:
        linear-gradient(180deg, rgba(251, 255, 255, 0.98), rgba(237, 247, 247, 0.94));
}

.ws-pricing-plan.enterprise {
    background:
        linear-gradient(180deg, rgba(249, 247, 242, 0.98), rgba(246, 238, 225, 0.94));
    border-color: rgba(227, 155, 49, 0.2);
}

.ws-pricing-plan-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(16, 150, 165, 0.12);
    color: var(--ws-teal);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ws-pricing-plan-tagline {
    font-family: var(--ws-font-display);
    font-size: 1.18rem;
    line-height: 1.18;
    color: var(--ws-ink-strong);
}

.ws-pricing-plan-price {
    font-family: var(--ws-font-display);
    font-size: clamp(2.6rem, 5vw, 3.4rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
    color: var(--ws-ink-strong);
}

.ws-pricing-plan-price span {
    margin-left: 6px;
    font-size: 1rem;
    font-family: var(--ws-font-body);
    letter-spacing: 0;
    color: var(--ws-text-soft);
}

.ws-pricing-plan-blurb,
.ws-pricing-plan-kicker {
    color: var(--ws-text-soft);
}

.ws-pricing-plan-kicker {
    font-size: 0.9rem;
    font-weight: 700;
}

.ws-pricing-plan-list {
    display: grid;
    gap: 12px;
    list-style: none;
}

.ws-pricing-plan-list li {
    position: relative;
    padding-left: 22px;
    color: var(--ws-text);
}

.ws-pricing-plan-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ws-teal), var(--ws-cyan));
}

.ws-pricing-plan-btn {
    width: 100%;
    margin-top: auto;
}

.ws-pricing-plan .btn-outline {
    border-color: rgba(21, 50, 84, 0.12);
    background: rgba(233, 240, 248, 0.86);
    color: var(--ws-ink-strong) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.ws-pricing-plan .btn-outline:hover {
    background: rgba(223, 232, 243, 0.98);
}

.ws-pricing-plan.enterprise .btn-outline {
    background: rgba(246, 238, 225, 0.92);
    border-color: rgba(227, 155, 49, 0.2);
}

.ws-pricing-compare-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ws-pricing-compare-card ul {
    display: grid;
    gap: 12px;
    margin-top: 16px;
    padding-left: 20px;
    color: var(--ws-text-soft);
}

.ws-pricing-compare-card.featured {
    background:
        linear-gradient(180deg, rgba(251, 255, 255, 0.98), rgba(237, 247, 247, 0.94));
}

.ws-pricing-addon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ws-pricing-addon-price {
    margin-top: auto;
    font-family: var(--ws-font-display);
    font-size: 1.9rem;
    letter-spacing: -0.04em;
    color: var(--ws-ink-strong);
}

.ws-pricing-addon-price span {
    margin-left: 4px;
    font-size: 0.95rem;
    font-family: var(--ws-font-body);
    color: var(--ws-text-soft);
}

.ws-about-story-shell {
    grid-template-columns: minmax(0, 1fr);
}

.ws-about-values,
.ws-about-approach-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ws-demo-form-shell {
    display: grid;
    gap: 18px;
    align-content: start;
}

.ws-demo-stage-preview .ws-mockup-frame {
    box-shadow: 0 24px 42px rgba(10, 26, 52, 0.14);
}

.ws-demo-form-header {
    display: grid;
    gap: 6px;
}

.ws-demo-form-header span {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ws-teal);
}

.ws-demo-form-header strong {
    font-family: var(--ws-font-display);
    font-size: 1.35rem;
    line-height: 1.15;
    color: var(--ws-ink-strong);
}

.alert-success {
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(29, 145, 104, 0.18);
    background: rgba(226, 245, 237, 0.92);
    color: #0e6547;
    font-weight: 700;
}

.ws-demo-form {
    display: grid;
    gap: 12px;
}

.ws-demo-form label {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ws-ink);
}

.ws-demo-form input,
.ws-demo-form textarea {
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    border: 1px solid rgba(67, 104, 150, 0.18);
    border-radius: 16px;
    background: rgba(245, 248, 252, 0.96);
    color: var(--ws-ink-strong);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ws-demo-form textarea {
    min-height: 128px;
    resize: vertical;
}

.ws-demo-form input:focus,
.ws-demo-form textarea:focus,
.lang-dropdown:focus {
    outline: none;
    border-color: rgba(16, 150, 165, 0.48);
    box-shadow: 0 0 0 4px rgba(95, 196, 212, 0.14);
    background: var(--ws-white);
}

.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: rippleAnim 0.6s linear;
    background-color: rgba(255, 255, 255, 0.48);
}

@keyframes rippleAnim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@media (max-width: 1180px) {
    .nav-links {
        gap: 6px;
    }

    .nav-links a {
        padding-inline: 12px;
        font-size: 0.9rem;
    }

    .ws-home-hero-grid,
    .ws-features-hero-grid,
    .ws-pricing-hero-grid,
    .ws-about-hero-grid,
    .ws-demo-hero-grid,
    .ws-home-platform-grid,
    .ws-home-trust-grid {
        grid-template-columns: 1fr;
    }

    .ws-home-platform-stage,
    .ws-about-hero-stage {
        min-height: auto;
    }

    .ws-home-proof-strip,
    .ws-pricing-stage-metrics,
    .ws-home-platform-note-grid,
    .ws-features-proof-grid,
    .ws-about-values,
    .ws-about-approach-grid,
    .ws-pricing-plan-grid,
    .ws-pricing-addon-grid,
    .ws-pricing-compare-grid,
    .ws-visual-metric-row,
    .ws-visual-plan-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ws-home-testimonial-layout {
        grid-template-columns: 1fr;
    }

    .ws-home-testimonial-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-block: 0;
    }

    .ws-home-testimonial-stack::before {
        display: none;
    }

    .ws-home-testimonial-card.swap-left,
    .ws-home-testimonial-card.swap-right {
        margin: 0;
        transform: none;
    }

    .ws-home-lane-grid,
    .ws-home-mobile-shell {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ws-home-cta-shell,
    .ws-features-cta-shell,
    .ws-pricing-cta-shell,
    .ws-about-cta-shell,
    .footer-shell {
        grid-template-columns: 1fr;
    }

    .footer-copy,
    .ws-home-cta-actions,
    .ws-features-cta-actions,
    .ws-pricing-cta-actions,
    .ws-about-cta-actions {
        justify-self: start;
        text-align: left;
        justify-content: flex-start;
    }
}

@media (max-width: 980px) {
    .page-body {
        padding-top: 102px;
    }

    .nav-links,
    .nav-utilities {
        display: none;
    }

    .mobile-menu-btn {
        display: inline-flex;
        margin-left: auto;
    }

    .ws-product-shot.secondary,
    .ws-home-stage-secondary,
    .ws-about-stage-secondary,
    .ws-features-stage-secondary,
    .ws-pricing-stage-secondary {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 18px;
    }

    .ws-product-stage-shell {
        min-height: auto;
        padding-bottom: 0;
    }

    .ws-home-stage-rail,
    .ws-features-stage-rail,
    .ws-home-platform-note-grid,
    .ws-features-strip-grid,
    .ws-home-lane-grid,
    .ws-home-mobile-shell,
    .ws-features-catalog-grid,
    .ws-pricing-plan-grid,
    .ws-pricing-addon-grid,
    .ws-pricing-compare-grid,
    .ws-about-values,
    .ws-about-approach-grid,
    .ws-demo-process-grid,
    .ws-home-proof-strip,
    .ws-visual-metric-row,
    .ws-visual-split-grid,
    .ws-visual-lane-grid,
    .ws-visual-quad-grid,
    .ws-visual-plan-stack {
        grid-template-columns: 1fr;
    }

    .ws-home-mobile-actions {
        justify-items: start;
    }
}

@media (max-width: 768px) {
    .ws-home-hero {
        padding-bottom: 28px;
    }

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

    section {
        padding: 22px 0;
    }

    .nav {
        min-height: 70px;
        padding: 12px 14px 12px 16px;
        border-radius: 24px;
    }

    .logo-mark {
        width: 38px;
        height: 38px;
        border-radius: 13px;
        font-size: 0.86rem;
    }

    .logo-word {
        font-size: 1rem;
    }

    .mobile-menu,
    .nav {
        width: calc(100% - 28px);
    }

    .mobile-menu {
        margin-top: 10px;
    }

    .ws-home-hero-copy,
    .ws-features-hero-copy,
    .ws-pricing-hero-copy,
    .ws-about-hero-copy,
    .ws-demo-hero-copy,
    .ws-home-stage-panel,
    .ws-features-stage-panel,
    .ws-pricing-stage-panel,
    .ws-pricing-stage-note,
    .ws-demo-form-shell,
    .ws-home-lane-card,
    .ws-home-advantage-card,
    .ws-home-platform-metric,
    .ws-home-trust-stat,
    .ws-features-strip-card,
    .ws-features-card,
    .ws-features-proof-card,
    .ws-pricing-plan,
    .ws-pricing-compare-card,
    .ws-pricing-addon-card,
    .ws-about-value-card,
    .ws-about-approach-card,
    .ws-demo-process-card,
    .ws-home-platform-stage,
    .ws-home-testimonial-shell,
    .ws-home-testimonial-featured,
    .ws-home-testimonial-card,
    .ws-about-hero-stage,
    .ws-home-cta-shell,
    .ws-features-cta-shell,
    .ws-pricing-cta-shell,
    .ws-about-cta-shell,
    .ws-features-proof-shell,
    .ws-pricing-compare-shell,
    .ws-about-story-shell,
    .footer-shell,
    .ws-home-mobile-shell {
        padding: 22px;
        border-radius: 26px;
    }

    .ws-home-hero-copy h1,
    .ws-features-hero-copy h1,
    .ws-pricing-hero-copy h1,
    .ws-about-hero-copy h1,
    .ws-demo-hero-copy h1 {
        font-size: clamp(2rem, 12vw, 3.05rem);
    }

    .ws-pricing-plan-price {
        font-size: 2.7rem;
    }

    .ws-pricing-stage-metrics {
        grid-template-columns: 1fr;
    }

    .ws-home-testimonial-layout,
    .ws-home-testimonial-stack {
        grid-template-columns: 1fr;
    }

    .ws-home-testimonial-featured {
        padding: 26px;
    }

    .ws-home-testimonial-person {
        align-items: flex-start;
        gap: 12px;
    }

    .ws-home-testimonial-avatar {
        width: 60px;
        height: 60px;
        border-radius: 18px;
    }

    .ws-home-testimonial-featured blockquote,
    .ws-home-testimonial-card blockquote {
        font-size: 1.03rem;
        line-height: 1.5;
    }

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

@media (max-width: 560px) {
    .page-body {
        padding-top: 96px;
    }

    .btn-primary,
    .btn-outline,
    .btn-large {
        width: 100%;
    }

    .ws-home-hero-actions,
    .ws-features-hero-actions,
    .ws-pricing-hero-actions,
    .ws-home-cta-actions,
    .ws-features-cta-actions,
    .ws-pricing-cta-actions,
    .ws-about-cta-actions {
        flex-direction: column;
    }

    .ws-home-testimonial-note-row,
    .ws-home-testimonial-tags {
        flex-direction: column;
        align-items: flex-start;
    }

    .ws-home-testimonial-note-row span,
    .ws-home-testimonial-tags span {
        width: 100%;
        justify-content: flex-start;
    }

    .ws-home-mobile-pills {
        flex-direction: column;
        align-items: stretch;
    }

    .ws-home-mobile-pills span,
    .ws-store-badge-link,
    .ws-store-badge {
        width: 100%;
        max-width: 100%;
    }

    .ws-home-hero-copy,
    .ws-features-hero-copy,
    .ws-pricing-hero-copy,
    .ws-about-hero-copy,
    .ws-demo-hero-copy {
        padding: 24px 22px 26px;
    }

    .ws-mockup-badge {
        max-width: calc(100% - 36px);
        font-size: 0.7rem;
        letter-spacing: 0.1em;
    }
}
