:root {
    --ink: #17201f;
    --muted: #69716f;
    --cream: #f6f4ee;
    --paper: #fff;
    --green: #154c43;
    --mint: #bbf4d6;
    --purple: #7559ee;
    --orange: #ff9d65;
    --line: #e2e2db;
    --display: 'Manrope', sans-serif;
    --body: 'DM Sans', sans-serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    font-family: var(--body);
    background: var(--paper);
    line-height: 1.6
}

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

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0)
}

.site-header {
    height: 84px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid #ecece7;
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px)
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font: 800 24px/1 var(--display);
    letter-spacing: -1px
}

.brand-mark,
.mini-logo {
    width: 28px;
    height: 24px;
    display: flex;
    align-items: flex-end;
    gap: 3px
}

.brand-mark i,
.mini-logo i {
    display: block;
    width: 7px;
    background: var(--green);
    border-radius: 2px
}

.brand-mark i:nth-child(1),
.mini-logo i:nth-child(1) {
    height: 12px
}

.brand-mark i:nth-child(2),
.mini-logo i:nth-child(2) {
    height: 23px
}

.brand-mark i:nth-child(3),
.mini-logo i:nth-child(3) {
    height: 17px
}

.site-nav {
    display: flex;
    gap: 34px;
    font-size: 14px;
    font-weight: 600
}

.site-nav a,
.text-link {
    transition: color .2s
}

.site-nav a:hover,
.text-link:hover {
    color: var(--purple)
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
    font-weight: 600
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: var(--green);
    color: white;
    padding: 15px 24px;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(21, 76, 67, .14);
    transition: transform .2s, box-shadow .2s
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(21, 76, 67, .22)
}

.button-small {
    padding: 10px 18px;
    border-radius: 6px
}

.menu-toggle {
    display: none;
    border: 0;
    background: none;
    padding: 8px
}

.menu-toggle>span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    margin: 5px
}

.hero {
    min-height: 650px;
    background: var(--cream);
    overflow: hidden;
    display: flex;
    align-items: center
}

.hero-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 70px;
    padding-block: 74px
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--green);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.7px
}

.eyebrow>span {
    width: 21px;
    height: 2px;
    background: var(--purple)
}

h1,
h2 {
    font-family: var(--display);
    letter-spacing: -3.5px;
    line-height: 1.05;
    margin: 18px 0 22px
}

h1 {
    font-size: clamp(52px, 5.7vw, 78px)
}

h1 em,
h2 em {
    color: var(--purple);
    font-style: normal
}

.hero-lead {
    font-size: 18px;
    color: var(--muted);
    max-width: 510px;
    margin: 0 0 30px
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 26px
}

.play-link {
    font-weight: 700;
    font-size: 14px
}

.play-link>span {
    display: inline-grid;
    place-items: center;
    width: 35px;
    height: 35px;
    border: 1px solid #cad0cc;
    border-radius: 50%;
    margin-right: 8px;
    color: var(--green);
    font-size: 10px
}

.trust-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 35px
}

.trust-row p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.55;
    margin: 0
}

.trust-row strong {
    color: var(--ink)
}

.avatar-stack {
    display: flex
}

.avatar-stack span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #ddd0ff;
    border: 2px solid var(--cream);
    font-size: 9px;
    font-weight: 800;
    margin-left: -7px
}

.avatar-stack span:first-child {
    margin: 0;
    background: #a4e9d0
}

.avatar-stack span:nth-child(3) {
    background: #ffcfb2
}

.avatar-stack span:last-child {
    background: var(--ink);
    color: white
}

.hero-visual {
    position: relative;
    min-width: 0
}

.dashboard {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 52px 1fr;
    background: white;
    border-radius: 14px;
    box-shadow: 0 28px 70px rgba(28, 40, 38, .18);
    overflow: hidden;
    transform: rotate(1deg)
}

.dash-sidebar {
    background: #153f39;
    padding: 18px 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px
}

.mini-logo {
    transform: scale(.65);
    margin-bottom: 8px
}

.mini-logo i {
    background: white
}

.side-pill {
    width: 19px;
    height: 19px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .12)
}

.side-pill.active {
    background: #bff3d9
}

.side-avatar {
    margin-top: auto;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #e8dbff;
    display: grid;
    place-items: center;
    font-size: 7px;
    font-weight: bold
}

.dash-main {
    padding: 24px 25px 28px;
    min-width: 0
}

.dash-top {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.dash-top div {
    display: flex;
    flex-direction: column
}

.dash-top small {
    font-size: 8px;
    color: #8a9391
}

.dash-top strong {
    font: 700 16px var(--display)
}

.dash-top button {
    font: 600 8px var(--body);
    border: 0;
    border-radius: 4px;
    padding: 8px 10px;
    background: var(--green);
    color: white
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 20px 0
}

.metric-row>div {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #eceeeb;
    border-radius: 7px;
    padding: 9px
}

.metric-row p {
    margin: 0;
    color: #86908d;
    font-size: 7px;
    line-height: 1.5
}

.metric-row strong {
    display: block;
    color: var(--ink);
    font-size: 14px
}

.metric-icon {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    font-size: 8px
}

.purple {
    background: #eee9ff;
    color: #7559ee
}

.mint {
    background: #dff8ea;
    color: #277b64
}

.orange {
    background: #fff0e7;
    color: #f18445
}

.screen-title {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    margin-bottom: 10px
}

.screen-title span {
    color: var(--purple)
}

.screen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px
}

.screen-grid article {
    border: 1px solid #e9ebe8;
    border-radius: 7px;
    overflow: hidden
}

.screen-img {
    aspect-ratio: 1.35;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font: 600 7px var(--display);
    letter-spacing: 1px
}

.screen-img b {
    font-size: 10px
}

.cafe {
    background: linear-gradient(135deg, #ffd49e, #fff1ce);
    color: #51381f
}

.office {
    background: linear-gradient(135deg, #456f6a, #bedbd5);
    color: white
}

.sale {
    background: linear-gradient(135deg, #fba475, #ffd8b7);
    color: #623323
}

.screen-grid p {
    margin: 7px 8px 8px;
    font-size: 7px;
    line-height: 1.5
}

.screen-grid small {
    display: block;
    color: #7b8985
}

.screen-grid small i {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #35ad7f;
    margin-right: 3px
}

.ambient {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px)
}

.ambient-one {
    width: 170px;
    height: 170px;
    background: #b8f1d3;
    right: -58px;
    top: -60px
}

.ambient-two {
    width: 130px;
    height: 130px;
    background: #d7ccff;
    left: -44px;
    bottom: -45px
}

.status-card {
    position: absolute;
    z-index: 3;
    right: -25px;
    bottom: -34px;
    background: #fff;
    border-radius: 9px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 14px 32px rgba(26, 44, 39, .16)
}

.status-card>span {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: #d9f7e8;
    color: #298d68;
    display: grid;
    place-items: center
}

.status-card p {
    margin: 0;
    line-height: 1.35;
    font-size: 10px
}

.status-card small {
    display: block;
    color: #8b9491
}

.logo-strip {
    padding: 32px 0;
    border-bottom: 1px solid var(--line)
}

.logo-strip .container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo-strip p {
    font-size: 11px;
    color: #8b918f;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700
}

.logo-strip .container>div {
    display: flex;
    gap: 48px;
    color: #7b817f;
    font: 700 13px var(--display)
}

.section {
    padding: 110px 0
}

.section-heading {
    text-align: center;
    max-width: 690px;
    margin: 0 auto 55px
}

.section-heading h2,
.workflow h2,
.cta-band h2 {
    font-size: clamp(42px, 4.6vw, 62px)
}

.section-heading p {
    max-width: 570px;
    margin: auto;
    color: var(--muted)
}

.fashion-video-section {
    overflow: hidden;
    color: white;
    background: #101918;
    padding-bottom: 0
}

.fashion-video-section .section-heading {
    margin-bottom: clamp(34px, 5vw, 58px)
}

.fashion-video-section .section-heading p {
    color: #c0d0cd
}

.fashion-video-section h2 em {
    color: var(--mint)
}

.fashion-video-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #050807
}

.fashion-video-frame video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.feature-grid article {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 12px;
    transition: transform .2s, box-shadow .2s
}

.feature-grid article:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 38px rgba(28, 42, 38, .1)
}

.feature-grid article.featured {
    background: var(--green);
    color: white;
    border-color: var(--green)
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: #eeeafe;
    border-radius: 10px;
    font-size: 21px
}

.feature-grid h3,
.solution-grid h3,
.steps h3 {
    font: 700 20px var(--display);
    margin: 24px 0 10px
}

.feature-grid p {
    font-size: 14px;
    color: var(--muted)
}

.feature-grid .featured p {
    color: #bdd0cc
}

.feature-grid a {
    display: inline-block;
    margin-top: 16px;
    color: var(--purple);
    font-weight: 700;
    font-size: 13px
}

.feature-grid .featured a {
    color: var(--mint)
}

.workflow {
    background: var(--green);
    color: white
}

.workflow-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center
}

.eyebrow.light {
    color: var(--mint)
}

.eyebrow.light>span {
    background: var(--mint)
}

.workflow h2 em,
.cta-band h2 em {
    color: var(--mint)
}

.workflow-lead {
    color: #c0d0cd;
    max-width: 460px
}

.steps {
    list-style: none;
    margin: 0;
    padding: 0
}

.steps li {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 24px;
    padding: 26px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18)
}

.steps li:first-child {
    border-top: 1px solid rgba(255, 255, 255, .18)
}

.steps>li>span {
    font: 700 13px var(--display);
    color: var(--mint)
}

.steps h3 {
    margin: 0 0 6px
}

.steps p {
    margin: 0;
    color: #b6cac6;
    font-size: 14px
}

.section-heading.compact {
    text-align: left;
    margin-left: 0
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.solution-grid article {
    background: var(--cream);
    padding: 30px;
    border-radius: 10px
}

.solution-grid>article>span {
    font-size: 28px
}

.solution-grid h3 {
    margin: 16px 0 8px
}

.solution-grid p {
    font-size: 13px;
    color: var(--muted);
    margin: 0
}

.cta-band {
    background: var(--purple);
    color: white;
    padding: 80px 0
}

.cta-band .container {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 80px;
    align-items: end
}

.cta-band h2 {
    margin-bottom: 0
}

.cta-band p {
    color: #e4dfff;
    margin: 0 0 24px
}

.button-light {
    background: var(--mint);
    color: var(--green);
    box-shadow: none
}

.site-footer {
    background: #112e2a;
    color: white;
    padding-top: 75px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .7fr .7fr 1.2fr;
    gap: 55px;
    padding-bottom: 65px
}

.brand-light .brand-mark i {
    background: var(--mint)
}

.footer-intro p {
    color: #9fb5b0;
    max-width: 270px;
    font-size: 13px;
    margin-top: 22px
}

.site-footer h2 {
    font: 700 13px var(--display);
    letter-spacing: 0;
    margin: 5px 0 22px
}

.site-footer .footer-grid>div>a:not(.brand):not(.button) {
    display: block;
    color: #9fb5b0;
    font-size: 13px;
    margin: 10px 0
}

.footer-cta p {
    color: #9fb5b0;
    font-size: 13px
}

.footer-cta .button {
    display: inline-flex;
    margin-top: 10px
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    justify-content: space-between;
    padding: 22px 0;
    color: #78928c;
    font-size: 11px
}

.footer-bottom p {
    margin: 0
}

.footer-bottom a {
    margin-left: 24px
}

@media(max-width:900px) {
    .nav-actions {
        display: none
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding-top: 60px;
        gap: 75px
    }

    .hero-copy {
        text-align: center
    }

    .hero-lead {
        margin-inline: auto
    }

    .hero-actions,
    .trust-row {
        justify-content: center
    }

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

    .logo-strip .container {
        flex-direction: column
    }

    .logo-strip .container>div {
        flex-wrap: wrap;
        justify-content: center;
        gap: 22px 34px
    }

    .workflow-grid {
        grid-template-columns: 1fr;
        gap: 45px
    }

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

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr
    }

    .footer-cta {
        grid-column: 1/-1
    }

    .cta-band .container {
        gap: 40px
    }

    .section {
        padding: 85px 0
    }
}

@media(max-width:680px) {
    .container {
        width: min(100% - 32px, 1160px)
    }

    .site-header {
        height: 70px
    }

    .menu-toggle {
        display: block
    }

    .site-nav {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 18px 24px 24px;
        display: none;
        flex-direction: column;
        gap: 18px;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 12px 25px rgba(20, 35, 32, .09)
    }

    .site-nav.is-open {
        display: flex
    }

    .hero-grid {
        padding-block: 48px 75px
    }

    .hero-actions {
        flex-direction: column
    }

    .trust-row {
        margin-top: 27px
    }

    h1 {
        font-size: 46px;
        letter-spacing: -2.8px
    }

    .dashboard {
        grid-template-columns: 38px 1fr
    }

    .dash-sidebar {
        padding: 12px 5px
    }

    .dash-main {
        padding: 15px 12px
    }

    .metric-row>div {
        padding: 6px
    }

    .metric-icon {
        display: none
    }

    .status-card {
        right: 5px
    }

    .feature-grid,
    .solution-grid {
        grid-template-columns: 1fr
    }

    .section-heading {
        text-align: left
    }

    .workflow-grid {
        gap: 30px
    }

    .steps li {
        grid-template-columns: 42px 1fr;
        gap: 10px
    }

    .cta-band .container {
        grid-template-columns: 1fr;
        gap: 25px
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px
    }

    .footer-intro,
    .footer-cta {
        grid-column: 1/-1
    }

    .footer-bottom {
        gap: 20px;
        align-items: center
    }

    .screen-grid {
        gap: 5px
    }

    .screen-grid p {
        margin: 5px;
        font-size: 6px
    }
}

/* Brand logo asset */
.brand-logo {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain
}

.brand-light .brand-logo {
    filter: invert(1)
}

.dash-sidebar .mini-logo {
    display: block;
    width: 27px;
    height: 27px;
    object-fit: contain;
    filter: invert(1);
    margin-bottom: 8px;
    transform: none
}

/* Hero image slider */
.hero-product-image {
    position: relative;
    z-index: 2;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(28, 40, 38, .2);
    transform: rotate(1deg);
    background: #fff
}

.hero-slides {
    position: relative;
    aspect-ratio: 4/3
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.025);
    transition: opacity .7s ease, transform 5s ease;
    pointer-events: none
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1
}

.slider-arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 50%;
    background: rgba(18, 31, 28, .58);
    color: white;
    font-size: 17px;
    cursor: pointer;
    opacity: 0;
    transition: opacity .2s, background .2s
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
    background: var(--green)
}

.slider-prev {
    left: 14px
}

.slider-next {
    right: 14px
}

.hero-product-image:hover .slider-arrow,
.hero-product-image:focus-within .slider-arrow {
    opacity: 1
}

.slider-dots {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    padding: 7px 9px;
    border-radius: 20px;
    background: rgba(18, 31, 28, .45);
    backdrop-filter: blur(5px)
}

.slider-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 7px;
    background: rgba(255, 255, 255, .62);
    cursor: pointer;
    transition: width .25s, background .25s
}

.slider-dots button.is-active {
    width: 22px;
    background: white
}

@media(prefers-reduced-motion:reduce) {
    .hero-slide {
        transition: none;
        transform: none
    }
}

@media(max-width:680px) {
    .hero-product-image {
        border-radius: 11px;
        transform: none
    }

    .slider-arrow {
        opacity: 1;
        width: 34px;
        height: 34px
    }

    .slider-dots {
        bottom: 10px
    }
}

/* Supported devices */
.devices-section {
    background: #fff
}

.devices-heading {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 45px
}

.devices-heading h2 {
    font-size: clamp(42px, 4.6vw, 62px);
    margin-bottom: 0
}

.devices-heading>p {
    color: var(--muted);
    max-width: 500px;
    margin: 0 0 8px
}

.browser-support {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: var(--green);
    color: white;
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 22px
}

.browser-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700
}

.browser-label i {
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 5px rgba(187, 244, 214, .12)
}

.browser-list {
    display: flex;
    align-items: center;
    gap: 30px
}

.browser-list span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d8e5e2;
    font-size: 12px;
    font-weight: 600
}

.browser-list b {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: white;
    font: 800 11px var(--display)
}

.browser-list .chrome {
    color: #3e8e58
}

.browser-list .edge {
    color: #267fc1
}

.browser-list .safari {
    color: #277db8
}

.browser-list .firefox {
    color: #e46b30
}

.device-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.device-grid article {
    min-height: 245px;
    display: flex;
    flex-direction: column;
    background: var(--cream);
    border: 1px solid #e5e3dc;
    border-radius: 12px;
    padding: 28px
}

.device-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #eee9ff;
    font-size: 23px
}

.device-grid h3 {
    font: 700 19px var(--display);
    margin: 22px 0 8px
}

.device-grid p {
    color: var(--muted);
    font-size: 13px;
    margin: 0
}

.device-grid small {
    display: block;
    color: #8a918e;
    font-size: 10px;
    margin-top: auto;
    padding-top: 22px
}

.device-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 27px;
    color: #52605c;
    font-size: 13px
}

.device-note>span {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #dff6e9;
    color: #24805f;
    font-weight: 800
}

.device-note p {
    margin: 0
}

@media(max-width:900px) {
    .devices-heading {
        grid-template-columns: 1fr;
        gap: 18px
    }

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

    .browser-support {
        align-items: flex-start
    }

    .browser-list {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 14px 22px
    }
}

@media(max-width:680px) {
    .browser-support {
        flex-direction: column
    }

    .browser-list {
        justify-content: flex-start
    }

    .device-grid {
        grid-template-columns: 1fr
    }

    .device-grid article {
        min-height: 220px
    }

    .device-note {
        align-items: flex-start
    }
}

/* Display comparison */
.display-comparison {
    background: #fff
}

.comparison-heading {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 52px
}

.comparison-heading .section-heading {
    margin-bottom: 0
}

.comparison-heading>p {
    max-width: 490px;
    margin: 0 0 8px;
    color: var(--muted)
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch
}

.comparison-card {
    display: flex;
    flex-direction: column;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--cream)
}

.comparison-card-featured {
    border-color: rgba(21, 76, 67, .32);
    box-shadow: 0 16px 38px rgba(28, 42, 38, .08)
}

.comparison-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

.comparison-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #eee9ff;
    color: var(--purple);
    font-size: 21px
}

.comparison-tag {
    padding: 6px 10px;
    border-radius: 999px;
    background: #dff6e9;
    color: #246b54;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .45px;
    text-transform: uppercase
}

.comparison-card h3 {
    margin: 25px 0 8px;
    font-size: 25px;
    letter-spacing: -1px
}

.comparison-summary {
    min-height: 66px;
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 14px
}

.comparison-group {
    padding: 18px 0;
    border-top: 1px solid #ddded8
}

.comparison-group h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px;
    font: 700 13px var(--display)
}

.comparison-pros h4 i {
    color: #24805f
}

.comparison-cons h4 i {
    color: #9a7540
}

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

.comparison-group li {
    position: relative;
    padding: 4px 0 4px 15px;
    color: #57615e;
    font-size: 12px
}

.comparison-group li:before {
    content: '';
    position: absolute;
    top: 12px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--purple)
}

.comparison-best {
    margin: auto 0 0;
    padding-top: 20px;
    border-top: 1px solid #ddded8;
    color: var(--muted);
    font-size: 12px
}

.comparison-best strong {
    color: var(--ink)
}

.comparison-guidance {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 24px;
    padding: 20px 24px;
    border-radius: 12px;
    background: var(--green);
    color: #e8f2ef;
    font-size: 13px
}

.comparison-guidance>span {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: var(--mint)
}

.comparison-guidance strong {
    color: #fff
}

@media(max-width:900px) {
    .comparison-heading {
        grid-template-columns: 1fr;
        gap: 18px
    }

    .comparison-grid {
        grid-template-columns: 1fr
    }

    .comparison-summary {
        min-height: 0
    }
}

@media(max-width:680px) {
    .comparison-card {
        padding: 24px
    }

    .comparison-guidance {
        align-items: flex-start
    }
}

/* Use cases */
.use-cases-heading {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 52px
}

.use-cases-heading .section-heading {
    margin-bottom: 0
}

.use-cases-heading>p {
    color: var(--muted);
    max-width: 480px;
    margin: 0 0 8px
}

.solution-grid {
    grid-template-columns: repeat(3, 1fr)
}

.solution-grid article {
    position: relative;
    padding: 0;
    overflow: hidden;
    border: 1px solid transparent;
    transition: transform .2s, border-color .2s, box-shadow .2s
}

.use-case-image {
    display: block;
    width: 100%;
    height: 300px;
    aspect-ratio: 4 / 3;
    object-fit: cover
}

.use-case-body {
    position: relative;
    padding: 28px 32px 32px
}

.solution-grid article:hover {
    transform: translateY(-4px);
    border-color: #dadbd4;
    box-shadow: 0 14px 32px rgba(28, 42, 38, .08)
}

.case-number {
    position: absolute;
    right: 25px;
    top: 29px;
    color: #a3aaa7;
    font: 700 11px var(--display);
    letter-spacing: 1px
}

.solution-grid ul {
    list-style: none;
    padding: 17px 0 0;
    margin: 20px 0 0;
    border-top: 1px solid #ddded8
}

.solution-grid li {
    position: relative;
    padding: 3px 0 3px 15px;
    color: #57615e;
    font-size: 12px;
    font-weight: 600
}

.solution-grid li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--purple)
}

@media(max-width:900px) {
    .use-cases-heading {
        grid-template-columns: 1fr;
        gap: 18px
    }

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

@media(max-width:680px) {
    .solution-grid {
        grid-template-columns: 1fr
    }
}

/* Pricing */
.pricing {
    background: var(--cream)
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch
}

.price-card {
    position: relative;
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 34px;
    display: flex;
    flex-direction: column
}

.price-card.popular {
    border: 2px solid var(--purple);
    box-shadow: 0 20px 45px rgba(77, 57, 164, .12);
    transform: translateY(-10px)
}

.popular-label {
    position: absolute;
    top: 0;
    right: 25px;
    transform: translateY(-50%);
    background: var(--purple);
    color: white;
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px
}

.plan-heading {
    display: flex;
    align-items: center;
    gap: 14px
}

.plan-heading h3 {
    font: 700 21px var(--display);
    margin: 0
}

.plan-heading p {
    color: var(--muted);
    font-size: 12px;
    margin: 2px 0 0
}

.plan-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 700
}

.plan-icon.starter {
    background: #eef0ed;
    color: var(--green)
}

.plan-icon.growth {
    background: #eee9ff;
    color: var(--purple)
}

.plan-icon.scale {
    background: #dcf6e8;
    color: #26765f
}

.price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 30px 0 4px
}

.price strong {
    font: 800 46px var(--display);
    letter-spacing: -3px
}

.price span {
    color: var(--muted);
    font-size: 12px
}

.price.custom strong {
    font-size: 38px;
    letter-spacing: -2px
}

.price-note {
    min-height: 46px;
    color: var(--muted);
    font-size: 13px;
    margin: 0 0 23px
}

.price-button {
    display: flex;
    justify-content: center;
    border: 1px solid var(--green);
    border-radius: 7px;
    padding: 12px;
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
    transition: background .2s, color .2s
}

.price-button:hover,
.popular .price-button {
    background: var(--green);
    color: white
}

.popular .price-button:hover {
    background: #0e3932
}

.price-card ul {
    list-style: none;
    padding: 24px 0 0;
    margin: 24px 0 0;
    border-top: 1px solid var(--line)
}

.price-card li {
    position: relative;
    padding: 6px 0 6px 24px;
    font-size: 13px;
    color: #4f5956
}

.price-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2a8b6c;
    font-weight: 800
}

.pricing-footnote {
    text-align: center;
    color: var(--muted);
    font-size: 12px;
    margin: 35px 0 0
}

.pricing-footnote a {
    color: var(--purple);
    font-weight: 700
}

@media(max-width:900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: auto
    }

    .price-card.popular {
        transform: none
    }

    .price-note {
        min-height: auto
    }
}

/* Stacked hero layout */
.hero-grid {
    grid-template-columns: 1fr;
    gap: 62px;
    padding-block: 72px 95px
}

.hero-copy {
    max-width: 790px;
    margin-inline: auto;
    text-align: center
}

.hero-lead {
    margin-inline: auto
}

.hero-actions,
.trust-row {
    justify-content: center
}

.hero-visual {
    width: min(920px, 100%);
    margin-inline: auto
}

@media(max-width:680px) {
    .hero-grid {
        gap: 48px;
        padding-block: 48px 72px
    }
}

/* Scheduling and management pages */
.capability-hero {
    background: var(--cream);
    padding: 88px 0 105px;
    overflow: hidden
}

.capability-hero-grid {
    display: grid;
    grid-template-columns: .83fr 1.17fr;
    gap: 72px;
    align-items: center
}

.capability-copy .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 34px
}

.capability-copy .back-link:hover {
    color: var(--purple)
}

.capability-copy h1 {
    font-size: clamp(50px, 5vw, 72px)
}

.capability-copy>p {
    color: var(--muted);
    font-size: 17px;
    max-width: 530px
}

.schedule-preview,
.fleet-preview {
    position: relative;
    background: white;
    border-radius: 15px;
    padding: 24px;
    box-shadow: 0 28px 70px rgba(28, 40, 38, .18);
    transform: rotate(1deg)
}

.preview-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px
}

.preview-top>div {
    display: flex;
    flex-direction: column
}

.preview-top small {
    color: #8b9491;
    font-size: 8px
}

.preview-top strong {
    font: 700 16px var(--display)
}

.preview-top button {
    border: 0;
    border-radius: 5px;
    background: var(--green);
    color: white;
    padding: 8px 10px;
    font: 700 8px var(--body)
}

.calendar-week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border: 1px solid #e8e9e5;
    border-radius: 7px;
    overflow: hidden
}

.calendar-week span {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 9px 3px;
    border-right: 1px solid #e8e9e5;
    color: #909895;
    font-size: 6px
}

.calendar-week span:last-child {
    border: 0
}

.calendar-week b {
    font-size: 11px;
    color: var(--ink)
}

.calendar-week .today {
    background: #eee9ff;
    color: var(--purple)
}

.calendar-week .today b {
    color: var(--purple)
}

.schedule-timeline {
    display: grid;
    grid-template-columns: 38px 1fr;
    min-height: 250px;
    margin-top: 13px
}

.time-labels {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 5px 0;
    color: #9da4a2;
    font-size: 6px
}

.timeline-content {
    position: relative;
    border-left: 1px solid #e2e4df;
    background: repeating-linear-gradient(to bottom, transparent 0, transparent 49px, #eceeea 50px);
    padding: 7px 10px
}

.schedule-item {
    position: absolute;
    left: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 9px;
    border-radius: 6px;
    padding: 10px
}

.schedule-item>i {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 5px;
    font-size: 9px
}

.schedule-item div {
    display: flex;
    flex-direction: column
}

.schedule-item strong {
    font-size: 8px
}

.schedule-item small {
    font-size: 6px;
    color: #74817d
}

.schedule-item.breakfast {
    top: 8px;
    background: #fff0e5
}

.schedule-item.breakfast>i {
    background: #ffd6b8;
    color: #b15f2a
}

.schedule-item.campaign {
    top: 75px;
    background: #e9e5ff
}

.schedule-item.campaign>i {
    background: #d3c9ff;
    color: var(--purple)
}

.schedule-item.welcome {
    top: 179px;
    background: #dcf5e8
}

.schedule-item.welcome>i {
    background: #bdeace;
    color: #247459
}

.now-line {
    position: absolute;
    left: -4px;
    right: 0;
    top: 131px;
    border-top: 1px solid #e45c69;
    color: #e45c69;
    font-size: 6px;
    text-align: right
}

.now-line i {
    position: absolute;
    left: -3px;
    top: -3px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e45c69
}

.preview-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 13px;
    border-top: 1px solid #e8e9e5;
    color: #89928f;
    font-size: 7px
}

.preview-footer i {
    color: #2a946d
}

.fleet-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-bottom: 19px
}

.fleet-metrics>div {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px;
    border: 1px solid #e8e9e5;
    border-radius: 7px
}

.fleet-metrics>div>i,
.online-dot {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    background: #fff0e7;
    color: #dc7a3e;
    font-size: 9px
}

.online-dot {
    background: #dff6e9
}

.online-dot:after {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2b9d73
}

.fleet-metrics p {
    margin: 0;
    color: #88918e;
    font-size: 6px
}

.fleet-metrics strong {
    display: block;
    color: var(--ink);
    font-size: 13px
}

.fleet-list-head,
.fleet-list article {
    display: grid;
    grid-template-columns: 1.4fr 1fr .7fr;
    align-items: center;
    gap: 10px
}

.fleet-list-head {
    padding: 7px 10px;
    color: #9aa19f;
    font-size: 6px;
    text-transform: uppercase
}

.fleet-list article {
    padding: 9px 10px;
    border-top: 1px solid #eceeea
}

.fleet-list article>div {
    display: flex;
    align-items: center;
    gap: 8px
}

.fleet-list article>div>i {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 5px;
    background: #eee9ff;
    color: var(--purple);
    font-size: 9px
}

.fleet-list p {
    margin: 0;
    display: flex;
    flex-direction: column
}

.fleet-list strong {
    font-size: 8px
}

.fleet-list small,
.fleet-list article>span {
    color: #89928f;
    font-size: 6px
}

.fleet-list b {
    font-size: 6px;
    font-weight: 700
}

.fleet-list b i {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    margin-right: 4px
}

.status-online {
    color: #258364
}

.status-online i {
    background: #32a77d
}

.status-warning {
    color: #cc7441
}

.status-warning i {
    background: #e78d55
}

.capability-tools {
    background: white
}

.capability-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.capability-feature-grid article {
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 12px
}

.capability-feature-grid article>span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #eee9ff;
    color: var(--purple);
    font-size: 19px
}

.management-features article>span {
    background: #dcf5e8;
    color: #247459
}

.capability-feature-grid h3 {
    font: 700 19px var(--display);
    margin: 20px 0 8px
}

.capability-feature-grid p {
    color: var(--muted);
    font-size: 13px;
    margin: 0
}

.capability-band {
    padding: 62px 0;
    color: white
}

.scheduling-band {
    background: var(--purple)
}

.management-band {
    background: var(--green)
}

.capability-band .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 25px
}

.capability-band .container>span {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, .13);
    color: var(--mint);
    font-size: 22px
}

.capability-band h2 {
    font-size: 30px;
    letter-spacing: -1.5px;
    margin: 0 0 5px
}

.capability-band p {
    color: rgba(255, 255, 255, .75);
    margin: 0;
    font-size: 13px
}

@media(max-width:900px) {
    .capability-hero-grid {
        grid-template-columns: 1fr
    }

    .capability-copy {
        text-align: center
    }

    .capability-copy>p {
        margin-inline: auto
    }

    .capability-copy .hero-actions {
        justify-content: center
    }

    .schedule-preview,
    .fleet-preview {
        width: min(680px, 100%);
        margin: auto;
        transform: none
    }

    .capability-feature-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:680px) {
    .capability-hero {
        padding: 55px 0 70px
    }

    .capability-hero-grid {
        gap: 50px
    }

    .capability-copy .hero-actions {
        flex-direction: column
    }

    .schedule-preview,
    .fleet-preview {
        padding: 16px
    }

    .calendar-week span:nth-child(6),
    .calendar-week span:nth-child(7) {
        display: none
    }

    .calendar-week {
        grid-template-columns: repeat(5, 1fr)
    }

    .fleet-list-head,
    .fleet-list article {
        grid-template-columns: 1.4fr .8fr
    }

    .fleet-list-head span:first-of-type,
    .fleet-list article>span {
        display: none
    }

    .capability-feature-grid {
        grid-template-columns: 1fr
    }

    .capability-band .container {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center
    }

    .capability-band h2 {
        font-size: 25px
    }
}

/* Creation page */
.creation-hero {
    background: var(--cream);
    padding: 88px 0 105px;
    overflow: hidden
}

.creation-hero-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 75px;
    align-items: center
}

.creation-hero-copy .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 34px
}

.creation-hero-copy .back-link:hover {
    color: var(--purple)
}

.creation-hero-copy h1 {
    font-size: clamp(50px, 5vw, 72px)
}

.creation-hero-copy>p {
    color: var(--muted);
    font-size: 17px;
    max-width: 540px
}

.creation-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 700
}

.editor-preview {
    position: relative;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(28, 40, 38, .18);
    transform: rotate(1deg)
}

.editor-bar {
    height: 48px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 17px;
    border-bottom: 1px solid #e8e9e5
}

.editor-bar>span {
    display: flex;
    gap: 5px
}

.editor-bar>span i {
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ddd
}

.editor-bar>span i:first-child {
    background: #ff8d7b
}

.editor-bar>span i:nth-child(2) {
    background: #ffc86a
}

.editor-bar>span i:last-child {
    background: #6fd39e
}

.editor-bar strong {
    font: 700 10px var(--display)
}

.editor-bar button {
    justify-self: end;
    border: 0;
    border-radius: 4px;
    background: var(--green);
    color: white;
    padding: 7px 12px;
    font: 700 8px var(--body)
}

.editor-body {
    display: grid;
    grid-template-columns: 94px 1fr;
    min-height: 330px
}

.editor-body aside {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 15px 9px;
    background: #f7f7f4;
    border-right: 1px solid #e5e6e2
}

.editor-tool {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px;
    border-radius: 5px;
    color: #7c8582;
    font-size: 8px;
    font-weight: 600
}

.editor-tool i {
    width: 12px;
    text-align: center
}

.editor-tool.active {
    background: #e9e5ff;
    color: var(--purple)
}

.editor-canvas {
    display: grid;
    place-items: center;
    padding: 28px;
    background: #eceeea
}

.canvas-design {
    width: 100%;
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8%;
    background: radial-gradient(circle at 75% 22%, #c7f2dc 0 14%, transparent 15%), linear-gradient(135deg, #192f2b 0 55%, #684ce4 55%);
    color: white;
    border-radius: 3px;
    box-shadow: 0 10px 25px rgba(22, 40, 36, .18)
}

.canvas-design small {
    font: 700 7px var(--display);
    letter-spacing: 2px;
    color: var(--mint)
}

.canvas-design h2 {
    font-size: clamp(20px, 2.4vw, 34px);
    letter-spacing: -1.5px;
    margin: 7px 0
}

.canvas-design h2 em {
    color: #d9d0ff
}

.canvas-design p {
    font-size: 8px;
    margin: 0 0 12px;
    color: #c8d5d2
}

.canvas-design>span {
    align-self: flex-start;
    background: var(--mint);
    color: var(--green);
    padding: 6px 9px;
    border-radius: 3px;
    font-size: 6px;
    font-weight: 800
}

.editor-status {
    position: absolute;
    right: 16px;
    bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    padding: 7px 10px;
    border-radius: 5px;
    box-shadow: 0 5px 14px rgba(20, 40, 35, .12);
    color: #66807a;
    font-size: 7px
}

.editor-status i {
    color: #2a9a70
}

.creation-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.creation-feature-grid article {
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 12px
}

.creation-feature-grid article>span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #eee9ff;
    color: var(--purple);
    font-size: 19px
}

.creation-feature-grid h3 {
    font: 700 19px var(--display);
    margin: 20px 0 8px
}

.creation-feature-grid p {
    color: var(--muted);
    font-size: 13px;
    margin: 0
}

.creation-steps {
    background: var(--green);
    color: white
}

.creation-steps-heading {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px
}

.creation-steps-heading h2 {
    font-size: clamp(42px, 4.6vw, 62px)
}

.creation-steps-heading h2 em {
    color: var(--mint)
}

.creation-steps ol {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin: 0;
    padding: 1px;
    list-style: none;
    background: rgba(255, 255, 255, .16)
}

.creation-steps li {
    position: relative;
    display: grid;
    grid-template-columns: 42px 48px 1fr;
    gap: 17px;
    align-items: start;
    background: var(--green);
    padding: 30px
}

.creation-steps li>span {
    color: var(--mint);
    font: 700 11px var(--display)
}

.creation-steps li>i {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: rgba(187, 244, 214, .12);
    color: var(--mint);
    font-size: 17px
}

.creation-steps h3 {
    font: 700 17px var(--display);
    margin: 0 0 7px
}

.creation-steps p {
    color: #b9cdc8;
    font-size: 12px;
    margin: 0
}

.creation-cta {
    background: var(--purple);
    color: white;
    padding: 60px 0
}

.creation-cta .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 25px
}

.creation-cta-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, .13);
    color: var(--mint);
    font-size: 22px
}

.creation-cta h2 {
    font-size: 30px;
    letter-spacing: -1.5px;
    margin: 0 0 5px
}

.creation-cta p {
    color: #ded8ff;
    margin: 0;
    font-size: 13px
}

@media(max-width:900px) {
    .creation-hero-grid {
        grid-template-columns: 1fr
    }

    .creation-hero-copy {
        text-align: center
    }

    .creation-hero-copy>p {
        margin-inline: auto
    }

    .creation-hero-copy .hero-actions {
        justify-content: center
    }

    .editor-preview {
        width: min(680px, 100%);
        margin: auto;
        transform: none
    }

    .creation-feature-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:680px) {
    .creation-hero {
        padding: 55px 0 70px
    }

    .creation-hero-grid {
        gap: 50px
    }

    .creation-hero-copy .hero-actions {
        flex-direction: column
    }

    .editor-body {
        grid-template-columns: 62px 1fr;
        min-height: 245px
    }

    .editor-tool {
        justify-content: center
    }

    .editor-tool {
        font-size: 0
    }

    .editor-tool i {
        font-size: 11px
    }

    .editor-canvas {
        padding: 14px
    }

    .creation-feature-grid,
    .creation-steps ol {
        grid-template-columns: 1fr
    }

    .creation-steps li {
        grid-template-columns: 32px 40px 1fr;
        padding: 23px 17px
    }

    .creation-steps li>i {
        width: 39px;
        height: 39px
    }

    .creation-cta .container {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center
    }

    .creation-cta h2 {
        font-size: 25px
    }
}

/* FAQ */
.faq-section {
    background: var(--cream)
}

.faq-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
    align-items: start
}

.faq-intro {
    position: sticky;
    top: 125px
}

.faq-intro h2 {
    font-size: clamp(42px, 4.4vw, 60px)
}

.faq-intro>p {
    color: var(--muted);
    max-width: 430px;
    margin-bottom: 28px
}

.faq-list {
    border-top: 1px solid #d8d8d1
}

.faq-list details {
    border-bottom: 1px solid #d8d8d1
}

.faq-list summary {
    position: relative;
    list-style: none;
    padding: 24px 52px 24px 0;
    font: 700 17px var(--display);
    cursor: pointer
}

.faq-list summary::-webkit-details-marker {
    display: none
}

.faq-list summary:after {
    content: '+';
    position: absolute;
    right: 5px;
    top: 50%;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    border: 1px solid #c9cbc5;
    border-radius: 50%;
    color: var(--purple);
    font: 500 20px var(--body);
    transition: transform .25s, background .25s
}

.faq-list details[open] summary:after {
    content: '−';
    background: var(--purple);
    border-color: var(--purple);
    color: white;
    transform: translateY(-50%) rotate(180deg)
}

.faq-list details p {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
    padding: 0 55px 24px 0;
    max-width: 680px
}

.faq-list summary:focus-visible {
    outline: 2px solid var(--purple);
    outline-offset: 5px;
    border-radius: 3px
}

@media(max-width:900px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .faq-intro {
        position: static;
        text-align: center
    }

    .faq-intro>p {
        margin-inline: auto
    }

    .faq-list {
        text-align: left
    }
}

@media(max-width:680px) {
    .faq-list summary {
        font-size: 15px;
        padding-block: 20px
    }

    .faq-list details p {
        padding-right: 15px
    }
}

/* Font Awesome icon styling */
.button i,
.feature-grid a i {
    font-size: .86em
}

.browser-label>i {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(187, 244, 214, .14);
    box-shadow: none;
    color: var(--mint);
    font-size: 15px
}

.browser-list i {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: white;
    font-size: 17px
}

.solution-grid>article>span.use-case-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #eee9ff;
    color: var(--purple);
    font-size: 20px
}

.solution-grid li:before {
    content: '\f00c';
    top: 5px;
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    font-family: 'Font Awesome 6 Free';
    font-size: 9px;
    font-weight: 900
}

.price-card li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-size: 11px;
    font-weight: 900
}

.faq-list summary:after {
    content: '\2b';
    font-family: 'Font Awesome 6 Free';
    font-size: 13px;
    font-weight: 900
}

.faq-list details[open] summary:after {
    content: '\f068';
    font-family: 'Font Awesome 6 Free';
    font-size: 12px;
    font-weight: 900
}

/* Why choose us */
.why-us {
    background: #fff
}

.why-us-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center
}

.why-us-intro h2 {
    font-size: clamp(42px, 4.6vw, 62px)
}

.why-us-intro>p {
    color: var(--muted);
    max-width: 480px
}

.why-us-points {
    list-style: none;
    padding: 0;
    margin: 28px 0 34px
}

.why-us-points li {
    position: relative;
    padding: 6px 0 6px 30px;
    color: #424c49;
    font-size: 14px;
    font-weight: 600
}

.why-us-points li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 8px;
    width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #dff6e9;
    color: #247a5d;
    font-size: 9px
}

.why-us-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.why-us-cards article {
    background: var(--cream);
    border: 1px solid #e5e3dc;
    border-radius: 12px;
    padding: 30px;
    transition: transform .2s, box-shadow .2s
}

.why-us-cards article:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(28, 42, 38, .09)
}

.why-us-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #eee9ff;
    color: var(--purple);
    font-size: 20px
}

.why-us-cards article:nth-child(2) .why-us-icon {
    background: #dcf6e8;
    color: #26765f
}

.why-us-cards article:nth-child(3) .why-us-icon {
    background: #fff0e7;
    color: #e07f3f
}

.why-us-cards article:nth-child(4) .why-us-icon {
    background: #e3f0ff;
    color: #2a72c4
}

.why-us-cards h3 {
    font: 700 19px var(--display);
    margin: 20px 0 8px
}

.why-us-cards p {
    color: var(--muted);
    font-size: 13px;
    margin: 0
}

.why-us-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 65px;
    padding-top: 45px;
    border-top: 1px solid var(--line)
}

.why-us-stats>div {
    text-align: center
}

.why-us-stats strong {
    display: block;
    color: var(--green);
    font: 800 42px var(--display);
    letter-spacing: -2px
}

.why-us-stats span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600
}

@media(max-width:900px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 45px
    }

    .why-us-intro {
        max-width: 640px;
        margin-inline: auto;
        text-align: center
    }

    .why-us-intro>p {
        margin-inline: auto
    }

    .why-us-points {
        max-width: 430px;
        margin: 28px auto 34px;
        text-align: left
    }

    .why-us-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px
    }
}

@media(max-width:680px) {
    .why-us-intro {
        text-align: left
    }

    .why-us-intro>p {
        margin-inline: 0
    }

    .why-us-points {
        margin-inline: 0
    }

    .why-us-cards {
        grid-template-columns: 1fr
    }

    .why-us-stats {
        margin-top: 48px;
        padding-top: 36px
    }

    .why-us-stats strong {
        font-size: 33px
    }
}

/* Contact form */
.contact-section {
    background: #fff
}

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
    align-items: start
}

.contact-copy {
    position: sticky;
    top: 125px
}

.contact-copy h2 {
    font-size: clamp(42px, 4.4vw, 60px)
}

.contact-copy>p {
    color: var(--muted);
    max-width: 460px
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 32px
}

.contact-email>span {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: #eee9ff;
    color: var(--purple);
    display: grid;
    place-items: center
}

.contact-email div {
    display: flex;
    flex-direction: column
}

.contact-email small {
    color: var(--muted);
    font-size: 11px
}

.contact-email strong {
    font-size: 14px
}

.contact-card {
    background: var(--cream);
    padding: 38px;
    border-radius: 14px;
    border: 1px solid #e5e3dc
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.form-field {
    margin-bottom: 19px
}

.form-field label {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 700
}

.form-field label span {
    color: var(--purple)
}

.form-field input,
.form-field textarea {
    display: block;
    width: 100%;
    border: 1px solid #d8d9d2;
    border-radius: 7px;
    background: #fff;
    padding: 12px 13px;
    color: var(--ink);
    font: 14px var(--body);
    outline: none;
    transition: border-color .2s, box-shadow .2s
}

.form-field textarea {
    resize: vertical;
    min-height: 135px
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(117, 89, 238, .12)
}

.form-field .is-invalid {
    border-color: #c74747
}

.field-error {
    display: block;
    color: #b53232;
    font-size: 11px;
    margin-top: 5px
}

.contact-submit {
    border: 0;
    cursor: pointer;
    font: 700 14px var(--body);
    width: 100%
}

.form-privacy {
    text-align: center;
    color: #858d8a;
    font-size: 10px;
    margin: 13px 0 0
}

.form-alert {
    padding: 12px 14px;
    border-radius: 7px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600
}

.form-alert.success {
    background: #dff6e9;
    color: #1f674f
}

.form-alert.error {
    background: #fde7e7;
    color: #9b2929
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important
}

@media(max-width:900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px
    }

    .contact-copy {
        position: static;
        text-align: center
    }

    .contact-copy>p {
        margin-inline: auto
    }

    .contact-email {
        justify-content: center
    }
}

@media(max-width:680px) {
    .contact-card {
        padding: 25px 20px
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0
    }
}

/* Legal pages (terms & privacy) */
.legal-hero {
    background: var(--cream);
    padding: 80px 0 90px;
    overflow: hidden
}

.legal-hero h1 {
    font-size: clamp(48px, 5vw, 70px);
    max-width: 720px
}

.legal-hero p {
    color: var(--muted);
    font-size: 17px;
    max-width: 610px
}

.legal-hero .legal-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 16px 0 0;
    padding: 9px 15px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    color: var(--ink);
    font-size: 12px;
    font-weight: 700
}

.legal-updated i {
    color: var(--purple);
    font-size: 11px
}

.legal-body {
    background: #fff;
    padding-top: 80px
}

.legal-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 80px;
    align-items: start
}

.legal-toc {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--cream)
}

.legal-toc strong {
    font: 700 13px var(--display);
    margin-bottom: 12px
}

.legal-toc a {
    padding: 5px 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    transition: color .2s
}

.legal-toc a:hover {
    color: var(--purple)
}

.legal-sections {
    max-width: 760px
}

.legal-section {
    scroll-margin-top: 110px;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--line)
}

.legal-section:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0
}

.legal-section h2 {
    font-size: 26px;
    letter-spacing: -1px;
    margin: 0 0 16px
}

.legal-section p {
    color: #49524f;
    font-size: 15px;
    margin: 0 0 16px
}

.legal-section p:last-child {
    margin-bottom: 0
}

.legal-section a {
    color: var(--purple);
    font-weight: 600;
    text-decoration: underline
}

.legal-section ul {
    margin: 0 0 16px;
    padding-left: 20px;
    color: #49524f;
    font-size: 15px
}

.legal-section li {
    margin: 7px 0
}

.legal-section strong {
    color: var(--ink)
}

.legal-note {
    margin-top: 45px;
    padding: 22px 26px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--cream)
}

.legal-note p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    color: var(--muted);
    font-size: 13px
}

.legal-note i {
    margin-top: 3px;
    color: var(--purple)
}

@media(max-width:900px) {
    .legal-content {
        grid-template-columns: 1fr;
        gap: 45px
    }

    .legal-toc {
        position: static
    }
}

@media(max-width:680px) {
    .legal-hero {
        padding: 55px 0 65px
    }

    .legal-body {
        padding-top: 60px
    }

    .legal-section {
        padding-bottom: 30px;
        margin-bottom: 30px
    }

    .legal-section h2 {
        font-size: 22px
    }
}

/* About page */
.about-hero {
    background: var(--cream);
    padding: 88px 0 95px;
    overflow: hidden
}

.about-hero h1 {
    font-size: clamp(50px, 5vw, 72px);
    max-width: 640px
}

.about-hero p {
    color: var(--muted);
    font-size: 17px;
    max-width: 560px
}

.about-story {
    background: #fff
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: start
}

.about-story-copy h2 {
    font-size: clamp(38px, 4.2vw, 56px)
}

.about-story-copy>p {
    color: var(--muted);
    font-size: 15px
}

.about-story-points {
    background: var(--cream);
    border: 1px solid #e5e3dc;
    border-radius: 14px;
    padding: 36px
}

.about-story-points .why-us-points {
    margin: 0 0 26px
}

.about-story-points .device-note {
    margin-top: 0;
    justify-content: flex-start
}

.about-values {
    background: var(--cream)
}

.about-stats {
    margin-top: 0;
    padding-top: 0;
    border-top: 0
}

@media(max-width:900px) {
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 45px
    }
}

@media(max-width:680px) {
    .about-hero {
        padding: 55px 0 65px
    }

    .about-story-points {
        padding: 26px 20px
    }
}

/* Support page */
.support-hero {
    background: var(--cream);
    padding: 88px 0 95px;
    overflow: hidden
}

.support-hero h1 {
    font-size: clamp(50px, 5vw, 72px)
}

.support-hero p {
    color: var(--muted);
    font-size: 17px;
    max-width: 560px
}

.support-hero-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px
}

.support-channel {
    display: flex;
    align-items: center;
    gap: 13px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 14px 18px;
    transition: transform .2s, box-shadow .2s, border-color .2s
}

.support-channel:hover {
    transform: translateY(-3px);
    border-color: #cfcabd;
    box-shadow: 0 12px 26px rgba(28, 42, 38, .1)
}

.support-channel>span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: #eee9ff;
    color: var(--purple);
    font-size: 16px
}

.support-channel div {
    display: flex;
    flex-direction: column
}

.support-channel small {
    color: var(--muted);
    font-size: 11px
}

.support-channel strong {
    font-size: 14px
}

.support-topics {
    background: #fff
}

.support-topics .solution-grid a {
    color: var(--purple);
    font-weight: 700;
    text-decoration: underline
}

.support-promise {
    background: #fff;
    padding-top: 0
}

.support-promise .why-us-stats {
    margin-top: 0
}

@media(max-width:680px) {
    .support-hero {
        padding: 55px 0 65px
    }

    .support-hero-channels {
        flex-direction: column
    }

    .support-channel {
        width: 100%
    }
}

/* Contact page */
.contact-hero {
    background: var(--cream);
    padding: 88px 0 95px;
    overflow: hidden
}

.contact-hero h1 {
    font-size: clamp(50px, 5vw, 72px)
}

.contact-hero p {
    color: var(--muted);
    font-size: 17px;
    max-width: 560px
}

.contact-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px
}

.contact-channel {
    display: flex;
    align-items: center;
    gap: 13px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 14px 18px;
    transition: transform .2s, box-shadow .2s, border-color .2s
}

.contact-channel:hover {
    transform: translateY(-3px);
    border-color: #cfcabd;
    box-shadow: 0 12px 26px rgba(28, 42, 38, .1)
}

.contact-channel>span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: #eee9ff;
    color: var(--purple);
    font-size: 16px
}

.contact-channel-whatsapp>span {
    background: #e7f8ed;
    color: #128c4a
}

.contact-channel div {
    display: flex;
    flex-direction: column
}

.contact-channel small {
    color: var(--muted);
    font-size: 11px
}

.contact-channel strong {
    font-size: 14px
}

.contact-next-steps {
    margin-top: 32px
}

@media(max-width:680px) {
    .contact-hero {
        padding: 55px 0 65px
    }

    .contact-channels {
        flex-direction: column
    }

    .contact-channel {
        width: 100%
    }
}

/* Header dropdown navigation */
.site-nav {
    align-items: center
}

.nav-dropdown {
    position: relative;
    padding: 32px 0
}

.nav-drop-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    background: none;
    padding: 0;
    color: var(--ink);
    font: 600 14px var(--body);
    cursor: pointer;
    transition: color .2s
}

.nav-drop-toggle i {
    font-size: 9px;
    transition: transform .25s
}

.nav-dropdown:hover .nav-drop-toggle,
.nav-dropdown:focus-within .nav-drop-toggle,
.nav-dropdown.is-open .nav-drop-toggle {
    color: var(--purple)
}

.nav-dropdown:hover .nav-drop-toggle i,
.nav-dropdown:focus-within .nav-drop-toggle i,
.nav-dropdown.is-open .nav-drop-toggle i {
    transform: rotate(180deg)
}

.nav-drop-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 290px;
    padding: 9px;
    background: #fff;
    border: 1px solid #ecece7;
    border-radius: 12px;
    box-shadow: 0 22px 48px rgba(28, 42, 38, .14);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity .2s, transform .2s, visibility .2s;
    z-index: 30
}

.nav-dropdown:hover .nav-drop-menu,
.nav-dropdown:focus-within .nav-drop-menu,
.nav-dropdown.is-open .nav-drop-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0)
}

.nav-drop-menu a {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 10px 11px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    transition: background .15s, color .15s
}

.nav-drop-menu a:hover {
    background: var(--cream);
    color: var(--purple)
}

.nav-drop-menu a i {
    width: 17px;
    margin-top: 3px;
    text-align: center;
    color: var(--purple);
    font-size: 12px
}

.nav-drop-menu a div {
    display: flex;
    flex-direction: column;
    gap: 1px
}

.nav-drop-menu a small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.45
}

@media(max-width:680px) {
    .site-nav {
        align-items: stretch
    }

    .nav-dropdown {
        padding: 0
    }

    .nav-drop-toggle {
        width: 100%;
        justify-content: space-between;
        cursor: pointer
    }

    .nav-drop-toggle i {
        display: none
    }

    .nav-drop-menu {
        position: static;
        min-width: 0;
        padding: 2px 0 0;
        transform: translateX(0)!important;
        opacity: 1;
        visibility: visible;
        border: 0;
        box-shadow: none;
        border-radius: 0;
        display: none;
        flex-direction: column;
        gap: 2px;
        transition: none
    }

    .nav-dropdown.is-open .nav-drop-menu {
        display: flex
    }

    .nav-drop-menu a {
        align-items: center;
        padding: 8px 11px;
        font-size: 13px;
        color: var(--muted)
    }

    .nav-drop-menu a i {
        margin-top: 0
    }

    .nav-drop-menu a small {
        display: none
    }
}

/* 404 page */
.not-found-section {
    min-height: calc(100vh - 84px);
    padding: 100px 0;
    background: var(--cream);
    display: grid;
    place-items: center;
    overflow: hidden
}

.not-found-content {
    position: relative;
    text-align: center
}

.not-found-code {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -54%);
    color: rgba(117, 89, 238, .07);
    font: 800 clamp(180px, 30vw, 390px)/.75 var(--display);
    letter-spacing: -22px;
    user-select: none;
    white-space: nowrap
}

.not-found-content .eyebrow,
.not-found-content h1,
.not-found-content p,
.not-found-actions {
    position: relative
}

.not-found-content h1 {
    font-size: clamp(50px, 6vw, 78px)
}

.not-found-content p {
    max-width: 560px;
    margin: 0 auto 32px;
    color: var(--muted);
    font-size: 17px
}

.not-found-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px
}

.not-found-link {
    color: var(--green);
    font-weight: 700;
    border-bottom: 1px solid currentColor
}

@media(max-width:680px) {
    .not-found-section {
        padding: 70px 0
    }

    .not-found-code {
        letter-spacing: -12px
    }

    .not-found-actions {
        flex-direction: column;
        gap: 18px
    }
}

/* Blog */
.blog-language-switcher {
    display: flex;
    width: max-content;
    gap: 4px;
    margin-bottom: 24px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .72)
}

.blog-language-switcher a {
    padding: 6px 12px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700
}

.blog-language-switcher a[aria-current="page"] {
    background: var(--green);
    color: #fff
}

.blog-hero {
    padding: 88px 0 95px;
    background: var(--cream)
}

.blog-hero h1 {
    font-size: clamp(50px, 5vw, 72px)
}

.blog-hero p {
    max-width: 610px;
    color: var(--muted);
    font-size: 17px
}

.blog-section {
    background: #fff
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.blog-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    transition: transform .2s, box-shadow .2s
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 38px rgba(28, 42, 38, .1)
}

.blog-card-visual {
    min-height: 210px;
    display: grid;
    place-items: center;
    background: var(--cream)
}

.blog-card:nth-child(2) .blog-card-visual {
    background: #eee9ff
}

.blog-card:nth-child(3) .blog-card-visual {
    background: #e8f6ef
}

.blog-card-visual span {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: var(--green);
    color: #fff;
    font-size: 30px;
    transform: rotate(-4deg)
}

.blog-card-body {
    padding: 28px
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 18px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600
}

.blog-meta span:first-child {
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: .8px
}

.blog-card h2 {
    margin: 14px 0 13px;
    font-size: 25px;
    letter-spacing: -1.3px;
    line-height: 1.22
}

.blog-card h2 a:hover {
    color: var(--purple)
}

.blog-card-body>p {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 14px
}

.blog-read-link,
.blog-back-link {
    color: var(--green);
    font-size: 13px;
    font-weight: 700
}

.blog-read-link i {
    margin-left: 7px;
    transition: transform .2s
}

.blog-read-link:hover i {
    transform: translateX(4px)
}

.blog-post-header {
    padding: 72px 0 78px;
    background: var(--cream)
}

.blog-post-heading {
    max-width: 880px
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px
}

.blog-post-heading h1 {
    max-width: 850px;
    font-size: clamp(44px, 5.5vw, 70px)
}

.blog-post-heading>p {
    max-width: 690px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 18px
}

.blog-post-layout {
    display: grid;
    grid-template-columns: 150px minmax(0, 720px);
    justify-content: center;
    gap: 55px;
    align-items: start
}

.blog-post-icon {
    width: 110px;
    height: 110px;
    position: sticky;
    top: 125px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: var(--green);
    color: #fff;
    font-size: 38px
}

.blog-post-content {
    color: #35413f
}

.blog-post-intro {
    margin: 0 0 44px;
    color: var(--ink);
    font-size: 21px;
    line-height: 1.65
}

.blog-post-content section {
    margin-bottom: 38px
}

.blog-post-content section h2 {
    margin: 0 0 14px;
    color: var(--ink);
    font-size: 30px;
    letter-spacing: -1.5px
}

.blog-post-content section p {
    margin: 0;
    font-size: 17px;
    line-height: 1.8
}

.blog-post-cta {
    margin-top: 58px;
    padding: 34px;
    border-radius: 14px;
    background: var(--cream)
}

.blog-post-cta h2 {
    margin: 0 0 10px;
    font-size: 30px;
    letter-spacing: -1.5px
}

.blog-post-cta p {
    margin: 0 0 22px;
    color: var(--muted)
}

@media(max-width:900px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .blog-post-layout {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .blog-post-icon {
        position: static;
        width: 76px;
        height: 76px;
        border-radius: 18px;
        font-size: 28px
    }
}

@media(max-width:680px) {
    .blog-hero {
        padding: 55px 0 65px
    }

    .blog-grid {
        grid-template-columns: 1fr
    }

    .blog-card-visual {
        min-height: 175px
    }

    .blog-post-header {
        padding: 48px 0 55px
    }

    .blog-post-heading h1 {
        font-size: 42px
    }

    .blog-post-intro {
        font-size: 18px
    }

    .blog-post-cta {
        padding: 26px
    }
}
