@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

/* ================================================================
   TEMPLATE 9 — Brandly SaaS Site
   ================================================================ */
.t9-root {
    --t9-primary:   var(--template-primary, #6366F1);
    --t9-secondary: var(--template-secondary, #22D3EE);
    --t9-accent:    var(--template-accent, #A855F7);
    --t9-bg:        var(--template-bg, #FFFFFF);
    --t9-bg-alt:    var(--template-bg-alt, #F6F7FB);
    --t9-text:      var(--template-text, #0F172A);
    --t9-muted:     var(--template-text-muted, #64748B);

    --t9-display: 'Plus Jakarta Sans', system-ui, sans-serif;
    --t9-body: 'Inter', system-ui, sans-serif;
    --t9-radius: 16px;
    --t9-shadow: 0 20px 50px -20px rgba(15, 23, 42, 0.35);
    --t9-border: 1px solid color-mix(in srgb, var(--t9-text) 10%, transparent);

    container-type: inline-size;
    font-family: var(--t9-body);
    color: var(--t9-text);
    background: var(--t9-bg);
}

.t9-root h1, .t9-root h2, .t9-root h3, .t9-root h4, .t9-root h5, .t9-root h6 {
    font-family: var(--t9-display);
    color: var(--t9-text);
}

/* ================================================================
   NAVBAR (glass, sticky)
   ================================================================ */
.t9-navbar {
    position: sticky;
    top: 0;
    z-index: 300;
    background: color-mix(in srgb, var(--t9-bg) 82%, transparent);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: var(--t9-border);
}
.t9-navbar__bar {
    width: min(100%, 1200px);
    margin: 0 auto;
    padding: 17px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}
.t9-navbar__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--t9-text);
    font-family: var(--t9-display);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}
.t9-navbar__logo {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    background: linear-gradient(135deg, var(--t9-primary), var(--t9-accent));
    box-shadow: 0 6px 16px -4px color-mix(in srgb, var(--t9-primary) 60%, transparent);
}
.t9-navbar__logo-img {
    display: block;
    height: 36px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
}
.t9-brand-symbol {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    overflow: hidden;
    border-radius: 11px;
    background: linear-gradient(145deg, var(--t9-primary), var(--t9-accent));
    box-shadow: 0 9px 20px -11px color-mix(in srgb, var(--t9-primary) 75%, transparent);
}
.t9-brand-symbol img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.t9-navbar__nav { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.t9-navbar__menu {
    display: flex;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.t9-navbar__menu .nav-link {
    color: var(--t9-muted) !important;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 14px !important;
    border-radius: 10px;
    transition: color 0.15s ease, background 0.15s ease;
}
.t9-navbar__menu .nav-link:hover {
    color: var(--t9-text) !important;
    background: var(--t9-bg-alt);
}
.t9-navbar__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}
.t9-navbar__login {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    color: var(--t9-muted);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    padding: 0 4px;
    border-radius: 6px;
    border: 0;
    background: transparent;
    transition: color .16s ease, background .16s ease;
}
.t9-navbar__login-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--t9-primary);
}
.t9-navbar__login-icon i { font-size: 15px; }
.t9-navbar__login:hover {
    color: var(--t9-text);
    background: transparent;
}
.t9-navbar__login:focus-visible,
.t9-navbar__burger:focus-visible,
.t9-navbar__cta > a:focus-visible,
.t9-navbar__cta > button:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--t9-primary) 24%, transparent);
    outline-offset: 3px;
}
.t9-navbar__login span p { margin: 0; display: inline; }
.t9-navbar__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    background: var(--t9-bg-alt);
    border: var(--t9-border);
    border-radius: 10px;
    cursor: pointer;
}
.t9-navbar__burger span { display: block; width: 20px; height: 2px; background: var(--t9-text); border-radius: 2px; }

/* Botão do header (button-editor) */
.t9-navbar__cta > a,
.t9-navbar__cta > button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding-inline: 14px !important;
    box-shadow: 0 7px 16px -11px color-mix(in srgb, var(--t9-primary) 72%, transparent);
    font-weight: 700 !important;
    transition: box-shadow .16s ease, filter .16s ease !important;
}
.t9-navbar__cta {
    position: relative;
    padding-left: 15px;
}
.t9-navbar__cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 24px;
    border-radius: 1px;
    background: color-mix(in srgb, var(--t9-text) 16%, transparent);
    transform: translateY(-50%);
}
.t9-navbar__cta > a::after,
.t9-navbar__cta > button::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-size: 10px;
    font-weight: 900;
}
.t9-navbar__cta > a:hover,
.t9-navbar__cta > button:hover {
    filter: saturate(1.05) brightness(.97);
    box-shadow: 0 9px 18px -12px color-mix(in srgb, var(--t9-primary) 82%, transparent);
}

/* ================================================================
   HERO
   ================================================================ */
.t9-hero {
    position: relative;
    isolation: isolate;
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--t9-primary) 6%, var(--t9-bg)), var(--t9-bg) 54%),
        var(--t9-bg);
    padding: 88px 0 0;
    overflow: hidden;
}
.t9-navbar__nav-actions {
    display: flex;
    align-items: center;
    gap: 11px;
}
.t9-navbar__account-label { display: none; }
.t9-hero::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 620px;
    z-index: -1;
    opacity: .55;
    background-image:
        linear-gradient(color-mix(in srgb, var(--t9-text) 5%, transparent) 1px, transparent 1px),
        linear-gradient(90deg, color-mix(in srgb, var(--t9-text) 5%, transparent) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, #000, transparent 88%);
    pointer-events: none;
}
.t9-hero__glow {
    position: absolute;
    top: -120px;
    left: 72%;
    transform: translateX(-50%);
    width: 820px;
    height: 620px;
    background: radial-gradient(closest-side,
        color-mix(in srgb, var(--t9-primary) 26%, transparent),
        transparent);
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
}
.t9-hero__shell {
    position: relative;
    z-index: 1;
    width: min(100%, 1200px);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 500px;
    gap: 72px;
    align-items: center;
}
.t9-hero__copy { max-width: 650px; }
.t9-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .04em;
    color: var(--t9-primary);
    background: color-mix(in srgb, var(--t9-primary) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--t9-primary) 25%, transparent);
    padding: 6px 14px;
    border-radius: 10px;
    margin-bottom: 24px;
}
.t9-hero__title {
    max-width: 720px;
    font-size: clamp(2.5rem, 5.2cqi, 4.15rem);
    font-weight: 800;
    line-height: 1.01;
    letter-spacing: -0.048em;
    text-wrap: balance;
    margin: 0 0 24px;
}
.t9-hero__subtitle {
    font-size: clamp(1rem, 1.6cqi, 1.15rem);
    line-height: 1.7;
    color: var(--t9-muted);
    max-width: 38rem;
    margin: 0 0 32px;
}
.t9-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 26px;
}
.t9-hero__btn { display: inline-flex; }
.t9-hero__btn > a,
.t9-hero__btn > button {
    font-weight: 700 !important;
    box-shadow: 0 14px 30px -12px color-mix(in srgb, var(--t9-primary) 55%, transparent);
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.t9-hero__btn > a:hover,
.t9-hero__btn > button:hover { transform: translateY(-2px); }
.t9-hero__proof {
    display: flex;
    align-items: center;
    gap: 12px;
}
.t9-hero__proof-icon { color: #22c55e; font-size: 16px; }
.t9-hero__proof-text {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--t9-muted);
}

/* Product window mockup (com carrossel de modelos) */
.t9-hero__media { position: relative; padding: 18px 0; }
.t9-hero__media::before {
    content: '';
    position: absolute;
    inset: -18px -22px 12px 22px;
    border-radius: 28px;
    background: linear-gradient(145deg, color-mix(in srgb, var(--t9-primary) 17%, var(--t9-bg-alt)), color-mix(in srgb, var(--t9-secondary) 10%, var(--t9-bg-alt)));
    transform: rotate(2deg);
}
.t9-hero__window {
    position: relative;
    border-radius: var(--t9-radius);
    overflow: hidden;
    background: var(--t9-bg-alt);
    border: var(--t9-border);
    box-shadow: 0 36px 80px -36px color-mix(in srgb, var(--t9-text) 58%, transparent);
    z-index: 1;
}
.t9-hero__window-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 14px;
    background: color-mix(in srgb, var(--t9-text) 5%, var(--t9-bg-alt));
    border-bottom: var(--t9-border);
}
.t9-hero__window-bar > span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--t9-text) 22%, transparent);
}
.t9-hero__window-bar > span:nth-child(1) { background: #ff5f57; }
.t9-hero__window-bar > span:nth-child(2) { background: #febc2e; }
.t9-hero__window-bar > span:nth-child(3) { background: #28c840; }
.t9-hero__window-url {
    margin-left: 10px;
    display: block;
    flex: 1;
    height: 27px;
    font-size: 11.5px;
    color: var(--t9-muted);
    background: var(--t9-bg);
    border: var(--t9-border);
    border-radius: 7px;
    padding: 0 10px;
    white-space: nowrap;
    overflow: hidden;
}
.t9-hero__domain-track {
    display: flex;
    flex-direction: column;
    width: 100%;
    line-height: 27px;
    will-change: transform;
    animation: t9-domain-cycle 9s infinite cubic-bezier(0.78, 0, 0.18, 1);
}
.t9-hero__domain-track span {
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}
@keyframes t9-domain-cycle {
    0%, 25% { transform: translateY(0); }
    33%, 58% { transform: translateY(-27px); }
    66%, 91% { transform: translateY(-54px); }
    100% { transform: translateY(0); }
}

/* Stage: modelos completos, sem recortar os mockups enviados pelo editor. */
.t9-hero__stage {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background:
        linear-gradient(color-mix(in srgb, var(--t9-text) 4%, transparent) 1px, transparent 1px),
        linear-gradient(90deg, color-mix(in srgb, var(--t9-text) 4%, transparent) 1px, transparent 1px),
        var(--t9-bg-alt);
    background-size: 22px 22px;
    overflow: hidden;
}
.t9-hero__window-footer {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 14px;
    border-top: var(--t9-border);
    color: var(--t9-muted);
    background: var(--t9-bg);
    font-size: 10px;
    font-weight: 700;
}
.t9-hero__window-footer span { display: inline-flex; align-items: center; gap: 7px; }
.t9-hero__window-footer i { color: var(--t9-primary); }
.t9-hero__window-footer span:last-child i { color: #22a65a; }
.t9-hero__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 0;
    transform: translateY(8px) scale(0.985);
    will-change: transform, opacity;
    animation: t9-hero-cycle 13.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}
.t9-hero__slide--1 { animation-delay: 0s; }
.t9-hero__slide--2 { animation-delay: 4.5s; }
.t9-hero__slide--3 { animation-delay: 9s; }
@keyframes t9-hero-cycle {
    0%   { opacity: 0; transform: translateY(8px) scale(0.985); }
    4%   { opacity: 1; transform: translateY(0) scale(1); }
    30%  { opacity: 1; transform: translateY(0) scale(1); }
    33%  { opacity: 0; transform: translateY(-6px) scale(0.99); }
    100% { opacity: 0; transform: translateY(-6px) scale(0.99); }
}

/* Brilho que varre a tela ao trocar de modelo */
.t9-hero__stage::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(105deg, transparent 40%,
        color-mix(in srgb, #ffffff 35%, transparent) 50%, transparent 60%);
    transform: translateX(-120%);
    animation: t9-hero-sheen 4.5s infinite ease-in-out;
}
@keyframes t9-hero-sheen {
    0%, 88% { transform: translateX(-120%); }
    96%, 100% { transform: translateX(120%); }
}

/* Indicadores (dots) */
.t9-hero__dots {
    position: absolute;
    z-index: 4;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--t9-text) 42%, transparent);
    backdrop-filter: blur(6px);
}
.t9-hero__dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    animation: t9-hero-dot 13.5s infinite ease-in-out;
}
.t9-hero__dot--1 { animation-delay: 0s; }
.t9-hero__dot--2 { animation-delay: 4.5s; }
.t9-hero__dot--3 { animation-delay: 9s; }
@keyframes t9-hero-dot {
    0%, 2%    { width: 7px; background: rgba(255,255,255,0.55); }
    5%, 30%   { width: 22px; background: #ffffff; }
    33%, 100% { width: 7px; background: rgba(255,255,255,0.55); }
}

@media (prefers-reduced-motion: reduce) {
    .t9-hero__slide,
    .t9-hero__stage::after,
    .t9-hero__dot,
    .t9-hero__domain-track { animation: none; }
    .t9-hero__slide--1 { opacity: 1; transform: none; }
    .t9-hero__stage::after { display: none; }
}

/* Etiquetas flutuantes (mini-cards) */
.t9-hero__float {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: color-mix(in srgb, var(--t9-bg) 88%, transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--t9-text);
    padding: 11px 15px 11px 12px;
    border-radius: 15px;
    border: 1px solid color-mix(in srgb, var(--t9-text) 8%, transparent);
    box-shadow: 0 18px 38px -18px rgba(15, 23, 42, 0.45);
}
.t9-hero__float-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    background: linear-gradient(135deg, var(--t9-primary), var(--t9-accent));
}
.t9-hero__float-icon--live {
    background: color-mix(in srgb, #22c55e 16%, var(--t9-bg));
}
.t9-hero__pulse {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    animation: t9-pulse 1.8s ease-out infinite;
}
@keyframes t9-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
    70%  { box-shadow: 0 0 0 9px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
.t9-hero__float-body {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.t9-hero__float-body strong {
    font-family: var(--t9-display);
    font-size: 13.5px;
    font-weight: 800;
    color: var(--t9-text);
}
.t9-hero__float-body small {
    font-size: 11px;
    color: var(--t9-muted);
}
.t9-hero__float-body strong p,
.t9-hero__float-body small p { margin: 0; display: inline; }
.t9-hero__float--a { top: 76px; left: -26px; animation: t9-float 4.4s ease-in-out infinite; }
.t9-hero__float--b { bottom: 26px; right: -24px; animation: t9-float 4.4s ease-in-out infinite 1.8s; }
@keyframes t9-float {
    0%, 100% { transform: translateY(0) rotate(-0.5deg); }
    50% { transform: translateY(-10px) rotate(0.5deg); }
}
@media (prefers-reduced-motion: reduce) {
    .t9-hero__float, .t9-hero__pulse { animation: none; }
}

/* eyebrow/text-editor <p> reset */
.t9-hero__badge p, .t9-hero__proof-text p { margin: 0; display: inline; }

/* ================================================================
   MAIN — seções dinâmicas centralizadas
   ================================================================ */
.t9-main { background: var(--t9-bg); }

.t9-main #dynamic-sections,
.t9-main .dynamic-sections {
    width: min(100%, var(--ds-content-width, 1140px));
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}
.t9-main #dynamic-sections > [data-section-id],
.t9-main #dynamic-sections > [data-section-id] > section,
.t9-main #dynamic-sections > [data-section-id] > div > section,
.t9-main .dynamic-sections > section {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.t9-main #dynamic-sections > [data-section-id] .container,
.t9-main .dynamic-sections .container {
    max-width: 100%;
}

/* Section divider */
.t9-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 24px 24px;
}
.t9-divider__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--t9-muted);
    background: var(--t9-bg-alt);
    border: var(--t9-border);
    padding: 5px 14px;
    border-radius: 999px;
}

/* ================================================================
   FOOTER
   ================================================================ */
.t9-footer { background: var(--t9-bg-alt); border-top: var(--t9-border); }

.t9-footer__cta {
    width: min(100%, 1100px);
    margin: 0 auto;
    padding: 0 24px;
    transform: translateY(-40px);
}
.t9-footer__cta-inner {
    text-align: center;
    background: linear-gradient(135deg, var(--t9-primary), var(--t9-accent));
    color: #fff;
    border-radius: 24px;
    padding: 48px 32px;
    box-shadow: 0 30px 60px -25px color-mix(in srgb, var(--t9-primary) 70%, transparent);
}
.t9-footer__cta-title {
    color: #fff;
    font-size: clamp(1.5rem, 3.6cqi, 2.3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 10px;
}
.t9-footer__cta-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin: 0 0 24px;
}
.t9-footer__cta-title p, .t9-footer__cta-subtitle p { margin: 0; }
.t9-footer__cta-btn { display: inline-flex; }
.t9-footer__cta-btn > a,
.t9-footer__cta-btn > button {
    font-weight: 700 !important;
    background: #fff !important;
    color: var(--t9-primary) !important;
    border: none !important;
}

.t9-footer__main {
    width: min(100%, 1100px);
    margin: 0 auto;
    padding: 8px 24px 32px;
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 40px;
}
.t9-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 12px;
}
.t9-footer__brand-img {
    display: block;
    width: auto;
    height: 42px;
    max-width: 190px;
}
.t9-brand-symbol--footer { width: 42px; height: 42px; }
.t9-footer__tagline {
    color: var(--t9-muted);
    font-size: 14px;
    line-height: 1.6;
    max-width: 22rem;
    margin: 0;
}
.t9-footer__tagline p { margin: 0; }
.t9-footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.t9-footer__col { display: flex; flex-direction: column; gap: 10px; }
.t9-footer__col-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--t9-text);
    margin-bottom: 2px;
}
.t9-footer__col a {
    color: var(--t9-muted);
    font-size: 14px;
    text-decoration: none;
}
.t9-footer__col a:hover { color: var(--t9-primary); }

.t9-footer__bottom {
    border-top: var(--t9-border);
    width: min(100%, 1100px);
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.t9-footer__copy { color: var(--t9-muted); font-size: 13px; }
.t9-footer__copy p { margin: 0; display: inline; }
.t9-footer__watermark {
    color: var(--t9-muted);
    font-size: 13px;
    text-decoration: none;
}
.t9-footer__watermark strong { color: var(--t9-primary); }

.t9-legal-dialog {
    width: min(760px, calc(100% - 32px));
    max-width: none;
    max-height: min(82vh, 760px);
    padding: 0;
    border: 0;
    border-radius: 18px;
    color: var(--t9-text);
    background: var(--t9-bg);
    box-shadow: 0 28px 90px rgba(15, 23, 42, 0.28);
    overflow: hidden;
}
.t9-legal-dialog::backdrop {
    background: rgba(15, 23, 42, 0.58);
    backdrop-filter: blur(5px);
}
.t9-legal-dialog[open] { animation: t9-legal-enter 180ms ease-out both; }
.t9-legal-dialog__panel {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    max-height: min(82vh, 760px);
}
.t9-legal-dialog__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 26px 20px;
    border-bottom: var(--t9-border);
}
.t9-legal-dialog__eyebrow {
    display: block;
    margin-bottom: 6px;
    color: var(--t9-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}
.t9-legal-dialog__header h2 {
    margin: 0;
    color: var(--t9-text);
    font-size: clamp(1.35rem, 4vw, 1.8rem);
    line-height: 1.15;
}
.t9-legal-dialog__header p {
    min-height: 1em;
    margin: 7px 0 0;
    color: var(--t9-muted);
    font-size: 12px;
}
.t9-legal-dialog__close {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border: var(--t9-border);
    border-radius: 10px;
    color: var(--t9-text);
    background: var(--t9-bg-alt);
    cursor: pointer;
}
.t9-legal-dialog__close:hover { color: var(--t9-primary); border-color: var(--t9-primary); }
.t9-legal-dialog__body {
    min-height: 240px;
    padding: 26px;
    overflow-y: auto;
    overscroll-behavior: contain;
}
.t9-legal-dialog__status {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    min-height: 220px;
    color: var(--t9-muted);
    text-align: center;
}
.t9-legal-dialog__status[hidden] { display: none; }
.t9-legal-dialog__status p { max-width: 430px; margin: 0; line-height: 1.6; }
.t9-legal-dialog__status.is-error { color: #b45309; }
.t9-legal-dialog__status.is-error .t9-legal-dialog__loader { display: none; }
.t9-legal-dialog__loader {
    width: 28px;
    height: 28px;
    border: 3px solid color-mix(in srgb, var(--t9-primary) 18%, transparent);
    border-top-color: var(--t9-primary);
    border-radius: 50%;
    animation: t9-legal-spin 700ms linear infinite;
}
.t9-legal-dialog__content { color: var(--t9-text); }
.t9-legal-dialog__content[hidden] { display: none; }
.t9-legal-dialog__content p {
    margin: 0 0 1.1em;
    color: var(--t9-text);
    font-size: 14px;
    line-height: 1.75;
    white-space: pre-line;
}
.t9-legal-dialog__content p:last-child { margin-bottom: 0; }
.t9-legal-dialog__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 26px;
    border-top: var(--t9-border);
    color: var(--t9-muted);
    background: var(--t9-bg-alt);
    font-size: 12px;
}
.t9-legal-dialog__footer a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--t9-primary);
    font-weight: 700;
    text-decoration: none;
}

@keyframes t9-legal-spin { to { transform: rotate(360deg); } }
@keyframes t9-legal-enter {
    from { opacity: 0; transform: translateY(12px) scale(0.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ================================================================
   RESPONSIVE (container queries)
   ================================================================ */
@container (max-width: 900px) {
    .t9-hero__shell {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .t9-hero { padding-top: 48px; }
    .t9-hero__float { display: none; }
    .t9-footer__main { grid-template-columns: 1fr; gap: 28px; }
}

@container (max-width: 940px) {
    .t9-navbar__nav { display: none; }
    .t9-navbar__burger { display: inline-flex; margin-left: auto; }
    .t9-navbar__nav { margin-left: auto; }
    .t9-navbar.is-menu-open .t9-navbar__nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 16px;
        right: 16px;
        display: grid;
        overflow: hidden;
        padding: 10px;
        border: var(--t9-border);
        border-radius: 16px;
        background: color-mix(in srgb, var(--t9-bg) 96%, transparent);
        box-shadow: 0 24px 50px -28px color-mix(in srgb, var(--t9-text) 55%, transparent);
        backdrop-filter: blur(16px);
    }
    .t9-navbar.is-menu-open .t9-navbar__menu { flex-direction: column; }
    .t9-navbar.is-menu-open .t9-navbar__menu .nav-link { display: flex; align-items: center; min-height: 42px; padding: 10px 12px !important; border-radius: 8px; }
    .t9-navbar__nav-actions {
        display: grid;
        grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
        gap: 10px;
        margin-top: 8px;
        padding: 12px 0 0;
        border: 0;
        border-top: var(--t9-border);
        border-radius: 0;
        background: transparent;
    }
    .t9-navbar__account-label {
        grid-column: 1 / -1;
        display: block;
        padding: 0 2px;
        color: var(--t9-muted);
        font-size: 10px;
        font-weight: 800;
        letter-spacing: .09em;
        text-transform: uppercase;
    }
    .t9-navbar__login {
        justify-content: center;
        min-height: 46px;
        padding: 6px 12px;
        border: var(--t9-border);
        background: var(--t9-bg);
    }
    .t9-navbar__cta { padding-left: 0; }
    .t9-navbar__cta::before { display: none; }
    .t9-navbar__cta { display: block; min-width: 0; }
    .t9-navbar__cta > a,
    .t9-navbar__cta > button { width: 100% !important; min-height: 46px; }
    .t9-navbar.is-menu-open .t9-navbar__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .t9-navbar.is-menu-open .t9-navbar__burger span:nth-child(2) { opacity: 0; }
    .t9-navbar.is-menu-open .t9-navbar__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .t9-navbar__burger span { transition: transform .2s ease, opacity .2s ease; }
}

@container (max-width: 575.98px) {
    .t9-navbar__bar { gap: 12px; padding-left: 16px; padding-right: 16px; }
    .t9-navbar__logo-img { max-width: 130px; }
    .t9-navbar__brand { gap: 7px; }
    .t9-brand-symbol { width: 34px; height: 34px; padding: 7px; border-radius: 9px; }
    .t9-navbar__burger { margin-left: auto; }
    .t9-main #dynamic-sections,
    .t9-main .dynamic-sections {
        padding-left: 16px;
        padding-right: 16px;
    }
    .t9-main #dynamic-sections > [data-section-id] > section,
    .t9-main .dynamic-sections > section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .t9-main #dynamic-sections > [data-section-id] .container,
    .t9-main .dynamic-sections .container {
        --bs-gutter-x: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .t9-footer__links { grid-template-columns: 1fr 1fr; }
    .t9-legal-dialog { width: calc(100% - 20px); max-height: calc(100vh - 20px); border-radius: 14px; }
    .t9-legal-dialog__panel { max-height: calc(100vh - 20px); }
    .t9-legal-dialog__header { padding: 19px 18px 16px; }
    .t9-legal-dialog__body { min-height: 180px; padding: 20px 18px; }
    .t9-legal-dialog__footer { align-items: flex-start; flex-direction: column; padding: 14px 18px; }
}

@container (max-width: 380px) {
    .t9-navbar__nav-actions { grid-template-columns: 1fr; }
    .t9-navbar__account-label { grid-column: 1; }
}

/* ================================================================
   COMPLETE SITE CONTENT
   ================================================================ */
.t9-content {
    overflow: hidden;
    background: var(--t9-bg);
}
.t9-section {
    position: relative;
    isolation: isolate;
    width: min(100%, 1200px);
    margin: 0 auto;
    padding: 112px 24px;
    scroll-margin-top: 84px;
}
.t9-section > * { position: relative; z-index: 1; }
.t9-content > .t9-section:nth-of-type(even)::before {
    content: '';
    position: absolute;
    top: clamp(-150px, -9vw, -90px);
    right: max(-72px, -4vw);
    z-index: 0;
    width: clamp(300px, 34vw, 540px);
    aspect-ratio: 2048 / 1242;
    pointer-events: none;
    opacity: .065;
    background: var(--t9-primary);
    -webkit-mask: url('https://brandly.space/static/logos/origami-black.png') center / contain no-repeat;
    mask: url('https://brandly.space/static/logos/origami-black.png') center / contain no-repeat;
    transform: rotate(-7deg);
}
.t9-content > .t9-section:nth-of-type(4n)::before {
    right: auto;
    left: max(-78px, -4.5vw);
    transform: rotate(7deg) scaleX(-1);
}
.t9-section__head {
    max-width: 760px;
    margin: 0 auto 54px;
    text-align: center;
}
.t9-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--t9-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.t9-eyebrow::before {
    content: '';
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--t9-primary), var(--t9-secondary));
}
.t9-section__title {
    margin: 0;
    font-size: clamp(2rem, 4.6cqi, 3.25rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
    font-weight: 800;
}
.t9-section__lead {
    max-width: 650px;
    margin: 20px 0 0;
    color: var(--t9-muted);
    font-size: clamp(1rem, 1.55cqi, 1.12rem);
    line-height: 1.75;
}
.t9-section__head .t9-section__lead { margin-left: auto; margin-right: auto; }
.t9-eyebrow p,
.t9-section__title p,
.t9-section__lead p,
.t9-feature h3 p,
.t9-feature > p p,
.t9-step h3 p,
.t9-step > p p,
.t9-showcase-card > span p,
.t9-price-card h3 p,
.t9-price-card__description p,
.t9-price-card__price p,
.t9-price-card__badge p,
.t9-testimonials h2 p,
.t9-testimonials blockquote p,
.t9-testimonials__author p,
.t9-testimonials__signals p,
.t9-faq summary p,
.t9-faq details > div > p { margin: 0; display: inline; }

/* Features bento */
.t9-features__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}
.t9-feature {
    position: relative;
    min-height: 230px;
    overflow: hidden;
    padding: 30px;
    border: var(--t9-border);
    border-radius: 24px;
    background: var(--t9-bg-alt);
}
.t9-feature h3 {
    max-width: 24rem;
    margin: 18px 0 10px;
    font-size: 1.15rem;
    line-height: 1.3;
    font-weight: 800;
}
.t9-feature p {
    max-width: 28rem;
    margin: 0;
    color: var(--t9-muted);
    font-size: 14px;
    line-height: 1.65;
}
.t9-feature__icon,
.t9-step__icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, var(--t9-primary), var(--t9-accent));
    box-shadow: 0 12px 26px -14px color-mix(in srgb, var(--t9-primary) 80%, transparent);
}
.t9-feature--editor {
    grid-column: span 4;
    grid-row: span 2;
    min-height: 500px;
    background:
        radial-gradient(circle at 10% 10%, color-mix(in srgb, var(--t9-primary) 16%, transparent), transparent 38%),
        var(--t9-bg-alt);
}
.t9-feature--editor .t9-feature__copy { position: relative; z-index: 2; }
.t9-feature--design,
.t9-feature--publish { grid-column: span 2; }
.t9-feature--compact {
    grid-column: span 3;
    min-height: 174px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}
.t9-feature--compact h3 { margin-top: 1px; }
.t9-editor-visual {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 28px;
    height: 255px;
    margin: 0;
    overflow: hidden;
    border: var(--t9-border);
    border-radius: 20px;
    background: var(--t9-bg);
    box-shadow: 0 24px 50px -24px color-mix(in srgb, var(--t9-text) 35%, transparent);
}
.t9-editor-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.t9-feature__swatches { position: absolute; right: 24px; bottom: 22px; display: flex; }
.t9-feature__swatches i { width: 42px; height: 42px; margin-left: -10px; border: 4px solid var(--t9-bg-alt); border-radius: 50%; background: var(--t9-primary); }
.t9-feature__swatches i:nth-child(2) { background: var(--t9-secondary); }
.t9-feature__swatches i:nth-child(3) { background: var(--t9-accent); }
.t9-feature__swatches i:nth-child(4) { background: var(--t9-text); }
.t9-feature__status {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 28px;
    padding: 12px 14px;
    border-radius: 12px;
    color: #16834a;
    background: color-mix(in srgb, #22c55e 13%, var(--t9-bg));
    font-size: 13px;
    font-weight: 700;
}

/* Workflow */
.t9-workflow {
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: 76px;
    padding-left: max(24px, calc((100% - 1152px) / 2));
    padding-right: max(24px, calc((100% - 1152px) / 2));
    background: var(--t9-bg-alt);
}
.t9-workflow__intro { position: sticky; top: 112px; align-self: start; }
.t9-workflow__intro .t9-section__lead { margin-bottom: 28px; }
.t9-inline-button { display: inline-flex; }
.t9-inline-button > a,
.t9-inline-button > button { font-weight: 750 !important; }
.t9-workflow__steps { display: grid; gap: 16px; }
.t9-step {
    position: relative;
    min-height: 198px;
    padding: 30px 72px 30px 92px;
    border: var(--t9-border);
    border-radius: 22px;
    background: var(--t9-bg);
}
.t9-step__number {
    position: absolute;
    top: 24px;
    right: 28px;
    color: color-mix(in srgb, var(--t9-primary) 20%, transparent);
    font-family: var(--t9-display);
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 800;
}
.t9-step__icon { position: absolute; top: 30px; left: 28px; }
.t9-step h3 { margin: 3px 0 10px; font-size: 1.15rem; font-weight: 800; }
.t9-step p { max-width: 31rem; margin: 0; color: var(--t9-muted); font-size: 14px; line-height: 1.65; }

/* Showcase */
.t9-showcase {
    width: min(100%, 1440px);
}
.t9-showcase__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 42px;
    margin-bottom: 48px;
}
.t9-showcase__head > div:first-child { max-width: 760px; }
.t9-inline-button--secondary { flex: 0 0 auto; margin-bottom: 5px; }
.t9-showcase__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.t9-showcase-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: var(--t9-border);
    border-radius: 20px;
    background: var(--t9-bg-alt);
    box-shadow: 0 22px 48px -34px color-mix(in srgb, var(--t9-text) 45%, transparent);
}
.t9-showcase-card__browser { height: 34px; display: flex; align-items: center; gap: 5px; padding: 0 13px; border-bottom: var(--t9-border); background: var(--t9-bg); }
.t9-showcase-card__browser i { width: 7px; height: 7px; border-radius: 50%; background: color-mix(in srgb, var(--t9-text) 20%, transparent); }
.t9-showcase-card img { display: block; width: 100%; height: 300px; object-fit: cover; transition: transform .5s ease; }
.t9-showcase-card:hover img { transform: scale(1.025); }
.t9-showcase-card > span { position: absolute; left: 16px; bottom: 16px; padding: 7px 12px; border-radius: 999px; color: var(--t9-text); background: color-mix(in srgb, var(--t9-bg) 88%, transparent); backdrop-filter: blur(10px); font-size: 12px; font-weight: 800; }

/* Pricing */
.t9-pricing {
    width: 100%;
    max-width: none;
    padding-left: max(24px, calc((100% - 1152px) / 2));
    padding-right: max(24px, calc((100% - 1152px) / 2));
    background: var(--t9-bg-alt);
}
.t9-pricing__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.t9-price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 32px;
    border: var(--t9-border);
    border-radius: 24px;
    background: var(--t9-bg);
}
.t9-price-card--featured { border-color: var(--t9-primary); box-shadow: 0 28px 62px -36px color-mix(in srgb, var(--t9-primary) 78%, transparent); }
.t9-price-card__badge { position: absolute; top: 18px; right: 18px; padding: 6px 10px; border-radius: 999px; color: #fff; background: var(--t9-primary); font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.t9-price-card h3 { margin: 0 0 24px; font-size: 1rem; font-weight: 800; }
.t9-price-card__price { min-height: 48px; display: flex; align-items: end; gap: 7px; margin-bottom: 18px; }
.t9-price-card__price strong { font-family: var(--t9-display); color: var(--t9-text); font-size: clamp(1.65rem, 2.7cqi, 2.25rem); line-height: 1; letter-spacing: -.04em; }
.t9-price-card__price span { color: var(--t9-muted); font-size: 13px; }
.t9-price-card__price--custom { flex-direction: column; align-items: flex-start; gap: 6px; }
.t9-price-card__description { min-height: 68px; margin: 0 0 22px; color: var(--t9-muted); font-size: 14px; line-height: 1.6; }
.t9-price-card__features { display: grid; gap: 12px; margin-bottom: 30px; }
.t9-price-card__features p { position: relative; margin: 0; padding-left: 24px; color: var(--t9-text); font-size: 13px; line-height: 1.45; }
.t9-price-card__features p::before { content: '\f058'; position: absolute; left: 0; top: 1px; color: var(--t9-primary); font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.t9-price-card__button { margin-top: auto; }
.t9-price-card__button > a,
.t9-price-card__button > button { width: 100% !important; font-weight: 750 !important; }
.t9-pricing__note { margin: 24px 0 0; text-align: center; color: var(--t9-muted); font-size: 13px; }
.t9-pricing__note i { margin-right: 6px; color: var(--t9-primary); }

/* Testimonial and signals */
.t9-testimonials { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(250px, .65fr); gap: 22px; }
.t9-testimonials__quote {
    position: relative;
    overflow: hidden;
    padding: 48px;
    border-radius: 28px;
    color: #fff;
    background: linear-gradient(135deg, color-mix(in srgb, var(--t9-primary) 92%, #111827), var(--t9-accent));
}
.t9-testimonials__quote::after { content: '\201C'; position: absolute; right: 28px; bottom: -70px; color: rgba(255,255,255,.1); font-family: Georgia, serif; font-size: 16rem; line-height: 1; }
.t9-testimonials__quote .t9-eyebrow,
.t9-testimonials__quote .t9-section__title { color: #fff; }
.t9-testimonials__quote .t9-eyebrow::before { background: rgba(255,255,255,.65); }
.t9-testimonials blockquote { position: relative; z-index: 1; max-width: 46rem; margin: 28px 0; color: rgba(255,255,255,.86); font-size: 1.05rem; line-height: 1.75; }
.t9-testimonials__author { position: relative; z-index: 1; display: flex; align-items: center; gap: 12px; }
.t9-testimonials__avatar { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--t9-primary); background: #fff; }
.t9-testimonials__author > span:last-child { display: flex; flex-direction: column; gap: 3px; }
.t9-testimonials__author strong { color: #fff; font-size: 13px; }
.t9-testimonials__author small { color: rgba(255,255,255,.68); font-size: 11px; }
.t9-testimonials__signals { display: grid; gap: 14px; }
.t9-testimonials__signals article { display: flex; flex-direction: column; justify-content: center; gap: 7px; min-height: 135px; padding: 26px; border: var(--t9-border); border-radius: 22px; background: var(--t9-bg-alt); }
.t9-testimonials__signals strong { color: var(--t9-primary); font-family: var(--t9-display); font-size: 1.5rem; font-weight: 800; }
.t9-testimonials__signals span { color: var(--t9-muted); font-size: 13px; line-height: 1.5; }

/* FAQ */
.t9-faq { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr); gap: 76px; padding-bottom: 150px; }
.t9-faq__intro { align-self: start; }
.t9-faq__list { border-top: var(--t9-border); }
.t9-faq details { border-bottom: var(--t9-border); }
.t9-faq summary { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 24px 2px; list-style: none; cursor: pointer; color: var(--t9-text); font-family: var(--t9-display); font-size: 1rem; font-weight: 750; }
.t9-faq summary::-webkit-details-marker { display: none; }
.t9-faq summary i { width: 28px; height: 28px; flex: 0 0 28px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--t9-primary); background: color-mix(in srgb, var(--t9-primary) 10%, transparent); font-size: 11px; transition: transform .2s ease; }
.t9-faq details[open] summary i { transform: rotate(45deg); }
.t9-faq details > div { padding: 0 46px 24px 2px; color: var(--t9-muted); font-size: 14px; line-height: 1.75; }

@container (max-width: 900px) {
    .t9-section { padding-top: 88px; padding-bottom: 88px; }
    .t9-feature--editor { grid-column: span 6; min-height: 470px; }
    .t9-feature--design,
    .t9-feature--publish,
    .t9-feature--compact { grid-column: span 3; }
    .t9-workflow,
    .t9-faq { grid-template-columns: 1fr; gap: 46px; }
    .t9-workflow__intro { position: static; }
    .t9-showcase__head { align-items: flex-start; flex-direction: column; gap: 24px; }
    .t9-showcase__grid { grid-template-columns: 1fr 1fr; }
    .t9-pricing__grid { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
    .t9-price-card__description { min-height: 0; }
    .t9-testimonials { grid-template-columns: 1fr; }
    .t9-testimonials__signals { grid-template-columns: repeat(3, 1fr); }
}

@container (max-width: 575.98px) {
    .t9-section { padding: 72px 16px; }
    .t9-content > .t9-section:nth-of-type(even)::before {
        top: -58px;
        right: -54px;
        left: auto;
        width: 280px;
        opacity: .05;
        transform: rotate(-7deg);
    }
    .t9-content > .t9-section:nth-of-type(4n)::before {
        right: auto;
        left: -60px;
        transform: rotate(7deg) scaleX(-1);
    }
    .t9-section__head { margin-bottom: 36px; text-align: left; }
    .t9-section__head .t9-section__lead { margin-left: 0; }
    .t9-features__grid { display: grid; grid-template-columns: 1fr; }
    .t9-feature--editor,
    .t9-feature--design,
    .t9-feature--publish,
    .t9-feature--compact { grid-column: auto; }
    .t9-feature { min-height: 210px; padding: 24px; }
    .t9-feature--editor { min-height: 430px; }
    .t9-feature--compact { min-height: 0; }
    .t9-editor-visual { left: 24px; right: 24px; bottom: 24px; height: 205px; }
    .t9-workflow,
    .t9-pricing { padding-left: 16px; padding-right: 16px; }
    .t9-step { min-height: 0; padding: 78px 24px 26px; }
    .t9-step__icon { top: 22px; left: 24px; }
    .t9-step__number { top: 26px; right: 24px; font-size: 2rem; }
    .t9-showcase__grid { grid-template-columns: 1fr; }
    .t9-showcase-card img { height: 240px; }
    .t9-price-card { padding: 28px 24px; }
    .t9-price-card__badge { position: static; align-self: flex-start; margin: -4px 0 18px; }
    .t9-testimonials__quote { padding: 34px 24px; }
    .t9-testimonials__signals { grid-template-columns: 1fr; }
    .t9-testimonials__signals article { min-height: 108px; }
    .t9-faq { padding-bottom: 118px; }
    .t9-faq summary { padding: 20px 0; }
    .t9-faq details > div { padding-right: 6px; }
}

.t9-section { padding-top: 104px; padding-bottom: 104px; }
.t9-section__title { text-wrap: balance; }
.t9-feature {
    border-radius: 18px;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.t9-feature:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--t9-primary) 26%, transparent);
    box-shadow: 0 24px 48px -38px color-mix(in srgb, var(--t9-text) 55%, transparent);
}
.t9-feature--design { background: linear-gradient(145deg, color-mix(in srgb, var(--t9-secondary) 8%, var(--t9-bg-alt)), var(--t9-bg-alt)); }
.t9-feature--publish { background: linear-gradient(145deg, color-mix(in srgb, #22c55e 7%, var(--t9-bg-alt)), var(--t9-bg-alt)); }
.t9-step {
    border-radius: 16px;
    border-left: 3px solid color-mix(in srgb, var(--t9-primary) 62%, transparent);
    transition: transform .2s ease, border-color .2s ease;
}
.t9-step:hover { transform: translateX(4px); border-left-color: var(--t9-primary); }
.t9-showcase-card { border-radius: 14px; }
.t9-showcase-card img { height: 270px; }
.t9-showcase-card > span {
    position: static;
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    border-top: var(--t9-border);
    border-radius: 0;
    color: var(--t9-text);
    background: var(--t9-bg);
    backdrop-filter: none;
}
.t9-price-card { border-radius: 16px; }
.t9-price-card--featured {
    transform: translateY(-10px);
    border-color: var(--t9-primary);
    border-top-width: 4px;
}
.t9-testimonials__quote { border-radius: 20px; }
.t9-testimonials__signals article { border-radius: 16px; }
.t9-faq details[open] {
    padding: 0 18px;
    border-left: 2px solid var(--t9-primary);
    background: color-mix(in srgb, var(--t9-primary) 4%, var(--t9-bg));
}

@container (max-width: 900px) {
    .t9-section { padding-top: 88px; padding-bottom: 88px; }
    .t9-price-card--featured { transform: none; }
}

@container (max-width: 575.98px) {
    .t9-section { padding: 72px 16px; }
    .t9-hero { padding-top: 56px; }
    .t9-hero__shell { padding: 0 16px; }
    .t9-hero__title { font-size: clamp(2.35rem, 12cqi, 3.2rem); }
    .t9-hero__media { padding: 10px 0; }
    .t9-hero__media::before { inset: -4px -8px 4px 10px; border-radius: 20px; }
    .t9-hero__window-footer { min-height: 38px; }
    .t9-showcase-card img { height: 220px; }
}

/* Header brand refinement. */
.t9-navbar__logo-img {
    height: 36px;
    max-width: 230px;
}

@container (max-width: 575.98px) {
    .t9-navbar__logo-img { height: 30px; max-width: 165px; }
    .t9-brand-symbol--footer { width: 36px; height: 36px; }
    .t9-footer__brand-img { height: 34px; max-width: 154px; }
}

/* Fixed legal document reader. */
.t9-legal-dialog {
    width: min(920px, calc(100% - 40px));
    height: min(760px, calc(100dvh - 40px));
    max-height: none;
    border-radius: 14px;
}
.t9-legal-dialog__panel {
    width: 100%;
    height: 100%;
    max-height: none;
}
.t9-legal-dialog__header {
    min-height: 76px;
    align-items: center;
    padding: 16px 20px;
    background: var(--t9-bg);
}
.t9-legal-dialog__header h2 { font-size: 1.25rem; }
.t9-legal-dialog__body {
    position: relative;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    background: #fff;
}
.t9-legal-dialog__frame {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: #fff;
}
.t9-legal-dialog__frame[hidden] { display: none; }
.t9-legal-dialog__status {
    position: absolute;
    inset: 0;
    z-index: 1;
    min-height: 0;
    background: var(--t9-bg);
}
.t9-legal-dialog__footer { min-height: 50px; padding: 12px 20px; }

@container (max-width: 575.98px) {
    .t9-legal-dialog {
        width: calc(100% - 16px);
        height: calc(100dvh - 16px);
        max-height: none;
        border-radius: 10px;
    }
    .t9-legal-dialog__header { min-height: 68px; padding: 13px 14px; }
    .t9-legal-dialog__eyebrow { margin-bottom: 3px; }
    .t9-legal-dialog__header h2 { font-size: 1.05rem; }
    .t9-legal-dialog__footer { min-height: 46px; padding: 10px 14px; }
    .t9-legal-dialog__footer > span { display: none; }
}

/* Premium motion and depth. Effects remain progressive and motion-safe. */
.t9-hero__copy { animation: t9-hero-copy-enter .75s cubic-bezier(.2, .75, .25, 1) both; }
.t9-hero__media { perspective: 1200px; animation: t9-hero-media-enter .9s .08s cubic-bezier(.2, .75, .25, 1) both; }
.t9-hero__window {
    --t9-tilt-x: 1deg;
    --t9-tilt-y: -2deg;
    --t9-glare-x: 70%;
    --t9-glare-y: 20%;
    transform: rotateX(var(--t9-tilt-x)) rotateY(var(--t9-tilt-y)) translateZ(0);
    transform-style: preserve-3d;
    transition: transform .22s ease-out, box-shadow .22s ease-out;
}
.t9-hero__window::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 8;
    pointer-events: none;
    opacity: .32;
    background: radial-gradient(circle at var(--t9-glare-x) var(--t9-glare-y), rgba(255,255,255,.42), transparent 30%);
    transition: opacity .2s ease;
}
.t9-hero__media:hover .t9-hero__window {
    box-shadow: 0 44px 90px -38px color-mix(in srgb, var(--t9-primary) 48%, var(--t9-text));
}

.t9-motion-ready .t9-content .t9-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .42s ease, transform .5s cubic-bezier(.2, .75, .25, 1);
}
.t9-motion-ready .t9-content .t9-section.is-visible { opacity: 1; transform: translateY(0); }

.t9-feature::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(360px circle at var(--t9-pointer-x, 50%) var(--t9-pointer-y, 50%), color-mix(in srgb, var(--t9-primary) 14%, transparent), transparent 62%);
    transition: opacity .25s ease;
}
.t9-feature:hover::after { opacity: 1; }

.t9-showcase-card {
    transform: perspective(900px) translateZ(0);
    transform-origin: center bottom;
    transition: transform .35s cubic-bezier(.2, .75, .25, 1), box-shadow .35s ease, border-color .35s ease;
}
.t9-showcase-card:hover {
    z-index: 2;
    transform: perspective(900px) translateY(-8px) rotateX(1.5deg) translateZ(8px);
    border-color: color-mix(in srgb, var(--t9-primary) 32%, transparent);
    box-shadow: 0 34px 68px -38px color-mix(in srgb, var(--t9-primary) 52%, var(--t9-text));
}
.t9-workflow__steps { position: relative; }
.t9-workflow__steps::before {
    content: '';
    position: absolute;
    top: 48px;
    bottom: 48px;
    left: 49px;
    width: 1px;
    z-index: 0;
    background: linear-gradient(var(--t9-primary), color-mix(in srgb, var(--t9-secondary) 65%, transparent));
}
.t9-step { z-index: 1; }

@keyframes t9-hero-copy-enter {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes t9-hero-media-enter {
    from { opacity: 0; transform: translateY(28px) scale(.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
    .t9-navbar__login,
    .t9-navbar__cta > a,
    .t9-navbar__cta > button,
    .t9-navbar__cta > a::after,
    .t9-navbar__cta > button::after { transition: none !important; }
    .t9-hero__copy,
    .t9-hero__media { animation: none; }
    .t9-hero__window { transform: none; transition: none; }
    .t9-motion-ready .t9-content .t9-section { opacity: 1; transform: none; transition: none; }
    .t9-showcase-card { transition: none; }
}

@container (max-width: 760px) {
    .t9-hero__window { transform: none; }
    .t9-hero__window::after { display: none; }
    .t9-workflow__steps::before { display: none; }
}


/* ─────────────────────────────────────────────── */

:root {
            
            --template-primary: #6366f1;
            
            --template-secondary: #6963f0;
            
            --template-accent: #a855f7;
            
            --template-bg: #ffffff;
            
            --template-bg-alt: #f6f7fb;
            
            --template-text: #0f172a;
            
            --template-text-muted: #64748b;
            
            --ds-section-padding-y: 3.0rem;
            --ds-divider-spacing: 1.0;
            --ds-content-width: 1140px;
            --ds-container-width: 1140px;
        }
        /* ── Section content width ── */
        .dynamic-sections {
            max-width: var(--ds-content-width, 1140px) !important;
        }
        .dynamic-sections [id$="section-wrapper"] {
            transition: background 0.2s ease, box-shadow 0.2s ease;
        }
        .dynamic-sections [id$="section-wrapper"].content-section-bg-enabled {
            background: var(--template-bg-alt, #f5f5f5) !important;
        }
        .dynamic-sections [id$="section-wrapper"].content-section-bg-disabled {
            background: transparent !important;
        }
        /* ── Section content padding ── */
        .dynamic-sections [id$="section-wrapper"] {
            padding-top: var(--ds-section-padding-y, 3rem) !important;
            padding-bottom: var(--ds-section-padding-y, 3rem) !important;
        }
        .dynamic-sections [id$="section-wrapper"] > .container {
            width: 100%;
            max-width: min(100%, var(--ds-container-width, 1140px)) !important;
            margin-left: auto;
            margin-right: auto;
        }
        .section-divider {
            width: min(100%, var(--ds-container-width, 1140px)) !important;
            max-width: min(100%, var(--ds-container-width, 1140px)) !important;
            margin-left: auto !important;
            margin-right: auto !important;
            box-sizing: border-box;
        }
        /* ── Divider spacing ── */
        .t1-divider {
            margin-top: calc(32px * var(--ds-divider-spacing, 1));
            margin-bottom: calc(32px * var(--ds-divider-spacing, 1));
        }
        .t3-section-divider {
            margin-top: calc(56px * var(--ds-divider-spacing, 1));
            margin-bottom: calc(40px * var(--ds-divider-spacing, 1));
        }
        .t3-section-divider {
            margin-top: calc(56px * var(--ds-divider-spacing, 1));
            margin-bottom: calc(40px * var(--ds-divider-spacing, 1));
        }
        .t4-section-divider {
            padding-top: calc(52px * var(--ds-divider-spacing, 1));
            padding-bottom: calc(36px * var(--ds-divider-spacing, 1));
        }
        .t5-section-divider {
            margin-top: calc(2rem * var(--ds-divider-spacing, 1));
            margin-bottom: calc(2rem * var(--ds-divider-spacing, 1));
        }
        .t6-section-divider {
            margin-top: calc(8px * var(--ds-divider-spacing, 1));
            margin-bottom: calc(4px * var(--ds-divider-spacing, 1));
        }
        .t7-section-divider {
            padding-top: calc(34px * var(--ds-divider-spacing, 1));
            padding-bottom: calc(22px * var(--ds-divider-spacing, 1));
        }
        .t8-divider {
            margin-top: calc(40px * var(--ds-divider-spacing, 1));
            margin-bottom: calc(28px * var(--ds-divider-spacing, 1));
        }

/* ─────────────────────────────────────────────── */

.brandly-page-loader {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    overflow: hidden;
    background: var(--template-bg, #fff);
    color: var(--template-text, #1f2937);
    opacity: 1;
    visibility: visible;
    transition: opacity .38s ease, visibility .38s ease;
}

.brandly-page-loader.is-leaving {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.brandly-page-loader__label {
    margin: 0;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.brandly-page-loader__mosaic {
    width: 58px;
    height: 58px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    transform: rotate(45deg);
}

.brandly-page-loader__mosaic i {
    display: block;
    border-radius: 3px;
    background: var(--template-primary, #5c5fff);
    animation: brandly-page-loader-mosaic 1.2s ease-in-out infinite;
}

.brandly-page-loader__mosaic i:nth-child(2),
.brandly-page-loader__mosaic i:nth-child(3) {
    background: var(--template-secondary, #9ca3af);
}

.brandly-page-loader__mosaic i:nth-child(2) { animation-delay: .15s; }
.brandly-page-loader__mosaic i:nth-child(4) { animation-delay: .3s; }
.brandly-page-loader__mosaic i:nth-child(3) { animation-delay: .45s; }

@keyframes brandly-page-loader-mosaic {
    0%, 100% { transform: scale(.65); opacity: .45; }
    50% { transform: scale(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .brandly-page-loader__mosaic i { animation-duration: 2.4s; }
    .brandly-page-loader { transition-duration: .01ms; }
}