:root {
    --mr-navy: #071a33;
    --mr-navy-2: #102c52;
    --mr-blue: #0b64ce;
    --mr-orange: #ef6c1a;
    --mr-orange-dark: #c84f0b;
    --mr-ivory: #f6f1e8;
    --mr-stone: #ebe5da;
    --mr-paper: #ffffff;
    --mr-graphite: #1c2430;
    --mr-body: #3f4b5c;
    --mr-muted: #748092;
    --mr-line: rgba(7, 26, 51, .13);
    --mr-line-strong: rgba(7, 26, 51, .22);
    --mr-soft-blue: #eef4fb;
    --mr-soft-orange: #fff0e7;
    --mr-green: #18864b;
    --mr-radius: 18px;
    --mr-radius-lg: 28px;
    --mr-container: 1180px;
    --mr-shadow: 0 18px 46px rgba(7, 26, 51, .10);
    --mr-shadow-strong: 0 30px 90px rgba(7, 26, 51, .18);
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family:
        "Aptos",
        "Segoe UI",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    color: var(--mr-graphite);
    background:
        linear-gradient(90deg, rgba(7, 26, 51, .045) 1px, transparent 1px),
        linear-gradient(180deg, rgba(7, 26, 51, .035) 1px, transparent 1px),
        var(--mr-ivory);
    background-size: 56px 56px;
    line-height: 1.55;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

.public-page {
    min-height: 100vh;
    overflow-x: hidden;
}

.public-container {
    width: min(var(--mr-container), calc(100% - 40px));
    margin-inline: auto;
}

/* HEADER */

.public-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(246, 241, 232, .94);
    border-bottom: 1px solid rgba(7, 26, 51, .10);
    backdrop-filter: blur(18px);
}

.public-nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.public-brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.public-brand__logo,
.public-footer__logo {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid rgba(7, 26, 51, .14);
}

.public-brand__logo {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    padding: 6px;
    box-shadow: 0 12px 24px rgba(7, 26, 51, .08);
}

.public-brand__text {
    display: grid;
    line-height: 1.05;
}

.public-brand__text strong {
    color: var(--mr-navy);
    font-size: 1.02rem;
    font-weight: 900;
    letter-spacing: -.03em;
}

.public-brand__text small {
    margin-top: 5px;
    color: var(--mr-muted);
    font-size: .75rem;
    font-weight: 750;
}

.public-nav__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.public-btn {
    min-height: 44px;
    border-radius: 12px;
    border: 1px solid transparent;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    cursor: pointer;
    font-weight: 850;
    font-size: .94rem;
    letter-spacing: -.015em;
    white-space: nowrap;
    transition:
        transform .16s ease,
        box-shadow .16s ease,
        background .16s ease,
        border-color .16s ease;
}

.public-btn:hover {
    transform: translateY(-1px);
}

.public-btn--primary {
    color: #fff;
    background: var(--mr-orange);
    border-color: var(--mr-orange);
    box-shadow: 0 12px 24px rgba(239, 108, 26, .24);
}

.public-btn--primary:hover {
    background: var(--mr-orange-dark);
    border-color: var(--mr-orange-dark);
}

.public-btn--dark {
    color: #fff;
    background: var(--mr-navy);
    border-color: var(--mr-navy);
    box-shadow: 0 12px 28px rgba(7, 26, 51, .20);
}

.public-btn--soft {
    color: var(--mr-navy);
    background: #fff;
    border-color: var(--mr-line);
}

.public-btn--ghost {
    color: var(--mr-navy);
    background: transparent;
    border-color: var(--mr-line);
}

/* LANDING */

.landing-main {
    display: block;
}

/* HERO */

.landing-hero {
    position: relative;
    padding: 76px 0 70px;
}

.landing-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(7, 26, 51, .18), transparent);
}

.landing-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
    gap: 68px;
    align-items: center;
}

.landing-hero__content {
    position: relative;
}

.landing-kicker {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 11px 7px 7px;
    color: var(--mr-navy);
    background: #fff;
    border: 1px solid var(--mr-line);
    border-radius: 12px;
    box-shadow: 0 10px 26px rgba(7, 26, 51, .06);
    font-size: .86rem;
    font-weight: 850;
}

.landing-kicker__dot {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: var(--mr-soft-orange);
    display: grid;
    place-items: center;
}

.landing-kicker__dot::before {
    content: "";
    width: 9px;
    height: 9px;
    background: var(--mr-orange);
    border-radius: 99px;
}

.landing-hero h1 {
    max-width: 790px;
    margin: 28px 0 24px;
    color: var(--mr-navy);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: clamp(2.9rem, 6.5vw, 6.2rem);
    line-height: .92;
    letter-spacing: -.065em;
    font-weight: 700;
}

.landing-hero h1 span {
    color: var(--mr-orange);
}

.landing-hero__lead {
    max-width: 720px;
    margin: 0;
    color: var(--mr-body);
    font-size: clamp(1.05rem, 1.55vw, 1.23rem);
    line-height: 1.72;
    font-weight: 440;
}

.landing-hero__actions {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.landing-proof {
    max-width: 720px;
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid var(--mr-line);
    background: rgba(255, 255, 255, .68);
    box-shadow: 0 14px 34px rgba(7, 26, 51, .055);
}

.landing-proof__item {
    min-height: 96px;
    padding: 17px 18px;
    border-right: 1px solid var(--mr-line);
}

.landing-proof__item:last-child {
    border-right: 0;
}

.landing-proof__item strong {
    display: block;
    color: var(--mr-navy);
    font-size: .98rem;
    line-height: 1.16;
    letter-spacing: -.025em;
    font-weight: 900;
}

.landing-proof__item small {
    display: block;
    margin-top: 7px;
    color: var(--mr-muted);
    font-weight: 680;
    line-height: 1.38;
}

/* PHONE MOCKUP */

.landing-device {
    position: relative;
    display: grid;
    place-items: center;
}

.landing-device::before {
    content: "";
    position: absolute;
    inset: 36px 8px auto auto;
    width: 330px;
    height: 460px;
    background: var(--mr-navy);
    opacity: .09;
    transform: rotate(-5deg);
}

.landing-device::after {
    content: "";
    position: absolute;
    inset: auto auto 22px 24px;
    width: 240px;
    height: 240px;
    background: var(--mr-orange);
    opacity: .11;
    border-radius: 999px;
}

.phone-shell {
    position: relative;
    z-index: 2;
    width: min(390px, 100%);
    padding: 12px;
    border-radius: 38px;
    background: #111827;
    border: 1px solid rgba(255, 255, 255, .20);
    box-shadow: var(--mr-shadow-strong);
}

.phone-shell::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    z-index: 4;
    width: 98px;
    height: 24px;
    transform: translateX(-50%);
    border-radius: 0 0 16px 16px;
    background: #030712;
}

.phone-screen {
    position: relative;
    min-height: 742px;
    overflow: hidden;
    border-radius: 30px;
    background: #f8fafc;
    border: 1px solid rgba(255, 255, 255, .10);
}

.card-preview__cover {
    position: relative;
    height: 164px;
    background:
        linear-gradient(180deg, rgba(7, 26, 51, .02), rgba(7, 26, 51, .82)),
        linear-gradient(135deg, #d8d2c5, #9ba8b9);
}

.card-preview__cover::before {
    content: "";
    position: absolute;
    inset: 32px 24px auto auto;
    width: 112px;
    height: 58px;
    border: 1px solid rgba(255, 255, 255, .28);
    transform: skew(-10deg);
}

.card-preview__cover::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 58px;
    background: linear-gradient(180deg, transparent, #f8fafc);
}

.card-preview__logo {
    position: absolute;
    left: 22px;
    bottom: -44px;
    z-index: 2;
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    padding: 11px;
    border-radius: 22px;
    background: #fff;
    border: 5px solid #fff;
    box-shadow: 0 18px 36px rgba(7, 26, 51, .20);
}

.card-preview__body {
    padding: 56px 18px 20px;
    text-align: left;
}

.card-preview__body h2 {
    margin: 0;
    color: var(--mr-navy);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 1.88rem;
    line-height: 1;
    letter-spacing: -.055em;
    font-weight: 700;
}

.card-preview__body > p {
    margin: 7px 0 0;
    color: var(--mr-body);
    font-size: .98rem;
    font-weight: 720;
}

.card-preview__quick {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.card-preview__quick a {
    min-height: 62px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 4px;
    color: var(--mr-navy);
    background: #fff;
    border: 1px solid rgba(7, 26, 51, .10);
    box-shadow: 0 8px 20px rgba(7, 26, 51, .055);
    font-size: .72rem;
    font-weight: 850;
}

.card-preview__quick a:first-child {
    color: #fff;
    background: #1aab5b;
    border-color: #1aab5b;
}

.card-preview__quick b {
    font-size: 1.1rem;
    line-height: 1;
}

.card-preview__box {
    margin-top: 11px;
    padding: 14px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(7, 26, 51, .10);
    box-shadow: 0 8px 22px rgba(7, 26, 51, .045);
}

.card-preview__box p {
    margin: 0;
    color: #4b5563;
    font-size: .91rem;
    line-height: 1.48;
}

.card-preview__box strong {
    display: block;
    margin-bottom: 10px;
    color: var(--mr-navy);
    font-size: .92rem;
    letter-spacing: -.02em;
    font-weight: 900;
}

.card-preview__services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
}

.card-preview__service {
    min-height: 56px;
    border-radius: 12px;
    background: #f1f5f9;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 4px;
    color: var(--mr-navy);
    font-size: .68rem;
    font-weight: 850;
}

.card-preview__service span {
    font-size: .95rem;
}

.card-preview__gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
}

.card-preview__gallery span {
    aspect-ratio: 1;
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(7, 26, 51, .05), rgba(7, 26, 51, .18)),
        linear-gradient(135deg, #ebe6db, #a7b0bd);
}

.card-preview__cta {
    margin-top: 13px;
    min-height: 62px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 13px 0 16px;
    color: #fff;
    background: var(--mr-navy);
    box-shadow: 0 18px 34px rgba(7, 26, 51, .20);
    font-weight: 900;
}

.card-preview__cta small {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, .68);
    font-weight: 650;
}

.card-preview__cta i {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--mr-orange);
    font-style: normal;
    font-size: 1.2rem;
}

/* SECTIONS */

.landing-section {
    padding: 72px 0;
}

.landing-section--tight {
    padding-top: 56px;
}

.landing-section__head {
    max-width: 820px;
    margin-bottom: 32px;
}

.landing-section__head.center {
    margin-inline: auto;
    text-align: center;
}

.landing-section__head small {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--mr-orange-dark);
    font-size: .78rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.landing-section__head h2 {
    margin: 0;
    color: var(--mr-navy);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: clamp(2.15rem, 4.2vw, 4.1rem);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 700;
}

.landing-section__head p {
    margin: 17px 0 0;
    color: var(--mr-body);
    font-size: 1.08rem;
    line-height: 1.72;
}

.landing-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.landing-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.landing-card {
    position: relative;
    min-height: 260px;
    padding: 26px;
    border-radius: 0;
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--mr-line);
    box-shadow: 0 14px 34px rgba(7, 26, 51, .055);
}

.landing-card::before {
    content: "";
    position: absolute;
    left: 26px;
    right: 26px;
    top: 0;
    height: 4px;
    background: var(--mr-orange);
}

.landing-card::after {
    content: "";
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    border-right: 1px solid rgba(7, 26, 51, .12);
    border-bottom: 1px solid rgba(7, 26, 51, .12);
}

.landing-card__num {
    width: fit-content;
    min-width: 48px;
    height: 38px;
    padding: 0 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    color: var(--mr-orange-dark);
    background: var(--mr-soft-orange);
    border: 1px solid rgba(239, 108, 26, .16);
    font-weight: 950;
    font-size: .9rem;
}

.landing-card h3 {
    position: relative;
    margin: 0 0 11px;
    color: var(--mr-navy);
    font-size: 1.23rem;
    line-height: 1.17;
    letter-spacing: -.03em;
    font-weight: 900;
}

.landing-card p {
    position: relative;
    margin: 0;
    color: #4d5a6c;
    line-height: 1.66;
}

/* DARK PANEL */

.landing-panel {
    position: relative;
    overflow: hidden;
    background: var(--mr-navy);
    color: #fff;
    box-shadow: var(--mr-shadow-strong);
}

.landing-panel::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 8px;
    background: var(--mr-orange);
}

.landing-panel::after {
    content: "";
    position: absolute;
    right: -140px;
    top: -160px;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .13);
}

.landing-panel__inner {
    position: relative;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 42px;
    align-items: center;
    padding: clamp(32px, 5vw, 58px);
}

.landing-panel h2 {
    margin: 0;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: clamp(2.1rem, 4vw, 4rem);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 700;
}

.landing-panel p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 1.06rem;
    line-height: 1.75;
}

.landing-checks {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
}

.landing-checks li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 16px 17px;
    color: rgba(255, 255, 255, .84);
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    font-weight: 690;
    line-height: 1.46;
}

.landing-checks li:last-child {
    border-bottom: 0;
}

.landing-checks li::before {
    content: "";
    flex: 0 0 9px;
    width: 9px;
    height: 9px;
    margin-top: 7px;
    background: var(--mr-orange);
    border-radius: 99px;
}

/* FLOW */

.landing-flow {
    counter-reset: flow;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid var(--mr-line);
    background: rgba(255, 255, 255, .62);
}

.landing-flow__item {
    counter-increment: flow;
    position: relative;
    min-height: 250px;
    padding: 28px;
    border-right: 1px solid var(--mr-line);
}

.landing-flow__item:last-child {
    border-right: 0;
}

.landing-flow__item::before {
    content: "Paso 0" counter(flow);
    display: inline-flex;
    margin-bottom: 34px;
    color: var(--mr-orange-dark);
    font-size: .78rem;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.landing-flow__item h3 {
    margin: 0 0 10px;
    color: var(--mr-navy);
    font-size: 1.25rem;
    line-height: 1.18;
    letter-spacing: -.03em;
    font-weight: 900;
}

.landing-flow__item p {
    margin: 0;
    color: #4d5a6c;
    line-height: 1.65;
}

/* CTA */

.landing-cta {
    padding: 80px 0 86px;
}

.landing-cta__box {
    position: relative;
    overflow: hidden;
    min-height: 318px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 34px;
    align-items: center;
    padding: clamp(34px, 5.8vw, 64px);
    color: #fff;
    background:
        linear-gradient(90deg, rgba(7, 26, 51, .97), rgba(7, 26, 51, .84)),
        var(--mr-navy);
    box-shadow: var(--mr-shadow-strong);
}

.landing-cta__box::before {
    content: "";
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(255, 255, 255, .16);
}

.landing-cta__box::after {
    content: "";
    position: absolute;
    right: 42px;
    top: 42px;
    width: 128px;
    height: 128px;
    border: 18px solid rgba(239, 108, 26, .34);
    border-radius: 999px;
}

.landing-cta__box h2 {
    position: relative;
    margin: 0;
    max-width: 780px;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: clamp(2.25rem, 4.8vw, 4.7rem);
    line-height: .94;
    letter-spacing: -.06em;
    font-weight: 700;
}

.landing-cta__box p {
    position: relative;
    max-width: 650px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 1.08rem;
    line-height: 1.72;
}

.landing-cta__actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.landing-cta__actions .public-btn--soft {
    background: #fff;
}

/* FOOTER */

.public-footer {
    padding: 30px 0 44px;
    color: var(--mr-muted);
}

.public-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 24px;
    border-top: 1px solid rgba(7, 26, 51, .13);
}

.public-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.public-footer__logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    padding: 5px;
}

.public-footer__brand span:last-child {
    display: grid;
    line-height: 1.1;
}

.public-footer__brand strong {
    color: var(--mr-navy);
    font-weight: 900;
    letter-spacing: -.025em;
}

.public-footer__brand small {
    margin-top: 4px;
    color: var(--mr-muted);
    font-weight: 680;
}

.public-footer__copy {
    font-size: .94rem;
    text-align: right;
}

/* FORMS / PUBLIC UTILS */

.public-alert {
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 16px;
    font-weight: 760;
}

.public-alert--success {
    color: #14532d;
    background: #dcfce7;
    border: 1px solid #bbf7d0;
}

.public-alert--error {
    color: #7f1d1d;
    background: #fee2e2;
    border: 1px solid #fecaca;
}

.public-form-card {
    width: min(520px, 100%);
    margin: 54px auto;
    padding: 30px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid var(--mr-line);
    box-shadow: var(--mr-shadow);
}

.public-form-card h1 {
    margin: 0 0 8px;
    color: var(--mr-navy);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 2.35rem;
    line-height: 1;
    letter-spacing: -.055em;
}

.public-form-card p {
    margin: 0 0 22px;
    color: var(--mr-muted);
}

.public-field {
    margin-bottom: 15px;
}

.public-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--mr-navy);
    font-size: .92rem;
    font-weight: 850;
}

.public-field input,
.public-field textarea,
.public-field select {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(7, 26, 51, .17);
    border-radius: 10px;
    padding: 0 14px;
    color: var(--mr-graphite);
    background: #fff;
    outline: none;
}

.public-field textarea {
    min-height: 120px;
    padding-top: 12px;
    resize: vertical;
}

.public-field input:focus,
.public-field textarea:focus,
.public-field select:focus {
    border-color: rgba(11, 100, 206, .70);
    box-shadow: 0 0 0 4px rgba(11, 100, 206, .10);
}

/* RESPONSIVE */

@media (max-width: 1040px) {
    .landing-hero__grid,
    .landing-panel__inner,
    .landing-cta__box {
        grid-template-columns: 1fr;
    }

    .landing-hero {
        padding-top: 48px;
    }

    .landing-device {
        margin-top: 8px;
    }

    .landing-cta__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 860px) {
    .landing-grid-3,
    .landing-grid-2 {
        grid-template-columns: 1fr;
    }

    .landing-proof {
        grid-template-columns: 1fr;
    }

    .landing-proof__item {
        border-right: 0;
        border-bottom: 1px solid var(--mr-line);
    }

    .landing-proof__item:last-child {
        border-bottom: 0;
    }

    .landing-flow {
        grid-template-columns: 1fr;
    }

    .landing-flow__item {
        border-right: 0;
        border-bottom: 1px solid var(--mr-line);
    }

    .landing-flow__item:last-child {
        border-bottom: 0;
    }

    .landing-card {
        min-height: auto;
    }

    .public-footer__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .public-footer__copy {
        text-align: left;
    }
}

@media (max-width: 620px) {
    .public-container {
        width: min(100% - 24px, var(--mr-container));
    }

    .public-nav {
        min-height: 68px;
    }

    .public-brand__logo {
        width: 42px;
        height: 42px;
    }

    .public-brand__text small {
        display: none;
    }

    .public-nav__actions {
        gap: 7px;
    }

    .public-nav__actions .public-btn--ghost {
        display: none;
    }

    .public-btn {
        min-height: 42px;
        padding: 0 13px;
        border-radius: 10px;
        font-size: .91rem;
    }

    .landing-hero {
        padding: 36px 0 42px;
    }

    .landing-hero h1 {
        margin-top: 20px;
        font-size: clamp(2.72rem, 16vw, 4.2rem);
        letter-spacing: -.06em;
    }

    .landing-hero__lead {
        font-size: 1rem;
    }

    .landing-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .landing-hero__actions .public-btn {
        width: 100%;
    }

    .landing-proof {
        margin-top: 26px;
    }

    .phone-shell {
        border-radius: 32px;
        padding: 9px;
    }

    .phone-screen {
        min-height: 680px;
        border-radius: 25px;
    }

    .card-preview__cover {
        height: 138px;
    }

    .card-preview__logo {
        left: 17px;
        width: 84px;
        height: 84px;
        border-radius: 19px;
    }

    .card-preview__body {
        padding: 52px 14px 18px;
    }

    .card-preview__body h2 {
        font-size: 1.62rem;
    }

    .card-preview__quick {
        gap: 7px;
    }

    .card-preview__quick a {
        min-height: 58px;
        border-radius: 12px;
        font-size: .66rem;
    }

    .card-preview__services {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-section {
        padding: 48px 0;
    }

    .landing-section--tight {
        padding-top: 42px;
    }

    .landing-section__head {
        margin-bottom: 22px;
    }

    .landing-section__head h2,
    .landing-panel h2,
    .landing-cta__box h2 {
        letter-spacing: -.052em;
    }

    .landing-card,
    .landing-flow__item {
        padding: 22px;
    }

    .landing-panel__inner,
    .landing-cta__box {
        padding: 26px;
    }

    .landing-cta {
        padding: 50px 0 62px;
    }

    .landing-cta__box::before {
        inset: 14px;
    }

    .landing-cta__box::after {
        width: 82px;
        height: 82px;
        border-width: 12px;
        right: 20px;
        top: 20px;
        opacity: .55;
    }

    .public-form-card {
        margin: 34px auto;
        padding: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}