:root {
    --bg: #050607;
    --panel: rgba(16, 18, 18, .78);
    --ink: #f8f3e8;
    --muted: #bcb7aa;
    --muted-2: #8f938b;
    --line: rgba(226, 174, 91, .2);
    --gold: #dca85a;
    --gold-bright: #f4d39a;
    --green: #25d366;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 18% 6%, rgba(220, 168, 90, .16), transparent 30rem),
        radial-gradient(circle at 88% 12%, rgba(37, 211, 102, .09), transparent 25rem),
        linear-gradient(180deg, #050607 0%, #080b0b 44%, #030404 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
    overflow-x: hidden;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .92), transparent 86%);
}

@keyframes premiumRise {
    from {
        opacity: 0;
        transform: translateY(24px) scale(.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes premiumFloatFlat {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -8px, 0);
    }
}

@keyframes agencySheen {
    0% {
        transform: translateX(-130%) skewX(-16deg);
    }

    42%, 100% {
        transform: translateX(150%) skewX(-16deg);
    }
}

@keyframes ambientGlow {
    0%, 100% {
        opacity: .55;
    }

    50% {
        opacity: 1;
    }
}

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

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

.container {
    width: min(100% - 32px, var(--max));
    margin: 0 auto;
}

.nav {
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid rgba(226, 174, 91, .14);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .035), transparent),
        rgba(5, 6, 7, .86);
    backdrop-filter: blur(18px);
}

.nav-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-weight: 900;
    letter-spacing: .08em;
}

.brand img {
    width: 52px;
    height: 52px;
    padding: 4px;
    border: 1px solid rgba(244, 211, 154, .24);
    border-radius: 14px;
    background: #000;
    box-shadow:
        0 14px 34px rgba(0, 0, 0, .44),
        inset 0 0 0 1px rgba(255, 255, 255, .035);
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    padding: 9px 11px;
    border-radius: 8px;
    color: var(--muted);
    font-size: .9rem;
    font-weight: 750;
    transition: color .18s ease, background .18s ease, transform .18s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--gold-bright);
    background: rgba(220, 168, 90, .09);
    outline: 0;
    transform: translateY(-1px);
}

.page-hero {
    position: relative;
    padding: clamp(76px, 11vw, 150px) 0 clamp(48px, 7vw, 90px);
    overflow: hidden;
}

.page-hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    height: 36%;
    pointer-events: none;
    content: "";
    background: linear-gradient(180deg, transparent, rgba(3, 4, 4, .82));
}

.hero-grid,
.split-grid {
    display: grid;
    grid-template-columns: minmax(0, .98fr) minmax(320px, 1.02fr);
    gap: clamp(28px, 5vw, 70px);
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--gold-bright);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 34px;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, var(--gold), var(--green));
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 820px;
    margin-bottom: 22px;
    font-size: clamp(2.6rem, 6.2vw, 5.4rem);
    line-height: .96;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4.4vw, 3.9rem);
    line-height: 1;
}

h3 {
    margin-bottom: 9px;
    font-size: 1.08rem;
}

.lead {
    max-width: 720px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: clamp(1.03rem, 1.8vw, 1.24rem);
}

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

.promo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 11px 14px;
    border: 1px solid rgba(37, 211, 102, .24);
    border-radius: 999px;
    color: #d9ffe4;
    background: rgba(37, 211, 102, .08);
    font-size: .92rem;
    font-weight: 850;
}

.promo-link::before {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    content: "";
    background: var(--green);
    box-shadow: 0 0 0 6px rgba(37, 211, 102, .12);
}

.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 18px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: .95rem;
    font-weight: 850;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
    isolation: isolate;
    overflow: hidden;
    position: relative;
}

.btn::after {
    position: absolute;
    inset: -40% auto -40% -38%;
    z-index: 1;
    width: 34%;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .34), transparent);
    animation: agencySheen 6.4s ease-in-out infinite;
    pointer-events: none;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    outline: 0;
}

.btn-primary {
    color: #06100c;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold) 54%, #c98344);
}

.btn-secondary {
    color: var(--ink);
    border-color: rgba(226, 174, 91, .28);
    background: rgba(255, 255, 255, .045);
}

.btn-whatsapp::before {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    content: "";
    background: var(--green);
    box-shadow: 0 0 0 6px rgba(37, 211, 102, .13);
}

.section {
    padding: clamp(70px, 9vw, 118px) 0;
}

.section-head {
    max-width: 820px;
    margin-bottom: clamp(28px, 5vw, 48px);
}

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

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

.card,
.panel {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .025));
    box-shadow: 0 20px 60px rgba(0, 0, 0, .26);
    backdrop-filter: blur(18px);
}

.card {
    min-height: 192px;
    padding: 22px;
    position: relative;
    overflow: hidden;
    transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.card::before {
    position: absolute;
    top: 0;
    right: 18px;
    left: 18px;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(244, 211, 154, .48), transparent);
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(226, 174, 91, .34);
    background: linear-gradient(145deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .035));
    box-shadow: 0 26px 70px rgba(0, 0, 0, .34);
}

.motion-reveal {
    opacity: 0;
    transform: translateY(24px) scale(.985);
    transition: opacity .75s ease, transform .75s cubic-bezier(.2, .7, .2, 1);
}

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

.motion-delay-1 {
    transition-delay: .08s;
}

.motion-delay-2 {
    transition-delay: .16s;
}

.motion-delay-3 {
    transition-delay: .24s;
}

.card p,
.panel p {
    color: var(--muted);
}

.card p {
    margin-bottom: 0;
}

.kicker {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px 10px;
    border: 1px solid rgba(37, 211, 102, .2);
    border-radius: 999px;
    color: #caffd9;
    background: rgba(37, 211, 102, .08);
    font-size: .78rem;
    font-weight: 850;
}

.feature-list {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    padding: 14px 16px;
    border: 1px solid rgba(226, 174, 91, .16);
    border-radius: 12px;
    color: var(--muted);
    background: rgba(255, 255, 255, .035);
}

.visual-panel {
    min-height: 420px;
    display: grid;
    align-content: center;
    gap: 14px;
    padding: clamp(22px, 4vw, 36px);
    overflow: hidden;
    position: relative;
    isolation: isolate;
    animation: premiumFloatFlat 8s ease-in-out infinite;
}

.logo-page .page-hero {
    padding-top: clamp(54px, 8vw, 112px);
}

.logo-simple .page-hero {
    min-height: calc(100svh - 92px);
    display: grid;
    align-items: center;
    padding-bottom: clamp(44px, 7vw, 78px);
}

.logo-simple .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
    gap: clamp(24px, 5vw, 58px);
}

.logo-copy h1 {
    max-width: 760px;
    font-size: clamp(3rem, 7vw, 6.35rem);
    letter-spacing: 0;
}

.logo-copy .lead {
    max-width: 650px;
}

.logo-offer {
    margin-bottom: 18px;
    color: #06100c;
    border-color: rgba(244, 211, 154, .42);
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    box-shadow: 0 18px 46px rgba(220, 168, 90, .16);
}

.logo-offer::before {
    background: #06100c;
    box-shadow: 0 0 0 6px rgba(6, 16, 12, .1);
}

.logo-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.logo-proof span {
    padding: 9px 11px;
    border: 1px solid rgba(226, 174, 91, .18);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255, 255, 255, .035);
    font-size: .88rem;
    font-weight: 760;
}

.logo-request-card {
    padding: clamp(20px, 4vw, 34px);
    background:
        radial-gradient(circle at 88% 10%, rgba(37, 211, 102, .1), transparent 16rem),
        linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .026));
}

.logo-request-card .eyebrow {
    margin-bottom: 16px;
}

.logo-request-list {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.logo-request-list div {
    padding: 15px;
    border: 1px solid rgba(226, 174, 91, .16);
    border-radius: 14px;
    background: rgba(5, 7, 7, .56);
}

.logo-request-list strong,
.logo-request-list span {
    display: block;
}

.logo-request-list strong {
    margin-bottom: 4px;
    color: var(--gold-bright);
}

.logo-request-list span {
    color: var(--muted);
    font-size: .94rem;
}

.logo-request-card .btn {
    width: 100%;
}

.logo-quick-path {
    width: min(100%, 520px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
}

.logo-quick-path span {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(226, 174, 91, .14);
    border-radius: 12px;
    color: var(--muted-2);
    background: rgba(255, 255, 255, .03);
    font-size: .82rem;
    font-weight: 850;
}

.logo-studio {
    min-height: 500px;
    padding: clamp(20px, 4vw, 34px);
    overflow: hidden;
    position: relative;
    background:
        radial-gradient(circle at 88% 10%, rgba(37, 211, 102, .13), transparent 16rem),
        linear-gradient(145deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .026));
    animation: premiumFloatFlat 8s ease-in-out infinite;
}

.logo-studio::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(rgba(244, 211, 154, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(244, 211, 154, .035) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: linear-gradient(140deg, rgba(0, 0, 0, .95), transparent 76%);
    animation: ambientGlow 5.8s ease-in-out infinite;
}

.studio-top,
.logo-preview,
.studio-grid {
    position: relative;
    z-index: 1;
}

.studio-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(226, 174, 91, .15);
}

.studio-top span {
    color: var(--muted-2);
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: .12em;
}

.studio-top strong {
    color: var(--gold-bright);
}

.logo-preview {
    min-height: 220px;
    display: grid;
    place-items: center;
    gap: 18px;
    padding: 30px;
    border: 1px solid rgba(244, 211, 154, .18);
    border-radius: 24px;
    background: #000;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .028),
        0 24px 80px rgba(0, 0, 0, .32);
    text-align: center;
}

.identity-card {
    max-width: 430px;
}

.preview-label {
    display: block;
    margin-bottom: 8px;
    color: var(--green);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.logo-preview strong {
    display: block;
    max-width: 380px;
    font-size: clamp(1.35rem, 2.4vw, 2.15rem);
    line-height: 1.05;
}

.logo-preview p {
    max-width: 360px;
    margin: 14px auto 0;
}

.studio-grid,
.logo-service-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.studio-grid div,
.logo-service-panel span {
    border: 1px solid rgba(226, 174, 91, .17);
    border-radius: 14px;
    background: rgba(5, 7, 7, .56);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.studio-grid div:hover,
.logo-service-panel span:hover {
    transform: translateY(-2px);
    border-color: rgba(244, 211, 154, .3);
    background: rgba(12, 15, 14, .68);
}

.studio-grid div {
    padding: 16px;
}

.studio-grid span {
    display: block;
    margin-bottom: 6px;
    color: var(--gold-bright);
    font-size: .8rem;
    font-weight: 900;
}

.studio-grid strong {
    font-size: .96rem;
}

.studio-cta {
    position: relative;
    z-index: 1;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    padding: 13px 16px;
    border: 1px solid rgba(37, 211, 102, .22);
    border-radius: 12px;
    color: #d9ffe4;
    background: rgba(37, 211, 102, .08);
    font-weight: 900;
}

.logo-section {
    padding-top: clamp(56px, 8vw, 96px);
    padding-bottom: clamp(56px, 8vw, 96px);
}

.compact-head {
    max-width: 760px;
}

.logo-card-grid .card,
.logo-steps .card {
    min-height: 178px;
}

.logo-service-panel {
    padding: clamp(20px, 4vw, 34px);
}

.logo-service-panel span {
    min-height: 58px;
    display: flex;
    align-items: center;
    padding: 14px 15px;
    color: var(--muted);
    font-weight: 800;
}

.logo-brief-card {
    padding: clamp(20px, 4vw, 34px);
}

.brief-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.brief-top span {
    color: var(--gold-bright);
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.copy-brief {
    min-height: 38px;
    padding: 8px 11px;
    border: 1px solid rgba(226, 174, 91, .22);
    border-radius: 10px;
    color: var(--ink);
    background: rgba(255, 255, 255, .045);
    cursor: pointer;
    font: inherit;
    font-size: .85rem;
    font-weight: 850;
}

.brief-text {
    padding: 18px;
    border: 1px solid rgba(226, 174, 91, .16);
    border-radius: 14px;
    color: var(--muted);
    background: rgba(5, 7, 7, .58);
    line-height: 1.65;
}

.logo-brief-card .btn {
    width: 100%;
    margin-top: 16px;
}

.brief-note {
    margin: 14px 0 0;
    color: var(--muted-2);
    font-size: .92rem;
}

.logo-expectations {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(320px, 1.14fr);
    gap: clamp(22px, 4vw, 44px);
    align-items: start;
    padding: clamp(24px, 5vw, 46px);
}

.expectation-list {
    display: grid;
    gap: 12px;
}

.expectation-list div {
    display: grid;
    gap: 5px;
    padding: 16px;
    border: 1px solid rgba(226, 174, 91, .16);
    border-radius: 14px;
    background: rgba(5, 7, 7, .5);
}

.expectation-list strong {
    color: var(--gold-bright);
}

.expectation-list span {
    color: var(--muted);
}

.logo-final {
    padding-top: clamp(52px, 7vw, 90px);
}

.logo-final-box {
    min-height: 360px;
    border-color: rgba(244, 211, 154, .34);
    background:
        radial-gradient(circle at 78% 12%, rgba(37, 211, 102, .11), transparent 22rem),
        radial-gradient(circle at 18% 82%, rgba(220, 168, 90, .14), transparent 20rem),
        rgba(255, 255, 255, .045);
}

.logo-simple-final {
    min-height: 0;
    padding: clamp(24px, 5vw, 42px);
}

.logo-simple-final h2 {
    max-width: 760px;
    font-size: clamp(2rem, 4vw, 3.1rem);
}

.logo-sticky-cta {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 40;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px;
    border: 1px solid rgba(244, 211, 154, .28);
    border-radius: 16px;
    background: rgba(5, 6, 7, .92);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .4);
    backdrop-filter: blur(18px);
}

.logo-sticky-cta span {
    color: var(--ink);
    font-size: .9rem;
    font-weight: 850;
}

.logo-sticky-cta a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 12px;
    color: #06100c;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    font-size: .88rem;
    font-weight: 900;
}

.copy-toast {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 45;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    padding: 10px 13px;
    border: 1px solid rgba(37, 211, 102, .28);
    border-radius: 999px;
    color: #d9ffe4;
    background: rgba(5, 18, 13, .94);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .36);
    transition: opacity .18s ease, transform .18s ease;
}

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

.visual-panel::after {
    position: absolute;
    inset: auto -18% -26% 22%;
    height: 220px;
    border-radius: 50%;
    content: "";
    background: radial-gradient(circle, rgba(37, 211, 102, .14), transparent 66%);
}

.flow-line {
    position: relative;
    z-index: 1;
    padding: 16px;
    border: 1px solid rgba(226, 174, 91, .18);
    border-radius: 14px;
    background: rgba(5, 7, 7, .56);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.flow-line strong {
    display: block;
    margin-bottom: 4px;
}

.flow-line span {
    color: var(--muted-2);
}

.placeholder {
    min-height: 420px;
    display: grid;
    place-items: center;
    padding: clamp(28px, 5vw, 56px);
    text-align: center;
}

.placeholder p {
    max-width: 620px;
    margin: 0 auto;
}

footer {
    border-top: 1px solid rgba(226, 174, 91, .12);
    color: var(--muted-2);
    background: rgba(0, 0, 0, .3);
}

.footer-inner {
    min-height: 86px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: .94rem;
}

@media (max-width: 980px) {
    .nav-inner {
        min-height: auto;
        align-items: stretch;
        flex-direction: column;
        padding: 12px 0 10px;
        gap: 10px;
    }

    .nav-links {
        width: 100%;
        display: flex;
        overflow-x: auto;
        padding: 4px;
        border: 1px solid rgba(226, 174, 91, .13);
        border-radius: 14px;
        background: rgba(255, 255, 255, .025);
        scrollbar-width: none;
    }

    .nav-links::-webkit-scrollbar {
        display: none;
    }

    .nav-links a {
        flex: 0 0 auto;
        min-height: 42px;
        display: inline-flex;
        align-items: center;
        border: 1px solid rgba(226, 174, 91, .08);
        background: rgba(255, 255, 255, .025);
    }

    .hero-grid,
    .split-grid,
    .grid,
    .grid.two,
    .logo-expectations {
        grid-template-columns: 1fr;
    }

    .visual-panel {
        min-height: 300px;
    }

    .logo-studio {
        min-height: 420px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, var(--max));
    }

    h1 {
        font-size: clamp(2.35rem, 11.5vw, 3.35rem);
    }

    .logo-copy h1 {
        font-size: clamp(2.65rem, 12.2vw, 3.8rem);
    }

    .actions,
    .btn {
        width: 100%;
    }

    .promo-link {
        width: 100%;
        align-items: flex-start;
        border-radius: 14px;
    }

    .page-hero {
        padding-top: 40px;
    }

    .card {
        min-height: 0;
        padding: 20px;
    }

    .visual-panel {
        min-height: 0;
        padding: 18px;
    }

    .logo-studio {
        min-height: 0;
        padding: 16px;
        border-radius: 16px;
        animation: none;
    }

    .visual-panel {
        animation: none;
    }

    .motion-reveal {
        transform: translateY(14px);
        transition-duration: .48s;
    }

    .logo-preview {
        min-height: 180px;
        padding: 22px 16px;
    }

    .studio-grid,
    .logo-service-panel {
        grid-template-columns: 1fr;
    }

    .logo-proof span {
        flex: 1 1 100%;
        text-align: center;
    }

    .logo-quick-path {
        grid-template-columns: 1fr;
    }

    .brief-top {
        align-items: stretch;
        flex-direction: column;
    }

    .copy-brief {
        width: 100%;
    }

    .logo-sticky-cta {
        display: flex;
    }

    .logo-page {
        padding-bottom: 82px;
    }

    .copy-toast {
        right: 18px;
        bottom: 88px;
        left: 18px;
        text-align: center;
    }

    .flow-line {
        padding: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .motion-reveal {
        opacity: 1;
        transform: none;
    }
}
