.page-shell {
    width: min(980px, 94vw);
    margin: clamp(40px, 8vw, 72px) auto clamp(80px, 12vw, 120px);
    display: grid;
    gap: clamp(32px, 6vw, 48px);
}

.page-hero {
    position: relative;
    padding: clamp(48px, 8vw, 72px);
    border-radius: 42px;
    background: linear-gradient(135deg, rgba(193, 154, 223, 0.16), rgba(108, 140, 213, 0.18));
    border: 1px solid rgba(193, 154, 223, 0.32);
    box-shadow: 0 32px 70px rgba(26, 40, 72, 0.12);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: -35% -15% auto;
    height: clamp(260px, 44vw, 320px);
    background: radial-gradient(circle, rgba(168, 195, 160, 0.32) 0%, transparent 65%);
    filter: blur(12px);
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: auto -20% -40% 20%;
    height: clamp(200px, 36vw, 280px);
    background: radial-gradient(circle, rgba(108, 140, 213, 0.28) 0%, transparent 62%);
    filter: blur(18px);
}

.page-hero h1,
.page-hero p {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(42px, 6vw, 58px);
    letter-spacing: -0.03em;
    color: rgba(24, 32, 62, 0.92);
}

.page-hero p {
    margin: 16px 0 0;
    max-width: 48ch;
    color: rgba(36, 50, 84, 0.74);
    font-size: 19px;
    line-height: 1.7;
}

.page-content {
    display: grid;
    gap: clamp(26px, 5vw, 40px);
}

.page-grid {
    display: grid;
    gap: clamp(22px, 5vw, 32px);
}

.page-grid.two-up {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-section-block {
    position: relative;
    padding: clamp(28px, 6vw, 38px);
    border-radius: 30px;
    border: 1px solid rgba(166, 155, 255, 0.26);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 26px 60px rgba(26, 40, 72, 0.12);
}

.page-section-block::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 18% 12%, rgba(193, 154, 223, 0.2) 0%, transparent 58%),
                radial-gradient(circle at 82% 88%, rgba(108, 140, 213, 0.22) 0%, transparent 60%);
    opacity: 0.75;
    pointer-events: none;
}

.page-section-block > * {
    position: relative;
    z-index: 1;
}

.status-pill,
.get-step,
.use-case-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.22em;
    color: rgba(32, 48, 88, 0.68);
    background: rgba(193, 154, 223, 0.22);
    border: 1px solid rgba(193, 154, 223, 0.32);
    box-shadow: 0 12px 26px rgba(40, 58, 92, 0.12);
}

.status-pill::before,
.get-step::before,
.use-case-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(108, 140, 213, 0.8);
}

.contact-card,
.resource-card,
.info-card,
.use-case-card,
.pricing-card,
.get-started-card {
    position: relative;
    display: grid;
    gap: 14px;
    padding: clamp(24px, 5vw, 32px);
    border-radius: 26px;
    border: 1px solid rgba(193, 154, 223, 0.28);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.92) 0%, rgba(235, 246, 241, 0.88) 100%);
    box-shadow: 0 24px 52px rgba(26, 40, 72, 0.12);
    overflow: hidden;
}

.contact-card::before,
.resource-card::before,
.info-card::before,
.use-case-card::before,
.pricing-card::before,
.get-started-card::before {
    content: '';
    position: absolute;
    inset: -20% -30% auto;
    height: clamp(160px, 30vw, 220px);
    background: radial-gradient(circle, rgba(168, 195, 160, 0.24) 0%, transparent 60%);
    opacity: 0.8;
    pointer-events: none;
}

.contact-card::after,
.resource-card::after,
.info-card::after,
.use-case-card::after,
.pricing-card::after,
.get-started-card::after {
    content: '';
    position: absolute;
    inset: auto -40% -40% 30%;
    height: clamp(140px, 24vw, 200px);
    background: radial-gradient(circle, rgba(108, 140, 213, 0.2) 0%, transparent 62%);
    opacity: 0.7;
    pointer-events: none;
}

.contact-card h3,
.resource-card h3,
.info-card h3,
.use-case-card h3,
.pricing-card h2,
.get-started-card h2 {
    margin: 10px 0 0;
    font-family: var(--font-display);
    font-size: clamp(22px, 3.6vw, 28px);
    color: rgba(28, 44, 76, 0.9);
}

.contact-card p,
.resource-card p,
.info-card p,
.use-case-card p,
.pricing-card p,
.get-started-card p {
    margin: 0;
    color: rgba(38, 54, 88, 0.74);
    font-size: 16px;
    line-height: 1.6;
}

.page-grid ul,
.page-section-block ul {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
    list-style: none;
}

.page-grid ul li,
.page-section-block ul li {
    position: relative;
    padding-left: 18px;
    color: rgba(38, 52, 88, 0.78);
}

.page-grid ul li::before,
.page-section-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(122, 147, 226, 0.8);
}

.cta-banner {
    background: linear-gradient(130deg, rgba(108, 140, 213, 0.14), rgba(168, 195, 160, 0.16));
    border: 1px solid rgba(108, 140, 213, 0.28);
    text-align: center;
    display: grid;
    gap: 12px;
}

.cta-banner strong {
    font-family: var(--font-display);
    font-size: 20px;
    color: rgba(24, 40, 72, 0.92);
}

.cta-banner p {
    margin: 0;
    color: rgba(36, 52, 86, 0.7);
}

.press-form {
    display: grid;
    gap: 18px;
}

.press-form label {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    color: rgba(30, 46, 80, 0.7);
    text-transform: uppercase;
}

.press-form input,
.press-form textarea {
    font: inherit;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(166, 155, 255, 0.28);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: inset 0 6px 18px rgba(26, 40, 72, 0.08);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.press-form input:focus,
.press-form textarea:focus {
    outline: none;
    border-color: rgba(108, 140, 213, 0.6);
    box-shadow: 0 0 0 3px rgba(108, 140, 213, 0.15);
}

.press-submit {
    justify-self: start;
}

.faq-section h2,
.legal-section h2 {
    margin: 0 0 16px;
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 30px);
    color: rgba(26, 40, 76, 0.9);
}

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

.faq-list li {
    background: rgba(255, 255, 255, 0.88);
    border-radius: 18px;
    padding: 18px 20px;
    border: 1px solid rgba(193, 154, 223, 0.24);
    box-shadow: 0 20px 44px rgba(28, 40, 70, 0.08);
    color: rgba(32, 46, 82, 0.78);
}

.faq-list li strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: rgba(26, 40, 72, 0.94);
}

.faq-list li em {
    font-style: normal;
    font-weight: 600;
    color: rgba(110, 98, 255, 0.82);
}

.legal-section {
    display: grid;
    gap: 16px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.92), rgba(233, 242, 255, 0.96));
    border: 1px solid rgba(168, 195, 160, 0.24);
}

.legal-section p,
.legal-section li {
    color: rgba(32, 48, 88, 0.78);
    line-height: 1.7;
}

.legal-section ul li::before {
    background: rgba(193, 154, 223, 0.8);
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(18px, 5vw, 28px);
}

.use-case-card {
    padding: clamp(22px, 5vw, 30px);
}

.use-case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(32, 48, 88, 0.16);
}

.use-case-card::after {
    inset: auto -20% -30% 20%;
}

.use-case-card h3 {
    font-size: clamp(20px, 3.2vw, 24px);
}

.get-started-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(18px, 5vw, 28px);
}

.get-started-card {
    padding-top: clamp(32px, 6vw, 44px);
}

.get-started-card .get-step {
    position: absolute;
    top: clamp(20px, 5vw, 26px);
    left: clamp(20px, 5vw, 26px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(18px, 5vw, 28px);
}

.pricing-card {
    padding: clamp(24px, 5vw, 32px);
}

.pricing-card header {
    display: grid;
    gap: 8px;
}

.pricing-card .pricing-amount {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 30px);
    color: rgba(32, 48, 88, 0.82);
}

.pricing-card li {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    padding: 14px 16px;
    border: 1px solid rgba(168, 195, 160, 0.26);
    box-shadow: 0 16px 36px rgba(28, 40, 70, 0.08);
}

.page-shell a {
    color: rgba(110, 98, 255, 0.86);
    font-weight: 600;
    text-underline-offset: 4px;
}

.page-shell a:hover {
    color: rgba(122, 147, 226, 1);
}

.page-shell .button-primary {
    align-self: flex-start;
}

/* Page variants ---------------------------------------------------------- */
.page-shell--contact .page-hero {
    background: linear-gradient(140deg, rgba(168, 195, 160, 0.32), rgba(108, 140, 213, 0.18));
    border-color: rgba(168, 195, 160, 0.36);
}

.page-shell--contact .page-hero::before {
    background: radial-gradient(circle, rgba(193, 154, 223, 0.22) 0%, transparent 62%);
}

.page-shell--contact .contact-card:nth-child(1)::before {
    background: radial-gradient(circle, rgba(108, 140, 213, 0.22) 0%, transparent 62%);
}

.page-shell--contact .contact-card:nth-child(2)::before {
    background: radial-gradient(circle, rgba(193, 154, 223, 0.22) 0%, transparent 62%);
}

.page-shell--contact .cta-banner {
    background: linear-gradient(120deg, rgba(108, 140, 213, 0.18), rgba(193, 154, 223, 0.18));
    border-color: rgba(108, 140, 213, 0.34);
}

.page-shell--press .page-hero {
    background: linear-gradient(150deg, rgba(193, 154, 223, 0.34), rgba(110, 98, 255, 0.14));
    border-color: rgba(193, 154, 223, 0.4);
}

.page-shell--press .page-hero::before {
    background: radial-gradient(circle at 24% 10%, rgba(108, 140, 213, 0.28) 0%, transparent 62%);
}

.page-shell--press .resource-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(238, 244, 255, 0.92));
}

.page-shell--press .resource-card::after {
    background: radial-gradient(circle, rgba(110, 98, 255, 0.24) 0%, transparent 60%);
}

.page-shell--press .press-form {
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(233, 242, 255, 0.88));
    border-radius: 28px;
    padding: clamp(24px, 6vw, 32px);
    border: 1px solid rgba(108, 140, 213, 0.26);
    box-shadow: 0 28px 58px rgba(32, 48, 88, 0.12);
}

.page-shell--press .press-submit {
    margin-top: 8px;
}

.page-shell--demo .page-hero {
    background: linear-gradient(140deg, rgba(108, 140, 213, 0.3), rgba(193, 154, 223, 0.24));
}

.page-shell--demo .page-hero::before {
    background: radial-gradient(circle, rgba(110, 98, 255, 0.24) 0%, transparent 58%);
}

.page-shell--demo .resource-card:nth-child(1)::before {
    background: radial-gradient(circle, rgba(193, 154, 223, 0.26) 0%, transparent 60%);
}

.page-shell--demo .resource-card:nth-child(2)::before {
    background: radial-gradient(circle, rgba(168, 195, 160, 0.26) 0%, transparent 60%);
}

.page-shell--demo .cta-banner {
    background: linear-gradient(120deg, rgba(193, 154, 223, 0.16), rgba(168, 195, 160, 0.2));
}

.page-shell--get-started .page-hero {
    background: linear-gradient(145deg, rgba(168, 195, 160, 0.28), rgba(193, 154, 223, 0.2));
}

.page-shell--get-started .get-started-card {
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(168, 195, 160, 0.2));
}

.page-shell--get-started .get-started-card:nth-child(2)::after {
    background: radial-gradient(circle, rgba(108, 140, 213, 0.22) 0%, transparent 62%);
}

.page-shell--get-started .get-started-footer {
    background: linear-gradient(135deg, rgba(108, 140, 213, 0.16), rgba(193, 154, 223, 0.18));
    text-align: center;
}

.page-shell--pricing .page-hero {
    background: linear-gradient(150deg, rgba(108, 140, 213, 0.28), rgba(110, 98, 255, 0.18));
}

.page-shell--pricing .pricing-overview {
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(233, 242, 255, 0.92));
    text-align: center;
}

.page-shell--pricing .pricing-card:nth-child(2) {
    background: linear-gradient(150deg, rgba(193, 154, 223, 0.18), rgba(108, 140, 213, 0.22));
    border-color: rgba(108, 140, 213, 0.38);
}

.page-shell--pricing .pricing-card:nth-child(2)::before {
    background: radial-gradient(circle, rgba(108, 140, 213, 0.26) 0%, transparent 60%);
}

.page-shell--billing .page-hero {
    background: linear-gradient(150deg, rgba(193, 154, 223, 0.24), rgba(168, 195, 160, 0.26));
}

.page-shell--billing .info-card:nth-child(1)::before {
    background: radial-gradient(circle, rgba(168, 195, 160, 0.28) 0%, transparent 58%);
}

.page-shell--billing .info-card:nth-child(2)::before {
    background: radial-gradient(circle, rgba(108, 140, 213, 0.28) 0%, transparent 58%);
}

.page-shell--billing .cta-banner {
    border-color: rgba(193, 154, 223, 0.32);
}

.page-shell--help .page-hero {
    background: linear-gradient(150deg, rgba(108, 140, 213, 0.27), rgba(193, 154, 223, 0.22));
}

.page-shell--help .faq-section {
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(233, 242, 255, 0.9));
    border-color: rgba(108, 140, 213, 0.32);
}

.page-shell--help .faq-list li {
    backdrop-filter: blur(8px);
}

.page-shell--use-cases .page-hero {
    background: linear-gradient(145deg, rgba(193, 154, 223, 0.28), rgba(108, 140, 213, 0.18));
}

.page-shell--use-cases .use-case-card:nth-child(odd) {
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(193, 154, 223, 0.16));
}

.page-shell--use-cases .use-case-card:nth-child(even) {
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(108, 140, 213, 0.16));
}

.page-shell--use-cases .use-case-intro {
    background: linear-gradient(140deg, rgba(168, 195, 160, 0.2), rgba(193, 154, 223, 0.2));
    text-align: center;
}

.page-shell--privacy .page-hero {
    background: linear-gradient(145deg, rgba(108, 140, 213, 0.2), rgba(168, 195, 160, 0.24));
}

.page-shell--privacy .legal-section {
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(233, 242, 255, 0.92));
    border-color: rgba(108, 140, 213, 0.3);
}

.page-shell--privacy .legal-section:nth-child(even) {
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(193, 154, 223, 0.18));
}

.page-shell--terms .page-hero {
    background: linear-gradient(145deg, rgba(193, 154, 223, 0.26), rgba(110, 98, 255, 0.2));
}

.page-shell--terms .legal-section {
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(193, 154, 223, 0.16));
    border-color: rgba(193, 154, 223, 0.28);
}

.page-shell--terms .legal-section:nth-child(odd) {
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(110, 98, 255, 0.16));
}

@media (max-width: 720px) {
    .page-shell {
        margin: clamp(32px, 10vw, 60px) auto clamp(72px, 12vw, 110px);
    }
}

/* Integrations showcase -------------------------------------------------- */
.integrations-showcase {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: clamp(48px, 6vw, 84px) 0 clamp(40px, 5vw, 64px);
    background: linear-gradient(150deg, rgba(239, 244, 255, 0.98), rgba(235, 246, 241, 0.96));
    position: relative;
    overflow: hidden;
}

.integrations-showcase::before,
.integrations-showcase::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(193, 154, 223, 0.12) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(108, 140, 213, 0.1) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.integrations-showcase::before { opacity: 0.45; }
.integrations-showcase::after { opacity: 0.18; filter: blur(16px); }

.integrations-shell {
    width: min(1160px, 92vw);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    gap: clamp(32px, 5vw, 44px);
    padding-inline: clamp(20px, 5vw, 48px);
}

.integrations-head {
    display: grid;
    gap: clamp(12px, 2.4vw, 20px);
    text-align: center;
    max-width: clamp(420px, 52vw, 660px);
    margin: 0 auto;
    position: relative;
    isolation: isolate;
}

.integrations-head::before {
    content: '';
    position: absolute;
    inset: clamp(-36px, -5vw, -24px) clamp(-36px, -7vw, -18px) clamp(-28px, -4vw, -16px);
    background:
        radial-gradient(120% 140% at 50% 0%, rgba(193, 154, 223, 0.32) 0%, rgba(233, 246, 239, 0) 70%),
        radial-gradient(90% 120% at 50% 100%, rgba(167, 206, 255, 0.22) 0%, rgba(233, 246, 239, 0) 70%);
    filter: blur(16px);
    opacity: 0.8;
    z-index: -1;
}

.integrations-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(76, 98, 158, 0.92);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(211, 226, 255, 0.58));
    border: 1px solid rgba(193, 154, 223, 0.38);
    box-shadow: 0 16px 36px rgba(40, 60, 96, 0.18);
}

.integrations-head h2 {
    margin: 0;
    font-size: clamp(32px, 4.6vw, 48px);
    font-weight: 700;
    line-height: 1.14;
    color: rgba(28, 38, 72, 0.95);
    letter-spacing: -0.01em;
    text-shadow: 0 18px 32px rgba(30, 46, 84, 0.18);
}

.integrations-head p {
    margin: 0;
    font-size: clamp(17px, 2.3vw, 20px);
    line-height: 1.6;
    color: rgba(42, 64, 112, 0.74);
    text-wrap: pretty;
    max-width: clamp(380px, 48vw, 560px);
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.integrations-head p::before {
    content: '';
    position: absolute;
    inset: clamp(-14px, -3vw, -8px) clamp(20%, 12vw, 26%) auto;
    height: clamp(3px, 0.9vw, 6px);
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(123, 161, 233, 0.45), rgba(193, 154, 223, 0));
    opacity: 0.85;
}

.integrations-marquee {
    position: relative;
    margin: 0 calc(50% - 50vw);
    padding: clamp(32px, 5vw, 48px) 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.integrations-marquee::before,
.integrations-marquee::after {
    content: none;
}

.integrations-track {
    display: flex;
    align-items: center;
    gap: clamp(36px, 7vw, 60px);
    animation: integrations-loop-scroll 36s linear infinite;
    will-change: transform;
    position: relative;
    min-width: max-content;
}

.integrations-track::before,
.integrations-track::after {
    display: none;
}

.integrations-loop {
    display: contents;
}

.integration-chip {
    flex: 0 0 auto;
    width: clamp(140px, 14vw, 200px);
    height: clamp(102px, 10vw, 146px);
    border-radius: clamp(32px, 5.5vw, 48px);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(193, 154, 223, 0.36);
    box-shadow: 0 22px 40px rgba(26, 40, 72, 0.18);
    display: grid;
    place-items: center;
    padding: clamp(16px, 3.2vw, 26px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.integration-chip img {
    width: clamp(60px, 6vw, 82px);
    height: clamp(60px, 6vw, 82px);
    object-fit: contain;
}

.integration-chip:hover,
.integration-chip:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 24px 44px rgba(26, 40, 72, 0.2);
}

.integrations-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(90px, 8vw, 140px);
    pointer-events: none;
    z-index: 1;
}

.integrations-fade--left {
    left: calc(50% - 50vw);
    background: linear-gradient(90deg, rgba(239, 244, 255, 1) 0%, rgba(239, 244, 255, 0) 100%);
}

.integrations-fade--right {
    right: calc(50% - 50vw);
    background: linear-gradient(270deg, rgba(239, 244, 255, 1) 0%, rgba(239, 244, 255, 0) 100%);
}

@keyframes integrations-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes integrations-loop-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

@media (max-width: 1080px) {
    .integrations-track {
        padding-inline: clamp(90px, 22vw, 200px);
        gap: clamp(28px, 7vw, 40px);
        animation-duration: 24s;
    }
    .integration-chip {
        width: clamp(78px, 9vw, 98px);
        height: clamp(58px, 6vw, 72px);
    }
}

@media (max-width: 640px) {
    .integrations-marquee {
        padding: clamp(18px, 6vw, 24px) 0;
    }
    .integrations-track {
        padding-inline: clamp(54px, 18vw, 120px);
        animation-duration: 20s;
        gap: clamp(22px, 11vw, 32px);
    }
    .integration-chip {
        display: flex;
        align-items: center;
        justify-content: center;
        width: clamp(74px, 28vw, 104px);
        height: clamp(58px, 24vw, 86px);
        padding: clamp(10px, 4vw, 14px);
    }
    .integration-chip img {
        width: clamp(40px, 15vw, 56px);
        height: clamp(40px, 15vw, 56px);
        object-fit: contain;
    }
    .integrations-fade {
        width: clamp(48px, 16vw, 80px);
    }
}

/* -------------------------------------------------------------------------- */
/* Color Tokens                                                               */
/* -------------------------------------------------------------------------- */
:root {
    --ink-primary: #6C8CD5;
    --ink-900: rgba(20, 34, 58, 0.96);
    --ink-700: rgba(40, 56, 88, 0.82);
    --ink-500: rgba(56, 74, 110, 0.7);
    --muted-ink: rgba(58, 72, 106, 0.6);
    --lavender-500: #C19ADF;
    --lavender-300: rgba(193, 154, 223, 0.32);
    --sage-500: #A8C3A0;
    --sage-300: rgba(168, 195, 160, 0.26);
    --mist-500: #6C8CD5;
    --mist-300: rgba(108, 140, 213, 0.28);
    --surface-hero: linear-gradient(150deg, rgba(239, 244, 255, 0.98) 0%, rgba(234, 246, 240, 0.96) 52%, rgba(248, 242, 252, 0.98) 100%);
    --surface-motion: var(--surface-hero);
    --surface-integrations: var(--surface-hero);
    --surface-pricing: var(--surface-hero);
    --gradient-base: linear-gradient(155deg, rgba(239, 244, 255, 0.97) 0%, rgba(235, 246, 241, 0.95) 55%, rgba(248, 242, 252, 0.97) 100%);
    --gradient-overlay-lavender: radial-gradient(circle at 18% -10%, rgba(193, 154, 223, 0.26) 0%, transparent 58%);
    --gradient-overlay-mist: radial-gradient(circle at 80% 120%, rgba(108, 140, 213, 0.24) 0%, transparent 60%);
    --gradient-overlay-sage: radial-gradient(circle at 48% 120%, rgba(168, 195, 160, 0.22) 0%, transparent 68%);
    --shadow-soft: rgba(26, 40, 72, 0.14);
    --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', 'Manrope', -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    margin: 0;
    color: var(--text-strong);
    background: var(--gradient-base);
    min-height: 100vh;
    overflow-x: hidden;
}

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

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
}

.container {
    width: min(1160px, 92vw);
    margin: 0 auto;
    padding: 0 20px;
}

.site-header .container {
    width: min(1160px, 92vw);
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: linear-gradient(140deg, rgba(193, 154, 223, 0.28) 0%, rgba(108, 140, 213, 0.2) 46%, rgba(255, 255, 255, 0.28) 100%);
    backdrop-filter: blur(38px) saturate(185%);
    -webkit-backdrop-filter: blur(38px) saturate(185%);
    border-bottom: 1px solid rgba(108, 140, 213, 0.28);
    box-shadow: 0 28px 60px rgba(26, 34, 62, 0.18);
}

.site-header .container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 28px;
    gap: 24px;
}
.nav__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.02em;
    color: #7C72F4;
    margin-left: 8px;
}
.nav__brand img {
    height: 44px;
    width: auto;
    filter: drop-shadow(0 6px 14px rgba(41, 42, 71, 0.22));
}
.nav__links {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 18px);
    margin-left: auto;
    position: relative;
    z-index: 2;
}

.nav__links-inner {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 18px);
}

.nav__cta--desktop {
    margin-left: 14px;
    margin-right: 18px;
}

.nav__cta--mobile {
    display: none;
}

.nav__cta--desktop {
    margin-left: 24px;
}

.nav__links a {
    font-weight: 500;
    color: rgba(24, 34, 64, 0.66);
    transition: color 0.25s ease, transform 0.25s ease;
}

.nav__links a:hover {
    color: var(--ink-primary);
    transform: translateY(-2px);
}

.nav__cta {
    padding: 10px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(166, 155, 255, 0.96) 0%, rgba(159, 205, 183, 0.92) 100%);
    color: #ffffff !important;
    font-weight: 600;
    box-shadow: 0 12px 26px rgba(140, 132, 230, 0.24);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.nav__cta:hover,
.nav__cta:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(110, 98, 255, 0.35), 0 0 20px rgba(145, 135, 255, 0.45);
    filter: brightness(1.04);
}
.nav__cta:active {
    transform: translateY(0);
}


.nav__toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: none;
    background: transparent;
    color: #7C72F4;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-direction: column;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.nav__toggle:hover {
    background: rgba(166, 155, 255, 0.14);
    box-shadow: none;
}

.nav__toggle-line {
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background: currentColor;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle.is-open .nav__toggle-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav__toggle.is-open .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle.is-open .nav__toggle-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hero-wrapper {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: var(--gradient-base);
    position: relative;
}

.hero-wrapper::before {
    content: '';
    position: absolute;
    inset: -180px 0 0 0;
    background: var(--gradient-overlay-lavender), var(--gradient-overlay-mist), var(--gradient-overlay-sage);
    opacity: 0.82;
    pointer-events: none;
}

.hero {
    position: relative;
    padding: clamp(58px, 7.2vw, 84px) 0 clamp(48px, 7vw, 64px);
    display: grid;
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
    align-items: center;
    gap: 48px;
    margin: 0 auto;
    max-width: 1160px;
    padding-left: clamp(28px, 4vw, 48px);
    padding-right: clamp(28px, 4vw, 48px);
}
@keyframes hero-gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.hero__content,
.hero__visual {
    z-index: 1;
}

.hero__showcase {
    position: relative;
}

.hero-preview {
    position: relative;
    isolation: isolate;
    display: grid;
    gap: 18px;
    padding: 36px;
    background: rgba(255, 255, 255, 0.82);
    border-radius: 36px;
    border: 1px solid rgba(193, 154, 223, 0.26);
    box-shadow: 0 38px 72px rgba(30, 44, 76, 0.18);
    overflow: hidden;
}

.preview-layer--glass {
    position: absolute;
    inset: -60% -20% auto;
    height: 360px;
    background: radial-gradient(circle, rgba(193, 154, 223, 0.2) 0%, transparent 60%);
    filter: blur(32px);
    opacity: 0.8;
    pointer-events: none;
    z-index: -1;
}

.preview-card {
    position: relative;
    padding: 22px;
    border-radius: 24px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 26px 50px rgba(26, 40, 72, 0.16);
    display: grid;
    gap: 12px;
}

.preview-card--primary {
    background: linear-gradient(140deg, rgba(193, 154, 223, 0.16), rgba(108, 140, 213, 0.18));
    padding-right: clamp(28px, 6vw, 36px);
}

.preview-card--primary header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(42, 60, 96, 0.62);
}

.preview-body {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(26, 42, 78, 0.88);
}

.preview-actions {
    display: inline-flex;
    gap: 12px;
}

.preview-actions button {
    font-family: var(--font-sans);
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.preview-actions button:first-child {
    background: linear-gradient(135deg, #7A93E2, #53B39A);
    color: #fff;
    box-shadow: 0 18px 36px rgba(92, 140, 208, 0.3);
}

.preview-actions button.is-ghost {
    background: rgba(168, 195, 160, 0.18);
    color: rgba(32, 48, 86, 0.84);
    border: 1px solid rgba(168, 195, 160, 0.4);
}

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

.preview-card--secondary {
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(168, 195, 160, 0.32);
    display: grid;
    gap: 10px;
    width: 100%;
    max-width: none;
}

.preview-card--secondary .preview-eyebrow {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(32, 48, 88, 0.48);
}

.preview-card--secondary strong {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: -0.01em;
    color: rgba(28, 44, 76, 0.9);
}

.preview-card--secondary .preview-timeblock {
    font-size: 15px;
    color: rgba(32, 48, 88, 0.72);
}

.preview-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.preview-pill {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: rgba(28, 44, 76, 0.72);
}

.preview-pill--lavender { background: rgba(193, 154, 223, 0.22); }
.preview-pill--sage { background: rgba(168, 195, 160, 0.22); }
.preview-pill--mist { background: rgba(108, 140, 213, 0.22); color: rgba(28, 44, 76, 0.8); }

.hero__phone {
    position: relative;
    width: 320px;
    height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease;
}
.hero__phone-layer {
    position: absolute;
    inset: 0;
    border-radius: 44px;
    pointer-events: none;
    transition: transform 0.6s ease;
}
.hero__phone-layer--transparent {
    z-index: 1;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(189, 214, 255, 0.32);
    box-shadow: 0 40px 80px rgba(164, 186, 228, 0.32);
}
.hero__phone-layer--silver {
    z-index: 2;
    inset: 8px;
    border-radius: 40px;
    background: linear-gradient(135deg, #f7f9ff 0%, #d9dde6 100%);
    border: 1px solid rgba(236, 240, 244, 0.88);
    box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.5);
}
.hero__phone-layer--black {
    z-index: 3;
    inset: 16px;
    border-radius: 34px;
    background: linear-gradient(160deg, #262e46 0%, #0d1528 100%);
}
.hero__phone-screen {
    position: absolute;
    z-index: 4;
    inset: 24px;
    border-radius: 28px;
    background: #ffffff;
    display: grid;
    grid-template-rows: auto 1fr auto;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(20, 32, 60, 0.08);
}
.hero__phone-notch {
    position: absolute;
    z-index: 5;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 112px;
    height: 26px;
    border-radius: 14px;
    background: rgba(12, 16, 28, 0.92);
}
.hero__phone-header {
    padding: 32px 18px 0;
    color: rgba(33, 48, 89, 0.7);
    font-size: 13px;
}
.hero__phone-status {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6px;
}
.hero__phone-time {
    font-weight: 600;
    color: rgba(33, 48, 89, 0.82);
    transform: translateY(-10px);
}
.hero__phone-status-icons {
    display: inline-flex;
    gap: 6px;
    margin-top: -10px;
    align-items: center;
}
.hero__phone-status-icons span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    transform: translateY(-2px);
}
.hero__phone-signal {
    background-image: linear-gradient(180deg, rgba(110, 98, 255, 0.85), rgba(145, 135, 255, 0.55));
    background-size: contain;
    background-repeat: no-repeat;
    mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"%3E%3Cpath fill="%23000" d="M2 20h2v-2H2v2Zm3.5 0h2v-4h-2v4ZM9 20h2v-7H9v7Zm3.5 0h2v-9h-2v9Zm3.5 0h2V6h-2v14Zm3.5-18v18H22V2h-2Z"/%3E%3C/svg%3E');
    mask-size: contain;
    mask-repeat: no-repeat;
}
.hero__phone-battery {
    font-size: 11px;
    font-weight: 600;
    color: rgba(33, 48, 89, 0.74);
    transform: translateY(-2px);
    width: auto;
}
.hero__phone-chatbar {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0 38px;
    border-bottom: 1px solid rgba(160, 172, 220, 0.2);
}
.hero__phone-back {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    background: transparent;
    color: rgba(110, 98, 255, 0.92);
    font-weight: 600;
    transform: translateY(2px);
}
.hero__phone-back span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.hero__phone-back-arrow {
    font-size: 15px;
    line-height: 1;
}
.hero__phone-back-count {
    min-width: 20px;
    height: 18px;
    padding: 0 6px;
    border-radius: 12px;
    background: #6E62FF;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.hero__phone-title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}
.hero__phone-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6E62FF, #9187FF);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #fff;
    font-size: 13px;
    box-shadow: 0 8px 18px rgba(118, 108, 240, 0.26);
}
.hero__phone-contact {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.hero__phone-contact-name {
    font-weight: 600;
    color: #000000;
    letter-spacing: 0.01em;
}
.hero__phone-contact-name::after {
    content: '\203A';
    font-weight: 400;
    color: rgba(145, 156, 182, 0.9);
    margin-left: 4px;
}

.hero__imessage {
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    scroll-behavior: smooth;
}
.hero__imessage::-webkit-scrollbar {
    display: none;
}

.hero__imessage-bubble {
    max-width: 260px;
    padding: 4px 14px;
    border-radius: 18px;
    line-height: 1.4;
    font-size: 15px;
    position: relative;
    animation: bubble-in 0.6s ease forwards;
    opacity: 0;
    transform: translateY(12px);
}
.hero__imessage-bubble--you {
    align-self: flex-end;
    margin-right: 4px;
    margin-left: 56px;
    background: linear-gradient(135deg, #4CA1FF 0%, #0D7BFF 100%);
    color: #fff;
    border-bottom-right-radius: 6px;
    box-shadow: 0 10px 24px rgba(13, 123, 255, 0.22);
}
.hero__imessage-bubble--you::after {
    content: '';
    position: absolute;
    right: -5px;
    bottom: 0;
    width: 11px;
    height: 16px;
    background: linear-gradient(135deg, #4CA1FF 0%, #0D7BFF 100%);
    clip-path: path('M0,0 C0,12 12,12 12,18 L0,18 Z');
}
.hero__imessage-bubble--invara {
    align-self: flex-start;
    margin-left: 4px;
    margin-right: 56px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(206, 214, 230, 0.6);
    border-bottom-left-radius: 6px;
    color: rgba(40, 56, 96, 0.92);
    box-shadow: 0 6px 18px rgba(36, 44, 72, 0.08);
}
.hero__imessage-bubble--invara::after {
    content: '';
    position: absolute;
    left: -5px;
    bottom: 0;
    width: 11px;
    height: 16px;
    background: rgba(255, 255, 255, 0.98);
    border-left: 1px solid rgba(206, 214, 230, 0.6);
    clip-path: path('M12,0 C12,12 0,12 0,18 L12,18 Z');
}
.hero__imessage-bubble time {
    display: block;
    margin-top: 2px;
    font-size: 11px;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.6);
    text-align: right;
}
.hero__imessage-bubble--invara time {
    color: rgba(122, 132, 160, 0.75);
    text-align: left;
}

.hero__imessage-typing {
    align-self: flex-start;
    display: inline-flex;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(210, 214, 224, 0.65);
    border: 1px solid rgba(182, 187, 204, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero__imessage-typing.is-active {
    opacity: 1;
}

.hero__imessage-typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    animation: typing 1.2s ease-in-out infinite;
}

.hero__imessage-typing span:nth-child(2) { animation-delay: 0.2s; }
.hero__imessage-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(-4px); opacity: 1; }
}

@keyframes bubble-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 1200px) {
    .hero {
        grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
        gap: 36px;
    }

    .hero-preview {
        padding: 30px;
    }
}

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
        justify-items: center;
        text-align: center;
    }

    .hero__content {
        padding-left: 0;
        max-width: 520px;
        justify-items: center;
    }

    .hero__metrics {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero__visual {
        justify-self: center;
    }

    .hero__actions {
        justify-content: center;
    }

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

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

    .pricing-lanes {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

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

@media (max-width: 768px) {
    .hero {
        padding: 64px 0 48px;
        gap: 28px;
    }

    .hero__visual {
        width: min(500px, 92vw);
    }

    .hero-preview {
        padding: clamp(24px, 8vw, 32px);
    }

    .hero__content h1 {
        font-size: clamp(38px, 8vw, 52px);
    }

    .hero__content p {
        font-size: 17px;
    }

    .feature-actions button {
        flex: 1 1 auto;
    }

    .feature-panel--floating {
        position: static;
        margin-top: 14px;
        align-self: flex-start;
    }

    .feature-board {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .pricing-lanes {
        grid-template-columns: minmax(0, 1fr);
    }

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

@media (max-width: 540px) {
    .hero__metrics {
        gap: 14px;
    }

    .hero__metric {
        min-width: 140px;
    }

    .feature-chip {
        font-size: 12px;
    }

    .cta-panel {
        padding: clamp(42px, 10vw, 56px);
    }
}

.hero__phone-footer {
    padding: 12px 18px 18px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
}
.hero__phone-plus {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(150, 160, 188, 0.22);
    border: 1px solid rgba(150, 160, 188, 0.32);
    color: rgba(95, 107, 150, 0.8);
    display: grid;
    place-items: center;
    font-size: 20px;
    font-weight: 600;
}
.hero__phone-compose {
    height: 38px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(160, 172, 220, 0.24);
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    color: rgba(80, 96, 140, 0.84);
    font-weight: 500;
}
.hero__phone-send {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(166, 155, 255, 0.96) 0%, rgba(159, 205, 183, 0.96) 100%);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 18px;
}

section.section {
    position: relative;
    padding: clamp(48px, 7.5vw, 96px) 0;
    overflow: hidden;
}

section.section + section.section {
    margin-top: clamp(-56px, -4vw, -22px);
}

.section--problem {
    position: relative;
    z-index: 1;
}

.section--problem::before {
    opacity: 0.68;
    background: var(--gradient-base);
}

.section--problem::after {
    opacity: 0.62;
    background: var(--gradient-overlay-lavender), var(--gradient-overlay-mist);
}

.section--problem .container {
    position: relative;
    z-index: 1;
}

.section--benefits::before {
    opacity: 0.64;
    background: var(--gradient-base);
}

.section--benefits::after {
    opacity: 0.6;
    background: var(--gradient-overlay-lavender), var(--gradient-overlay-sage);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 3.4vw, 34px);
    position: relative;
    z-index: 1;
}

.benefit-card {
    position: relative;
    padding: clamp(26px, 3vw, 36px);
    border-radius: 32px;
    border: 1px solid rgba(193, 154, 223, 0.36);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.82) 0%, rgba(240, 245, 255, 0.92) 54%, rgba(235, 246, 241, 0.9) 100%);
    box-shadow: 0 38px 72px rgba(26, 40, 72, 0.16);
    display: grid;
    gap: clamp(12px, 2.5vw, 18px);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.benefit-card::before {
    content: '';
    position: absolute;
    inset: -50% -20% auto;
    height: 70%;
    background: radial-gradient(circle, rgba(193, 154, 223, 0.32) 0%, transparent 60%);
    opacity: 0.8;
    z-index: -1;
}

.benefit-card header {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.4vw, 28px);
    letter-spacing: -0.01em;
    color: rgba(24, 36, 68, 0.92);
}

.benefit-card p {
    margin: 0;
    color: rgba(32, 48, 86, 0.72);
    font-size: 17px;
    line-height: 1.7;
    max-width: 36ch;
}

.benefit-card:nth-child(2) {
    border-color: rgba(108, 140, 213, 0.36);
}

.benefit-card:nth-child(2)::before {
    background: radial-gradient(circle, rgba(108, 140, 213, 0.32) 0%, transparent 60%);
}

.benefit-card:nth-child(3) {
    border-color: rgba(168, 195, 160, 0.36);
}

.benefit-card:nth-child(3)::before {
    background: radial-gradient(circle, rgba(168, 195, 160, 0.32) 0%, transparent 60%);
}

.benefit-card::after {
    content: '';
    position: absolute;
    inset: 18px;
    border-radius: inherit;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(120, 147, 224, 0.08));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.benefit-card:hover::after,
.benefit-card:focus-within::after {
    opacity: 1;
}

.benefit-card:hover,
.benefit-card:focus-within {
    transform: translateY(-6px);
}

.benefit-card:hover header,
.benefit-card:focus-within header {
    color: rgba(24, 36, 68, 0.98);
}

.benefit-card:hover p,
.benefit-card:focus-within p {
    color: rgba(32, 48, 86, 0.82);
}

.narrative {
    display: grid;
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
    gap: clamp(32px, 6vw, 72px);
    align-items: center;
}

.narrative-copy {
    display: grid;
    gap: clamp(18px, 3vw, 28px);
}

.section--problem .section-title {
    margin: 0;
    color: rgba(26, 40, 72, 0.94);
    text-shadow: 0 18px 44px rgba(28, 44, 76, 0.16);
}

.section--problem .section-subtitle {
    margin: 0;
    max-width: 46ch;
    color: rgba(28, 44, 76, 0.72);
}

.narrative-visual {
    position: relative;
}

.inbox-stream {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 3vw, 28px);
}

.inbox-stream__column {
    position: relative;
    padding: clamp(24px, 3.6vw, 36px);
    border-radius: 28px;
    border: 1px solid rgba(193, 154, 223, 0.35);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.82) 0%, rgba(239, 244, 255, 0.9) 54%, rgba(234, 246, 240, 0.88) 100%);
    box-shadow: 0 32px 58px rgba(26, 40, 72, 0.14);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.inbox-stream__column::before {
    content: '';
    position: absolute;
    inset: -40% -10% auto;
    height: 60%;
    z-index: -1;
    background: radial-gradient(circle at 20% 20%, rgba(193, 154, 223, 0.35) 0%, transparent 60%);
    opacity: 0.8;
}

.inbox-stream__column--fatigue {
    border-color: rgba(108, 140, 213, 0.35);
}

.inbox-stream__column--fatigue::before {
    background: radial-gradient(circle at 80% 0%, rgba(108, 140, 213, 0.35) 0%, transparent 60%);
}

.inbox-stream__column header {
    margin-bottom: clamp(12px, 2vw, 18px);
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(26, 44, 82, 0.6);
}

.inbox-stream__column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: clamp(12px, 2vw, 18px);
}

.inbox-stream__column li {
    position: relative;
    padding-left: 26px;
    font-size: 16px;
    line-height: 1.55;
    color: rgba(28, 44, 76, 0.82);
}

.inbox-stream__column li::before {
    content: '';
    position: absolute;
    top: 0.65em;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(193, 154, 223, 0.9), rgba(108, 140, 213, 0.9));
    box-shadow: 0 6px 12px rgba(108, 140, 213, 0.32);
}

.inbox-stream__column--fatigue li::before {
    background: linear-gradient(135deg, rgba(108, 140, 213, 0.92), rgba(168, 195, 160, 0.92));
}

@media (max-width: 1024px) {
    .narrative {
        grid-template-columns: minmax(0, 1fr);
    }

    .narrative-copy {
        text-align: center;
        justify-items: center;
    }

    .narrative-visual {
        width: 100%;
    }

    .inbox-stream {
        grid-template-columns: minmax(0, 1fr);
    }

    .inbox-stream__column {
        padding: clamp(20px, 5vw, 30px);
    }

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

@media (max-width: 640px) {
    .inbox-stream__column li {
        padding-left: 22px;
        font-size: 15px;
    }

    .inbox-stream__column li::before {
        top: 0.6em;
        width: 10px;
        height: 10px;
    }

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

    .benefit-card {
        padding: clamp(26px, 7vw, 34px);
    }
}

section.section::before,
section.section::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

section.section::before {
    background: var(--gradient-base);
}

section.section::after {
    background: var(--gradient-overlay-lavender), var(--gradient-overlay-mist), var(--gradient-overlay-sage);
    opacity: 0.64;
}

section.section:hover::after {
    opacity: 0.76;
}

#cta.section::before {
    display: none;
}

.section-title {
    font-size: clamp(30px, 4vw, 42px);
    color: var(--ink-900);
    margin: 0 0 16px;
}

.section-subtitle {
    color: var(--ink-700);
    font-size: 18px;
    margin: 0 0 42px;
    max-width: 560px;
}

.section-subhead {
    margin-top: 64px;
    text-align: left;
}

.section-subhead h3 {
    margin: 0 0 12px;
    font-size: clamp(24px, 3vw, 32px);
    color: #fff;
}

.section-subhead .section-subtitle {
    margin-bottom: 32px;
}

.section-head {
    display: grid;
     gap: 12px;
     align-items: flex-start;
     justify-items: flex-start;
 }

.section-head::after {
    content: '';
    width: 72px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--lavender-500) 0%, var(--sage-500) 100%);
    opacity: 0.7;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 4vw, 32px);
    margin-top: clamp(28px, 4vw, 48px);
    position: relative;
}

.pricing-grid::before {
    content: '';
    position: absolute;
    top: -42px;
    left: 50%;
    transform: translateX(-50%);
    width: min(620px, 68vw);
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(166, 155, 255, 0.16) 0%, rgba(148, 209, 185, 0.16) 46%, transparent 78%);
    filter: blur(28px);
    opacity: 0.62;
    z-index: -1;
}

.pricing-card {
    position: relative;
    display: grid;
    gap: 20px;
    padding: clamp(26px, 4vw, 34px);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(166, 155, 255, 0.18);
    box-shadow: 0 22px 48px rgba(24, 32, 58, 0.14);
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 32px 72px rgba(24, 32, 58, 0.18);
}

.pricing-card header {
    display: grid;
    gap: 16px;
}

.pricing-tier {
    font-size: 14px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(46, 60, 92, 0.6);
}

.pricing-badge {
    justify-self: flex-start;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    background: rgba(159, 205, 183, 0.22);
    border: 1px solid rgba(159, 205, 183, 0.4);
    color: rgba(60, 105, 87, 0.78);
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: clamp(32px, 5vw, 42px);
    color: var(--ink-900);
}

.pricing-amount strong {
    font-weight: 700;
}

.pricing-amount span {
    font-size: 16px;
    letter-spacing: 0.08em;
    color: rgba(52, 68, 102, 0.62);
}

.pricing-card header p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink-700);
}

.pricing-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.pricing-card ul li {
    position: relative;
    padding-left: 26px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(46, 60, 92, 0.8);
}

.pricing-card ul li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 9px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--lavender-500) 0%, var(--sage-500) 100%);
    box-shadow: 0 0 0 4px rgba(166, 155, 255, 0.12);
}

.pricing-card footer {
    margin-top: auto;
}

.pricing-card footer .button-primary,
.pricing-card footer .button-ghost {
    width: 100%;
    justify-content: center;
}

.pricing-card--featured {
    background: linear-gradient(150deg, rgba(226, 222, 255, 0.95) 0%, rgba(204, 226, 217, 0.9) 55%, rgba(255, 255, 255, 0.97) 100%);
    border-color: rgba(166, 155, 255, 0.28);
    box-shadow: 0 36px 78px rgba(38, 52, 94, 0.2);
}

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

.flow-item {
    padding: 34px 28px;
    border-radius: 24px;
    background: rgba(13, 20, 40, 0.76);
    border: 1px solid rgba(108, 113, 182, 0.2);
    position: relative;
    color: rgba(240, 242, 255, 0.85);
}

.flow-item strong {
    display: block;
    font-size: 18px;
    color: #fff;
    margin-bottom: 12px;
}

.flow-item::after {
    content: '';
    position: absolute;
    top: -18px;
    left: 32px;
    height: 36px;
    width: 36px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(110, 98, 255, 0.78) 0%, rgba(145, 135, 255, 0.78) 100%);
    filter: blur(24px);
    opacity: 0.8;
}

.integrations-showcase {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    margin-bottom: 0;
    padding: clamp(40px, 5.5vw, 60px) 0 clamp(32px, 4.5vw, 52px);
    display: grid;
    gap: clamp(12px, 4vw, 18px);
    position: relative;
}

.integrations-showcase::before {
    content: '';
    position: absolute;
    inset: clamp(12px, 2vw, 24px) 0 clamp(-40px, -6vw, -24px);
    background: linear-gradient(180deg, rgba(166, 155, 255, 0.18) 0%, rgba(148, 209, 185, 0.18) 45%, rgba(187, 217, 255, 0.16) 100%);
    filter: blur(24px);
    opacity: 0.6;
    pointer-events: none;
}

.integrations-marquee {
    display: grid;
    gap: clamp(12px, 3vw, 16px);
    overflow: hidden;
}

.integrations-row {
    display: flex;
    width: max-content;
    gap: clamp(14px, 3vw, 18px);
    animation: integrations-scroll 36s linear infinite;
    position: relative;
}

.integrations-row::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, transparent 22%, transparent 78%, rgba(255, 255, 255, 0.92) 100%);
}

.integrations-row--alt {
    animation-direction: reverse;
    animation-delay: -18s;
}

.integrations-loop {
    display: flex;
    gap: clamp(14px, 3vw, 18px);
}

.integrations-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: clamp(14px, 3vw, 18px);
    padding: clamp(18px, 3.2vw, 24px);
    border-radius: 32px;
    min-width: clamp(260px, 32vw, 320px);
    background: linear-gradient(132deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 28px 52px rgba(18, 26, 50, 0.24);
    backdrop-filter: blur(18px);
}

.integrations-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--card-gradient);
    opacity: 1;
    z-index: -1;
}

.integrations-card__image {
    width: clamp(56px, 9vw, 76px);
    height: clamp(56px, 9vw, 76px);
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: var(--icon-background, rgba(255, 255, 255, 0.94));
    box-shadow: 0 14px 28px rgba(15, 18, 34, 0.2);
}

.integrations-card__image img {
    width: clamp(32px, 5vw, 44px);
    height: clamp(32px, 5vw, 44px);
    object-fit: contain;
}

.integrations-card__body {
    display: grid;
    gap: 8px;
}

.integrations-card__eyebrow {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.integrations-card h3 {
    margin: 0;
    font-size: clamp(17px, 2.2vw, 22px);
    color: #fff;
}

.integrations-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

.integrations-card--flag {
    --card-gradient: linear-gradient(150deg, #a3d6c7 0%, #5b9f88 100%);
    --icon-background: linear-gradient(145deg, rgba(36, 145, 118, 0.9) 0%, rgba(123, 214, 183, 0.85) 100%);
}

.integrations-card--star {
    --card-gradient: linear-gradient(150deg, #b7adff 0%, #7570d6 100%);
    --icon-background: linear-gradient(145deg, rgba(86, 67, 196, 0.92) 0%, rgba(182, 164, 255, 0.9) 100%);
}

.integrations-card--send {
    --card-gradient: linear-gradient(150deg, #b8d5ff 0%, #6087d2 100%);
    --icon-background: linear-gradient(145deg, rgba(71, 112, 189, 0.92) 0%, rgba(187, 217, 255, 0.9) 100%);
}

.integrations-card--clip {
    --card-gradient: linear-gradient(150deg, #d7c2ff 0%, #8a68c1 100%);
    --icon-background: linear-gradient(145deg, rgba(126, 80, 182, 0.92) 0%, rgba(215, 194, 255, 0.9) 100%);
}

.integrations-card--archive {
    --card-gradient: linear-gradient(150deg, #9fd7bf 0%, #548f77 100%);
    --icon-background: linear-gradient(145deg, rgba(51, 121, 93, 0.92) 0%, rgba(159, 215, 191, 0.88) 100%);
}

.integrations-card--alert {
    --card-gradient: linear-gradient(150deg, #b4c9ff 0%, #617ed4 100%);
    --icon-background: linear-gradient(145deg, rgba(70, 92, 204, 0.92) 0%, rgba(180, 201, 255, 0.9) 100%);
}

.integrations-card--drafts {
    --card-gradient: linear-gradient(150deg, #c9e3d4 0%, #7fa790 100%);
    --icon-background: linear-gradient(145deg, rgba(82, 143, 115, 0.92) 0%, rgba(201, 227, 212, 0.88) 100%);
}

.integrations-card--recipes {
    --card-gradient: linear-gradient(150deg, #d8f0e4 0%, #7fa797 100%);
    --icon-background: linear-gradient(145deg, rgba(84, 140, 122, 0.92) 0%, rgba(216, 240, 228, 0.88) 100%);
}

.integrations-card--escalate {
    --card-gradient: linear-gradient(150deg, #d0c0ff 0%, #7564b6 100%);
    --icon-background: linear-gradient(145deg, rgba(110, 84, 181, 0.92) 0%, rgba(208, 192, 255, 0.9) 100%);
}

.integrations-card--calendar {
    --card-gradient: linear-gradient(150deg, #c9d6ff 0%, #6b81c9 100%);
    --icon-background: linear-gradient(145deg, rgba(86, 108, 200, 0.92) 0%, rgba(201, 214, 255, 0.88) 100%);
}

.integrations-card--digest {
    --card-gradient: linear-gradient(150deg, #b7ddff 0%, #6aa3d4 100%);
    --icon-background: linear-gradient(145deg, rgba(70, 137, 189, 0.92) 0%, rgba(183, 221, 255, 0.9) 100%);
}

.integrations-card--handoff {
    --card-gradient: linear-gradient(150deg, #d7c8ff 0%, #8164b6 100%);
    --icon-background: linear-gradient(145deg, rgba(124, 86, 182, 0.92) 0%, rgba(215, 200, 255, 0.88) 100%);
}

@keyframes integrations-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 900px) {
    .integrations-card {
        min-width: clamp(220px, 60vw, 280px);
    }
}

@media (max-width: 600px) {
    .integrations-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .integrations-card__image {
        width: clamp(60px, 20vw, 80px);
        height: clamp(60px, 20vw, 80px);
    }
}

@media (max-width: 1100px) {
    .nav__links-inner a {
        font-size: 15px;
    }
}

@media (max-width: 960px) {
    .nav__toggle {
    display: inline-flex;
    }

    .nav__links {
        position: absolute;
        top: calc(100% + 10px);
        left: 12px;
        right: 12px;
        display: none;
        margin-left: 0;
        padding: 0;
    }

    .nav__links.is-open {
        display: block;
    }

    .nav__links-inner {
    display: flex;
    flex-direction: column;
        align-items: flex-start;
    gap: 16px;
        padding: 18px 20px;
        width: 100%;
        background: rgba(255, 255, 255, 0.97);
        border-radius: 18px;
        border: 1px solid rgba(110, 98, 255, 0.18);
        box-shadow: 0 24px 48px rgba(20, 24, 58, 0.18);
    }

    .nav__links-inner a {
        width: 100%;
        font-weight: 600;
        color: rgba(24, 38, 64, 0.86);
        padding: 4px 0;
    }

    .nav__cta--desktop {
        display: none;
    }

    .nav__cta--mobile {
    display: inline-flex;
        align-self: stretch;
    justify-content: center;
        text-align: center;
        background: linear-gradient(135deg, rgba(110, 98, 255, 0.96) 0%, rgba(145, 135, 255, 0.92) 100%);
        color: #fff;
        padding: 12px 24px;
        border-radius: 999px;
        font-weight: 600;
        box-shadow: 0 12px 26px rgba(120, 112, 230, 0.22);
    }

    .cta-panel {
        grid-template-columns: minmax(0, 1fr);
    }

    .cta-chat {
        justify-self: stretch;
    }

    .section-divider,
    .section-divider--accent {
        height: 40px;
        filter: blur(10px);
    }

    .pricing-grid {
        margin-top: clamp(24px, 5vw, 36px);
    }
}

@media (min-width: 1025px) {
    .cta-panel {
        width: min(860px, 94vw);
    }
}

.final-callout {
    width: 100%;
    padding: clamp(12px, 2vw, 18px) clamp(16px, 4vw, 24px);
    margin: 0 auto;
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(12, 18, 32, 0.48);
    display: grid;
    place-items: center;
    padding: 24px;
    z-index: 200;
}

.modal[hidden] {
    display: none;
}

.modal-content {
    position: relative;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(235, 246, 241, 0.94));
    border-radius: 30px;
    width: min(540px, 92vw);
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(22, 34, 66, 0.26);
    border: 1px solid rgba(193, 154, 223, 0.32);
    backdrop-filter: blur(18px);
    isolation: isolate;
}

.modal-content::before,
.modal-content::after {
    content: '';
    position: absolute;
    inset: -25% -20% auto;
    height: clamp(220px, 40vw, 280px);
    border-radius: 50%;
    filter: blur(24px);
    opacity: 0.75;
    pointer-events: none;
    z-index: -1;
}

.modal-content::before {
    background: radial-gradient(circle, rgba(193, 154, 223, 0.32) 0%, transparent 62%);
}

.modal-content::after {
    inset: auto -30% -30% 12%;
    background: radial-gradient(circle, rgba(108, 140, 213, 0.26) 0%, transparent 60%);
}

.modal-header {
    position: relative;
    display: flex;
        align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: clamp(30px, 6vw, 38px) clamp(34px, 6vw, 42px) clamp(20px, 4vw, 26px);
}

.modal-heading {
    display: grid;
    gap: 12px;
    max-width: 360px;
}

.modal-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.22em;
    color: rgba(38, 52, 94, 0.7);
    background: rgba(193, 154, 223, 0.24);
    border: 1px solid rgba(193, 154, 223, 0.36);
    box-shadow: 0 18px 36px rgba(38, 52, 94, 0.14);
}

.modal-kicker::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(108, 140, 213, 0.9);
}

.modal-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(30px, 5.2vw, 38px);
    letter-spacing: -0.02em;
    color: rgba(20, 32, 62, 0.94);
}

.modal-subtitle {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(38, 52, 90, 0.7);
}

.modal-body {
    padding: clamp(32px, 6vw, 42px);
    display: grid;
    gap: clamp(24px, 5vw, 30px);
}

.modal-close {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(193, 154, 223, 0.4);
    background: rgba(255, 255, 255, 0.78);
    color: rgba(72, 88, 128, 0.66);
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.modal-close:hover,
.modal-close:focus-visible {
    background: rgba(193, 154, 223, 0.22);
    color: rgba(110, 98, 255, 0.82);
    box-shadow: 0 16px 34px rgba(52, 68, 108, 0.18);
    transform: translateY(-2px);
}

.signup-form {
    display: grid;
    gap: clamp(18px, 3.5vw, 24px);
}

.signup-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 3vw, 24px);
}

.modal-form .form-group {
    position: relative;
    display: grid;
    gap: 12px;
    padding: 18px 20px;
    border-radius: 26px;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(236, 244, 255, 0.9));
    border: 1px solid rgba(193, 154, 223, 0.3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 22px 46px rgba(26, 40, 72, 0.12);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.modal-form .form-group:focus-within {
    border-color: rgba(108, 140, 213, 0.6);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 28px 58px rgba(86, 132, 208, 0.22);
    transform: translateY(-1px);
}

.modal-form label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(34, 52, 88, 0.62);
}

.modal-form input {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    border-radius: 18px;
    border: 1px solid rgba(193, 154, 223, 0.26);
    background: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    letter-spacing: 0.02em;
    color: rgba(24, 36, 68, 0.92);
    box-shadow: inset 0 4px 18px rgba(30, 44, 76, 0.08);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.modal-form input:focus {
    border-color: rgba(108, 140, 213, 0.62);
    box-shadow: inset 0 6px 20px rgba(86, 132, 208, 0.18), 0 0 0 5px rgba(108, 140, 213, 0.18);
    outline: none;
    transform: translateY(-1px);
}

.modal-form input::placeholder {
    color: rgba(60, 76, 112, 0.46);
    letter-spacing: 0.01em;
}

.consent-row {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px 20px;
    border-radius: 24px;
    border: 1px solid rgba(193, 154, 223, 0.32);
    background: linear-gradient(150deg, rgba(243, 246, 255, 0.92), rgba(235, 244, 255, 0.9));
    color: rgba(38, 54, 92, 0.7);
    font-size: 13px;
    line-height: 1.65;
    box-shadow: inset 0 10px 24px rgba(30, 44, 72, 0.06);
}

.consent-row::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 12% 18%, rgba(193, 154, 223, 0.18) 0%, transparent 58%),
                radial-gradient(circle at 86% 80%, rgba(108, 140, 213, 0.16) 0%, transparent 60%);
    opacity: 0.85;
    pointer-events: none;
}

.consent-row input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 1px solid rgba(166, 155, 255, 0.42);
    background: rgba(255, 255, 255, 0.9);
    accent-color: #7C72F4;
}

.consent-row label {
    margin: 0;
    font-weight: 500;
}

.submit-button {
    width: 100%;
    margin-top: 10px;
    padding: 18px;
    border-radius: 22px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #7A93E2 0%, #53B39A 100%);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 24px 52px rgba(86, 134, 210, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.submit-button span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.submit-button span::after {
    content: '↗';
    font-size: 18px;
    filter: drop-shadow(0 6px 12px rgba(72, 102, 176, 0.4));
}

.submit-button:hover,
.submit-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 28px 56px rgba(86, 134, 210, 0.36);
    filter: brightness(1.05);
}

.modal-footnote {
    display: grid;
    gap: 6px;
    margin-top: 4px;
    text-align: center;
}

.modal-note {
    display: block;
    font-size: 12px;
    color: rgba(24, 38, 64, 0.58);
}

.modal-note a {
    color: rgba(110, 98, 255, 0.82);
}

.signup-status {
    margin: 0;
    font-size: 14px;
    text-align: center;
    min-height: 20px;
}

@media (max-width: 640px) {
    .signup-form .form-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .modal-form input {
        padding: 12px 16px;
    }

    .consent-row {
        grid-template-columns: minmax(0, 1fr);
        padding: 14px;
    }
}

#motion.section::before {
    background: var(--gradient-base);
}

#integrations.section::before {
    background: var(--gradient-base);
}

#pricing.section::before {
    background: var(--gradient-base);
}

#pricing.section::after {
    background: var(--gradient-overlay-lavender), var(--gradient-overlay-sage);
}

section#cta {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: clamp(12px, 2.6vw, 22px) 0;
    background: linear-gradient(150deg, rgba(237, 240, 255, 0.92) 0%, rgba(233, 246, 239, 0.92) 55%, rgba(255, 255, 255, 0.98) 100%);
}

section#cta.container {
        width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.cta-panel {
    position: relative;
    display: grid;
    place-items: center;
    gap: clamp(18px, 3vw, 24px);
    padding: clamp(32px, 4.5vw, 48px);
    background: linear-gradient(145deg, rgba(193, 154, 223, 0.16), rgba(108, 140, 213, 0.22));
    border-radius: 44px;
    border: 1px solid rgba(193, 154, 223, 0.28);
    box-shadow: 0 44px 88px rgba(22, 34, 66, 0.2);
    text-align: center;
    width: min(760px, 92vw);
    margin: 0 auto clamp(18px, 3vw, 28px);
    overflow: hidden;
}

.cta-panel::before,
.cta-panel::after {
    content: '';
    position: absolute;
    inset: -45% -35%;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.42;
    filter: blur(20px);
}

.cta-panel::before {
    background: radial-gradient(circle, rgba(193, 154, 223, 0.32) 0%, transparent 70%);
    animation: cta-aurora 18s ease-in-out infinite;
}

.cta-panel::after {
    background: radial-gradient(circle, rgba(108, 140, 213, 0.26) 0%, transparent 70%);
    animation: cta-aurora 22s ease-in-out infinite reverse;
}

.cta-panel::before,
.cta-panel::after {
    content: '';
    position: absolute;
    inset: -45% -35%;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.42;
    filter: blur(20px);
}

.cta-panel::before {
    background: radial-gradient(circle, rgba(193, 154, 223, 0.32) 0%, transparent 70%);
    animation: cta-aurora 18s ease-in-out infinite;
}

.cta-panel::after {
    background: radial-gradient(circle, rgba(108, 140, 213, 0.26) 0%, transparent 70%);
    animation: cta-aurora 22s ease-in-out infinite reverse;
}



.cta-copy {
    display: grid;
    gap: clamp(18px, 4vw, 26px);
    position: relative;
    z-index: 1;
}

.cta-headline {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: #fff;
    text-shadow: 0 24px 48px rgba(12, 18, 32, 0.28);
    max-width: 34ch;
    margin-inline: auto;
}

.cta-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.7;
    max-width: 48ch;
    margin-inline: auto;
}

.cta-actions {
    display: flex;
        justify-content: center;
    }

.cta-panel .button-primary {
    position: relative;
    z-index: 1;
    padding-inline: clamp(26px, 8vw, 52px);
    box-shadow: 0 22px 50px rgba(72, 102, 176, 0.32);
}

.cta-panel .button-primary::after {
    content: '';
    position: absolute;
    inset: -12px -14px;
    border-radius: 999px;
    background: linear-gradient(120deg, rgba(166, 155, 255, 0.18), rgba(148, 209, 185, 0.18));
    filter: blur(18px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.cta-panel .button-primary:hover::after,
.cta-panel .button-primary:focus-visible::after {
    opacity: 1;
}

.cta-panel .button-primary span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-panel .button-primary span::after {
    content: '↗';
        font-size: 20px;
    filter: drop-shadow(0 6px 12px rgba(72, 102, 176, 0.4));
}

@keyframes cta-aurora {
    0% { transform: translate3d(-4%, -6%, 0) scale(1); }
    50% { transform: translate3d(5%, 6%, 0) scale(1.05); }
    100% { transform: translate3d(-4%, -6%, 0) scale(1); }
}

@keyframes cta-orbit-spin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1); }
}

.footer {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: linear-gradient(160deg, rgba(238, 241, 255, 0.95) 0%, rgba(236, 248, 244, 0.92) 58%, rgba(233, 242, 255, 0.9) 100%);
    padding: clamp(60px, 7vw, 84px) 0 clamp(40px, 5vw, 60px);
    color: rgba(32, 44, 78, 0.78);
}

.footer__inner {
    width: min(1160px, 92vw);
    margin: 0 auto;
    display: grid;
    gap: clamp(28px, 5vw, 36px);
}

.footer__top {
    display: grid;
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
    gap: clamp(24px, 5vw, 38px);
        align-items: flex-start;
}

.footer__brand-wrap {
    display: grid;
        gap: 16px;
    }

.footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #6E62FF;
}

.footer__brand img {
    height: 34px;
    width: auto;
    filter: drop-shadow(0 6px 12px rgba(18, 26, 44, 0.18));
}

.footer__social {
    display: inline-flex;
    gap: 12px;
}

.footer__social a {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 14px;
    background: rgba(122, 147, 226, 0.18);
    transition: transform 0.25s ease, background 0.25s ease;
}

.footer__social a img {
    width: 16px;
    height: 16px;
}

.footer__social a:hover {
    transform: translateY(-4px);
    background: rgba(122, 147, 226, 0.26);
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(18px, 5vw, 32px);
}

.footer__column {
    position: relative;
    display: grid;
    gap: 12px;
    padding: clamp(18px, 3vw, 28px);
    border-radius: 24px;
    border: 1px solid rgba(193, 154, 223, 0.26);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.76) 0%, rgba(238, 244, 255, 0.82) 52%, rgba(235, 246, 241, 0.78) 100%);
    box-shadow: 0 22px 46px rgba(24, 32, 56, 0.12);
    overflow: hidden;
}

.footer__column::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 12% 18%, rgba(193, 154, 223, 0.18) 0%, transparent 58%),
                radial-gradient(circle at 86% 80%, rgba(108, 140, 213, 0.16) 0%, transparent 60%);
    opacity: 0.92;
    pointer-events: none;
}

.footer__label {
    margin: 0 0 4px;
    font-size: 12px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(38, 52, 94, 0.5);
    position: relative;
    z-index: 1;
}

.footer__link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: rgba(38, 52, 94, 0.78);
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer__link:hover,
.footer__link:focus-visible {
    color: #7A93E2;
    transform: translateX(6px);
}

.footer__link::after {
    content: '↗';
    font-size: 16px;
    opacity: 0;
    transform: translateX(-6px);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer__link:hover::after,
.footer__link:focus-visible::after {
    opacity: 0.9;
    transform: translateX(0);
}

.footer__note {
    margin: 0;
    padding-top: clamp(18px, 4vw, 26px);
    border-top: 1px solid rgba(166, 155, 255, 0.18);
    text-align: center;
    color: rgba(38, 52, 94, 0.6);
    font-size: 14px;
    display: flex;
    justify-content: center;
}

.footer__note span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(193, 154, 223, 0.16);
    border: 1px solid rgba(193, 154, 223, 0.32);
    color: rgba(38, 52, 94, 0.68);
}

@media (max-width: 960px) {
    .footer__top {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }

    .footer__inner {
        gap: clamp(32px, 8vw, 40px);
    }
}

.section-divider {
    display: none;
}

.section-divider--accent {
    height: 80px;
    background: linear-gradient(120deg, rgba(166, 155, 255, 0.14) 0%, rgba(148, 209, 185, 0.22) 60%, rgba(187, 217, 255, 0.14) 100%);
    opacity: 0.82;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.button-primary,
.button-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.button-primary {
    background: linear-gradient(135deg, #7A93E2 0%, #53B39A 100%);
    color: #ffffff !important;
    border: none;
    box-shadow: 0 20px 44px rgba(90, 137, 210, 0.32);
}

.button-primary:hover,
.button-primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(110, 103, 222, 0.34);
    filter: brightness(1.04);
}

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

.button-ghost {
    background: rgba(159, 205, 183, 0.16);
    color: rgba(38, 52, 94, 0.8);
    border: 1px solid rgba(166, 155, 255, 0.35);
    box-shadow: 0 12px 28px rgba(44, 62, 102, 0.08);
}

.button-ghost:hover,
.button-ghost:focus-visible {
    background: rgba(166, 155, 255, 0.16);
    color: rgba(26, 40, 72, 0.92);
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(58, 82, 124, 0.16);
}

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

.hero__content {
    display: grid;
    gap: clamp(20px, 4vw, 28px);
    position: relative;
    max-width: 520px;
}

 
.hero__content h1 {
    margin: 0;
    font-size: clamp(44px, 6.2vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--mist-500);
    text-shadow: 0 18px 38px rgba(60, 74, 112, 0.18);
}
 
.hero__content p {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    max-width: 34ch;
    color: rgba(18, 24, 40, 0.86);
    text-shadow: none;
}
 
 .hero__actions {
    display: inline-flex;
    align-items: center;
     gap: clamp(14px, 3vw, 18px);
     position: relative;
 }
 
 .hero__metrics {
    display: flex;
     gap: clamp(18px, 4vw, 24px);
     align-items: stretch;
 }
 
 .hero__metric {
     flex: 1 1 0;
     min-width: 120px;
     padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
     border: 1px solid rgba(166, 155, 255, 0.24);
     box-shadow: 0 18px 42px rgba(34, 46, 78, 0.12);
     backdrop-filter: blur(12px);
    display: grid;
     gap: 6px;
    text-transform: uppercase;
     letter-spacing: 0.18em;
     color: rgba(44, 58, 92, 0.62);
     font-size: 11px;
}

 .hero__metric strong {
     font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink-primary);
}

 .hero__metric span {
     font-size: 11px;
 }

 .hero__actions::before {
    content: '';
    position: absolute;
    inset: -16px -22px;
    border-radius: 999px;
    background: linear-gradient(120deg, rgba(166, 155, 255, 0.15), rgba(148, 209, 185, 0.15));
    filter: blur(18px);
    opacity: 0.8;
    z-index: 0;
}

.hero__actions > * {
    position: relative;
    z-index: 1;
}

.hero__actions .button-ghost {
    background: rgba(159, 205, 183, 0.18);
    border-color: rgba(166, 155, 255, 0.4);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(28px, 6vw, 40px);
    width: min(1080px, 92vw);
    margin: 0 auto;
    align-items: stretch;
}

.feature-card {
    display: grid;
    gap: clamp(18px, 4vw, 24px);
    padding: clamp(28px, 6vw, 36px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
    border-radius: 34px;
    border: 1px solid rgba(193, 154, 223, 0.3);
    box-shadow: 0 36px 70px rgba(26, 40, 72, 0.16);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: -20% -40% auto;
    height: clamp(200px, 32vw, 260px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(193, 154, 223, 0.24) 0%, transparent 65%);
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

.feature-card--signal::after {
    background: radial-gradient(circle, rgba(108, 140, 213, 0.24) 0%, transparent 65%);
}

.feature-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
}

.feature-eyebrow {
    font-size: 12px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(32, 48, 88, 0.48);
}

.feature-card h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 34px);
    letter-spacing: -0.02em;
    color: rgba(24, 40, 72, 0.92);
}

.feature-card p {
    margin: 0;
    color: rgba(42, 58, 88, 0.74);
    font-size: 17px;
    line-height: 1.65;
}

.feature-visual {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 16px;
}

.feature-panel {
    padding: 20px 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(206, 214, 232, 0.32);
    box-shadow: 0 18px 32px rgba(26, 40, 72, 0.12);
}

.feature-panel--primary header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(40, 60, 92, 0.52);
}

.feature-panel--primary p {
    margin: 12px 0 0;
    color: rgba(24, 40, 72, 0.88);
    font-size: 17px;
    line-height: 1.6;
}

.feature-actions {
    margin-top: 18px;
    display: flex;
    gap: 10px;
}

.feature-actions button {
    padding: 10px 18px;
    border-radius: 999px;
    border: none;
    font-family: var(--font-sans);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-actions button:first-child {
    background: linear-gradient(135deg, var(--lavender-500), var(--mist-500));
    color: #fff;
    box-shadow: 0 16px 32px rgba(100, 128, 210, 0.26);
}

.feature-actions button.is-ghost {
    background: rgba(168, 195, 160, 0.2);
    color: rgba(32, 48, 88, 0.82);
    border: 1px solid rgba(168, 195, 160, 0.36);
}

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

.feature-panel--secondary {
    background: rgba(193, 154, 223, 0.22);
    border: 1px solid rgba(193, 154, 223, 0.36);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 16px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(28, 40, 70, 0.8);
    margin-top: 6px;
    width: auto;
}

.feature-board {
    display: grid;
    gap: 12px;
}

.feature-chip {
    padding: 10px 16px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(206, 214, 232, 0.32);
    color: rgba(32, 48, 88, 0.7);
}

.feature-chip--lavender { background: rgba(193, 154, 223, 0.24); border-color: rgba(193, 154, 223, 0.36); }
.feature-chip--sage { background: rgba(168, 195, 160, 0.24); border-color: rgba(168, 195, 160, 0.36); }
.feature-chip--mist { background: rgba(108, 140, 213, 0.24); border-color: rgba(108, 140, 213, 0.36); }

.feature-notes {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(206, 214, 232, 0.32);
    display: grid;
    gap: 6px;
    width: 100%;
}

.feature-notes span {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(32, 48, 88, 0.5);
}

.feature-notes strong {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: -0.01em;
    color: rgba(28, 42, 72, 0.9);
}

.feature-notes p {
    margin: 0;
    color: rgba(42, 58, 88, 0.7);
    font-size: 14px;
}

.pricing-shell {
    width: min(1120px, 92vw);
    margin: 0 auto;
    display: grid;
    gap: clamp(28px, 5vw, 42px);
}

.pricing-lanes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(24px, 5vw, 32px);
}

.lane-card {
    position: relative;
    display: grid;
    gap: 18px;
    padding: clamp(26px, 5vw, 34px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(122, 147, 226, 0.16));
    border-radius: 28px;
    border: 1px solid rgba(193, 154, 223, 0.3);
    box-shadow: 0 32px 66px rgba(26, 40, 72, 0.16);
    min-height: 340px;
}

.lane-card::before {
    content: '';
    position: absolute;
    inset: -30% -45% auto;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(193, 154, 223, 0.2) 0%, transparent 70%);
    opacity: 0.7;
    pointer-events: none;
}

.lane-card header {
    display: grid;
    gap: 12px;
}

.lane-tier {
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(44, 58, 92, 0.52);
}

.lane-price {
    font-family: var(--font-display);
    font-size: clamp(34px, 5.4vw, 44px);
    letter-spacing: -0.02em;
    color: rgba(26, 42, 78, 0.92);
}

.lane-price::before {
    content: '$';
    font-size: 0.5em;
    margin-right: 4px;
    vertical-align: baseline;
}

.lane-price span {
    font-size: 16px;
    letter-spacing: 0.08em;
    color: rgba(52, 68, 102, 0.6);
}

.lane-body {
    margin: 0;
    color: rgba(42, 58, 88, 0.74);
    font-size: 16px;
    line-height: 1.65;
}

.lane-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
    color: rgba(42, 58, 88, 0.78);
    font-size: 15px;
}

.lane-card ul li {
    padding-left: 20px;
    position: relative;
}

.lane-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--lavender-500) 0%, var(--mist-500) 100%);
}

.lane-card footer {
    margin-top: auto;
}

.lane-card footer .button-primary,
.lane-card footer .button-ghost {
        width: 100%;
    justify-content: center;
}

.lane-card--focus {
    border-color: rgba(108, 140, 213, 0.38);
    box-shadow: 0 34px 70px rgba(40, 60, 110, 0.18);
}

.lane-badge {
    justify-self: flex-start;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    background: rgba(108, 140, 213, 0.16);
    border: 1px solid rgba(108, 140, 213, 0.34);
    color: rgba(24, 42, 78, 0.74);
}

.page-content .modal-content,
.page-content .modal {
    background: rgba(255, 255, 255, 0.94);
}

@media (max-width: 768px) {
    .feature-panel--floating {
        margin-top: 6px;
    }
}

