:root {
    --ink: #211330;
    --ink-soft: #554765;
    --purple-950: #1a0c2a;
    --purple-900: #29113f;
    --purple-800: #40145f;
    --purple-700: #6d28d9;
    --purple-600: #7c3aed;
    --purple-500: #9b5cff;
    --pink-500: #ec4899;
    --pink-400: #f472b6;
    --lavender-100: #eee5ff;
    --lavender-50: #f9f6ff;
    --white: #fff;
    --line: rgba(64, 20, 95, .12);
    --line-inverse: rgba(255, 255, 255, .14);
    --shadow-sm: 0 12px 32px rgba(48, 19, 73, .08);
    --shadow-lg: 0 28px 90px rgba(48, 19, 73, .16);
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 36px;
    --success-bg: #eafbf1;
    --success-line: #a7e8bd;
    --success-ink: #17663a;
    --error-bg: #fff0f2;
    --error-line: #f2b5bd;
    --error-ink: #9b2635;
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink);
    background:
        radial-gradient(circle at 7% 2%, rgba(155, 92, 255, .16), transparent 25rem),
        radial-gradient(circle at 93% 20%, rgba(244, 114, 182, .14), transparent 28rem),
        #f8f5fc;
    font-family: Inter, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.modal-open {
    overflow: hidden;
}

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

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

button,
input {
    font: inherit;
}

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

::selection {
    color: var(--white);
    background: var(--purple-700);
}

.shell {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
}

.site-top {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
    min-height: 104px;
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 13px;
    min-width: max-content;
}

.brand img {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 15px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.brand strong,
.brand span {
    display: block;
}

.brand strong {
    font-size: 1rem;
    letter-spacing: -.035em;
}

.brand span {
    margin-top: 3px;
    color: #746681;
    font-size: .82rem;
}

.site-nav {
    position: fixed;
    top: 26px;
    left: 50%;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, .86);
    border-radius: 999px;
    background: rgba(255, 255, 255, .7);
    box-shadow: 0 10px 30px rgba(48, 19, 73, .06);
    backdrop-filter: blur(18px);
    opacity: 1;
    transform: translateX(-50%);
    transition: opacity .28s ease, background .28s ease, box-shadow .28s ease;
}

.site-nav.is-scrolled {
    opacity: .6;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 14px 36px rgba(48, 19, 73, .12);
}

.site-nav:hover,
.site-nav:focus-within {
    opacity: 1;
}

.site-nav a {
    padding: 9px 14px;
    border-radius: 999px;
    color: #695a75;
    font-size: .82rem;
    font-weight: 700;
    transition: color .2s ease, background .2s ease;
}

.site-nav a:hover {
    color: var(--purple-800);
    background: var(--lavender-100);
}

.site-nav a.is-active,
.site-nav a.is-active:hover {
    color: var(--white);
    background: linear-gradient(120deg, var(--purple-600), var(--pink-500));
    box-shadow: 0 8px 20px rgba(109, 40, 217, .22);
}

.nav-actions {
    position: absolute;
    top: 26px;
    right: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 10px;
}

.btn,
.ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn {
    color: var(--white);
    background: linear-gradient(120deg, var(--purple-700), var(--purple-500) 58%, var(--pink-500));
    box-shadow: 0 14px 30px rgba(109, 40, 217, .25);
}

.ghost {
    color: var(--ink);
    background: rgba(255, 255, 255, .84);
    border-color: rgba(64, 20, 95, .1);
    box-shadow: 0 8px 24px rgba(48, 19, 73, .05);
}

.btn:hover,
.ghost:hover {
    transform: translateY(-2px);
}

.btn:focus-visible,
.ghost:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 3px solid rgba(244, 114, 182, .55);
    outline-offset: 3px;
}

.btn:disabled {
    cursor: wait;
    opacity: .68;
    transform: none;
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: 670px;
    overflow: hidden;
    display: grid;
    place-items: center;
    padding: 96px 7vw 86px;
    border-radius: var(--radius-lg);
    color: var(--white);
    text-align: center;
    background:
        radial-gradient(circle at 14% 20%, rgba(155, 92, 255, .35), transparent 30%),
        radial-gradient(circle at 85% 75%, rgba(236, 72, 153, .28), transparent 28%),
        linear-gradient(138deg, var(--purple-950) 0%, #32134d 52%, #581c6e 100%);
    box-shadow: var(--shadow-lg);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(4px);
}

.hero::before {
    top: -180px;
    right: -110px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 0 0 60px rgba(255, 255, 255, .025), 0 0 0 120px rgba(255, 255, 255, .018);
}

.hero::after {
    bottom: -170px;
    left: -100px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(244, 114, 182, .22), transparent 68%);
}

.hero .eyebrow,
.section-title .kicker,
.cta-band .kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--purple-700);
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero .eyebrow {
    padding: 9px 13px;
    color: #f7e9ff;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
}

.hero .eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #f8a8d0;
    box-shadow: 0 0 0 5px rgba(248, 168, 208, .12);
}

h1 {
    max-width: 950px;
    margin: 24px auto 22px;
    font-size: clamp(3.5rem, 7.7vw, 7rem);
    line-height: .9;
    letter-spacing: -.085em;
    text-wrap: balance;
}

h1 em {
    color: #e6c5ff;
    font-style: normal;
}

.hero-copy {
    max-width: 770px;
    margin: 0 auto;
}

.hero-copy p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: clamp(1rem, 1.5vw, 1.16rem);
    line-height: 1.75;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    color: rgba(255, 255, 255, .82);
    background: rgba(255, 255, 255, .055);
    font-size: .82rem;
    font-weight: 700;
}

.hero-points span::before {
    content: "✓";
    color: #f4a9d0;
    font-weight: 900;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.hero .btn {
    min-height: 54px;
    padding-inline: 26px;
}

.hero .ghost {
    min-height: 54px;
    color: var(--white);
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .16);
    box-shadow: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.simple-signup-hero {
    position: relative;
    isolation: isolate;
    min-height: 570px;
    overflow: hidden;
    display: grid;
    align-content: center;
    justify-items: center;
    padding: 72px clamp(22px, 6vw, 84px);
    border: 1px solid rgba(255, 255, 255, .92);
    border-radius: var(--radius-lg);
    text-align: center;
    background:
        radial-gradient(circle at 8% 10%, rgba(155, 92, 255, .16), transparent 28rem),
        radial-gradient(circle at 92% 82%, rgba(244, 114, 182, .15), transparent 26rem),
        rgba(255, 255, 255, .76);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
}

.simple-signup-hero::before,
.simple-signup-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}

.simple-signup-hero::before {
    top: -170px;
    right: -120px;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(124, 58, 237, .09);
    box-shadow: 0 0 0 54px rgba(124, 58, 237, .025);
}

.simple-signup-hero::after {
    bottom: -180px;
    left: -110px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(236, 72, 153, .12), transparent 68%);
}

.simple-hero-brand {
    display: grid;
    justify-items: center;
    gap: 12px;
}

.simple-hero-brand img {
    width: 82px;
    height: 82px;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 23px;
    background: var(--white);
    box-shadow: 0 18px 42px rgba(76, 29, 149, .14);
}

.simple-hero-brand strong {
    font-size: 1.08rem;
    letter-spacing: -.035em;
}

.simple-signup-hero h1 {
    max-width: 980px;
    margin: 24px auto 34px;
    color: var(--ink);
    font-size: clamp(3.1rem, 6.7vw, 6.4rem);
    line-height: .9;
    letter-spacing: -.075em;
}

.hero-email-form {
    width: min(100%, 1020px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 9px;
    padding: 9px;
    border: 1px solid rgba(64, 20, 95, .12);
    border-radius: 24px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 22px 60px rgba(48, 19, 73, .12);
}

.hero-email-form input {
    width: 100%;
    min-width: 0;
    min-height: 62px;
    padding: 0 22px;
    border: 0;
    border-radius: 17px;
    color: var(--ink);
    background: transparent;
    font-size: .98rem;
}

.hero-email-form input::placeholder {
    color: #8b7c96;
}

.hero-email-form input:focus {
    outline: none;
    background: var(--lavender-50);
    box-shadow: inset 0 0 0 2px rgba(124, 58, 237, .14);
}

.hero-email-form .btn {
    min-width: 205px;
    min-height: 62px;
    border-radius: 17px;
}

.hero-form-isolation {
    width: min(100%, 1020px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 11px;
    margin-top: 17px;
    color: #74627f;
    font-size: .73rem;
}

.hero-form-isolation-badge {
    display: inline-flex;
    align-items: center;
    min-height: 29px;
    padding: 0 10px;
    border: 1px solid rgba(124, 58, 237, .16);
    border-radius: 999px;
    color: #5f2293;
    background: #f0e6ff;
    font-size: .61rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-form-isolation strong {
    color: #352341;
    font-size: .79rem;
}

.hero-form-routes {
    width: min(100%, 820px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.hero-form-routes > span {
    min-width: 0;
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 7px 10px 7px 13px;
    border: 1px solid rgba(64, 20, 95, .09);
    border-radius: 14px;
    color: #6e5e79;
    background: rgba(255, 255, 255, .75);
    box-shadow: 0 8px 20px rgba(48, 19, 73, .05);
    font-size: .66rem;
    text-align: left;
}

.hero-form-routes b {
    color: #3f2c4b;
}

.hero-form-routes i {
    color: #c43a94;
    font-style: normal;
    font-weight: 900;
}

.hero-form-routes em {
    min-width: 0;
    overflow: hidden;
    color: #6d28d9;
    font-style: normal;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero-form-routes small {
    padding: 5px 7px;
    border-radius: 999px;
    color: #7a3aa5;
    background: #f4ebff;
    font-size: .54rem;
    font-weight: 850;
    white-space: nowrap;
}

.simple-signup-hero > .alert {
    width: min(100%, 1020px);
    margin: 0 0 14px;
    text-align: left;
}

.existing-account {
    margin: 19px 0 0;
    color: #776886;
    font-size: .86rem;
}

.existing-account button {
    padding: 3px 2px;
    border: 0;
    color: var(--purple-700);
    background: transparent;
    font-weight: 900;
    text-decoration: underline;
    text-decoration-color: rgba(109, 40, 217, .3);
    text-underline-offset: 4px;
    cursor: pointer;
}

.existing-account button:hover {
    color: var(--pink-500);
}

.existing-account button:focus-visible {
    outline: 3px solid rgba(244, 114, 182, .55);
    outline-offset: 3px;
}

.signup-success[hidden] {
    display: none;
}

.signup-success {
    width: 100%;
    max-width: 820px;
    display: grid;
    justify-items: center;
}

.signup-success-mark {
    flex: 0 0 68px;
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    margin-bottom: 19px;
    border-radius: 21px;
    color: var(--white);
    background: linear-gradient(135deg, var(--purple-700), var(--pink-500));
    box-shadow: 0 18px 38px rgba(109, 40, 217, .23);
    font-size: 1.7rem;
    font-weight: 900;
}

.signup-success-kicker {
    color: var(--purple-700);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.signup-success h2 {
    max-width: 760px;
    margin: 14px auto 16px;
    font-size: clamp(2.7rem, 5vw, 5.2rem);
    line-height: .94;
    letter-spacing: -.065em;
}

.signup-success h2:focus {
    outline: none;
}

.signup-success p {
    max-width: 590px;
    margin: 0 auto;
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.7;
}

.signup-success .btn {
    min-width: 210px;
    min-height: 56px;
    margin-top: 28px;
}

.simple-signup-hero.signup-complete {
    min-height: 570px;
    display: grid;
    align-content: center;
    justify-items: center;
    padding: 56px clamp(22px, 6vw, 84px);
}

.simple-signup-hero.signup-complete .signup-success {
    position: static;
    width: 100%;
    max-width: 820px;
    display: grid;
    justify-items: center;
    margin: 0;
    padding: 0;
    transform: none;
}

@keyframes signup-success-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: none; }
}

.featured,
.section {
    padding-top: 112px;
}

.signup-hero {
    padding-top: 48px;
}

.section-title {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(320px, .65fr);
    align-items: end;
    gap: 50px;
    margin-bottom: 36px;
    text-align: left;
}

.section-title .kicker {
    grid-column: 1 / -1;
    margin-bottom: -32px;
}

.section-title h2 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(2.25rem, 5vw, 4.7rem);
    line-height: .95;
    letter-spacing: -.065em;
    text-wrap: balance;
}

.section-title p {
    max-width: 580px;
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.75;
}

.featured-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(350px, .75fr);
    gap: 22px;
    align-items: stretch;
}

.glass {
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .77);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(20px);
}

.showcase {
    min-height: 600px;
    overflow: hidden;
    background: linear-gradient(145deg, #f0e6ff, #fff4fa);
}

.showcase-frame {
    height: 100%;
    padding: 22px;
}

.showcase-screen {
    position: relative;
    height: 100%;
    min-height: 556px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 28px;
    color: var(--white);
    background:
        radial-gradient(circle at 80% 8%, rgba(236, 72, 153, .2), transparent 28%),
        #1d102a;
    box-shadow: 0 26px 70px rgba(32, 12, 49, .28);
}

.screen-top {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 52px;
    padding: 0 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.screen-top span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .34);
}

.screen-top::after {
    content: "RumbleForms dashboard";
    margin-left: 8px;
    color: rgba(255, 255, 255, .44);
    font-size: .7rem;
    font-weight: 700;
}

.screen-body {
    display: grid;
    grid-template-columns: .64fr 1.36fr;
    gap: 15px;
    padding: 18px;
}

.screen-hero {
    min-height: 466px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 19px;
    background: rgba(255, 255, 255, .045);
}

.screen-hero::before {
    content: "Your forms";
    display: block;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .68);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.screen-hero::after {
    content: "Contact form  •  Active\A Quote request  •  Active\A Booking enquiry  •  Paused";
    display: block;
    white-space: pre-line;
    padding: 16px;
    border-radius: 14px;
    color: rgba(255, 255, 255, .7);
    background: linear-gradient(140deg, rgba(124, 58, 237, .22), rgba(236, 72, 153, .12));
    font-size: .74rem;
    line-height: 3.1;
}

.screen-cols {
    display: grid;
    grid-template-rows: 1.05fr .95fr;
    gap: 15px;
}

.screen-card,
.screen-stack div {
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 19px;
    background: rgba(255, 255, 255, .05);
}

.screen-card {
    position: relative;
    min-height: 245px;
    padding: 21px;
}

.screen-card::before {
    content: "Submission activity";
    color: rgba(255, 255, 255, .55);
    font-size: .74rem;
    font-weight: 700;
}

.screen-card::after {
    content: "LIVE";
    position: absolute;
    left: 21px;
    bottom: 21px;
    font-size: clamp(3.8rem, 7vw, 6rem);
    font-weight: 900;
    letter-spacing: -.09em;
    background: linear-gradient(120deg, #fff, #d8b4fe 55%, #f9a8d4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.screen-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.screen-stack div {
    position: relative;
    min-height: 190px;
}

.screen-stack div::before,
.screen-stack div::after {
    position: absolute;
    left: 17px;
}

.screen-stack div:first-child::before {
    content: "Delivery";
    top: 17px;
    color: rgba(255, 255, 255, .48);
    font-size: .7rem;
}

.screen-stack div:first-child::after {
    content: "Queued & sent";
    bottom: 17px;
    color: #d8b4fe;
    font-size: .95rem;
    font-weight: 800;
}

.screen-stack div:last-child::before {
    content: "Domain";
    top: 17px;
    color: rgba(255, 255, 255, .48);
    font-size: .7rem;
}

.screen-stack div:last-child::after {
    content: "Trusted";
    bottom: 17px;
    color: #f9a8d4;
    font-size: .95rem;
    font-weight: 800;
}

.signin {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(26px, 4vw, 42px);
}

.signin::before {
    content: "01";
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 28px;
    border-radius: 13px;
    color: var(--white);
    background: linear-gradient(135deg, var(--purple-700), var(--pink-500));
    font-size: .76rem;
    font-weight: 900;
}

.signin h3 {
    margin: 0 0 12px;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1;
    letter-spacing: -.055em;
}

.signin p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.7;
}

.offer {
    margin-top: 20px;
    padding: 15px 16px;
    border: 1px solid rgba(109, 40, 217, .12);
    border-radius: var(--radius-sm);
    color: #542180;
    background: linear-gradient(135deg, rgba(238, 229, 255, .9), rgba(255, 235, 246, .82));
    font-size: .87rem;
    font-weight: 750;
    line-height: 1.55;
}

.form-group {
    display: grid;
    gap: 8px;
    margin: 18px 0 14px;
}

.form-group label {
    color: #4c275f;
    font-size: .82rem;
    font-weight: 800;
}

.form-group input {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid rgba(64, 20, 95, .14);
    border-radius: 15px;
    color: var(--ink);
    background: var(--white);
    box-shadow: inset 0 1px 0 rgba(32, 12, 49, .03);
}

.form-group input:focus {
    border-color: rgba(124, 58, 237, .45);
    outline: none;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, .09);
}

.signin .btn {
    width: 100%;
}

.auth-notes {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: #746681;
    font-size: .78rem;
    line-height: 1.55;
}

.auth-notes > div {
    position: relative;
    padding-left: 19px;
}

.auth-notes > div::before {
    content: "";
    position: absolute;
    top: .48em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-600), var(--pink-500));
}

.auth-notes .ghost {
    min-height: 34px;
    margin-top: 8px;
    padding: 0 13px;
    font-size: .75rem;
}

.alert {
    display: none;
    margin: 16px 0 0;
    padding: 13px 14px;
    border-radius: 14px;
    font-size: .84rem;
    line-height: 1.55;
}

.alert.show {
    display: block;
}

.alert.success {
    color: var(--success-ink);
    border: 1px solid var(--success-line);
    background: var(--success-bg);
}

.alert.error {
    color: var(--error-ink);
    border: 1px solid var(--error-line);
    background: var(--error-bg);
}

.pricing-section {
    position: relative;
    width: min(1580px, calc(100vw - 32px));
    margin-left: 50%;
    padding: clamp(30px, 3.6vw, 54px);
    border: 1px solid rgba(83, 35, 120, .12);
    border-radius: clamp(32px, 4vw, 54px);
    background:
        radial-gradient(circle at 3% 5%, rgba(124, 58, 237, .08), transparent 30%),
        radial-gradient(circle at 96% 9%, rgba(236, 72, 153, .08), transparent 28%),
        rgba(255, 255, 255, .55);
    box-shadow: 0 32px 88px rgba(48, 19, 73, .1);
    transform: translateX(-50%);
}

.form-builder-home-section {
    position: relative;
    width: min(1580px, calc(100vw - 32px));
    min-height: 100svh;
    display: grid;
    align-content: center;
    gap: clamp(22px, 3.5vh, 38px);
    margin-left: 50%;
    padding-block: clamp(72px, 8vh, 104px);
    transform: translateX(-50%);
}

.form-builder-home-section::before {
    content: "";
    position: absolute;
    inset: 9% 4% 3%;
    z-index: -1;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(155, 92, 255, .16), rgba(236, 72, 153, .08) 45%, transparent 72%);
    filter: blur(38px);
    pointer-events: none;
}

.form-builder-home-heading {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, .78fr);
    align-items: center;
    gap: clamp(32px, 5vw, 78px);
    padding: clamp(30px, 4vw, 58px);
    border: 1px solid rgba(89, 38, 126, .14);
    border-radius: clamp(28px, 3.5vw, 46px);
    background: linear-gradient(128deg, rgba(255, 255, 255, .93), rgba(249, 243, 255, .9) 58%, rgba(255, 240, 249, .84));
    box-shadow: 0 28px 78px rgba(48, 19, 73, .11);
}

.form-builder-home-heading::after {
    position: absolute;
    top: -150px;
    left: -110px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(124, 58, 237, .08);
    border-radius: 50%;
    box-shadow: 0 0 0 68px rgba(236, 72, 153, .025), 0 0 0 136px rgba(124, 58, 237, .02);
    content: "";
    pointer-events: none;
}

.form-builder-home-heading > div {
    position: relative;
    z-index: 1;
}

.form-builder-home-heading .kicker {
    display: inline-flex;
    color: var(--purple-700);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.form-builder-home-heading h2 {
    max-width: 11ch;
    margin: 12px 0 0;
    font-size: clamp(2.65rem, 4.7vw, 4.9rem);
    line-height: .92;
    letter-spacing: -.07em;
    text-wrap: balance;
}

.form-builder-home-intro {
    display: grid;
    gap: 13px;
    padding: clamp(20px, 2.4vw, 30px);
    border: 1px solid rgba(124, 58, 237, .12);
    border-radius: 25px;
    background: rgba(255, 255, 255, .73);
    box-shadow: 0 18px 42px rgba(48, 19, 73, .07);
}

.form-builder-home-intro > p {
    max-width: 570px;
    margin: 0;
    color: var(--ink-soft);
    font-size: clamp(.86rem, 1.05vw, .98rem);
    line-height: 1.62;
}

.form-builder-home-intro > .form-builder-template-access {
    margin-top: 0;
    padding: 12px 14px;
    border: 0;
    border-left: 3px solid #c33bb0;
    border-radius: 4px 14px 14px 4px;
    color: #6d5b78;
    background: linear-gradient(90deg, rgba(240, 229, 255, .76), rgba(255, 239, 248, .62));
    font-size: .69rem;
    line-height: 1.55;
}

.form-builder-template-access strong {
    color: #5c287e;
}

.form-builder-home-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 1px;
}

.form-builder-home-points span {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 39px;
    padding: 8px 11px 8px 28px;
    border: 1px solid rgba(124, 58, 237, .11);
    border-radius: 13px;
    color: #5c287e;
    background: rgba(255, 255, 255, .82);
    font-size: .64rem;
    font-weight: 850;
    box-shadow: 0 7px 18px rgba(48, 19, 73, .035);
}

.form-builder-home-points span::before {
    position: absolute;
    left: 12px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, .08);
    content: "";
}

.form-builder-home-showcase {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 40px 10px 10px;
    border: 1px solid rgba(64, 20, 95, .16);
    border-radius: clamp(24px, 2.8vw, 40px);
    background: #291b38;
    box-shadow: 0 32px 90px rgba(48, 19, 73, .18);
}

.form-builder-home-browser {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 15px;
    color: rgba(255, 255, 255, .54);
}

.form-builder-home-browser i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #9b5cff;
}

.form-builder-home-browser i:nth-child(2) { background: #d754ad; }
.form-builder-home-browser i:nth-child(3) { background: #f1a5cf; }

.form-builder-home-browser span {
    margin-left: 5px;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .04em;
}

.form-builder-home-showcase img {
    width: 100%;
    height: auto;
    border-radius: clamp(16px, 2vw, 28px);
    background: #f5f1fb;
}

.form-builder-home-showcase figcaption {
    position: absolute;
    right: 24px;
    bottom: 23px;
    max-width: 520px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    color: rgba(255, 255, 255, .9);
    background: rgba(31, 15, 44, .82);
    box-shadow: 0 10px 28px rgba(29, 12, 44, .28);
    backdrop-filter: blur(14px);
    font-size: .7rem;
    font-weight: 750;
}

@media (min-width: 761px) and (max-height: 950px) {
    .form-builder-home-section {
        gap: 20px;
        min-height: calc(100svh - 80px);
        padding-block: 30px 16px;
    }

    .form-builder-home-heading {
        width: min(1220px, 100%);
        justify-self: center;
        gap: 42px;
        padding: 30px 38px;
    }

    .form-builder-home-heading h2 {
        font-size: clamp(2.8rem, 4vw, 3.8rem);
    }

    .form-builder-home-showcase {
        width: min(1120px, 100%);
        justify-self: center;
    }
}

/* LandoBot is deliberately one compact product view on desktop: identity,
   capability and pricing are visible together without an inner scroll area. */
.landobot-home-section{position:relative;width:min(1580px,calc(100vw - 32px));min-height:100svh;display:grid;place-items:center;margin-left:50%;padding-block:clamp(46px,6vh,76px);transform:translateX(-50%)}
.landobot-home-section::before{position:absolute;inset:12% 2%;z-index:-1;border-radius:50%;background:radial-gradient(circle at 22% 50%,rgba(220,62,170,.17),transparent 35%),radial-gradient(circle at 72% 40%,rgba(124,58,237,.16),transparent 44%);filter:blur(34px);content:""}
.landobot-home-card{overflow:hidden;display:grid;width:100%;grid-template-columns:minmax(260px,.78fr) minmax(390px,1.13fr) minmax(360px,.92fr);align-items:center;gap:clamp(24px,3vw,52px);padding:clamp(28px,3.3vw,54px);border:1px solid rgba(95,45,133,.15);border-radius:clamp(30px,4vw,54px);background:linear-gradient(130deg,rgba(255,255,255,.96),rgba(248,241,255,.95) 57%,rgba(255,240,249,.92));box-shadow:0 34px 100px rgba(47,19,68,.15)}
.landobot-home-visual{position:relative;display:grid;min-height:460px;place-items:center;border:1px solid rgba(126,59,199,.13);border-radius:38px;background:radial-gradient(circle at 50% 40%,#fff 0 26%,#f2e7ff 54%,#fde8f5 100%)}
.landobot-home-visual::before,.landobot-home-visual::after{position:absolute;border:1px solid rgba(127,61,199,.13);border-radius:50%;content:""}.landobot-home-visual::before{inset:11%}.landobot-home-visual::after{inset:21%}
.landobot-home-visual>img{position:relative;z-index:2;display:block;width:min(92%,390px);max-width:390px;height:auto;max-height:390px;object-fit:contain;filter:drop-shadow(0 25px 32px rgba(76,30,113,.2))}
.landobot-orbit{position:absolute;z-index:3;min-height:31px;display:inline-flex;align-items:center;padding:0 12px;border:1px solid rgba(117,54,184,.14);border-radius:999px;color:#653283;background:rgba(255,255,255,.9);box-shadow:0 10px 24px rgba(67,28,94,.09);font-size:.61rem;font-weight:900}.landobot-orbit.one{top:9%;left:7%}.landobot-orbit.two{top:17%;right:5%}
.landobot-home-visual>div{position:absolute;right:7%;bottom:7%;left:7%;z-index:4;display:grid;grid-template-columns:10px 1fr;gap:2px 9px;padding:12px 14px;border:1px solid rgba(255,255,255,.7);border-radius:17px;background:rgba(42,20,56,.86);box-shadow:0 15px 30px rgba(36,15,51,.2);backdrop-filter:blur(14px)}.landobot-home-visual>div i{grid-row:1/3;width:9px;height:9px;margin-top:2px;border-radius:50%;background:#52d38b;box-shadow:0 0 0 5px rgba(82,211,139,.12)}.landobot-home-visual>div strong{color:#fff;font-size:.68rem}.landobot-home-visual>div small{color:rgba(255,255,255,.62);font-size:.54rem}
.landobot-home-copy{min-width:0}.landobot-home-copy>.kicker{color:#7c3aed;font-size:.67rem;font-weight:900;letter-spacing:.12em;text-transform:uppercase}.landobot-home-copy h2{margin:10px 0 13px;font-size:clamp(3.3rem,5.2vw,6.6rem);line-height:.85;letter-spacing:-.075em}.landobot-home-copy>p{max-width:670px;margin:0;color:var(--ink-soft);font-size:clamp(.86rem,1.1vw,1rem);line-height:1.68}
.landobot-feature-grid{display:grid;grid-template-columns:1fr 1fr;gap:9px;margin-top:23px}.landobot-feature-grid article{display:grid;grid-template-columns:30px 1fr;gap:9px;padding:12px;border:1px solid rgba(121,59,172,.11);border-radius:16px;background:rgba(255,255,255,.68)}.landobot-feature-grid article>span{display:grid;width:27px;height:27px;place-items:center;border-radius:9px;color:#fff;background:linear-gradient(135deg,#7c3aed,#df3e9f);font-size:.54rem;font-weight:900}.landobot-feature-grid strong{font-size:.69rem}.landobot-feature-grid p{margin:4px 0 0;color:#806f89;font-size:.58rem;line-height:1.42}
.landobot-home-pricing{display:grid;gap:15px;padding:20px;border:1px solid rgba(108,51,151,.14);border-radius:26px;background:rgba(38,20,50,.96);box-shadow:0 22px 55px rgba(44,19,58,.2)}.landobot-home-pricing header{display:grid;gap:4px}.landobot-home-pricing header span{color:#d9b7ff;font-size:.57rem;font-weight:900;letter-spacing:.1em;text-transform:uppercase}.landobot-home-pricing header strong{color:#fff;font-size:1.15rem;letter-spacing:-.025em}
.landobot-plan-grid{display:grid;grid-template-columns:1fr 1fr;gap:7px}.landobot-plan-grid>div{display:grid;grid-template-columns:1fr auto;align-items:end;gap:2px 8px;padding:11px;border:1px solid rgba(255,255,255,.09);border-radius:14px;background:rgba(255,255,255,.055)}.landobot-plan-grid>div.popular{border-color:rgba(242,100,184,.5);background:linear-gradient(135deg,rgba(124,58,237,.25),rgba(236,72,153,.18))}.landobot-plan-grid span{color:#cbb7d2;font-size:.58rem;font-weight:800}.landobot-plan-grid strong{grid-row:1/3;grid-column:2;color:#fff;font-size:1.32rem;letter-spacing:-.04em}.landobot-plan-grid small{color:#917f99;font-size:.49rem}.landobot-home-pricing>p{margin:0;color:#c3b2c8;font-size:.61rem;line-height:1.55}.landobot-home-pricing>p strong,.landobot-home-pricing>p b{color:#fff}.landobot-home-actions{display:flex;align-items:center;gap:13px}.landobot-home-actions .btn{min-height:40px;padding-inline:15px;font-size:.65rem}.landobot-home-actions>a:not(.btn){color:#e4cfff;font-size:.62rem;font-weight:850}
@media(min-width:761px) and (max-height:900px){.landobot-home-section{min-height:calc(100svh - 70px);padding-block:24px}.landobot-home-card{padding:28px 34px}.landobot-home-visual{min-height:390px}.landobot-home-visual>img{width:min(84%,320px)}.landobot-home-copy h2{font-size:clamp(3.2rem,4.6vw,5rem)}.landobot-feature-grid{margin-top:16px}.landobot-feature-grid article{padding:9px}.landobot-home-pricing{gap:11px;padding:17px}}
@media(max-width:1180px){.landobot-home-card{grid-template-columns:minmax(250px,.75fr) minmax(390px,1.25fr)}.landobot-home-pricing{grid-column:1/-1;grid-template-columns:minmax(210px,.65fr) 1fr minmax(250px,.8fr);align-items:center}.landobot-home-pricing>p{grid-column:3}.landobot-home-actions{grid-column:3}.landobot-plan-grid{grid-row:1/3;grid-column:2}.landobot-home-visual{min-height:400px}}
@media(max-width:760px){.landobot-home-section{width:100%;min-height:0;margin-left:0;padding-block:52px 24px;transform:none}.landobot-home-card{grid-template-columns:1fr;gap:22px;padding:18px;border-radius:30px}.landobot-home-visual{min-height:360px}.landobot-home-visual>img{width:min(88%,340px)}.landobot-home-copy{padding:4px 5px}.landobot-home-copy h2{font-size:clamp(3.3rem,17vw,5rem)}.landobot-feature-grid{grid-template-columns:1fr}.landobot-home-pricing{grid-column:auto;grid-template-columns:1fr}.landobot-plan-grid,.landobot-home-pricing>p,.landobot-home-actions{grid-row:auto;grid-column:auto}.landobot-home-actions{justify-content:space-between}}

.bring-form-section {
    position: relative;
    width: min(1580px, calc(100vw - 32px));
    min-height: 100svh;
    display: grid;
    align-content: center;
    gap: 18px;
    margin-left: 50%;
    padding-block: clamp(62px, 8vh, 100px);
    transform: translateX(-50%);
}

.bring-form-section::before {
    position: absolute;
    inset: 13% 5%;
    z-index: -1;
    border-radius: 50%;
    background: radial-gradient(circle at 18% 40%, rgba(236, 72, 153, .2), transparent 34%), radial-gradient(circle at 78% 52%, rgba(124, 58, 237, .19), transparent 42%);
    filter: blur(42px);
    content: "";
}

.bring-form-card {
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(360px, .82fr) minmax(530px, 1.18fr);
    align-items: center;
    gap: clamp(40px, 6vw, 98px);
    padding: clamp(38px, 5vw, 78px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: clamp(32px, 4vw, 56px);
    color: #fff;
    background:
        radial-gradient(circle at 8% 12%, rgba(239, 74, 170, .24), transparent 32%),
        radial-gradient(circle at 88% 82%, rgba(124, 58, 237, .28), transparent 38%),
        linear-gradient(135deg, #24102e, #35113e 54%, #1e102b);
    box-shadow: 0 38px 105px rgba(38, 15, 48, .24);
}

.bring-form-copy .kicker {
    color: #f3b8dd;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.bring-form-copy h2 {
    max-width: 660px;
    margin: 13px 0 18px;
    font-size: clamp(3rem, 5vw, 5.7rem);
    line-height: .89;
    letter-spacing: -.07em;
    text-wrap: balance;
}

.bring-form-copy > p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, .7);
    font-size: clamp(.9rem, 1.08vw, 1.03rem);
    line-height: 1.72;
}

.bring-form-benefits {
    display: grid;
    gap: 11px;
    margin: 27px 0 0;
    padding: 0;
    list-style: none;
}

.bring-form-benefits li {
    display: grid;
    grid-template-columns: 31px 1fr;
    align-items: start;
    gap: 11px;
}

.bring-form-benefits li > span {
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    font-size: .7rem;
    font-weight: 900;
}

.bring-form-benefits div {
    display: grid;
    gap: 3px;
}

.bring-form-benefits strong {
    font-size: .8rem;
}

.bring-form-benefits small {
    color: rgba(255, 255, 255, .54);
    font-size: .67rem;
    line-height: 1.5;
}

.bring-form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin-top: 29px;
}

.bring-form-actions .btn {
    min-height: 48px;
    padding-inline: 20px;
    font-size: .72rem;
}

.bring-form-actions > a:not(.btn) {
    color: #efd7ff;
    font-size: .68rem;
    font-weight: 850;
}

.bring-form-visual {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 30px;
    background: rgba(255, 255, 255, .075);
    box-shadow: 0 28px 70px rgba(12, 5, 18, .3);
    backdrop-filter: blur(18px);
}

.bring-form-visual > header {
    min-height: 55px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    background: rgba(10, 5, 16, .26);
}

.bring-form-window-dots {
    display: flex;
    gap: 5px;
}

.bring-form-window-dots i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ee64b5;
}

.bring-form-window-dots i:nth-child(2) { background: #b679ed; }
.bring-form-window-dots i:nth-child(3) { background: #725de0; }

.bring-form-visual > header strong {
    color: rgba(255, 255, 255, .78);
    font-size: .68rem;
}

.bring-form-visual > header em {
    padding: 6px 9px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 999px;
    color: #d9c2e6;
    background: rgba(255, 255, 255, .06);
    font-size: .55rem;
    font-style: normal;
    font-weight: 800;
}

.bring-form-flow {
    display: grid;
    grid-template-columns: minmax(160px, .8fr) auto minmax(210px, 1fr);
    align-items: stretch;
    gap: 18px;
    padding: clamp(24px, 3vw, 40px);
}

.bring-form-code,
.bring-form-engine {
    min-height: 260px;
    display: grid;
    align-content: center;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 22px;
}

.bring-form-code {
    gap: 10px;
    background: rgba(10, 6, 17, .38);
}

.bring-form-code > span {
    color: #da83f3;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: .68rem;
}

.bring-form-code strong {
    margin-top: 11px;
    font-size: 1.16rem;
    letter-spacing: -.03em;
}

.bring-form-code small {
    margin-bottom: 11px;
    color: rgba(255, 255, 255, .48);
    font-size: .66rem;
    line-height: 1.5;
}

.bring-form-connector {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 8px;
}

.bring-form-connector span {
    max-width: 70px;
    color: rgba(255, 255, 255, .5);
    font-size: .55rem;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
}

.bring-form-connector i {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    box-shadow: 0 12px 28px rgba(223, 62, 159, .3);
    font-size: 1rem;
    font-style: normal;
}

.bring-form-engine {
    gap: 20px;
    background: linear-gradient(145deg, rgba(124, 58, 237, .22), rgba(236, 72, 153, .14));
}

.bring-form-engine > div {
    display: flex;
    align-items: center;
    gap: 11px;
}

.bring-form-engine img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
}

.bring-form-engine div span {
    display: grid;
    gap: 2px;
}

.bring-form-engine div small {
    color: #d7b8eb;
    font-size: .54rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.bring-form-engine div strong {
    font-size: 1.08rem;
}

.bring-form-engine ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bring-form-engine li {
    position: relative;
    padding-left: 18px;
    color: rgba(255, 255, 255, .7);
    font-size: .66rem;
    font-weight: 700;
}

.bring-form-engine li::before {
    position: absolute;
    top: .32em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #66e0a3;
    box-shadow: 0 0 0 4px rgba(102, 224, 163, .1);
    content: "";
}

.bring-form-visual > footer {
    display: flex;
    justify-content: center;
    gap: 26px;
    padding: 15px 18px;
    border-top: 1px solid rgba(255, 255, 255, .09);
    color: rgba(255, 255, 255, .58);
    background: rgba(10, 5, 16, .18);
    font-size: .58rem;
    font-weight: 750;
}

.bring-form-visual > footer span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.bring-form-visual > footer i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #66e0a3;
}

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

.bring-form-audiences article {
    display: grid;
    grid-template-columns: minmax(160px, .42fr) minmax(220px, .62fr) 1.1fr;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    border: 1px solid rgba(93, 45, 129, .13);
    border-radius: 22px;
    background: rgba(255, 255, 255, .75);
    box-shadow: 0 16px 44px rgba(50, 20, 67, .08);
}

.bring-form-audiences span {
    color: #7c3aed;
    font-size: .59rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bring-form-audiences strong {
    font-size: .78rem;
}

.bring-form-audiences p {
    margin: 0;
    color: var(--ink-soft);
    font-size: .63rem;
    line-height: 1.55;
}

@media (max-width: 1180px) {
    .bring-form-card {
        grid-template-columns: 1fr;
    }

    .bring-form-copy {
        max-width: 820px;
    }

    .bring-form-audiences {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .bring-form-section {
        width: 100%;
        min-height: 0;
        margin-left: 0;
        padding-block: 52px 24px;
        transform: none;
    }

    .bring-form-card {
        gap: 32px;
        padding: 24px 18px 18px;
        border-radius: 30px;
    }

    .bring-form-copy h2 {
        font-size: clamp(3rem, 15vw, 4.7rem);
    }

    .bring-form-flow {
        grid-template-columns: 1fr;
    }

    .bring-form-code,
    .bring-form-engine {
        min-height: 210px;
    }

    .bring-form-connector {
        grid-template-columns: auto auto;
    }

    .bring-form-connector span {
        max-width: none;
    }

    .bring-form-connector i {
        transform: rotate(90deg);
    }

    .bring-form-visual > footer {
        flex-direction: column;
        gap: 8px;
    }

    .bring-form-audiences article {
        grid-template-columns: 1fr;
        gap: 7px;
        padding: 20px;
    }
}

.pricing-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 38px;
    margin-bottom: 26px;
}

.pricing-heading .section-title {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
    margin-bottom: 0;
}

.pricing-heading .section-title .kicker {
    grid-column: auto;
    margin-bottom: 0;
}

.pricing-heading .section-title h2 {
    max-width: 720px;
    font-size: clamp(2.7rem, 3.8vw, 4.15rem);
    line-height: .92;
}

.pricing-heading .section-title p {
    max-width: 610px;
}

.pricing-controls {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 12px;
}

.billing-control {
    display: grid;
    gap: 8px;
    justify-items: end;
}

.billing-label {
    padding-right: 8px;
    color: #746681;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.billing-toggle {
    display: flex;
    gap: 5px;
    padding: 5px;
    border: 1px solid rgba(64, 20, 95, .1);
    border-radius: 999px;
    background: rgba(255, 255, 255, .8);
    box-shadow: var(--shadow-sm);
}

.billing-option {
    min-height: 46px;
    padding: 0 17px;
    border: 0;
    border-radius: 999px;
    color: #695a75;
    background: transparent;
    font-size: .78rem;
    font-weight: 850;
    cursor: pointer;
    transition: color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.billing-option span {
    display: inline-flex;
    margin-left: 5px;
    padding: 4px 6px;
    border-radius: 999px;
    color: #5b1b70;
    background: #fbd7e9;
    font-size: .61rem;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.billing-option:hover {
    color: var(--purple-700);
}

.billing-option.active {
    color: var(--white);
    background: linear-gradient(120deg, var(--purple-700), var(--purple-500) 65%, var(--pink-500));
    box-shadow: 0 10px 22px rgba(109, 40, 217, .2);
}

.billing-option.active span {
    color: #4d155e;
    background: #ffe4f1;
}

.billing-option:focus-visible,
.feature-tip:focus-visible,
.pricing-cta:focus-visible,
.currency-control select:focus-visible {
    outline: 3px solid rgba(244, 114, 182, .55);
    outline-offset: 3px;
}

.currency-control {
    position: relative;
    display: grid;
    gap: 8px;
    justify-items: end;
}

.currency-control label {
    padding-right: 8px;
    color: #746681;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.currency-select-wrap {
    position: relative;
}

.currency-select-wrap::after {
    content: "⌄";
    position: absolute;
    top: 50%;
    right: 15px;
    color: var(--purple-700);
    font-size: .9rem;
    font-weight: 900;
    pointer-events: none;
    transform: translateY(-55%);
}

.currency-control select {
    min-width: 158px;
    min-height: 56px;
    appearance: none;
    padding: 0 38px 0 17px;
    border: 1px solid rgba(64, 20, 95, .1);
    border-radius: 999px;
    color: var(--ink);
    background: rgba(255, 255, 255, .84);
    box-shadow: var(--shadow-sm);
    font-size: .76rem;
    font-weight: 850;
    cursor: pointer;
}

.currency-control select:disabled {
    cursor: wait;
    opacity: .68;
}

.currency-rate-status {
    position: absolute;
    top: calc(100% + 7px);
    right: 5px;
    min-width: 230px;
    color: #8a7c95;
    font-size: .61rem;
    font-weight: 700;
    text-align: right;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    gap: 14px;
}

.pricing-card {
    position: relative;
    min-width: 0;
    display: grid;
    grid-template-rows: auto auto auto auto;
    padding: 20px;
    border: 1px solid rgba(64, 20, 95, .11);
    border-radius: 26px;
    color: var(--ink);
    background: rgba(255, 255, 255, .87);
    box-shadow: 0 16px 44px rgba(48, 19, 73, .08);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.pricing-card:hover {
    z-index: 2;
    transform: translateY(-4px);
    border-color: rgba(124, 58, 237, .25);
    box-shadow: 0 28px 70px rgba(48, 19, 73, .16);
}

.pricing-card.featured-plan {
    border-color: rgba(124, 58, 237, .32);
    background: linear-gradient(160deg, #fff 0%, #f5edff 100%);
    box-shadow: 0 21px 56px rgba(109, 40, 217, .13);
}

.pricing-card.professional-plan {
    color: var(--white);
    border-color: rgba(255, 255, 255, .1);
    background:
        radial-gradient(circle at 90% 4%, rgba(236, 72, 153, .22), transparent 34%),
        linear-gradient(145deg, var(--purple-950), #37134e 72%, #50185d);
    box-shadow: 0 24px 64px rgba(32, 12, 49, .25);
}

.plan-ribbon {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 7px 9px;
    border-radius: 999px;
    color: #5a1f76;
    background: #eddcff;
    font-size: .6rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.professional-plan .enterprise-ribbon {
    color: #f7e8ff;
    border: 1px solid rgba(255, 255, 255, .13);
    background: rgba(255, 255, 255, .1);
}

.plan-header {
    min-height: 214px;
}

.plan-label {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--purple-700);
    font-size: .69rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.professional-plan .plan-label {
    color: #e9c9ff;
    padding-right: 128px;
}

.featured-plan .plan-label {
    padding-right: 76px;
}

.plan-header h3 {
    margin: 0 0 10px;
    font-size: clamp(1.45rem, 2vw, 2rem);
    line-height: 1;
    letter-spacing: -.055em;
}

.plan-header > p:not(.billing-detail) {
    min-height: 52px;
    margin: 0;
    color: var(--ink-soft);
    font-size: .78rem;
    line-height: 1.55;
}

.professional-plan .plan-header > p:not(.billing-detail) {
    color: rgba(255, 255, 255, .6);
}

.plan-price {
    display: flex;
    align-items: flex-end;
    margin-top: 18px;
    white-space: nowrap;
}

.price-currency {
    align-self: flex-start;
    margin: 3px 6px 0 0;
    color: #d72f87;
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1;
}

.price-amount {
    font-size: clamp(2.15rem, 2.6vw, 2.8rem);
    line-height: .85;
    letter-spacing: -.075em;
}

.price-period {
    margin: 0 0 2px 7px;
    color: #746681;
    font-size: .68rem;
    font-weight: 700;
}

.professional-plan .price-period {
    color: rgba(255, 255, 255, .52);
}

.billing-detail {
    min-height: 36px;
    margin: 11px 0 0;
    color: #79698a;
    font-size: .68rem;
    line-height: 1.5;
}

.professional-plan .billing-detail {
    color: rgba(255, 255, 255, .52);
}

.plan-features {
    display: block;
    border-top: 1px solid rgba(64, 20, 95, .1);
}

.professional-plan .plan-features {
    border-color: rgba(255, 255, 255, .1);
}

.plan-feature {
    position: relative;
    min-height: 60px;
    display: grid;
    align-content: center;
    gap: 4px;
    padding: 9px 26px 9px 0;
    border-bottom: 1px solid rgba(64, 20, 95, .08);
}

.professional-plan .plan-feature {
    border-color: rgba(255, 255, 255, .09);
}

.plan-more {
    border-bottom: 1px solid rgba(64, 20, 95, .08);
}

.professional-plan .plan-more {
    border-color: rgba(255, 255, 255, .09);
}

.plan-more summary {
    min-height: 51px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #642784;
    font-size: .7rem;
    font-weight: 900;
    cursor: pointer;
    list-style: none;
}

.plan-more summary::-webkit-details-marker {
    display: none;
}

.plan-more summary i {
    width: 25px;
    height: 25px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(124, 58, 237, .14);
    border-radius: 50%;
    background: rgba(238, 229, 255, .75);
    font-size: .9rem;
    font-style: normal;
    line-height: 1;
    transition: transform .2s ease;
}

.plan-more[open] summary i {
    transform: rotate(45deg);
}

.professional-plan .plan-more summary {
    color: #ebd2fa;
}

.professional-plan .plan-more summary i {
    border-color: rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .08);
}

.plan-more-features {
    border-top: 1px dashed rgba(64, 20, 95, .11);
}

.professional-plan .plan-more-features {
    border-color: rgba(255, 255, 255, .11);
}

.plan-feature > span:first-child {
    color: #81728c;
    font-size: .68rem;
    font-weight: 700;
}

.professional-plan .plan-feature > span:first-child {
    color: rgba(255, 255, 255, .48);
}

.plan-feature strong {
    font-size: .85rem;
    line-height: 1.35;
}

.feature-tip {
    position: absolute;
    top: 50%;
    right: 0;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(109, 40, 217, .18);
    border-radius: 50%;
    color: var(--purple-700);
    background: rgba(238, 229, 255, .8);
    font-family: Georgia, serif;
    font-size: .69rem;
    font-weight: 800;
    line-height: 1;
    transform: translateY(-50%);
    cursor: help;
}

.professional-plan .feature-tip {
    color: #f3d8ff;
    border-color: rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .09);
}

.feature-tip::after {
    content: attr(data-tooltip);
    position: absolute;
    z-index: 8;
    right: -8px;
    bottom: calc(100% + 12px);
    width: min(230px, 70vw);
    padding: 11px 12px;
    border-radius: 12px;
    color: var(--white);
    background: #24102f;
    box-shadow: 0 15px 38px rgba(25, 8, 37, .25);
    font-family: Inter, Arial, sans-serif;
    font-size: .7rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    opacity: 0;
    pointer-events: none;
    transform: translateY(5px);
    transition: opacity .18s ease, transform .18s ease;
}

.feature-tip:hover::after,
.feature-tip:focus-visible::after {
    opacity: 1;
    transform: none;
}

.pricing-cta {
    width: 100%;
    min-height: 47px;
    margin-top: 14px;
    border: 1px solid rgba(64, 20, 95, .13);
    border-radius: 999px;
    color: var(--ink);
    background: var(--white);
    font-size: .8rem;
    font-weight: 900;
    pointer-events: none;
    box-shadow: 0 10px 24px rgba(48, 19, 73, .07);
}

.paid-subscribe {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    cursor: pointer;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.paid-subscribe:hover {
    transform: translateY(-2px);
    filter: saturate(1.08);
    box-shadow: 0 16px 32px rgba(109, 40, 217, .2);
}

.free-signup {
    color: var(--white);
    border-color: transparent;
    background: linear-gradient(120deg, var(--purple-700), var(--purple-500) 58%, var(--pink-500));
    box-shadow: 0 14px 30px rgba(109, 40, 217, .22);
    pointer-events: auto;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}

.free-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 17px 34px rgba(109, 40, 217, .28);
}

.featured-plan .pricing-cta {
    color: var(--white);
    border-color: transparent;
    background: var(--purple-700);
}

.professional-plan .pricing-cta {
    color: var(--purple-950);
    border-color: transparent;
    background: linear-gradient(120deg, #fff, #f8d5e8);
}

.checkout-note {
    display: block;
    margin-top: 8px;
    color: #8a7c95;
    font-size: .62rem;
    font-weight: 700;
    text-align: center;
}

.professional-plan .checkout-note {
    color: rgba(255, 255, 255, .45);
}

.hosting-inclusion {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    margin-top: 18px;
    padding: 21px 25px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 28px;
    color: var(--white);
    background:
        radial-gradient(circle at 8% 20%, rgba(155, 92, 255, .32), transparent 28%),
        radial-gradient(circle at 86% 10%, rgba(236, 72, 153, .2), transparent 25%),
        linear-gradient(120deg, var(--purple-950), #3a1450 70%, #52185e);
    box-shadow: var(--shadow-lg);
}

.hosting-inclusion::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -120px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    box-shadow: 0 0 0 42px rgba(255, 255, 255, .025);
}

.hosting-icon {
    position: relative;
    z-index: 1;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 18px;
    color: #f4b8d8;
    background: rgba(255, 255, 255, .07);
}

.hosting-icon svg {
    width: 27px;
    height: 27px;
}

.hosting-copy {
    position: relative;
    z-index: 1;
}

.hosting-kicker {
    color: #e7c4ff;
    font-size: .65rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hosting-copy h3 {
    margin: 7px 0 8px;
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    line-height: 1;
    letter-spacing: -.045em;
}

.hosting-copy p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: .78rem;
    line-height: 1.65;
}

.hosting-details {
    margin-top: 10px;
}

.hosting-details summary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f4cee3;
    font-size: .67rem;
    font-weight: 850;
    cursor: pointer;
    list-style: none;
}

.hosting-details summary::-webkit-details-marker {
    display: none;
}

.hosting-details summary span {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    font-size: .72rem;
    transition: transform .2s ease;
}

.hosting-details[open] summary span {
    transform: rotate(45deg);
}

.hosting-details > p {
    max-width: 720px;
    margin-top: 9px;
    padding-top: 9px;
    border-top: 1px solid rgba(255, 255, 255, .09);
    font-size: .67rem;
}

.hosting-copy a {
    color: #f4cee3;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(244, 206, 227, .35);
    text-underline-offset: 3px;
}

.hosting-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, .08);
    font-size: .75rem;
    font-weight: 850;
    white-space: nowrap;
    transition: transform .2s ease, background .2s ease;
}

.hosting-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .13);
}

.home-trust-section {
    width: min(1580px, calc(100vw - 32px));
    margin-left: 50%;
    padding-top: 84px;
    transform: translateX(-50%);
}

.home-trust-shell {
    overflow: hidden;
    padding: clamp(30px, 4vw, 58px);
    border: 1px solid rgba(83, 35, 120, .13);
    border-radius: clamp(30px, 4vw, 52px);
    background:
        radial-gradient(circle at 0 0, rgba(124, 58, 237, .1), transparent 31%),
        radial-gradient(circle at 100% 100%, rgba(236, 72, 153, .09), transparent 31%),
        rgba(255, 255, 255, .78);
    box-shadow: 0 28px 78px rgba(48, 19, 73, .1);
}

.home-trust-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .55fr);
    align-items: end;
    gap: 44px;
}

.home-trust-heading .kicker {
    color: var(--purple-700);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.home-trust-heading h2 {
    max-width: 820px;
    margin: 11px 0 0;
    font-size: clamp(2.7rem, 4.5vw, 5rem);
    line-height: .92;
    letter-spacing: -.07em;
    text-wrap: balance;
}

.home-trust-heading > p {
    max-width: 520px;
    margin: 0;
    color: var(--ink-soft);
    font-size: .94rem;
    line-height: 1.65;
}

.home-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
}

.home-trust-grid article {
    min-height: 205px;
    display: grid;
    align-content: start;
    padding: 22px;
    border: 1px solid rgba(83, 35, 120, .1);
    border-radius: 23px;
    background: rgba(255, 255, 255, .76);
    box-shadow: 0 13px 32px rgba(48, 19, 73, .055);
}

.home-trust-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    box-shadow: 0 11px 23px rgba(124, 58, 237, .18);
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .06em;
}

.home-trust-grid strong {
    font-size: .93rem;
    line-height: 1.25;
    letter-spacing: -.02em;
}

.home-trust-grid p {
    margin: 9px 0 0;
    color: var(--ink-soft);
    font-size: .71rem;
    line-height: 1.58;
}

.home-trust-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 12px;
    padding: 16px 18px 16px 22px;
    border-radius: 21px;
    color: #fff;
    background: linear-gradient(125deg, #24102f, #481454);
}

.home-trust-footer > div {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: .7rem;
    font-weight: 800;
}

.home-trust-footer i {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 50%;
    color: #f4b8d8;
    background: rgba(255, 255, 255, .07);
    font-style: normal;
}

.home-trust-footer .btn {
    min-height: 43px;
    padding-inline: 18px;
    font-size: .68rem;
}

@media (max-width: 1180px) {
    .home-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .compact-explainer-copy {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .compact-explainer-copy .kicker,
    .compact-explainer-copy h2,
    .compact-explainer-copy > p,
    .two-way-email-flow {
        grid-column: 1;
        grid-row: auto;
    }

    .two-way-email-flow {
        margin-top: 22px;
    }
}

.compact-explainer {
    padding-top: 84px;
}

.compact-explainer-panel {
    position: relative;
    overflow: hidden;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: clamp(24px, 3vw, 38px);
    padding: clamp(36px, 4.5vw, 64px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-lg);
    color: var(--white);
    background:
        radial-gradient(circle at 8% 14%, rgba(155, 92, 255, .34), transparent 28rem),
        radial-gradient(circle at 92% 88%, rgba(236, 72, 153, .21), transparent 24rem),
        linear-gradient(132deg, #190b29, #321247 62%, #46154d);
    box-shadow: var(--shadow-lg);
}

.compact-explainer-panel::before {
    content: "";
    position: absolute;
    top: -190px;
    right: -150px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    box-shadow: 0 0 0 58px rgba(255, 255, 255, .018);
    pointer-events: none;
}

.compact-explainer-copy,
.compact-process {
    position: relative;
    z-index: 1;
}

.compact-explainer-copy {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    grid-template-rows: auto auto 1fr;
    align-items: start;
    column-gap: clamp(40px, 6vw, 90px);
}

.compact-explainer-copy .kicker {
    grid-column: 1;
    grid-row: 1;
    color: #e8c8ff;
}

.compact-explainer-copy h2 {
    grid-column: 1;
    grid-row: 2;
    max-width: 11ch;
    margin: 14px 0 18px;
    font-size: clamp(2.8rem, 4.5vw, 4.8rem);
    line-height: .9;
    letter-spacing: -.075em;
}

.compact-explainer-copy > p {
    grid-column: 1;
    grid-row: 3;
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, .66);
    font-size: .98rem;
    line-height: 1.75;
}

.two-way-email-flow {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: center;
    display: grid;
    gap: 9px;
    margin-top: 0;
}

.two-way-email-flow > div {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 68px;
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    background: rgba(255, 255, 255, .065);
    backdrop-filter: blur(12px);
}

.two-way-email-flow > div > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, rgba(155, 92, 255, .82), rgba(236, 72, 153, .76));
    box-shadow: 0 10px 22px rgba(12, 4, 22, .2);
    font-size: 1rem;
    font-weight: 900;
}

.two-way-email-flow p,
.two-way-email-flow small,
.two-way-email-flow strong {
    display: block;
    margin: 0;
}

.two-way-email-flow small {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, .48);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.two-way-email-flow strong {
    color: rgba(255, 255, 255, .9);
    font-size: .82rem;
    line-height: 1.35;
}

.two-way-email-flow > em {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 6px 12px;
    border: 1px solid rgba(245, 168, 209, .18);
    border-radius: 999px;
    color: #f5cbe2;
    background: rgba(236, 72, 153, .08);
    font-size: .61rem;
    font-style: normal;
    font-weight: 800;
    line-height: 1.4;
    text-align: center;
}

.compact-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 28px;
}

.compact-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 999px;
    color: rgba(255, 255, 255, .76);
    background: rgba(255, 255, 255, .06);
    font-size: .7rem;
    font-weight: 750;
}

.compact-benefits span::before {
    content: "✓";
    color: #f5a8d1;
    font-weight: 900;
}

.compact-process {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.compact-process li {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    min-height: 142px;
    padding: 19px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 22px;
    background: rgba(255, 255, 255, .065);
    backdrop-filter: blur(12px);
}

.compact-process li > span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #f7e8ff;
    background: linear-gradient(135deg, rgba(155, 92, 255, .78), rgba(236, 72, 153, .7));
    box-shadow: 0 12px 26px rgba(12, 4, 22, .24);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
}

.compact-process strong {
    display: block;
    margin-bottom: 7px;
    font-size: 1.02rem;
    letter-spacing: -.025em;
}

.compact-process p {
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: .78rem;
    line-height: 1.55;
}

.video-panel {
    padding: 18px;
}

.video-shell {
    min-height: 420px;
    display: grid;
    align-items: center;
    padding: clamp(28px, 5vw, 62px);
    border-radius: 28px;
    color: var(--white);
    background:
        radial-gradient(circle at 85% 20%, rgba(236, 72, 153, .2), transparent 28%),
        linear-gradient(135deg, #1d102a, #391551 62%, #5b1d68);
}

.video-shell > div:first-child {
    width: 100%;
}

.play {
    display: none;
}

.video-shell h3 {
    max-width: 760px;
    margin: 0 0 16px;
    font-size: clamp(2rem, 4.5vw, 4.5rem);
    line-height: .96;
    letter-spacing: -.06em;
}

.video-shell p {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, .67);
    line-height: 1.75;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 34px;
}

.workflow-step {
    min-height: 170px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 20px;
    background: rgba(255, 255, 255, .055);
}

.workflow-step span {
    display: block;
    margin-bottom: 34px;
    color: #e9c9ff;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .1em;
}

.workflow-step strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
}

.workflow-step p {
    color: rgba(255, 255, 255, .58);
    font-size: .82rem;
    line-height: 1.55;
}

.grid-4,
.feature-grid {
    display: grid;
    gap: 18px;
}

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

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

.card,
.feature-card {
    position: relative;
    overflow: hidden;
    padding: 26px;
    transition: transform .24s ease, box-shadow .24s ease;
}

.card:hover,
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 52px rgba(48, 19, 73, .12);
}

.card::before {
    content: "";
    display: block;
    width: 42px;
    height: 5px;
    margin-bottom: 36px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--purple-600), var(--pink-500));
}

.card h3,
.feature-card h3 {
    margin: 0 0 10px;
    font-size: 1.14rem;
    letter-spacing: -.04em;
}

.card p,
.feature-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: .89rem;
    line-height: 1.65;
}

.card ul {
    display: grid;
    gap: 8px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    color: #665873;
    font-size: .82rem;
}

.card li {
    position: relative;
    padding-left: 17px;
}

.card li::before {
    content: "";
    position: absolute;
    top: .5em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pink-500);
}

.feature-card {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.feature-card:nth-child(1),
.feature-card:nth-child(6) {
    color: var(--white);
    border-color: transparent;
    background: linear-gradient(140deg, var(--purple-900), #512067);
}

.feature-card:nth-child(1) p,
.feature-card:nth-child(6) p {
    color: rgba(255, 255, 255, .66);
}

.feature-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    padding: 8px 10px;
    border-radius: 999px;
    color: var(--purple-700);
    background: var(--lavender-100);
    font-size: .65rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.feature-card:nth-child(1) .feature-tag,
.feature-card:nth-child(6) .feature-tag {
    color: #f2ddff;
    background: rgba(255, 255, 255, .1);
}

.stats-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: var(--radius-lg);
    color: var(--white);
    background: linear-gradient(120deg, var(--purple-950), #35134e 68%, #54185f);
    box-shadow: var(--shadow-lg);
}

.metric {
    position: relative;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, .09);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.metric:last-child {
    border-right: 0;
}

.metric strong {
    color: rgba(255, 255, 255, .55);
    font-size: .68rem;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.metric span {
    font-size: clamp(2.7rem, 5vw, 4.8rem);
    font-weight: 900;
    letter-spacing: -.08em;
    background: linear-gradient(120deg, #fff, #d8b4fe 55%, #f9a8d4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta-band {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 38px;
    padding: clamp(30px, 5vw, 60px);
    background:
        radial-gradient(circle at 88% 10%, rgba(236, 72, 153, .16), transparent 22rem),
        rgba(255, 255, 255, .82);
}

.cta-band h2 {
    max-width: 800px;
    margin: 13px 0 14px;
    font-size: clamp(2.35rem, 5vw, 5rem);
    line-height: .92;
    letter-spacing: -.07em;
}

.cta-band p {
    max-width: 650px;
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.72;
}

.cta-band .hero-actions {
    flex-direction: column;
    align-items: stretch;
    min-width: 220px;
    margin: 0;
}

.cta-band.access-explainer {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
    align-items: center;
    gap: clamp(36px, 6vw, 86px);
    padding: clamp(34px, 5vw, 66px);
}

.access-explainer-copy {
    position: relative;
    z-index: 1;
}

.access-explainer h2 {
    max-width: 10ch;
    font-size: clamp(3rem, 5.3vw, 5.5rem);
}

.access-explainer-copy > p {
    max-width: 700px;
}

.access-primary-action {
    min-width: 190px;
    margin-top: 28px;
}

.access-email-card {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 26px;
    color: var(--white);
    background:
        radial-gradient(circle at 88% 8%, rgba(236, 72, 153, .25), transparent 15rem),
        linear-gradient(140deg, var(--purple-950), #3e1556);
    box-shadow: 0 24px 58px rgba(48, 19, 73, .2);
}

.access-email-card::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -110px;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
    pointer-events: none;
}

.access-email-top {
    display: flex;
    align-items: center;
    gap: 9px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .58);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.access-email-top > span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #f472b6;
    box-shadow: 0 0 0 5px rgba(244, 114, 182, .12);
}

.access-email-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 21px;
}

.access-email-brand img {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--white);
}

.access-email-brand strong,
.access-email-brand span {
    display: block;
}

.access-email-brand strong {
    font-size: .98rem;
}

.access-email-brand span {
    margin-top: 4px;
    color: rgba(255, 255, 255, .53);
    font-size: .72rem;
}

.access-email-steps {
    display: grid;
    gap: 11px;
    margin: 22px 0;
    padding: 0;
    list-style: none;
}

.access-email-steps li {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .7);
    font-size: .76rem;
    line-height: 1.45;
}

.access-email-steps li > span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 9px;
    color: #f8d6e8;
    background: rgba(255, 255, 255, .07);
    font-size: .62rem;
    font-weight: 900;
}

.access-email-button {
    position: relative;
    z-index: 1;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 17px;
    border-radius: 15px;
    color: var(--white);
    background: linear-gradient(120deg, var(--purple-600), var(--pink-500));
    box-shadow: 0 14px 30px rgba(109, 40, 217, .28);
    font-size: .76rem;
    font-weight: 900;
    text-align: center;
}

.cta-band .access-email-note {
    position: relative;
    z-index: 1;
    margin-top: 14px;
    color: rgba(255, 255, 255, .45);
    font-size: .68rem;
    line-height: 1.5;
    text-align: center;
}

.home-support-prompt {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    margin-top: 22px;
    padding: 24px 26px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 25px;
    background: linear-gradient(115deg, rgba(255, 255, 255, .9), rgba(246, 237, 255, .88));
    box-shadow: 0 18px 50px rgba(60, 24, 84, .08);
}

.home-support-prompt::after {
    content: "";
    position: absolute;
    right: 8%;
    bottom: -70px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(236, 72, 153, .08);
    pointer-events: none;
}

.home-support-icon {
    position: relative;
    z-index: 1;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    color: var(--white);
    background: linear-gradient(135deg, var(--purple-600), var(--pink-500));
    box-shadow: 0 13px 27px rgba(109, 40, 217, .2);
    font-size: 1.25rem;
    font-weight: 900;
}

.home-support-prompt h2 {
    margin: 6px 0 4px;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    line-height: 1.04;
    letter-spacing: -.045em;
}

.home-support-prompt p {
    max-width: 720px;
    margin: 0;
    color: var(--ink-soft);
    font-size: .78rem;
    line-height: 1.6;
}

.home-support-prompt .btn {
    position: relative;
    z-index: 1;
    min-width: 160px;
}

.site-footer {
    display: grid;
    grid-template-columns: auto minmax(260px, 1fr) auto;
    align-items: center;
    gap: clamp(24px, 3vw, 46px);
    margin-top: 12px;
    padding: 22px 4px 30px;
    border-top: 1px solid rgba(64, 20, 95, .09);
    color: #786a84;
    font-size: .72rem;
    line-height: 1.45;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #5f5369;
    font-weight: 750;
    white-space: nowrap;
}

.footer-brand > span {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, .08);
}

.footer-message {
    max-width: 520px;
    color: #84778e;
}

.footer-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(64, 20, 95, .12);
    border-radius: 999px;
    color: inherit;
    background: rgba(255, 255, 255, .72);
    font-size: .68rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 5px 14px rgba(48, 19, 73, .045);
    transition: color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--purple);
    border-color: rgba(124, 58, 237, .28);
    box-shadow: 0 7px 17px rgba(109, 40, 217, .09);
    transform: translateY(-1px);
}

.footer-admin-link {
    color: inherit;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s ease;
}

.footer-admin-link:hover,
.footer-admin-link:focus-visible {
    color: var(--purple);
}

.signup-legal-note {
    max-width: 620px;
    margin: 12px auto 0;
    color: #887a93;
    font-size: .7rem;
    line-height: 1.6;
    text-align: center;
}

.signup-legal-note a {
    color: #6d28d9;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(20, 8, 31, .72);
    backdrop-filter: blur(12px);
}

.modal-backdrop.open {
    display: flex;
    animation: fade-in .18s ease both;
}

.modal {
    width: min(510px, 100%);
    padding: clamp(24px, 5vw, 38px);
    border: 1px solid rgba(255, 255, 255, .85);
    border-radius: 30px;
    background: #fdfbff;
    box-shadow: 0 36px 110px rgba(20, 8, 31, .4);
    animation: modal-in .25s ease both;
}

.modal::before {
    content: "Secure account access";
    display: inline-flex;
    margin-bottom: 20px;
    padding: 8px 11px;
    border-radius: 999px;
    color: var(--purple-700);
    background: var(--lavender-100);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.modal h3 {
    margin: 0 0 10px;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1;
    letter-spacing: -.055em;
}

.modal p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.7;
}

.modal-kicker {
    display: block;
    margin-bottom: 10px;
    color: var(--purple-700);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.subscription-selection {
    display: grid;
    gap: 5px;
    margin-top: 18px;
    padding: 15px 17px;
    border: 1px solid rgba(109, 40, 217, .13);
    border-radius: 17px;
    background: linear-gradient(135deg, rgba(238, 229, 255, .82), rgba(255, 235, 246, .68));
}

.subscription-selection strong { color: #4c1d95; font-size: 1rem; }
.subscription-selection span { color: #76647f; font-size: .78rem; line-height: 1.5; }

.subscription-security-note {
    margin: 0 0 18px !important;
    color: #82758d !important;
    font-size: .72rem !important;
    line-height: 1.55 !important;
}

.modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modal-in {
    from { opacity: 0; transform: translateY(12px) scale(.98); }
    to { opacity: 1; transform: none; }
}

@media (max-width: 1180px) {
    .pricing-table {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1040px) {
    .site-top {
        grid-template-columns: 1fr auto;
    }

    .site-nav {
        display: none;
    }

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

    .pricing-heading {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .billing-control {
        justify-items: start;
    }

    .pricing-controls {
        justify-content: flex-start;
    }

    .currency-control {
        justify-items: start;
    }

    .currency-rate-status {
        right: auto;
        left: 5px;
        text-align: left;
    }

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

    .form-builder-home-heading {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 18px;
    }

    .form-builder-home-heading h2 {
        max-width: 12ch;
    }

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

    .hosting-link {
        grid-column: 2;
        justify-self: start;
    }

    .compact-explainer-panel {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .compact-explainer-copy h2 {
        max-width: 13ch;
    }

    .showcase {
        min-height: 540px;
    }

    .showcase-screen {
        min-height: 496px;
    }

    .screen-hero {
        min-height: 405px;
    }

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

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

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

    .metric:nth-child(2) {
        border-right: 0;
    }

    .metric:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, .09);
    }

    .cta-band {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .cta-band.access-explainer {
        grid-template-columns: 1fr;
    }

    .cta-band .hero-actions {
        flex-direction: row;
    }

    .site-footer {
        grid-template-columns: auto minmax(220px, 1fr);
        gap: 14px 28px;
    }

    .footer-links {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    html {
        scroll-padding-top: 30px;
    }

    .shell {
        width: min(100% - 24px, 1240px);
    }

    .site-top {
        min-height: 88px;
        gap: 12px;
    }

    .brand {
        gap: 9px;
    }

    .brand img {
        width: 43px;
        height: 43px;
        border-radius: 13px;
    }

    .brand span {
        display: none;
    }

    .nav-actions .ghost:first-child {
        display: none;
    }

    .nav-actions .ghost {
        min-height: 42px;
        width: auto;
        padding-inline: 15px;
        font-size: .78rem;
    }

    .hero {
        min-height: auto;
        padding: 72px 20px 66px;
        border-radius: 28px;
    }

    h1 {
        margin-top: 20px;
        font-size: clamp(3.1rem, 15vw, 5.3rem);
        line-height: .88;
    }

    .hero-copy p {
        font-size: .94rem;
        line-height: 1.67;
    }

    .hero-points {
        align-items: center;
        gap: 7px;
    }

    .hero-points span {
        padding: 8px 10px;
        font-size: .7rem;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .hero .btn,
    .hero .ghost {
        width: 100%;
    }

    .simple-signup-hero {
        min-height: auto;
        padding: 45px 17px;
        border-radius: 28px;
    }

    .simple-hero-brand img {
        width: 68px;
        height: 68px;
        border-radius: 19px;
    }

    .simple-signup-hero h1 {
        margin: 21px auto 27px;
        font-size: clamp(3rem, 14vw, 4.4rem);
    }

    .hero-email-form {
        grid-template-columns: 1fr;
        padding: 8px;
        border-radius: 22px;
    }

    .hero-email-form input {
        min-height: 58px;
        padding-inline: 15px;
        text-align: center;
    }

    .hero-email-form .btn {
        width: 100%;
        min-height: 56px;
        border-radius: 15px;
    }

    .hero-form-isolation {
        display: grid;
        justify-items: center;
        gap: 7px;
        margin-top: 16px;
        line-height: 1.45;
    }

    .hero-form-isolation strong,
    .hero-form-isolation > span:last-child {
        max-width: 32ch;
    }

    .hero-form-routes {
        grid-template-columns: 1fr;
        width: min(100%, 360px);
    }

    .hero-form-routes > span {
        grid-template-columns: auto auto minmax(0, 1fr) auto;
        gap: 5px;
        min-height: 40px;
        padding: 6px 7px 6px 9px;
        font-size: .6rem;
    }

    .hero-form-routes small {
        padding: 4px 5px;
        font-size: .48rem;
    }

    .featured,
    .section {
        padding-top: 64px;
    }

    .signup-hero {
        padding-top: 26px;
    }

    .section-title {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 26px;
    }

    .section-title .kicker {
        grid-column: auto;
        margin: 0 0 4px;
    }

    .section-title h2 {
        font-size: clamp(2.35rem, 11vw, 3.8rem);
    }

    .section-title p {
        font-size: .9rem;
    }

    .showcase {
        min-height: 450px;
        border-radius: 28px;
    }

    .showcase-frame {
        padding: 10px;
    }

    .showcase-screen {
        min-height: 430px;
        border-radius: 21px;
    }

    .screen-body {
        grid-template-columns: 1fr;
    }

    .screen-hero {
        min-height: 130px;
    }

    .screen-hero::after {
        line-height: 2.1;
    }

    .screen-card {
        min-height: 125px;
    }

    .screen-card::after {
        font-size: 3rem;
    }

    .screen-stack div {
        min-height: 95px;
    }

    .signin {
        order: -1;
        padding: 26px 20px;
        border-radius: 28px;
    }

    .signin::before {
        margin-bottom: 20px;
    }

    .pricing-heading {
        gap: 20px;
    }

    .pricing-section {
        width: 100%;
        margin-left: 0;
        padding: 24px 16px 20px;
        border-radius: 30px;
        transform: none;
    }

    .form-builder-home-section {
        width: 100%;
        min-height: 100svh;
        gap: 22px;
        margin-left: 0;
        padding-block: 58px 28px;
        transform: none;
    }

    .form-builder-home-heading {
        padding: 25px 18px 18px;
        border-radius: 28px;
    }

    .form-builder-home-heading h2 {
        max-width: none;
        font-size: clamp(2.65rem, 13vw, 4.1rem);
    }

    .form-builder-home-intro {
        padding: 18px;
        border-radius: 20px;
    }

    .form-builder-home-intro > p {
        font-size: .88rem;
        line-height: 1.6;
    }

    .form-builder-home-points {
        grid-template-columns: 1fr;
        margin-top: 14px;
    }

    .form-builder-home-showcase {
        padding: 31px 6px 6px;
        border-radius: 24px;
    }

    .form-builder-home-browser {
        height: 31px;
        padding-inline: 12px;
    }

    .form-builder-home-browser i {
        width: 6px;
        height: 6px;
    }

    .form-builder-home-browser span {
        font-size: .56rem;
    }

    .form-builder-home-showcase img {
        border-radius: 17px;
    }

    .form-builder-home-showcase figcaption {
        position: static;
        max-width: none;
        margin: 7px 3px 2px;
        padding: 8px 4px 4px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        text-align: center;
        font-size: .63rem;
        line-height: 1.45;
    }

    .billing-control,
    .billing-toggle {
        width: 100%;
    }

    .pricing-controls {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .currency-control,
    .currency-select-wrap,
    .currency-control select {
        width: 100%;
    }

    .currency-rate-status {
        position: static;
        min-width: 0;
        padding-left: 5px;
    }

    .billing-toggle {
        display: grid;
        grid-template-columns: .82fr 1.18fr;
    }

    .billing-option {
        padding-inline: 10px;
    }

    .pricing-table {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pricing-card {
        padding: 23px 20px;
        border-radius: 26px;
    }

    .pricing-card:hover {
        transform: none;
    }

    .plan-header {
        min-height: auto;
    }

    .plan-header > p:not(.billing-detail) {
        min-height: auto;
    }

    .billing-detail {
        min-height: 47px;
    }

    .plan-price {
        margin-top: 23px;
    }

    .price-amount {
        font-size: 3.3rem;
    }

    .plan-feature {
        min-height: 80px;
    }

    .hosting-inclusion {
        grid-template-columns: 1fr;
        gap: 17px;
        padding: 22px 19px;
    }

    .hosting-details > p {
        font-size: .7rem;
    }

    .hosting-link {
        grid-column: auto;
        justify-self: stretch;
    }

    .home-trust-section {
        width: 100%;
        margin-left: 0;
        padding-top: 52px;
        transform: none;
    }

    .home-trust-shell {
        padding: 24px 18px 18px;
        border-radius: 29px;
    }

    .home-trust-heading {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .home-trust-heading h2 {
        font-size: clamp(2.75rem, 13vw, 4.1rem);
    }

    .home-trust-heading > p {
        font-size: .88rem;
    }

    .home-trust-grid {
        grid-template-columns: 1fr;
        gap: 9px;
        margin-top: 22px;
    }

    .home-trust-grid article {
        min-height: 0;
        grid-template-columns: 38px 1fr;
        gap: 3px 12px;
        padding: 17px;
    }

    .home-trust-icon {
        grid-row: 1 / 3;
        margin-bottom: 0;
    }

    .home-trust-grid p {
        margin-top: 4px;
    }

    .home-trust-footer {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
        padding: 17px;
    }

    .home-trust-footer > div {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }

    .home-trust-footer .btn {
        width: 100%;
    }

    .compact-explainer {
        padding-top: 56px;
    }

    .compact-explainer-panel {
        min-height: auto;
        gap: 26px;
        padding: 28px 20px;
        border-radius: 28px;
    }

    .compact-explainer-copy {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .compact-explainer-copy .kicker,
    .compact-explainer-copy h2,
    .compact-explainer-copy > p,
    .two-way-email-flow {
        grid-column: 1;
        grid-row: auto;
    }

    .compact-explainer-copy h2 {
        max-width: none;
        margin-top: 13px;
        font-size: clamp(2.75rem, 12vw, 4rem);
    }

    .compact-explainer-copy > p {
        font-size: .9rem;
        line-height: 1.65;
    }

    .two-way-email-flow {
        margin-top: 20px;
    }

    .two-way-email-flow > div {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 10px;
        min-height: 62px;
        padding: 10px 11px;
        border-radius: 16px;
    }

    .two-way-email-flow > div > span {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .two-way-email-flow > em {
        border-radius: 14px;
    }

    .compact-benefits {
        display: none;
    }

    .compact-process {
        grid-template-columns: 1fr;
    }

    .compact-process li {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 14px;
        min-height: 96px;
        padding: 14px 15px;
        border-radius: 19px;
    }

    .compact-process li > span {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .video-panel {
        padding: 9px;
        border-radius: 28px;
    }

    .video-shell {
        min-height: auto;
        padding: 32px 18px;
        border-radius: 21px;
    }

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

    .workflow-step {
        min-height: auto;
    }

    .workflow-step span {
        margin-bottom: 20px;
    }

    .grid-4,
    .feature-grid,
    .stats-band {
        grid-template-columns: 1fr;
    }

    .card,
    .feature-card {
        border-radius: 26px;
    }

    .feature-card {
        min-height: 220px;
    }

    .metric,
    .metric:nth-child(2),
    .metric:last-child {
        min-height: 148px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .09);
    }

    .metric:last-child {
        border-bottom: 0;
    }

    .cta-band {
        padding: 30px 20px;
        border-radius: 28px;
    }

    .cta-band.access-explainer {
        gap: 30px;
        padding: 30px 20px;
    }

    .access-explainer h2 {
        max-width: none;
        font-size: clamp(2.75rem, 12vw, 4rem);
    }

    .access-primary-action {
        width: 100%;
    }

    .access-email-card {
        padding: 20px 17px;
        border-radius: 22px;
    }

    .cta-band .hero-actions {
        width: 100%;
        flex-direction: column;
    }

    .cta-band .btn,
    .cta-band .ghost {
        width: 100%;
    }

    .home-support-prompt {
        grid-template-columns: auto minmax(0, 1fr);
        padding: 22px 18px;
    }

    .home-support-prompt .btn {
        grid-column: 1 / -1;
        width: 100%;
    }

    .site-footer {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 20px 4px 28px;
        line-height: 1.6;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-actions .btn,
    .modal-actions .ghost {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
