/* Thera-UP sales theme 2.0.1 — restrained typography and compact Théo visuals */

:root {
    --tu-violet: #6f5bff;
    --tu-violet-dark: #5140d7;
    --tu-violet-soft: #eeeaff;
    --tu-lavender: #b8aeff;
    --tu-cyan: #49e6ff;
    --tu-ink: #111b27;
    --tu-ink-2: #243247;
    --tu-text: #445064;
    --tu-muted: #6f7b8f;
    --tu-line: #dfe5ee;
    --tu-soft: #f7f8fc;
    --tu-white: #ffffff;
    --tu-success: #2fbf71;
    --tu-warning: #f59e0b;
    --tu-radius-sm: 12px;
    --tu-radius: 20px;
    --tu-radius-lg: 32px;
    --tu-shadow: 0 20px 60px rgba(27, 32, 68, 0.10);
    --tu-shadow-soft: 0 12px 34px rgba(31, 38, 78, 0.07);
    --tu-container: 1180px;
    --tu-font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--tu-white);
    color: var(--tu-text);
    font-family: var(--tu-font);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.admin-bar .tu-header {
    top: 32px;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

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

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

h1,
h2,
h3,
h4 {
    color: var(--tu-ink);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.12;
}

h1 {
    font-size: clamp(2.65rem, 5.2vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 3.8vw, 3rem);
}

h3 {
    font-size: 1.25rem;
}

p:last-child {
    margin-bottom: 0;
}

svg {
    display: block;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.tu-skip-link {
    position: fixed;
    z-index: 99999;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--tu-ink);
    color: var(--tu-white);
    transform: translateY(-160%);
    transition: transform .2s ease;
}

.tu-skip-link:focus {
    transform: translateY(0);
}

.tu-container {
    width: min(calc(100% - 40px), var(--tu-container));
    margin-inline: auto;
}

.tu-narrow {
    max-width: 820px;
}

.tu-prose {
    max-width: 840px;
}

.tu-prose > * + * {
    margin-top: 1.2em;
}

.tu-prose h2,
.tu-prose h3 {
    margin-top: 1.8em;
}

.tu-prose a {
    color: var(--tu-violet-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.tu-main {
    min-height: 60vh;
    overflow: hidden;
}

/* Header */

.tu-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    border-bottom: 1px solid rgba(223, 229, 238, .85);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(18px);
}

.tu-header__inner {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.tu-header__brand {
    flex: 0 0 auto;
}

.tu-header__brand .custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.tu-header__brand .custom-logo {
    width: auto;
    max-width: 210px;
    max-height: 54px;
}

.tu-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--tu-ink);
}

.tu-brand__symbol {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--tu-violet), #856fff);
    box-shadow: 0 8px 22px rgba(111, 91, 255, .22);
}

.tu-brand__symbol svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: white;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tu-brand__symbol svg path:first-child,
.tu-brand__symbol svg path:nth-child(2) {
    fill: rgba(255, 255, 255, .14);
}

.tu-brand__text {
    font-size: 1.24rem;
    font-weight: 600;
    letter-spacing: -.03em;
}

.tu-brand__text strong {
    color: var(--tu-violet);
    font-weight: 600;
}

.tu-header__navigation {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}

.tu-nav ul {
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.tu-nav a {
    position: relative;
    color: var(--tu-ink-2);
    font-size: .9rem;
    font-weight: 500;
    white-space: nowrap;
}

.tu-nav a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--tu-violet);
    content: "";
    opacity: 0;
    transform: scaleX(.35);
    transition: .2s ease;
}

.tu-nav a:hover,
.tu-nav a[aria-current="page"] {
    color: var(--tu-violet-dark);
}

.tu-nav a:hover::after,
.tu-nav a[aria-current="page"]::after {
    opacity: 1;
    transform: scaleX(1);
}

.tu-header__actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 16px;
}

.tu-header__login {
    color: var(--tu-ink-2);
    font-size: .9rem;
    font-weight: 600;
}

.tu-header__login:hover {
    color: var(--tu-violet-dark);
}

.tu-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: var(--tu-soft);
    cursor: pointer;
}

.tu-menu-button__bars {
    display: flex;
    width: 22px;
    margin: auto;
    flex-direction: column;
    gap: 5px;
}

.tu-menu-button__bars span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: var(--tu-ink);
    transition: transform .2s ease, opacity .2s ease;
}

.tu-menu-button[aria-expanded="true"] .tu-menu-button__bars span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.tu-menu-button[aria-expanded="true"] .tu-menu-button__bars span:nth-child(2) {
    opacity: 0;
}

.tu-menu-button[aria-expanded="true"] .tu-menu-button__bars span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Shared components */

.tu-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--tu-violet-dark);
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .09em;
    line-height: 1.3;
    text-transform: uppercase;
}

.tu-kicker::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--tu-cyan);
    box-shadow: 0 0 0 4px rgba(73, 230, 255, .15);
    content: "";
}

.tu-lead {
    max-width: 760px;
    color: var(--tu-text);
    font-size: clamp(1.08rem, 2vw, 1.25rem);
    line-height: 1.65;
}

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

.tu-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 21px;
    border: 1px solid var(--tu-violet);
    border-radius: 12px;
    background: linear-gradient(135deg, var(--tu-violet), #5c49e7);
    box-shadow: 0 12px 26px rgba(111, 91, 255, .22);
    color: var(--tu-white);
    font-size: .94rem;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.tu-button svg,
.tu-text-link svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tu-button:hover {
    box-shadow: 0 16px 32px rgba(111, 91, 255, .28);
    transform: translateY(-2px);
}

.tu-button:focus-visible,
.tu-text-link:focus-visible,
.tu-nav a:focus-visible,
.tu-header__login:focus-visible,
.tu-form input:focus-visible,
.tu-form textarea:focus-visible,
.tu-form select:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(73, 230, 255, .75);
    outline-offset: 3px;
}

.tu-button--ghost {
    border-color: var(--tu-line);
    background: var(--tu-white);
    box-shadow: none;
    color: var(--tu-ink);
}

.tu-button--ghost:hover {
    border-color: var(--tu-lavender);
    background: var(--tu-violet-soft);
    box-shadow: none;
}

.tu-button--light {
    border-color: var(--tu-white);
    background: var(--tu-white);
    box-shadow: none;
    color: var(--tu-violet-dark);
}

.tu-button--outline-light {
    border-color: rgba(255, 255, 255, .48);
    background: transparent;
    box-shadow: none;
    color: var(--tu-white);
}

.tu-button--small {
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: .86rem;
}

.tu-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--tu-violet-dark);
    font-size: .94rem;
    font-weight: 600;
}

.tu-text-link:hover {
    color: var(--tu-violet);
}

.tu-section {
    padding: 104px 0;
}

.tu-section--compact {
    padding: 76px 0;
}

.tu-section--soft {
    background: var(--tu-soft);
}

.tu-section--ink {
    position: relative;
    background:
        radial-gradient(circle at 10% 10%, rgba(111, 91, 255, .22), transparent 36%),
        radial-gradient(circle at 85% 75%, rgba(73, 230, 255, .12), transparent 30%),
        var(--tu-ink);
    color: rgba(255, 255, 255, .78);
}

.tu-section--ink h2,
.tu-section--ink h3,
.tu-section--ink .tu-kicker {
    color: var(--tu-white);
}

.tu-section-heading {
    max-width: 790px;
    margin: 0 auto 52px;
    text-align: center;
}

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

.tu-section-heading--light p {
    color: rgba(255, 255, 255, .74);
}

.tu-section-heading h2 {
    margin-bottom: 18px;
}

.tu-section-heading p {
    margin-bottom: 0;
    font-size: 1.06rem;
}

.tu-center {
    display: flex;
    justify-content: center;
    margin-top: 38px;
}

.tu-split {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 80px;
}

/* Home hero */

.tu-hero {
    position: relative;
    padding: 82px 0 70px;
    background:
        radial-gradient(circle at 75% 20%, rgba(184, 174, 255, .35), transparent 32%),
        radial-gradient(circle at 85% 80%, rgba(73, 230, 255, .15), transparent 28%),
        linear-gradient(180deg, #fbfaff 0%, #ffffff 100%);
}

.tu-hero::before {
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--tu-line), transparent);
    content: "";
}

.tu-hero__grid {
    display: grid;
    min-height: 620px;
    align-items: center;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
    gap: 62px;
}

.tu-hero__content h1 {
    max-width: 760px;
    margin-bottom: 24px;
}

.tu-hero__content h1 span {
    display: block;
    max-width: 690px;
    margin-top: 14px;
    color: var(--tu-violet);
    font-size: .56em;
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 1.25;
}

.tu-hero__audience {
    max-width: 760px;
    margin-top: 26px;
    color: var(--tu-muted);
    font-size: .88rem;
}

.tu-hero__visual {
    position: relative;
    min-height: 590px;
}

.tu-hero__halo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 470px;
    height: 470px;
    border: 1px solid rgba(111, 91, 255, .18);
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .96) 0 39%, rgba(238, 234, 255, .9) 40% 65%, rgba(184, 174, 255, .15) 66% 100%);
    box-shadow: inset 0 0 80px rgba(111, 91, 255, .07);
    transform: translate(-50%, -50%);
}

.tu-hero__halo::before,
.tu-hero__halo::after {
    position: absolute;
    border: 1px dashed rgba(111, 91, 255, .18);
    border-radius: 50%;
    content: "";
}

.tu-hero__halo::before {
    inset: 38px;
}

.tu-hero__halo::after {
    inset: 85px;
}

.tu-hero__theo {
    position: absolute;
    z-index: 2;
    right: 50%;
    bottom: 0;
    width: 365px;
    max-height: 560px;
    object-fit: contain;
    filter: drop-shadow(0 34px 35px rgba(57, 48, 135, .22));
    transform: translateX(50%);
}

.tu-signal {
    position: absolute;
    z-index: 3;
    display: flex;
    max-width: 230px;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(223, 229, 238, .92);
    border-radius: 14px;
    background: rgba(255, 255, 255, .93);
    box-shadow: var(--tu-shadow-soft);
    backdrop-filter: blur(8px);
}

.tu-signal--top {
    top: 78px;
    right: -10px;
}

.tu-signal--bottom {
    bottom: 82px;
    left: -16px;
}

.tu-signal__icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 11px;
    background: var(--tu-violet-soft);
    color: var(--tu-violet-dark);
}

.tu-signal__icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tu-signal small {
    display: block;
    color: var(--tu-muted);
    font-size: .72rem;
    line-height: 1.35;
}

.tu-signal strong {
    display: block;
    color: var(--tu-ink);
    font-size: .83rem;
    font-weight: 600;
    line-height: 1.35;
}

.tu-strip {
    border-bottom: 1px solid var(--tu-line);
    background: var(--tu-white);
}

.tu-strip__inner {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.tu-strip__inner > span {
    color: var(--tu-ink);
    font-size: .86rem;
    font-weight: 600;
}

.tu-strip ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 22px;
    padding: 0;
    margin: 0;
    color: var(--tu-muted);
    font-size: .82rem;
    list-style: none;
}

.tu-strip li {
    position: relative;
    padding-left: 15px;
}

.tu-strip li::before {
    position: absolute;
    top: .7em;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--tu-violet);
    content: "";
}

/* Challenges */

.tu-split--problem {
    align-items: center;
}

.tu-challenge-list {
    display: grid;
    gap: 16px;
}

.tu-challenge-list article {
    display: grid;
    padding: 24px;
    border: 1px solid var(--tu-line);
    border-radius: var(--tu-radius);
    background: var(--tu-white);
    box-shadow: var(--tu-shadow-soft);
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 18px;
}

.tu-challenge-list article > span {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 15px;
    background: var(--tu-violet-soft);
    color: var(--tu-violet-dark);
}

.tu-challenge-list svg,
.tu-benefit-grid svg,
.tu-contact-points svg,
.tu-support-grid > article > span svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tu-challenge-list h3 {
    margin-bottom: 7px;
    font-size: 1.1rem;
}

.tu-challenge-list p {
    margin: 0;
    color: var(--tu-muted);
    font-size: .94rem;
}

/* Theo expressions */

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

.tu-expression-card {
    overflow: hidden;
    border: 1px solid var(--tu-line);
    border-radius: var(--tu-radius);
    background: var(--tu-white);
    box-shadow: var(--tu-shadow-soft);
}

.tu-expression-card img {
    width: 100%;
    aspect-ratio: 1 / .86;
    object-fit: cover;
    object-position: center 36%;
    border-bottom: 1px solid var(--tu-line);
    background: #fff;
}

.tu-expression-card > div {
    padding: 22px;
}

.tu-expression-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--tu-violet-dark);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.tu-expression-card h3 {
    margin-bottom: 10px;
    font-size: 1.12rem;
}

.tu-expression-card p {
    margin: 0;
    color: var(--tu-muted);
    font-size: .9rem;
}

/* Benefits */

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

.tu-benefit-grid article {
    padding: 28px 24px;
    border: 1px solid var(--tu-line);
    border-radius: var(--tu-radius);
    background: var(--tu-white);
}

.tu-benefit-grid article > span {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    place-items: center;
    border-radius: 14px;
    background: var(--tu-violet-soft);
    color: var(--tu-violet-dark);
}

.tu-benefit-grid h3 {
    margin-bottom: 10px;
    font-size: 1.13rem;
}

.tu-benefit-grid p {
    margin: 0;
    color: var(--tu-muted);
    font-size: .92rem;
}

/* Platform dark section */

.tu-platform {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
    gap: 74px;
}

.tu-platform--reverse {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
}

.tu-platform--reverse .tu-platform__visual {
    order: 2;
}

.tu-platform__visual {
    display: grid;
    min-height: 420px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--tu-radius-lg);
    background: linear-gradient(145deg, rgba(111, 91, 255, .25), rgba(73, 230, 255, .06));
}

.tu-platform__visual img {
    width: min(360px, 84%);
    border-radius: 24px;
    mix-blend-mode: screen;
}

.tu-platform__content h2 {
    margin-bottom: 20px;
}

.tu-platform__content p {
    max-width: 650px;
    font-size: 1.04rem;
}

.tu-tool-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 28px 0 34px;
}

.tu-tool-tags span {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .86);
    font-size: .78rem;
}

/* Scenarios */

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

.tu-scenario {
    position: relative;
    min-height: 300px;
    padding: 34px 30px;
    overflow: hidden;
    border: 1px solid var(--tu-line);
    border-radius: var(--tu-radius);
    background: var(--tu-white);
    box-shadow: var(--tu-shadow-soft);
}

.tu-scenario::after {
    position: absolute;
    right: -45px;
    bottom: -60px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--tu-violet-soft);
    content: "";
}

.tu-scenario__number {
    display: block;
    margin-bottom: 58px;
    color: var(--tu-violet);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .14em;
}

.tu-scenario h3 {
    margin-bottom: 13px;
    font-size: 1.32rem;
}

.tu-scenario p {
    position: relative;
    z-index: 1;
    margin-bottom: 22px;
    font-size: .94rem;
}

.tu-scenario small {
    position: relative;
    z-index: 1;
    color: var(--tu-violet-dark);
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* Method */

.tu-method {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
    gap: 76px;
}

.tu-method--reverse {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
}

.tu-method--reverse .tu-method__image {
    order: 2;
}

.tu-method__image {
    overflow: hidden;
    border: 1px solid var(--tu-line);
    border-radius: var(--tu-radius-lg);
    background: var(--tu-white);
    box-shadow: var(--tu-shadow-soft);
}

.tu-method__image img {
    width: 100%;
}

.tu-check-list {
    display: grid;
    gap: 13px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.tu-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.tu-check-list svg {
    width: 21px;
    height: 21px;
    flex: 0 0 auto;
    margin-top: 2px;
    fill: none;
    stroke: var(--tu-success);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Pricing */

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

.tu-price-card {
    position: relative;
    display: flex;
    padding: 30px;
    border: 1px solid var(--tu-line);
    border-radius: var(--tu-radius);
    background: var(--tu-white);
    box-shadow: var(--tu-shadow-soft);
    flex-direction: column;
}

.tu-price-card.is-featured {
    border-color: var(--tu-violet);
    box-shadow: 0 22px 55px rgba(111, 91, 255, .17);
}

.tu-price-card__badge {
    position: absolute;
    top: -13px;
    left: 24px;
    padding: 6px 11px;
    border-radius: 999px;
    background: var(--tu-violet);
    color: var(--tu-white);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .04em;
}

.tu-price-card h3,
.tu-price-card h2 {
    margin: 10px 0 12px;
    font-size: 1.4rem;
}

.tu-price-card > p,
.tu-price-card__top p {
    min-height: 58px;
    margin-bottom: 22px;
    color: var(--tu-muted);
    font-size: .9rem;
}

.tu-price-card__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 18px;
}

.tu-price-card__price strong {
    color: var(--tu-ink);
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -.045em;
    line-height: 1;
}

.tu-price-card__price span {
    color: var(--tu-muted);
    font-size: .82rem;
}

.tu-price-card__credits {
    display: grid;
    gap: 7px;
    padding: 16px;
    margin-bottom: 22px;
    border-radius: 13px;
    background: var(--tu-soft);
    color: var(--tu-text);
    font-size: .82rem;
}

.tu-price-card__credits strong {
    color: var(--tu-ink);
    font-weight: 600;
}

.tu-price-card ul,
.tu-price-card__modules {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0 0 26px;
    list-style: none;
}

.tu-price-card li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--tu-text);
    font-size: .86rem;
}

.tu-price-card li svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    margin-top: 2px;
    fill: none;
    stroke: var(--tu-success);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tu-price-card .tu-button {
    width: 100%;
    margin-top: auto;
}

.tu-price-card--full {
    padding: 34px 30px;
}

.tu-price-card__modules-title {
    margin: 0 0 14px !important;
    color: var(--tu-muted);
    font-size: .78rem !important;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.tu-empty {
    max-width: 720px;
    padding: 46px;
    margin: 0 auto;
    border: 1px solid var(--tu-line);
    border-radius: var(--tu-radius);
    background: var(--tu-soft);
    text-align: center;
}

.tu-comparison {
    overflow-x: auto;
    border: 1px solid var(--tu-line);
    border-radius: var(--tu-radius);
    background: var(--tu-white);
    box-shadow: var(--tu-shadow-soft);
}

.tu-comparison table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.tu-comparison th,
.tu-comparison td {
    padding: 17px 18px;
    border-bottom: 1px solid var(--tu-line);
    text-align: center;
}

.tu-comparison th:first-child,
.tu-comparison td:first-child {
    position: sticky;
    z-index: 1;
    left: 0;
    min-width: 230px;
    background: var(--tu-white);
    text-align: left;
}

.tu-comparison thead th {
    background: var(--tu-ink);
    color: var(--tu-white);
    font-size: .86rem;
    font-weight: 600;
}

.tu-comparison thead th:first-child {
    z-index: 2;
    background: var(--tu-ink);
}

.tu-comparison tbody th {
    color: var(--tu-ink);
    font-size: .85rem;
    font-weight: 600;
}

.tu-comparison td {
    color: var(--tu-text);
    font-size: .86rem;
}

.tu-status {
    display: inline-grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
}

.tu-status svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tu-status.is-yes {
    background: rgba(47, 191, 113, .12);
    color: #208854;
}

.tu-status.is-no {
    color: #a6afbd;
}

.tu-comparison__actions th,
.tu-comparison__actions td {
    padding-top: 22px;
    padding-bottom: 22px;
}

.tu-pricing-explainer {
    display: grid;
    align-items: start;
    grid-template-columns: .82fr 1.18fr;
    gap: 72px;
}

.tu-credit-steps {
    display: grid;
    gap: 14px;
}

.tu-credit-steps article {
    display: grid;
    padding: 20px;
    border: 1px solid var(--tu-line);
    border-radius: 16px;
    grid-template-columns: 42px 1fr;
    column-gap: 16px;
}

.tu-credit-steps article > span {
    display: grid;
    width: 42px;
    height: 42px;
    grid-row: span 2;
    place-items: center;
    border-radius: 12px;
    background: var(--tu-violet-soft);
    color: var(--tu-violet-dark);
    font-size: .82rem;
    font-weight: 600;
}

.tu-credit-steps h3 {
    margin: 1px 0 5px;
    font-size: 1rem;
}

.tu-credit-steps p {
    margin: 0;
    color: var(--tu-muted);
    font-size: .88rem;
}

.tu-subscribe-flow {
    display: grid;
    align-items: start;
    grid-template-columns: .82fr 1.18fr;
    gap: 72px;
}

.tu-subscribe-flow ol {
    display: grid;
    gap: 15px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.tu-subscribe-flow li {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 16px;
}

.tu-subscribe-flow li > span {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 14px;
    color: var(--tu-white);
    font-size: .82rem;
    font-weight: 600;
}

.tu-subscribe-flow h3 {
    margin-bottom: 5px;
    color: var(--tu-white);
    font-size: 1rem;
}

.tu-subscribe-flow p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: .88rem;
}

/* FAQ */

.tu-faq-preview {
    display: grid;
    max-width: 880px;
    margin: 0 auto;
    gap: 12px;
}

.tu-faq-preview details,
.tu-faq-group details {
    border: 1px solid var(--tu-line);
    border-radius: 14px;
    background: var(--tu-white);
}

.tu-faq-preview summary,
.tu-faq-group summary {
    position: relative;
    padding: 20px 54px 20px 22px;
    color: var(--tu-ink);
    font-size: .98rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.tu-faq-preview summary::-webkit-details-marker,
.tu-faq-group summary::-webkit-details-marker {
    display: none;
}

.tu-faq-preview summary::after,
.tu-faq-group summary::after {
    position: absolute;
    top: 50%;
    right: 22px;
    color: var(--tu-violet);
    content: "+";
    font-size: 1.4rem;
    font-weight: 400;
    transform: translateY(-50%);
}

.tu-faq-preview details[open] summary::after,
.tu-faq-group details[open] summary::after {
    content: "−";
}

.tu-faq-preview details p,
.tu-faq-group details p {
    padding: 0 22px 22px;
    margin: 0;
    color: var(--tu-muted);
    font-size: .92rem;
}

.tu-faq-layout {
    display: grid;
    align-items: start;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 62px;
}

.tu-faq-sidebar {
    position: sticky;
    top: 108px;
    display: grid;
    gap: 6px;
    padding: 24px;
    border: 1px solid var(--tu-line);
    border-radius: var(--tu-radius);
    background: var(--tu-soft);
}

.tu-faq-sidebar .tu-kicker {
    margin-bottom: 8px;
}

.tu-faq-sidebar a {
    padding: 9px 11px;
    border-radius: 9px;
    color: var(--tu-text);
    font-size: .88rem;
}

.tu-faq-sidebar a:hover {
    background: var(--tu-white);
    color: var(--tu-violet-dark);
}

.tu-faq-groups {
    display: grid;
    gap: 54px;
}

.tu-faq-group {
    scroll-margin-top: 110px;
}

.tu-faq-group h2 {
    margin-bottom: 20px;
    font-size: 1.65rem;
}

.tu-faq-group details + details {
    margin-top: 10px;
}

/* Final CTA */

.tu-final-cta {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 15%, rgba(73, 230, 255, .18), transparent 30%),
        linear-gradient(135deg, #4a37c8, #705cff 64%, #6451e9);
    color: rgba(255, 255, 255, .8);
}

.tu-final-cta::after {
    position: absolute;
    right: -120px;
    bottom: -180px;
    width: 460px;
    height: 460px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    content: "";
}

.tu-final-cta__inner {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 410px;
    align-items: center;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 70px;
}

.tu-final-cta__inner > img {
    align-self: end;
    max-height: 390px;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(0 24px 25px rgba(18, 12, 67, .22));
}

.tu-final-cta h2,
.tu-final-cta .tu-kicker {
    color: var(--tu-white);
}

.tu-final-cta h2 {
    max-width: 780px;
    margin-bottom: 17px;
}

.tu-final-cta p {
    max-width: 680px;
    font-size: 1.02rem;
}

.tu-final-cta--simple .tu-final-cta__inner {
    min-height: 360px;
}

.tu-control-note {
    padding: 13px 20px;
    margin: 0;
    border-bottom: 1px solid var(--tu-line);
    background: var(--tu-soft);
    color: var(--tu-muted);
    font-size: .74rem;
    text-align: center;
}

/* Page heroes */

.tu-page-hero {
    position: relative;
    padding: 78px 0 70px;
    border-bottom: 1px solid var(--tu-line);
    background:
        radial-gradient(circle at 82% 22%, rgba(184, 174, 255, .32), transparent 32%),
        linear-gradient(180deg, #fbfaff, #fff);
}

.tu-page-hero__grid {
    display: grid;
    min-height: 520px;
    align-items: center;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 70px;
}

.tu-page-hero__content h1 {
    max-width: 830px;
    margin-bottom: 24px;
}

.tu-page-hero__visual {
    display: grid;
    min-height: 500px;
    place-items: center;
}

.tu-page-hero__visual img {
    max-height: 500px;
    object-fit: contain;
}

.tu-page-hero__visual--theo {
    overflow: hidden;
    border: 1px solid rgba(184, 174, 255, .35);
    border-radius: var(--tu-radius-lg);
    background: #f9f8ff;
    box-shadow: var(--tu-shadow);
}

.tu-page-hero__visual--theo img {
    width: 100%;
    max-height: 590px;
    object-fit: cover;
    object-position: center 54%;
}

.tu-page-hero--compact {
    padding: 64px 0 58px;
}

.tu-page-hero--compact .tu-page-hero__grid {
    min-height: 430px;
}

.tu-page-hero__visual--compact {
    min-height: 390px;
}

.tu-page-hero__visual--compact img {
    width: min(360px, 90%);
    border: 1px solid var(--tu-line);
    border-radius: var(--tu-radius-lg);
    background: var(--tu-white);
    box-shadow: var(--tu-shadow-soft);
}

.tu-page-hero--minimal {
    padding: 82px 0 54px;
    background: var(--tu-soft);
}

.tu-page-hero--minimal h1 {
    margin-bottom: 0;
}

/* Theo page */

.tu-role-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.tu-role-grid article {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--tu-line);
    border-radius: var(--tu-radius);
    background: var(--tu-white);
    grid-template-columns: 180px minmax(0, 1fr);
}

.tu-role-grid article img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    object-position: center;
    border-right: 1px solid var(--tu-line);
}

.tu-role-grid article > div {
    padding: 26px;
}

.tu-role-grid article > div > span {
    color: var(--tu-violet-dark);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.tu-role-grid h2 {
    margin: 8px 0 10px;
    font-size: 1.28rem;
}

.tu-role-grid p {
    margin: 0;
    color: var(--tu-muted);
    font-size: .91rem;
}

.tu-process {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 74px;
}

.tu-process__steps {
    display: grid;
    gap: 16px;
}

.tu-process__steps article {
    display: grid;
    padding: 24px;
    border: 1px solid var(--tu-line);
    border-radius: var(--tu-radius);
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 18px;
}

.tu-process__steps article > span {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border-radius: 14px;
    background: var(--tu-violet-soft);
    color: var(--tu-violet-dark);
    font-size: .86rem;
    font-weight: 600;
}

.tu-process__steps h3 {
    margin: 3px 0 7px;
    font-size: 1.08rem;
}

.tu-process__steps p {
    margin: 0;
    color: var(--tu-muted);
    font-size: .91rem;
}

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

.tu-advice-grid article {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--tu-radius);
    background: rgba(255, 255, 255, .06);
}

.tu-advice-grid article > span {
    display: grid;
    width: 44px;
    height: 44px;
    margin-bottom: 26px;
    place-items: center;
    border-radius: 13px;
    background: rgba(111, 91, 255, .35);
    color: var(--tu-cyan);
}

.tu-advice-grid svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tu-advice-grid blockquote {
    margin: 0 0 20px;
    color: var(--tu-white);
    font-size: .98rem;
    line-height: 1.65;
}

.tu-advice-grid small {
    color: rgba(255, 255, 255, .57);
    font-size: .73rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.tu-control-panel {
    display: grid;
    align-items: center;
    grid-template-columns: .72fr 1.28fr;
    gap: 76px;
}

.tu-control-panel__visual {
    overflow: hidden;
    border: 1px solid var(--tu-line);
    border-radius: var(--tu-radius-lg);
    background: var(--tu-soft);
}

.tu-control-panel__visual img {
    width: 100%;
}

/* Feature page */

.tu-feature-family + .tu-feature-family {
    padding-top: 74px;
    margin-top: 74px;
    border-top: 1px solid var(--tu-line);
}

.tu-feature-family__heading {
    display: flex;
    max-width: 760px;
    align-items: center;
    gap: 18px;
    margin-bottom: 32px;
}

.tu-feature-family__heading > span {
    display: grid;
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 17px;
    background: var(--tu-violet-soft);
    color: var(--tu-violet-dark);
}

.tu-feature-family__heading svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tu-feature-family__heading small {
    display: block;
    margin-bottom: 5px;
    color: var(--tu-violet-dark);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.tu-feature-family__heading h2 {
    margin: 0;
    font-size: 1.9rem;
}

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

.tu-feature-family__grid article {
    padding: 24px;
    border: 1px solid var(--tu-line);
    border-radius: 16px;
    background: var(--tu-white);
}

.tu-feature-family__grid h3 {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.tu-feature-family__grid p {
    margin: 0;
    color: var(--tu-muted);
    font-size: .88rem;
}

.tu-soon {
    display: inline-flex;
    padding: 4px 8px;
    margin-left: 7px;
    border-radius: 999px;
    background: #fff3dd;
    color: #a55e00;
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .04em;
    vertical-align: middle;
    text-transform: uppercase;
}

.tu-soon--standalone {
    margin: 15px 0 0;
}

/* Therapists page */

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

.tu-profession-grid article {
    padding: 27px;
    border: 1px solid var(--tu-line);
    border-radius: var(--tu-radius);
    background: var(--tu-white);
    box-shadow: var(--tu-shadow-soft);
}

.tu-profession-grid article span {
    display: block;
    margin-bottom: 12px;
    color: var(--tu-ink);
    font-size: 1.07rem;
    font-weight: 600;
}

.tu-profession-grid p {
    margin: 0;
    color: var(--tu-muted);
    font-size: .9rem;
}

.tu-day-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.tu-day-list article {
    padding: 24px;
    border: 1px solid var(--tu-line);
    border-radius: 16px;
    background: var(--tu-white);
}

.tu-day-list strong {
    display: block;
    margin-bottom: 8px;
    color: var(--tu-ink);
    font-size: .98rem;
    font-weight: 600;
}

.tu-day-list p {
    margin: 0;
    color: var(--tu-muted);
    font-size: .88rem;
}

/* Support */

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

.tu-support-grid > article {
    padding: 30px;
    border: 1px solid var(--tu-line);
    border-radius: var(--tu-radius);
    background: var(--tu-white);
    box-shadow: var(--tu-shadow-soft);
}

.tu-support-grid > article > span:first-child {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    place-items: center;
    border-radius: 15px;
    background: var(--tu-violet-soft);
    color: var(--tu-violet-dark);
}

.tu-support-grid h2 {
    margin-bottom: 12px;
    font-size: 1.28rem;
}

.tu-support-grid p {
    min-height: 98px;
    color: var(--tu-muted);
    font-size: .91rem;
}

.tu-support-advice {
    max-width: 820px;
    padding: 36px;
    border: 1px solid var(--tu-line);
    border-radius: var(--tu-radius);
    background: var(--tu-soft);
}

.tu-support-advice h2 {
    font-size: 1.45rem;
}

.tu-support-embed {
    max-width: 950px;
}

/* Contact */

.tu-contact-layout {
    display: grid;
    align-items: start;
    grid-template-columns: .78fr 1.22fr;
    gap: 72px;
}

.tu-contact-copy h2 {
    margin-bottom: 18px;
}

.tu-contact-points {
    display: grid;
    gap: 14px;
    margin-top: 32px;
}

.tu-contact-points article {
    display: grid;
    padding: 18px;
    border: 1px solid var(--tu-line);
    border-radius: 14px;
    grid-template-columns: 42px 1fr;
    gap: 14px;
}

.tu-contact-points article > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    background: var(--tu-violet-soft);
    color: var(--tu-violet-dark);
}

.tu-contact-points h3 {
    margin: 0 0 4px;
    font-size: .98rem;
}

.tu-contact-points p {
    margin: 0;
    color: var(--tu-muted);
    font-size: .84rem;
}

.tu-contact-card {
    padding: 34px;
    border: 1px solid var(--tu-line);
    border-radius: var(--tu-radius-lg);
    background: var(--tu-white);
    box-shadow: var(--tu-shadow);
}

.tu-form {
    display: grid;
    gap: 20px;
}

.tu-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.tu-form label {
    display: grid;
    gap: 8px;
}

.tu-form label > span {
    color: var(--tu-ink-2);
    font-size: .82rem;
    font-weight: 600;
}

.tu-form input,
.tu-form textarea,
.tu-form select {
    width: 100%;
    border: 1px solid #ccd5e1;
    border-radius: 11px;
    background: var(--tu-white);
    color: var(--tu-ink);
    font-size: .94rem;
    outline: none;
}

.tu-form input,
.tu-form select {
    height: 50px;
    padding: 0 14px;
}

.tu-form textarea {
    min-height: 170px;
    padding: 13px 14px;
    resize: vertical;
}

.tu-form input:focus,
.tu-form textarea:focus,
.tu-form select:focus {
    border-color: var(--tu-violet);
    box-shadow: 0 0 0 4px rgba(111, 91, 255, .1);
}

.tu-consent {
    display: flex !important;
    align-items: flex-start;
    gap: 10px !important;
}

.tu-consent input {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    margin-top: 3px;
}

.tu-consent span {
    color: var(--tu-muted) !important;
    font-size: .78rem !important;
    font-weight: 400 !important;
}

.tu-consent a {
    color: var(--tu-violet-dark);
    text-decoration: underline;
}

.tu-honeypot {
    position: absolute;
    left: -10000px;
    opacity: 0;
}

.tu-form-message {
    padding: 14px 16px;
    margin-bottom: 22px;
    border-radius: 12px;
    font-size: .88rem;
}

.tu-form-message.is-success {
    border: 1px solid rgba(47, 191, 113, .35);
    background: rgba(47, 191, 113, .1);
    color: #176b41;
}

.tu-form-message.is-error {
    border: 1px solid rgba(224, 76, 76, .3);
    background: rgba(224, 76, 76, .08);
    color: #9b2d2d;
}

/* 404 */

.tu-404 {
    padding: 90px 0;
    background: var(--tu-soft);
}

.tu-404__inner {
    display: grid;
    align-items: center;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 70px;
}

.tu-404__inner img {
    border: 1px solid var(--tu-line);
    border-radius: var(--tu-radius-lg);
    background: var(--tu-white);
}

.tu-404 h1 {
    font-size: clamp(2.3rem, 5vw, 3.8rem);
}

/* Footer */

.tu-footer {
    padding: 72px 0 26px;
    border-top: 1px solid var(--tu-line);
    background: #fff;
}

.tu-footer__top {
    display: grid;
    grid-template-columns: 1.45fr repeat(3, 1fr);
    gap: 60px;
}

.tu-brand--footer {
    margin-bottom: 20px;
}

.tu-footer__brand p {
    max-width: 390px;
    color: var(--tu-muted);
    font-size: .88rem;
}

.tu-footer__column {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.tu-footer__column h2 {
    margin-bottom: 7px;
    color: var(--tu-ink);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.tu-footer__column a {
    color: var(--tu-muted);
    font-size: .84rem;
}

.tu-footer__column a:hover {
    color: var(--tu-violet-dark);
}

.tu-footer__bottom {
    display: flex;
    padding-top: 24px;
    margin-top: 54px;
    border-top: 1px solid var(--tu-line);
    justify-content: space-between;
    gap: 20px;
    color: var(--tu-muted);
    font-size: .75rem;
}

.tu-entry + .tu-entry {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid var(--tu-line);
}

/* Responsive */

@media (max-width: 1120px) {
    .tu-header__navigation {
        gap: 20px;
    }

    .tu-nav ul {
        gap: 18px;
    }

    .tu-nav a {
        font-size: .82rem;
    }

    .tu-header__actions {
        gap: 10px;
    }

    .tu-hero__grid {
        grid-template-columns: minmax(0, 1fr) 420px;
        gap: 35px;
    }

    .tu-hero__visual {
        min-height: 540px;
    }

    .tu-hero__halo {
        width: 420px;
        height: 420px;
    }

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

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

@media (max-width: 960px) {
    body.admin-bar .tu-header {
        top: 46px;
    }

    .tu-menu-button {
        display: block;
    }

    .tu-header__navigation {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: 0;
        display: none;
        padding: 20px;
        border-bottom: 1px solid var(--tu-line);
        background: rgba(255, 255, 255, .99);
        box-shadow: var(--tu-shadow-soft);
        flex-direction: column;
        align-items: stretch;
    }

    .tu-header__navigation.is-open {
        display: flex;
    }

    .tu-nav ul {
        align-items: stretch;
        flex-direction: column;
        gap: 0;
    }

    .tu-nav a {
        display: block;
        padding: 12px 4px;
        font-size: .94rem;
    }

    .tu-nav a::after {
        display: none;
    }

    .tu-header__actions {
        padding-top: 14px;
        border-top: 1px solid var(--tu-line);
        justify-content: space-between;
    }

    .tu-hero__grid,
    .tu-page-hero__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .tu-hero__grid {
        min-height: auto;
    }

    .tu-hero__content {
        max-width: 780px;
    }

    .tu-hero__visual {
        min-height: 520px;
    }

    .tu-page-hero__visual {
        min-height: auto;
    }

    .tu-page-hero__visual--compact img {
        width: min(360px, 78vw);
    }

    .tu-split,
    .tu-platform,
    .tu-platform--reverse,
    .tu-method,
    .tu-method--reverse,
    .tu-process,
    .tu-control-panel,
    .tu-pricing-explainer,
    .tu-subscribe-flow,
    .tu-contact-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .tu-platform--reverse .tu-platform__visual,
    .tu-method--reverse .tu-method__image {
        order: 0;
    }

    .tu-platform__visual {
        min-height: 360px;
    }

    .tu-scenario-grid,
    .tu-pricing-preview,
    .tu-pricing-grid,
    .tu-profession-grid,
    .tu-support-grid,
    .tu-advice-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tu-role-grid {
        grid-template-columns: 1fr;
    }

    .tu-faq-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .tu-faq-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tu-faq-sidebar .tu-kicker {
        grid-column: 1 / -1;
    }

    .tu-final-cta__inner {
        grid-template-columns: 230px 1fr;
        gap: 38px;
    }

    .tu-footer__top {
        grid-template-columns: 1.3fr repeat(2, 1fr);
    }

    .tu-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    body {
        font-size: 16px;
    }

    body.admin-bar .tu-header {
        top: 0;
    }

    .tu-container {
        width: min(calc(100% - 28px), var(--tu-container));
    }

    .tu-header__inner {
        min-height: 68px;
    }

    .tu-header__brand .custom-logo {
        max-width: 175px;
        max-height: 45px;
    }

    .tu-brand__symbol {
        width: 36px;
        height: 36px;
    }

    .tu-brand__symbol svg {
        width: 25px;
        height: 25px;
    }

    .tu-brand__text {
        font-size: 1.12rem;
    }

    h1 {
        font-size: clamp(2.25rem, 11vw, 3.1rem);
    }

    h2 {
        font-size: clamp(1.75rem, 8vw, 2.35rem);
    }

    .tu-section {
        padding: 72px 0;
    }

    .tu-section--compact {
        padding: 56px 0;
    }

    .tu-section-heading {
        margin-bottom: 34px;
        text-align: left;
    }

    .tu-hero {
        padding: 58px 0 48px;
    }

    .tu-hero__content h1 span {
        margin-top: 12px;
        font-size: .5em;
    }

    .tu-hero__visual {
        min-height: 450px;
    }

    .tu-hero__halo {
        width: 350px;
        height: 350px;
    }

    .tu-hero__theo {
        width: 285px;
        max-height: 450px;
    }

    .tu-signal {
        max-width: 190px;
        padding: 11px 12px;
    }

    .tu-signal--top {
        top: 34px;
        right: -4px;
    }

    .tu-signal--bottom {
        bottom: 46px;
        left: -5px;
    }

    .tu-signal__icon {
        width: 34px;
        height: 34px;
    }

    .tu-signal small {
        font-size: .64rem;
    }

    .tu-signal strong {
        font-size: .73rem;
    }

    .tu-strip__inner {
        padding: 18px 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .tu-strip ul {
        justify-content: flex-start;
    }

    .tu-expression-grid,
    .tu-benefit-grid,
    .tu-scenario-grid,
    .tu-pricing-preview,
    .tu-pricing-grid,
    .tu-profession-grid,
    .tu-support-grid,
    .tu-advice-grid,
    .tu-feature-family__grid,
    .tu-day-list {
        grid-template-columns: 1fr;
    }

    .tu-expression-card {
        display: grid;
        grid-template-columns: 130px 1fr;
    }

    .tu-expression-card img {
        width: 130px;
        height: 100%;
        aspect-ratio: auto;
        border-right: 1px solid var(--tu-line);
        border-bottom: 0;
    }

    .tu-expression-card > div {
        padding: 19px;
    }

    .tu-scenario {
        min-height: auto;
    }

    .tu-scenario__number {
        margin-bottom: 34px;
    }

    .tu-platform__visual {
        min-height: 290px;
    }

    .tu-method__image {
        max-width: 430px;
    }

    .tu-page-hero,
    .tu-page-hero--compact {
        padding: 56px 0 46px;
    }

    .tu-page-hero__grid,
    .tu-page-hero--compact .tu-page-hero__grid {
        min-height: auto;
    }

    .tu-page-hero__visual--theo {
        max-height: 480px;
    }

    .tu-role-grid article {
        grid-template-columns: 125px 1fr;
    }

    .tu-role-grid article img {
        min-height: 205px;
    }

    .tu-role-grid article > div {
        padding: 20px;
    }

    .tu-feature-family + .tu-feature-family {
        padding-top: 54px;
        margin-top: 54px;
    }

    .tu-feature-family__heading {
        align-items: flex-start;
    }

    .tu-feature-family__heading h2 {
        font-size: 1.55rem;
    }

    .tu-faq-sidebar {
        grid-template-columns: 1fr;
    }

    .tu-faq-sidebar .tu-kicker {
        grid-column: auto;
    }

    .tu-final-cta__inner,
    .tu-final-cta--simple .tu-final-cta__inner {
        min-height: auto;
        padding-top: 58px;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .tu-final-cta__inner > img {
        display: none;
    }

    .tu-final-cta__inner > div {
        padding-bottom: 58px;
    }

    .tu-contact-card {
        padding: 24px;
    }

    .tu-form__row {
        grid-template-columns: 1fr;
    }

    .tu-404__inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .tu-404__inner img {
        width: min(310px, 85%);
    }

    .tu-footer {
        padding-top: 56px;
    }

    .tu-footer__top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px 28px;
    }

    .tu-footer__brand {
        grid-column: 1 / -1;
    }

    .tu-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 460px) {
    .tu-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .tu-actions .tu-button {
        width: 100%;
    }

    .tu-header__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .tu-header__actions .tu-button,
    .tu-header__login {
        width: 100%;
        text-align: center;
    }

    .tu-hero__visual {
        min-height: 410px;
    }

    .tu-hero__halo {
        width: 310px;
        height: 310px;
    }

    .tu-hero__theo {
        width: 255px;
    }

    .tu-signal--top {
        right: -10px;
    }

    .tu-signal--bottom {
        left: -10px;
    }

    .tu-expression-card,
    .tu-role-grid article {
        grid-template-columns: 1fr;
    }

    .tu-expression-card img,
    .tu-role-grid article img {
        width: 100%;
        height: 230px;
        border-right: 0;
        border-bottom: 1px solid var(--tu-line);
    }

    .tu-price-card {
        padding: 26px 22px;
    }

    .tu-footer__top {
        grid-template-columns: 1fr;
    }

    .tu-footer__brand {
        grid-column: auto;
    }
}

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


/* ========================================================================== 
   v2.0.2 — TYPOGRAPHIE LÉGÈRE ET VISUELS THÉO ENTIÈREMENT VISIBLES
   ========================================================================== */

:root {
    --tu-font: "Segoe UI", Arial, Helvetica, sans-serif;
}

html {
    font-size: 16px;
}

body {
    font-family: var(--tu-font) !important;
    font-size: 15.5px !important;
    font-weight: 300 !important;
    line-height: 1.68 !important;
    color: #3f4b5d;
    font-synthesis: none;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Aucun gras par défaut dans les contenus. */
body :where(p, li, span, a, small, label, input, textarea, select, button, summary, td, th, blockquote) {
    font-family: var(--tu-font) !important;
    font-weight: 300 !important;
}

body :where(h1, h2, h3, h4, h5, h6) {
    font-family: var(--tu-font) !important;
    font-weight: 500 !important;
    letter-spacing: -0.012em !important;
}

body :where(strong, b) {
    font-weight: 600 !important;
}

.tu-button,
.tu-button *,
.tu-nav a,
.tu-header__login,
.tu-text-link,
.tu-faq-preview summary,
.tu-faq-group summary {
    font-weight: 500 !important;
}

.tu-kicker,
.tu-price-card__badge,
.tu-soon,
.tu-scenario__number,
.tu-feature-family__heading small,
.tu-role-grid article > div > span {
    font-weight: 500 !important;
}

h1 {
    font-size: clamp(2rem, 3.6vw, 2.75rem) !important;
    line-height: 1.08 !important;
}

h2 {
    font-size: clamp(1.45rem, 2.35vw, 1.9rem) !important;
    line-height: 1.2 !important;
}

h3 {
    font-size: 1rem !important;
    line-height: 1.35 !important;
}

.tu-lead {
    font-size: clamp(.98rem, 1.25vw, 1.06rem) !important;
    font-weight: 300 !important;
    line-height: 1.7 !important;
}

.tu-kicker {
    font-size: .68rem !important;
    letter-spacing: .07em !important;
}

.tu-section {
    padding: 68px 0 !important;
}

.tu-section--compact {
    padding: 50px 0 !important;
}

.tu-section-heading {
    max-width: 700px !important;
    margin-bottom: 32px !important;
}

.tu-section-heading p,
.tu-platform__content p,
.tu-final-cta p,
.tu-price-card p,
.tu-price-card li,
.tu-scenario p,
.tu-benefit-grid p,
.tu-challenge-list p,
.tu-role-grid p,
.tu-feature-family__grid p,
.tu-profession-grid p {
    font-size: .92rem !important;
    font-weight: 300 !important;
    line-height: 1.62 !important;
}

.tu-button {
    min-height: 43px !important;
    padding: 10px 17px !important;
    font-size: .86rem !important;
}

.tu-button--small {
    min-height: 37px !important;
    padding: 8px 13px !important;
    font-size: .79rem !important;
}

/* Hero compact, avec Théo visible en entier. */
.tu-hero {
    padding: 56px 0 46px !important;
}

.tu-hero__grid {
    min-height: 480px !important;
    grid-template-columns: minmax(0, 1.16fr) minmax(300px, .84fr) !important;
    gap: 46px !important;
}

.tu-hero__content h1 {
    max-width: 680px !important;
    margin-bottom: 16px !important;
}

.tu-hero__content h1 span {
    max-width: 620px !important;
    margin-top: 10px !important;
    font-size: .5em !important;
    font-weight: 400 !important;
    line-height: 1.35 !important;
}

.tu-hero__visual {
    min-height: 430px !important;
    overflow: visible !important;
}

.tu-hero__halo {
    width: 330px !important;
    height: 330px !important;
}

.tu-hero__theo {
    width: 250px !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center !important;
}

.tu-signal {
    max-width: 178px !important;
    padding: 9px 11px !important;
}

.tu-signal strong {
    font-size: .72rem !important;
    font-weight: 500 !important;
}

.tu-signal small,
.tu-hero__audience {
    font-size: .75rem !important;
    font-weight: 300 !important;
}

/* Cartes Théo : personnages complets, sans recadrage ni overflow. */
.tu-expression-grid {
    gap: 16px !important;
}

.tu-expression-card {
    overflow: visible !important;
    display: flex !important;
    flex-direction: column !important;
}

.tu-expression-card img {
    display: block !important;
    width: auto !important;
    height: 180px !important;
    max-width: 88% !important;
    margin: 18px auto 0 !important;
    padding: 0 !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    object-position: center !important;
    border: 0 !important;
    background: transparent !important;
}

.tu-expression-card > div {
    padding: 16px 18px 19px !important;
}

.tu-expression-card span {
    font-size: .64rem !important;
    font-weight: 500 !important;
}

.tu-expression-card h3 {
    margin-bottom: 6px !important;
    font-size: .96rem !important;
    font-weight: 500 !important;
}

.tu-expression-card p {
    font-size: .82rem !important;
    font-weight: 300 !important;
}

/* Tous les autres visuels de Théo restent entièrement visibles. */
.tu-platform__visual,
.tu-method__image,
.tu-control-panel__visual,
.tu-page-hero__visual,
.tu-page-hero__visual--theo,
.tu-role-grid article {
    overflow: visible !important;
}

.tu-platform__visual {
    min-height: 280px !important;
}

.tu-platform__visual img {
    width: auto !important;
    height: 220px !important;
    max-width: 80% !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center !important;
    border-radius: 0 !important;
    mix-blend-mode: normal !important;
}

.tu-method__image,
.tu-control-panel__visual {
    width: min(100%, 270px) !important;
    padding: 16px !important;
}

.tu-method__image img,
.tu-control-panel__visual img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center !important;
}

.tu-page-hero {
    padding: 52px 0 46px !important;
}

.tu-page-hero__grid {
    min-height: 370px !important;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr) !important;
    gap: 44px !important;
}

.tu-page-hero__visual,
.tu-page-hero__visual--theo {
    min-height: 310px !important;
}

.tu-page-hero__visual img,
.tu-page-hero__visual--theo img {
    display: block !important;
    width: auto !important;
    height: 300px !important;
    max-width: 82% !important;
    max-height: none !important;
    margin: auto !important;
    object-fit: contain !important;
    object-position: center !important;
}

.tu-role-grid article {
    grid-template-columns: 145px minmax(0, 1fr) !important;
}

.tu-role-grid article img {
    display: block !important;
    width: 120px !important;
    height: 170px !important;
    min-height: 0 !important;
    max-width: 100% !important;
    margin: 18px auto !important;
    padding: 0 !important;
    object-fit: contain !important;
    object-position: center !important;
    border: 0 !important;
}

.tu-role-grid article > div {
    padding: 21px !important;
}

.tu-role-grid h2 {
    font-size: 1.08rem !important;
    font-weight: 500 !important;
}

.tu-final-cta__inner {
    min-height: 290px !important;
    grid-template-columns: 150px minmax(0, 1fr) !important;
    gap: 34px !important;
}

.tu-final-cta__inner > img {
    display: block !important;
    width: 125px !important;
    height: auto !important;
    max-height: 230px !important;
    align-self: center !important;
    justify-self: center !important;
    object-fit: contain !important;
    object-position: center !important;
}

.tu-price-card__price strong {
    font-size: 1.9rem !important;
    font-weight: 600 !important;
}

.tu-price-card h3,
.tu-scenario h3,
.tu-benefit-grid h3,
.tu-challenge-list h3,
.tu-feature-family__grid h3 {
    font-weight: 500 !important;
}

@media (max-width: 900px) {
    h1 {
        font-size: clamp(1.85rem, 6vw, 2.35rem) !important;
    }

    h2 {
        font-size: clamp(1.35rem, 4.2vw, 1.72rem) !important;
    }

    .tu-hero__grid,
    .tu-page-hero__grid {
        grid-template-columns: 1fr !important;
        gap: 26px !important;
    }

    .tu-hero__visual {
        min-height: 350px !important;
    }

    .tu-hero__theo {
        width: 215px !important;
    }

    .tu-hero__halo {
        width: 280px !important;
        height: 280px !important;
    }

    .tu-page-hero__visual,
    .tu-page-hero__visual--theo {
        min-height: 270px !important;
    }

    .tu-page-hero__visual img,
    .tu-page-hero__visual--theo img {
        height: 255px !important;
    }
}

@media (max-width: 680px) {
    body {
        font-size: 15px !important;
    }

    .tu-section {
        padding: 50px 0 !important;
    }

    .tu-section--compact {
        padding: 42px 0 !important;
    }

    .tu-hero {
        padding: 42px 0 36px !important;
    }

    .tu-hero__visual {
        min-height: 310px !important;
    }

    .tu-hero__theo {
        width: 190px !important;
    }

    .tu-hero__halo {
        width: 245px !important;
        height: 245px !important;
    }

    .tu-expression-card {
        display: grid !important;
        grid-template-columns: 100px minmax(0, 1fr) !important;
        align-items: center !important;
    }

    .tu-expression-card img {
        width: 82px !important;
        height: 120px !important;
        max-width: none !important;
        margin: 10px auto !important;
    }

    .tu-role-grid article {
        grid-template-columns: 105px minmax(0, 1fr) !important;
    }

    .tu-role-grid article img {
        width: 86px !important;
        height: 125px !important;
        margin: 14px auto !important;
    }

    .tu-final-cta__inner {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
    }

    .tu-final-cta__inner > img {
        display: none !important;
    }
}


/* ===== v2.0.3 visual rebalance ===== */
:root {
    --tu-text: #374151;
    --tu-muted: #5f6b80;
    --tu-line: #d6ddeb;
    --tu-shadow: 0 18px 46px rgba(24, 31, 68, 0.12);
    --tu-shadow-soft: 0 10px 24px rgba(24, 31, 68, 0.10);
}

body {
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.68 !important;
    color: var(--tu-text) !important;
}

p, li, dt, dd, summary, details, input, textarea, select, label, small {
    font-weight: 400 !important;
    color: var(--tu-text);
}

strong, b { font-weight: 600 !important; }

h1, h2 {
    font-weight: 700 !important;
    letter-spacing: -0.032em !important;
    color: var(--tu-ink) !important;
}

h3, h4 {
    font-weight: 600 !important;
    letter-spacing: -0.02em !important;
    color: var(--tu-ink) !important;
}

h1 { font-size: clamp(2.5rem, 4.8vw, 4.15rem) !important; line-height: 1.04 !important; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem) !important; line-height: 1.08 !important; }
h3 { font-size: 1.22rem !important; line-height: 1.22 !important; }

.tu-kicker,
.tu-strip__inner > span,
.tu-price-card__badge,
.tu-scenario__number,
.tu-footer__title,
.tu-page-nav__label {
    font-weight: 700 !important;
    letter-spacing: .06em !important;
}

.tu-lead {
    color: #4b5567 !important;
    font-size: 1.05rem !important;
    max-width: 700px;
}

.tu-button,
.tu-button--ghost,
.tu-button--light,
.tu-text-link,
.tu-header__actions a,
.tu-nav a,
.tu-mobile-nav a,
.tu-price-card__price strong,
.tu-faq-preview summary,
.tu-signal strong,
.tu-brand__text,
.tu-brand__text strong {
    font-weight: 600 !important;
}

.tu-header__inner { min-height: 78px !important; }
.tu-nav a, .tu-mobile-nav a { font-size: .94rem !important; color: #263246 !important; }
.tu-nav a:hover, .tu-mobile-nav a:hover { color: var(--tu-violet-dark) !important; }

.tu-section-heading p,
.tu-expression-card p,
.tu-benefit-grid p,
.tu-challenge-list p,
.tu-scenario p,
.tu-price-card p,
.tu-method p,
.tu-prose p,
.tu-page-hero p,
.tu-final-cta p {
    color: var(--tu-muted) !important;
}

.tu-hero {
    padding: 86px 0 76px !important;
    background:
        radial-gradient(circle at 76% 18%, rgba(111, 91, 255, .18), transparent 24%),
        radial-gradient(circle at 82% 78%, rgba(73, 230, 255, .12), transparent 24%),
        linear-gradient(180deg, #f7f5ff 0%, #ffffff 72%) !important;
}

.tu-hero__grid {
    min-height: 640px !important;
    grid-template-columns: minmax(0, 1.02fr) minmax(350px, .98fr) !important;
    gap: 52px !important;
}

.tu-hero__content h1 { margin-bottom: 20px !important; max-width: 720px !important; }
.tu-hero__content h1 span {
    margin-top: 16px !important;
    font-size: .43em !important;
    line-height: 1.22 !important;
    color: var(--tu-violet-dark) !important;
    font-weight: 600 !important;
    max-width: 620px !important;
}
.tu-hero__audience {
    margin-top: 20px !important;
    font-size: .93rem !important;
    color: var(--tu-muted) !important;
}

.tu-hero__visual { min-height: 600px !important; }
.tu-hero__halo {
    width: 500px !important;
    height: 500px !important;
    border-color: rgba(111, 91, 255, .22) !important;
    background: radial-gradient(circle at 50% 42%, rgba(255,255,255,.98) 0 38%, rgba(244,241,255,.96) 39% 63%, rgba(203,196,255,.18) 64% 100%) !important;
}
.tu-hero__theo {
    width: 372px !important;
    max-height: 570px !important;
    filter: drop-shadow(0 30px 36px rgba(50, 42, 130, .22)) !important;
}

.tu-signal {
    max-width: 196px !important;
    padding: 12px 14px !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 24px rgba(17, 27, 39, .08) !important;
    background: rgba(255,255,255,.96) !important;
}
.tu-signal--top {
    top: 74px !important;
    right: -4px !important;
}
.tu-signal--bottom {
    bottom: 96px !important;
    left: -6px !important;
}
.tu-signal__icon { width: 34px !important; height: 34px !important; }
.tu-signal small { font-size: .70rem !important; color: #6b7280 !important; }
.tu-signal strong { font-size: .84rem !important; line-height: 1.26 !important; color: var(--tu-ink) !important; }

.tu-strip { background: #fff !important; }
.tu-strip__inner { min-height: 72px !important; }
.tu-strip ul { color: #657084 !important; font-size: .84rem !important; }

.tu-section { padding: 88px 0 !important; }
.tu-section--soft { background: #f7f8fc !important; }
.tu-section--compact { padding: 76px 0 !important; }

.tu-section-heading h2,
.tu-page-hero__content h1,
.tu-final-cta h2,
.tu-method h2 { max-width: 860px; }
.tu-section-heading p { max-width: 760px; margin-left: auto; margin-right: auto; }
.tu-section-heading--left p { margin-left: 0; margin-right: 0; }

.tu-expression-card,
.tu-benefit-grid article,
.tu-challenge-list article,
.tu-scenario,
.tu-price-card,
.tu-tool-panel,
.tu-faq-preview details,
.tu-method__image,
.tu-empty {
    border-color: #dde3ee !important;
    box-shadow: 0 10px 24px rgba(30, 41, 59, .05) !important;
}

.tu-expression-card img {
    width: 128px !important;
    height: auto !important;
    margin: 22px auto 14px !important;
}

.tu-benefit-grid article span,
.tu-challenge-list article span {
    box-shadow: none !important;
    background: #f1edff !important;
}

.tu-dark-band {
    background: linear-gradient(135deg, #101b2e 0%, #16253c 50%, #152f55 100%) !important;
}

.tu-tool-visual {
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03)) !important;
    border-color: rgba(255,255,255,.10) !important;
}

.tu-tool-panel h2,
.tu-final-cta h2,
.tu-final-cta p,
.tu-tool-panel p { color: #fff !important; }
.tu-tool-tags span {
    font-weight: 500 !important;
    background: rgba(255,255,255,.08) !important;
    border-color: rgba(255,255,255,.12) !important;
    color: rgba(255,255,255,.92) !important;
}

.tu-pricing-preview { align-items: stretch !important; }
.tu-price-card { padding-top: 28px !important; }
.tu-price-card__price strong {
    font-size: 2.2rem !important;
    color: var(--tu-ink) !important;
}
.tu-price-card__credits {
    background: #f7f8fc !important;
    border: 1px solid #e3e8f2 !important;
}
.tu-price-card__credits strong { font-weight: 700 !important; }
.tu-price-card li span { color: var(--tu-text) !important; }

.tu-faq-preview summary { font-size: 1rem !important; color: var(--tu-ink) !important; }

.tu-final-cta {
    background: linear-gradient(110deg, #5c49f0 0%, #6f5bff 45%, #8071ff 100%) !important;
}
.tu-final-cta__grid { gap: 24px !important; }
.tu-final-cta__visual img {
    width: 104px !important;
    height: auto !important;
}

.tu-footer {
    background: #fff !important;
    color: #556176 !important;
}
.tu-footer a { color: #1f2a3c !important; }
.tu-footer__title { color: var(--tu-ink) !important; }

@media (max-width: 960px) {
    .tu-hero__grid,
    .tu-page-hero__grid { grid-template-columns: 1fr !important; }
    .tu-hero__content { text-align: left !important; }
    .tu-hero__content h1,
    .tu-hero__content h1 span,
    .tu-lead,
    .tu-hero__audience { max-width: 100% !important; }
    .tu-hero__visual {
        min-height: 480px !important;
        max-width: 480px !important;
        margin: 10px auto 0 !important;
    }
    .tu-hero__halo {
        width: 420px !important;
        height: 420px !important;
    }
    .tu-hero__theo {
        width: 310px !important;
        max-height: 470px !important;
    }
    .tu-signal--top { right: 0 !important; top: 56px !important; }
    .tu-signal--bottom { left: 0 !important; bottom: 58px !important; }
}

@media (max-width: 640px) {
    h1 { font-size: 2.15rem !important; }
    h2 { font-size: 1.7rem !important; }
    .tu-section { padding: 68px 0 !important; }
    .tu-hero { padding: 58px 0 48px !important; }
    .tu-hero__visual {
        min-height: 400px !important;
        max-width: 360px !important;
    }
    .tu-hero__halo {
        width: 320px !important;
        height: 320px !important;
    }
    .tu-hero__theo {
        width: 230px !important;
        max-height: 360px !important;
    }
    .tu-signal {
        max-width: 156px !important;
        padding: 10px 11px !important;
        gap: 9px !important;
    }
    .tu-signal__icon { width: 28px !important; height: 28px !important; }
    .tu-signal small { font-size: .62rem !important; }
    .tu-signal strong { font-size: .73rem !important; }
    .tu-signal--top { top: 54px !important; right: -2px !important; }
    .tu-signal--bottom { left: -2px !important; bottom: 44px !important; }
    .tu-expression-card img { width: 108px !important; }
    .tu-final-cta__visual img { width: 84px !important; }
}


/* ===== v2.1.0 premium sales refinement ===== */
:root {
    --tu-font: "Instrument Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    --tu-font-display: "Bricolage Grotesque", "Instrument Sans", ui-sans-serif, sans-serif;
    --tu-text: #3d4a5d;
    --tu-muted: #647287;
    --tu-line: #dbe2ed;
    --tu-soft: #f6f5fe;
    --tu-shadow: 0 24px 64px rgba(31, 41, 83, 0.12);
    --tu-shadow-soft: 0 12px 28px rgba(31, 41, 83, 0.08);
}

body {
    font-family: var(--tu-font) !important;
    font-size: 16.5px !important;
    font-weight: 400 !important;
    line-height: 1.68 !important;
    color: var(--tu-text) !important;
    background: #fff !important;
}

h1, h2, h3, h4 {
    font-family: var(--tu-font-display) !important;
    color: var(--tu-ink) !important;
}

h1 { font-weight: 700 !important; font-size: clamp(2.8rem, 5vw, 4.3rem) !important; line-height: 1.02 !important; letter-spacing: -0.03em !important; }
h2 { font-weight: 700 !important; font-size: clamp(2.05rem, 3.6vw, 3rem) !important; line-height: 1.08 !important; letter-spacing: -0.025em !important; }
h3 { font-weight: 600 !important; font-size: 1.18rem !important; line-height: 1.24 !important; }

p, li, dt, dd, small, summary, label { font-family: var(--tu-font) !important; font-weight: 400 !important; }
strong, b { font-weight: 600 !important; }

.tu-brand__text,
.tu-kicker,
.tu-button,
.tu-button--ghost,
.tu-button--light,
.tu-text-link,
.tu-nav a,
.tu-mobile-nav a,
.tu-price-card__price strong,
.tu-price-card__badge,
.tu-faq-preview summary,
.tu-scenario__number,
.tu-footer__title { font-family: var(--tu-font-display) !important; }

.tu-nav a,
.tu-mobile-nav a,
.tu-button,
.tu-button--ghost,
.tu-button--light,
.tu-text-link { font-weight: 600 !important; }

.tu-header {
    border-bottom-color: rgba(219, 226, 237, .95) !important;
    background: rgba(255,255,255,.92) !important;
    box-shadow: 0 8px 24px rgba(15,23,42,.04);
}

.tu-hero {
    padding: 92px 0 76px !important;
    background:
        radial-gradient(circle at 78% 20%, rgba(111,91,255,.22), transparent 26%),
        radial-gradient(circle at 86% 78%, rgba(73,230,255,.12), transparent 22%),
        linear-gradient(180deg, #f3f1ff 0%, #ffffff 70%) !important;
}

.tu-hero__grid {
    min-height: 640px !important;
    gap: 56px !important;
    grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr) !important;
}

.tu-hero__content h1 { max-width: 730px !important; margin-bottom: 22px !important; }
.tu-hero__content h1 span {
    display: block;
    margin-top: 18px !important;
    max-width: 650px !important;
    color: var(--tu-violet-dark) !important;
    font-family: var(--tu-font) !important;
    font-size: .42em !important;
    font-weight: 600 !important;
    line-height: 1.34 !important;
    letter-spacing: -.015em !important;
}

.tu-lead {
    max-width: 720px !important;
    color: #4d5a6d !important;
    font-size: 1.03rem !important;
}

.tu-hero__audience {
    margin-top: 22px !important;
    color: var(--tu-muted) !important;
    font-size: .93rem !important;
}

.tu-hero__visual {
    min-height: 590px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.tu-hero__halo {
    width: 515px !important;
    height: 515px !important;
    border-color: rgba(111,91,255,.20) !important;
    background: radial-gradient(circle at 50% 42%, rgba(255,255,255,.98) 0 38%, rgba(242,239,255,.95) 39% 66%, rgba(184,174,255,.18) 67% 100%) !important;
    box-shadow: inset 0 0 100px rgba(111,91,255,.07), 0 25px 60px rgba(111,91,255,.08) !important;
}
.tu-hero__theo {
    width: 380px !important;
    max-height: 575px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 34px 44px rgba(42, 49, 110, .22)) !important;
}

.tu-strip { background: #fff !important; border-bottom-color: #e2e8f0 !important; }
.tu-strip__inner { min-height: 76px !important; }
.tu-strip__inner > span { font-weight: 700 !important; font-family: var(--tu-font-display) !important; }

.tu-section { padding: 92px 0 !important; }
.tu-section--soft { background: #f7f8fc !important; }
.tu-section-heading p,
.tu-section-heading--left p,
.tu-expression-card p,
.tu-benefit-grid p,
.tu-challenge-list p,
.tu-scenario p,
.tu-method p,
.tu-price-card p,
.tu-prose p { color: var(--tu-muted) !important; }

.tu-expression-card,
.tu-benefit-grid article,
.tu-challenge-list article,
.tu-scenario,
.tu-price-card,
.tu-method__image,
.tu-faq-preview details,
.tu-empty {
    border-color: #dee5ef !important;
    background: #fff !important;
    box-shadow: 0 12px 28px rgba(17,24,39,.05) !important;
}

.tu-expression-card img { width: 122px !important; margin: 20px auto 10px !important; }

.tu-section--ink {
    background: linear-gradient(135deg, #10192b 0%, #15233a 52%, #1a3458 100%) !important;
}
.tu-platform {
    grid-template-columns: minmax(340px, 1.08fr) minmax(0, .92fr) !important;
    gap: 54px !important;
}
.tu-platform__visual {
    min-height: auto !important;
    padding: 20px !important;
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,255,.96)) !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    box-shadow: 0 20px 50px rgba(8, 15, 31, .22) !important;
}
.tu-platform__visual img {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 18px !important;
    mix-blend-mode: normal !important;
}
.tu-platform__content h2,
.tu-platform__content p { color: #fff !important; }
.tu-tool-tags span {
    background: rgba(255,255,255,.10) !important;
    border-color: rgba(255,255,255,.14) !important;
    color: rgba(255,255,255,.92) !important;
    font-family: var(--tu-font) !important;
    font-weight: 500 !important;
}

.tu-price-card__price strong { font-weight: 700 !important; }
.tu-price-card__credits {
    border-color: #e1e6ef !important;
    background: #f8f9fc !important;
}
.tu-price-card__credits strong { font-weight: 700 !important; }

.tu-final-cta {
    background: linear-gradient(110deg, #5342de 0%, #6f5bff 44%, #866ff8 100%) !important;
}
.tu-final-cta p { color: rgba(255,255,255,.88) !important; }

@media (max-width: 960px) {
    .tu-hero__grid,
    .tu-platform,
    .tu-page-hero__grid { grid-template-columns: 1fr !important; }
    .tu-hero__visual {
        min-height: 470px !important;
        max-width: 460px !important;
        margin: 8px auto 0 !important;
    }
    .tu-hero__halo { width: 420px !important; height: 420px !important; }
    .tu-hero__theo { width: 305px !important; max-height: 460px !important; }
    .tu-platform__visual { order: -1; }
}

@media (max-width: 640px) {
    body { font-size: 16px !important; }
    h1 { font-size: 2.2rem !important; }
    h2 { font-size: 1.78rem !important; }
    .tu-hero { padding: 62px 0 52px !important; }
    .tu-section { padding: 72px 0 !important; }
    .tu-hero__visual {
        min-height: 380px !important;
        max-width: 360px !important;
    }
    .tu-hero__halo { width: 320px !important; height: 320px !important; }
    .tu-hero__theo { width: 228px !important; max-height: 348px !important; }
    .tu-platform__visual { padding: 14px !important; }
}


/* ===== v2.1.1 compact typography + marquee + stable 4 cards ===== */
html { font-size: 12px !important; }
body,
p,
li,
a,
button,
input,
textarea,
select,
label,
small,
summary,
.tu-lead,
.tu-hero__audience,
.tu-nav a,
.tu-mobile-nav a,
.tu-button,
.tu-button--ghost,
.tu-button--light,
.tu-text-link,
.tu-strip ul,
.tu-strip li,
.tu-price-card p,
.tu-price-card li,
.tu-price-card__credits,
.tu-faq-preview p,
.tu-faq-preview summary,
.tu-final-cta p,
.tu-footer,
.tu-footer a,
.tu-tool-tags span,
.tu-section-heading p,
.tu-expression-card p,
.tu-benefit-grid p,
.tu-scenario p,
.tu-method p,
.tu-challenge-list p {
    font-size: 12px !important;
    line-height: 1.55 !important;
}

h1,
h2,
h3,
h4,
.tu-kicker,
.tu-brand__text,
.tu-strip__inner > span,
.tu-price-card__badge,
.tu-scenario__number,
.tu-footer__title,
.tu-price-card__price strong,
.tu-faq-preview summary,
.tu-expression-card span,
.tu-nav .current-menu-item > a,
.tu-mobile-nav .current-menu-item > a {
    font-size: 14px !important;
    line-height: 1.2 !important;
}

h1,h2,h3,h4 { font-weight: 700 !important; }
.tu-brand__text,
.tu-kicker,
.tu-strip__inner > span,
.tu-footer__title,
.tu-price-card__badge,
.tu-scenario__number,
.tu-expression-card span { font-weight: 600 !important; }

.tu-hero__content h1 span {
    font-size: 12px !important;
    line-height: 1.45 !important;
}

.tu-header__inner { min-height: 60px !important; }
.tu-header__brand .custom-logo { max-height: 40px !important; }
.tu-brand__symbol { width: 32px !important; height: 32px !important; }

.tu-hero { padding: 42px 0 34px !important; }
.tu-section { padding: 42px 0 !important; }
.tu-section--compact { padding: 36px 0 !important; }
.tu-hero__grid { min-height: auto !important; gap: 24px !important; }
.tu-hero__visual { min-height: 320px !important; }
.tu-hero__halo { width: 300px !important; height: 300px !important; }
.tu-hero__theo { width: 185px !important; max-height: 290px !important; }

.tu-strip {
    overflow: hidden !important;
}
.tu-strip__inner {
    display: grid !important;
    grid-template-columns: auto 1fr !important;
    align-items: center !important;
    gap: 16px !important;
    min-height: 40px !important;
    padding: 0 !important;
}
.tu-strip__marquee {
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
    min-width: 0 !important;
    white-space: nowrap !important;
}
.tu-strip__track {
    display: flex !important;
    align-items: center !important;
    width: max-content !important;
    animation: tu-marquee-scroll 34s linear infinite !important;
}
.tu-strip__track ul {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}
.tu-strip__track li {
    position: relative !important;
    flex: 0 0 auto !important;
    padding: 0 22px 0 18px !important;
    color: var(--tu-text) !important;
}
.tu-strip__track li::before {
    position: absolute !important;
    top: 50% !important;
    left: 6px !important;
    width: 5px !important;
    height: 5px !important;
    margin-top: -2.5px !important;
    border-radius: 50% !important;
    background: var(--tu-violet) !important;
    content: "" !important;
}
@keyframes tu-marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.tu-expression-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 12px !important;
}
.tu-expression-card {
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    min-width: 0 !important;
}
.tu-expression-card img {
    width: auto !important;
    max-width: 72% !important;
    height: 92px !important;
    margin: 12px auto 0 !important;
    object-fit: contain !important;
    aspect-ratio: auto !important;
    border: 0 !important;
    background: transparent !important;
}
.tu-expression-card > div { padding: 12px !important; }
.tu-expression-card h3 { font-size: 14px !important; line-height: 1.2 !important; margin-bottom: 8px !important; }
.tu-expression-card p { margin: 0 !important; }

.tu-benefit-grid,
.tu-scenario-grid,
.tu-pricing-preview,
.tu-pricing-grid,
.tu-profession-grid,
.tu-support-grid,
.tu-advice-grid,
.tu-feature-family__grid,
.tu-day-list {
    gap: 12px !important;
}
.tu-benefit-grid article,
.tu-scenario,
.tu-price-card,
.tu-challenge-list article,
.tu-method__image,
.tu-faq-preview details {
    padding: 14px !important;
}
.tu-benefit-grid article > span,
.tu-challenge-list article > span { width: 34px !important; height: 34px !important; margin-bottom: 10px !important; }
.tu-benefit-grid h3,
.tu-challenge-list h3,
.tu-scenario h3,
.tu-price-card h3,
.tu-method h2,
.tu-platform__content h2,
.tu-final-cta h2 { font-size: 14px !important; }
.tu-price-card__price strong { font-size: 14px !important; }
.tu-price-card__price span { font-size: 12px !important; }
.tu-tool-tags { gap: 8px !important; }
.tu-tool-tags span { padding: 5px 9px !important; }
.tu-final-cta__visual img { width: 56px !important; }
.tu-footer__grid { gap: 20px !important; }

@media (max-width: 767px) {
    .tu-strip__inner {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
        padding: 8px 0 !important;
    }
    .tu-expression-grid,
    .tu-benefit-grid,
    .tu-scenario-grid,
    .tu-pricing-preview,
    .tu-pricing-grid,
    .tu-profession-grid,
    .tu-support-grid,
    .tu-advice-grid,
    .tu-feature-family__grid,
    .tu-day-list {
        grid-template-columns: 1fr !important;
    }
    .tu-hero__grid,
    .tu-platform,
    .tu-page-hero__grid {
        grid-template-columns: 1fr !important;
    }
}
