/* ==========================================================================
   iatrust — design system (polish pass)
   ========================================================================== */

:root {
    /* Violet-tinted neutrals (no pure gray / pure white) */
    --it-bg:        #F7F6FB;
    --it-surface:   #FFFCFF;
    --it-text:      #1A1430;
    --it-text-2:    #4A4460;
    --it-text-3:    #847E98;
    --it-border:    rgba(88, 60, 140, 0.12);
    --it-border-2:  rgba(88, 60, 140, 0.06);

    --it-violet:    #7C3AED;
    --it-purple:    #9333EA;
    --it-magenta:   #D946EF;
    --it-pink:      #EC4899;
    --it-orange:    #F97316;

    --it-grad:      linear-gradient(135deg, #7C3AED 0%, #D946EF 55%, #F97316 100%);
    --it-grad-text: linear-gradient(135deg, #7C3AED 0%, #C026D3 50%, #F97316 100%);
    --it-grad-soft: linear-gradient(135deg, rgba(124,58,237,.08) 0%, rgba(217,70,239,.06) 50%, rgba(249,115,22,.04) 100%);
    --it-grad-cta:  linear-gradient(120deg, #6D28D9 0%, #9333EA 30%, #D946EF 60%, #F97316 100%);

    --it-font:      'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
    --it-radius:    20px;
    --it-radius-sm: 12px;
    --it-radius-lg: 28px;
    --it-shadow:    0 1px 2px rgba(26,20,48,.04), 0 8px 28px rgba(124,58,237,.07);
    --it-shadow-lg: 0 4px 6px rgba(26,20,48,.04), 0 20px 56px rgba(124,58,237,.11);

    --it-wrap:      1200px;
    --it-space-1:   8px;
    --it-space-2:   16px;
    --it-space-3:   24px;
    --it-space-4:   32px;
    --it-space-5:   48px;
    --it-space-6:   72px;
    /* ease-out-quart — natural deceleration, no bounce */
    --it-ease:      cubic-bezier(.25, 1, .5, 1);
    --it-ease-out:  cubic-bezier(.16, 1, .3, 1);
    --it-focus:     0 0 0 3px var(--it-surface), 0 0 0 5px rgba(124,58,237,.55);
    --it-dur:       .22s;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body.it-theme {
    font-family: var(--it-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--it-text);
    background: var(--it-bg);
    overflow-x: hidden;
    touch-action: manipulation;
}

body.is-front {
    background:
        radial-gradient(ellipse 90% 65% at 85% 5%, rgba(124,58,237,.10) 0%, transparent 60%),
        radial-gradient(ellipse 70% 55% at 5% 75%, rgba(217,70,239,.08) 0%, transparent 55%),
        radial-gradient(ellipse 55% 45% at 50% 45%, rgba(249,115,22,.05) 0%, transparent 50%),
        radial-gradient(ellipse 40% 35% at 95% 60%, rgba(147,51,234,.06) 0%, transparent 55%),
        var(--it-bg);
}

::selection {
    background: rgba(124, 58, 237, .18);
    color: var(--it-text);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Skip link + keyboard focus (a11y) */
.it-skip {
    position: absolute;
    left: 16px;
    top: -100px;
    z-index: 1000;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--it-text);
    color: #fff;
    font-size: .875rem;
    font-weight: 700;
    transition: top .2s var(--it-ease);
}
.it-skip:focus {
    top: 12px;
    outline: none;
    box-shadow: var(--it-focus);
}

.it-theme :focus { outline: none; }
.it-theme :focus-visible {
    outline: none;
    box-shadow: var(--it-focus);
}
.it-theme a:focus-visible,
.it-theme button:focus-visible,
.it-theme .it-btn:focus-visible,
.it-theme .it-modele-card:focus-visible {
    box-shadow: var(--it-focus);
}

/* ---- Layout ---- */
.it-wrap {
    width: 100%;
    max-width: var(--it-wrap);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Typography ---- */
.it-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--it-violet);
    margin-bottom: 16px;
}
.it-label--orange {
    color: var(--it-orange);
}

.it-h1 {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -.035em;
    color: var(--it-text);
    margin-bottom: 24px;
}

.it-h2 {
    font-size: clamp(1.75rem, 3vw, 2.375rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.025em;
    color: var(--it-text);
}

.it-lead {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.75;
    color: var(--it-text-2);
    max-width: 500px;
}

.it-gradient-text {
    background: var(--it-grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.it-link {
    font-size: .9375rem;
    font-weight: 600;
    color: var(--it-violet);
    transition: color .2s var(--it-ease);
}
.it-link:hover { color: var(--it-magenta); }

/* ---- Buttons ---- */
.it-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    font-family: var(--it-font);
    font-size: .9375rem;
    font-weight: 600;
    line-height: 1;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition:
        transform var(--it-dur) var(--it-ease-out),
        box-shadow var(--it-dur) var(--it-ease),
        opacity var(--it-dur),
        background-color var(--it-dur),
        color var(--it-dur);
    white-space: nowrap;
}
.it-btn:active { transform: translateY(1px) scale(.98); }

.it-btn-primary {
    padding: 14px 28px;
    color: #fff;
    background: var(--it-grad);
    box-shadow: 0 4px 16px rgba(124,58,237,.30);
}
.it-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(124,58,237,.40);
}
.it-btn-primary:active {
    transform: translateY(0) scale(.98);
}

.it-btn-ghost {
    padding: 14px 20px;
    color: var(--it-text-2);
    background: transparent;
}
.it-btn-ghost:hover { color: var(--it-violet); background: rgba(124,58,237,.05); }

.it-btn-white {
    padding: 14px 32px;
    color: var(--it-violet);
    background: var(--it-surface);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(26,20,48,.12);
    flex-shrink: 0;
}
.it-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,20,48,.16); }

.it-btn-ghost-light {
    padding: 14px 24px;
    color: rgba(255,255,255,.92);
    background: transparent;
    border: 1px solid rgba(255,255,255,.35);
}
.it-btn-ghost-light:hover {
    background: rgba(255,255,255,.12);
    color: #fff;
}

.it-btn-sm { padding: 10px 20px; font-size: .875rem; min-height: 40px; }

.it-btn-outline {
    padding: 10px 20px;
    color: var(--it-text);
    background: transparent;
    border: 1px solid var(--it-border);
}
.it-btn-outline:hover {
    border-color: rgba(124,58,237,.35);
    background: rgba(124,58,237,.04);
}
.it-btn-gradient {
    padding: 10px 20px;
    color: #fff;
    background: var(--it-grad);
}

/* ---- Header ---- */
.it-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: color-mix(in srgb, var(--it-bg) 82%, transparent);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    border-bottom: 1px solid transparent;
    transition: border-color .3s var(--it-ease), box-shadow .3s var(--it-ease), background .3s;
}

.it-header--float {
    position: fixed;
    width: 100%;
    background: color-mix(in srgb, var(--it-bg) 55%, transparent);
    border-bottom-color: transparent;
}

.it-header--scrolled {
    background: color-mix(in srgb, var(--it-surface) 88%, transparent);
    border-bottom-color: var(--it-border);
    box-shadow: 0 1px 14px rgba(26,20,48,.05);
}

.it-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}

.it-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 12px;
    transition: opacity var(--it-dur) var(--it-ease);
}
.it-brand:hover { opacity: .88; }

.it-brand-mark {
    display: block;
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}
.it-foot .it-brand-mark {
    width: 36px;
    height: 36px;
}

.it-brand-word {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1;
    color: var(--it-text);
}
.it-brand-ia {
    background: linear-gradient(120deg, #38bdf8 0%, #6366f1 45%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.it-foot .it-brand-word {
    color: #f8fafc;
}
.it-foot .it-brand-ia {
    background: linear-gradient(120deg, #7dd3fc 0%, #a5b4fc 45%, #d8b4fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.it-brand-name {
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--it-text);
}

.it-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
}

.it-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 14px;
    font-size: .875rem;
    font-weight: 500;
    color: var(--it-text-2);
    border-radius: 999px;
    transition: color var(--it-dur) var(--it-ease), background var(--it-dur) var(--it-ease);
}
.it-menu a:hover { color: var(--it-text); background: rgba(124,58,237,.07); }
.it-menu a.is-active {
    color: var(--it-violet);
    font-weight: 600;
    background: rgba(124,58,237,.08);
    position: relative;
}
.it-menu a.is-active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--it-violet);
}

.it-header-end {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.it-burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--it-border);
    border-radius: 12px;
    background: var(--it-surface);
    color: var(--it-text);
    cursor: pointer;
    transition: border-color var(--it-dur), background var(--it-dur);
}
.it-burger:hover {
    border-color: rgba(124,58,237,.28);
    background: rgba(124,58,237,.04);
}

.it-mobile {
    display: none;
    flex-direction: column;
    padding: 8px 24px 24px;
    border-top: 1px solid var(--it-border);
    background: var(--it-surface);
}
.it-mobile a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 0;
    font-size: .9375rem;
    font-weight: 500;
    color: var(--it-text-2);
    border-bottom: 1px solid var(--it-border-2);
}
.it-mobile a.is-active { color: var(--it-violet); font-weight: 600; }
.it-mobile.is-open { display: flex; }

/* ---- Hero ---- */
.it-hero {
    padding: 150px 0 110px;
    position: relative;
    overflow: hidden;
    min-height: clamp(560px, 78vh, 820px);
    display: flex;
    align-items: center;
}

.it-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.it-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, color-mix(in srgb, var(--it-bg) 92%, transparent) 0%, color-mix(in srgb, var(--it-bg) 55%, transparent) 38%, transparent 62%);
    pointer-events: none;
}

.it-hero-img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: right center;
    display: block;
}

.it-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    width: 100%;
}

.it-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 560px;
}

.it-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

/* ---- Trusted ---- */
.it-trusted {
    padding: 40px 0;
    border-top: 1px solid var(--it-border-2);
    border-bottom: 1px solid var(--it-border-2);
    background: var(--it-surface);
}

.it-trusted-label {
    text-align: center;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--it-text-3);
    margin-bottom: 24px;
}

.it-trusted-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px 48px;
}

.it-trusted-logos svg {
    height: 22px;
    width: auto;
    color: #9CA3AF;
    opacity: .7;
    transition: opacity .2s;
}
.it-trusted-logos svg:hover { opacity: 1; }
.it-logo-stripe { width: 50px; }
.it-logo-databricks { width: 100px; }
.it-logo-shopify { width: 90px; }
.it-logo-aws { width: 48px; }
.it-logo-notion { width: 80px; }
.it-logo-slack { width: 70px; }

/* ---- Sections ---- */
.it-section {
    padding: 96px 0;
}

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

.it-section-label {
    display: block;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--it-text-3);
    margin-bottom: 12px;
}

.it-section-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 48px;
}

.it-section-head-right p {
    font-size: .9375rem;
    color: var(--it-text-2);
    line-height: 1.7;
    margin-bottom: 12px;
}

/* ---- Cards ---- */
.it-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.it-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: var(--it-surface);
    border: 1px solid var(--it-border);
    border-radius: var(--it-radius);
    box-shadow: var(--it-shadow);
    transition: transform .25s var(--it-ease), box-shadow .25s, border-color .25s;
    overflow: hidden;
}

.it-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--it-shadow-lg);
    border-color: rgba(124,58,237,.15);
}

.it-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.it-card-icon svg { width: 22px; height: 22px; }

.it-card-icon--violet {
    background: rgba(124,58,237,.12);
    color: var(--it-violet);
}
.it-card-icon--orange {
    background: rgba(249,115,22,.12);
    color: var(--it-orange);
}
.it-card-icon--blue {
    background: rgba(6,182,212,.12);
    color: #06B6D4;
}
.it-card-icon--pink {
    background: rgba(236,72,153,.12);
    color: #EC4899;
}

.it-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -.01em;
    margin-bottom: 8px;
    color: var(--it-text);
}

.it-card p {
    font-size: .875rem;
    line-height: 1.65;
    color: var(--it-text-2);
    flex: 1;
}

.it-card-go {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 20px;
    height: 20px;
    color: var(--it-text-3);
    transition: color .2s, transform .2s;
}
.it-card-go svg { width: 100%; height: 100%; }
.it-card:hover .it-card-go {
    color: var(--it-violet);
    transform: translate(2px, -2px);
}

/* ---- Metrics ---- */
.it-metrics {
    padding: 48px 0;
    background: linear-gradient(135deg, rgba(124,58,237,.06) 0%, rgba(217,70,239,.04) 50%, rgba(249,115,22,.03) 100%);
    border-top: 1px solid var(--it-border-2);
    border-bottom: 1px solid var(--it-border-2);
}

.it-metrics-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.it-metric {
    text-align: center;
    padding: 8px 12px;
}

.it-metric-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--it-violet);
    background: rgba(124,58,237,.10);
    border-radius: 50%;
}
.it-metric-icon svg { width: 20px; height: 20px; }

.it-metric-val {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--it-text);
    line-height: 1.1;
    margin-bottom: 4px;
}

.it-metric-lbl {
    font-size: .8125rem;
    color: var(--it-text-2);
    font-weight: 500;
}

/* ---- Showcase / Dashboard ---- */
.it-showcase {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.it-showcase-copy p {
    font-size: .9375rem;
    color: var(--it-text-2);
    line-height: 1.7;
    margin: 16px 0 20px;
}

.it-dash {
    background: var(--it-surface);
    border: 1px solid var(--it-border);
    border-radius: var(--it-radius-lg);
    box-shadow: var(--it-shadow-lg);
    overflow: hidden;
}

.it-dash-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--it-border-2);
    background: rgba(250,250,252,.8);
}
.it-dash-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8125rem;
    font-weight: 700;
    color: var(--it-text);
}
.it-dash-logo-icon {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background: var(--it-grad);
}
.it-dash-title {
    font-size: .8125rem;
    font-weight: 600;
    color: var(--it-text-2);
}
.it-dash-avatars {
    display: flex;
    margin-left: auto;
    gap: -8px;
}
.it-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
}
.it-avatar:first-child { margin-left: 0; }
.it-avatar--1 { background: linear-gradient(135deg, #7C3AED, #EC4899); }
.it-avatar--2 { background: linear-gradient(135deg, #F97316, #FBBF24); }

.it-dash-layout {
    display: flex;
    min-height: 320px;
}

.it-dash-sidebar {
    width: 140px;
    background: #FAFAFC;
    border-right: 1px solid var(--it-border-2);
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.it-dash-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: .8125rem;
    font-weight: 500;
    color: var(--it-text-2);
    transition: all .2s;
}
.it-dash-menu-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.it-dash-menu-item:hover {
    color: var(--it-violet);
    background: rgba(124,58,237,.05);
}
.it-dash-menu-item.active {
    color: var(--it-violet);
    background: rgba(124,58,237,.08);
    border-left: 3px solid var(--it-violet);
    padding-left: 13px;
    font-weight: 600;
}

.it-dash-main {
    flex: 1;
    padding: 20px;
}

.it-dash-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.it-kpi {
    padding: 14px 16px;
    background: var(--it-surface);
    border-radius: var(--it-radius-sm);
    border: 1px solid var(--it-border-2);
}
.it-kpi-lbl {
    display: block;
    font-size: .6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--it-text-3);
    margin-bottom: 8px;
}
.it-kpi-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.it-kpi strong {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--it-text);
}
.it-kpi em {
    font-style: normal;
    font-size: .75rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
}
.it-kpi em.up {
    color: #10B981;
    background: rgba(16,185,129,.1);
}
.it-kpi-sub {
    display: block;
    font-size: .6875rem;
    color: var(--it-text-3);
    margin-top: 4px;
}

.it-dash-charts {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 16px;
    margin-top: 16px;
}

.it-chart-box {
    padding: 16px;
    background: var(--it-surface);
    border-radius: var(--it-radius-sm);
    border: 1px solid var(--it-border-2);
}

.it-chart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.it-chart-title {
    font-size: .75rem;
    font-weight: 600;
    color: var(--it-text-2);
}

.it-chart-value {
    font-size: .875rem;
    font-weight: 700;
    color: var(--it-violet);
    background: rgba(124,58,237,.08);
    padding: 4px 10px;
    border-radius: 6px;
}

.it-chart-svg {
    width: 100%;
    height: 80px;
}

.it-chart-box--line .it-chart-svg {
    margin-top: 8px;
}

.it-donut-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
}

.it-donut {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: conic-gradient(
        #7C3AED 0deg 162deg,
        #F97316 162deg 262.8deg,
        #06B6D4 262.8deg 316.8deg,
        #E5E7EB 316.8deg 360deg
    );
    position: relative;
    flex-shrink: 0;
}
.it-donut::after {
    content: '';
    position: absolute;
    inset: 28%;
    background: var(--it-surface);
    border-radius: 50%;
}

.it-donut-legend {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.it-donut-legend span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .6875rem;
    color: var(--it-text-2);
}
.it-donut-legend i {
    width: 8px;
    height: 8px;
    border-radius: 2px;
}

/* ---- CTA Banner ---- */
.it-cta {
    padding: 0 24px 80px;
}
.it-cta--home {
    padding: 8px 24px 40px;
}

.it-cta-grid {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 40px 48px;
    background: var(--it-grad-cta);
    border-radius: var(--it-radius-lg);
    box-shadow: 0 16px 48px rgba(124,58,237,.30);
    position: relative;
    overflow: hidden;
}

.it-cta-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,255,255,.12) 0%, transparent 60%);
    pointer-events: none;
}

.it-cta-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    backdrop-filter: blur(8px);
}

.it-cta-body {
    flex: 1;
    position: relative;
}
.it-cta-body h2 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
    margin-bottom: 6px;
}
.it-cta-body p {
    font-size: .9375rem;
    color: rgba(255,255,255,.82);
    line-height: 1.5;
}

/* ---- Footer ---- */
.it-foot {
    background: var(--it-surface);
    border-top: 1px solid var(--it-border);
    padding: 64px 0 0;
}

.it-foot-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 48px;
}

.it-foot-brand p {
    font-size: .875rem;
    color: var(--it-text-2);
    line-height: 1.65;
    margin: 16px 0 20px;
    max-width: 260px;
}

.it-socials {
    display: flex;
    gap: 10px;
}
.it-socials a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--it-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--it-text-2);
    transition: color .2s, border-color .2s, background .2s;
}
.it-socials a:hover {
    color: var(--it-violet);
    border-color: rgba(124,58,237,.25);
    background: rgba(124,58,237,.05);
}

.it-foot-col h4 {
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: .02em;
    color: var(--it-text);
    margin-bottom: 16px;
}
.it-foot-col ul li { margin-bottom: 10px; }
.it-foot-col ul a {
    font-size: .875rem;
    color: var(--it-text-2);
    transition: color .2s;
}
.it-foot-col ul a:hover { color: var(--it-violet); }

.it-foot-note {
    font-size: .8125rem;
    color: var(--it-text-2);
    margin-bottom: 12px;
}

.it-nl {
    display: flex;
    border: 1px solid var(--it-border);
    border-radius: 999px;
    overflow: hidden;
    background: var(--it-bg);
}
.it-nl input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 16px;
    font-family: var(--it-font);
    font-size: .875rem;
    color: var(--it-text);
    outline: none;
}
.it-nl button {
    width: 40px;
    border: none;
    background: var(--it-grad);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.it-foot-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid var(--it-border-2);
    font-size: .8125rem;
    color: var(--it-text-3);
}

.it-foot-links {
    display: flex;
    gap: 20px;
}
.it-foot-links a { color: var(--it-text-3); transition: color .2s; }
.it-foot-links a:hover { color: var(--it-violet); }

/* ---- Cookie banner ---- */
.it-cookie {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 9999;
}
.it-cookie-inner {
    max-width: var(--it-wrap);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 18px 24px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(16px);
    border: 1px solid var(--it-border);
    border-radius: var(--it-radius);
    box-shadow: 0 12px 40px rgba(15,23,42,.14);
}
.it-cookie-text strong {
    display: block;
    color: var(--it-text);
    font-size: .9375rem;
    margin-bottom: 4px;
}
.it-cookie-text p {
    font-size: .8125rem;
    color: var(--it-text-2);
    line-height: 1.5;
}
.it-cookie-text a { color: var(--it-violet); text-decoration: underline; }
.it-cookie-actions { display: flex; gap: 8px; margin-left: auto; }

/* ---- Inner pages (minimal compat) ---- */
.it-leaderboard-empty {
    padding: 48px;
    text-align: center;
    color: var(--it-text-2);
}

/* ---- LiveBench Comparatifs ---- */
.it-lb-hero .it-lead a {
    color: var(--it-violet);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.it-lb-attrib {
    margin-top: 16px;
    font-size: .8125rem;
    color: var(--it-text-3);
    line-height: 1.5;
}
.it-lb-attrib a { color: var(--it-text-2); text-decoration: underline; }

.it-lb-section { padding: 8px 0 100px; }

.it-lb-toolbar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}
.it-lb-releases {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.it-lb-release {
    border: 1px solid var(--it-border);
    background: var(--it-surface);
    color: var(--it-text-2);
    font: inherit;
    font-size: .8125rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 999px;
    cursor: pointer;
    transition: border-color .2s, color .2s, background .2s;
}
.it-lb-release:hover { border-color: rgba(124,58,237,.35); color: var(--it-text); }
.it-lb-release.is-active {
    background: var(--it-grad);
    border-color: transparent;
    color: #fff;
}

.it-lb-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.it-lb-search {
    flex: 1;
    min-width: 200px;
    padding: 12px 16px;
    border: 1px solid var(--it-border);
    border-radius: 12px;
    background: var(--it-surface);
    font: inherit;
    color: var(--it-text);
    outline: none;
}
.it-lb-search:focus {
    border-color: rgba(124,58,237,.45);
    box-shadow: 0 0 0 3px rgba(124,58,237,.12);
}
.it-lb-select {
    padding: 12px 14px;
    border: 1px solid var(--it-border);
    border-radius: 12px;
    background: var(--it-surface);
    font: inherit;
    color: var(--it-text);
}
.it-lb-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .875rem;
    font-weight: 600;
    color: var(--it-text-2);
    cursor: pointer;
    user-select: none;
}

.it-lb-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.it-lb-pill {
    border: 1px solid var(--it-border);
    background: transparent;
    color: var(--it-text-2);
    font: inherit;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .02em;
    padding: 7px 12px;
    border-radius: 999px;
    cursor: pointer;
    transition: .2s;
}
.it-lb-pill:hover { color: var(--it-text); border-color: rgba(124,58,237,.3); }
.it-lb-pill.is-active {
    background: rgba(124,58,237,.1);
    border-color: rgba(124,58,237,.35);
    color: var(--it-violet);
}

.it-lb-status {
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(124,58,237,.06);
    color: var(--it-text-2);
    font-size: .875rem;
    margin-bottom: 16px;
}
.it-lb-status.is-error {
    background: rgba(239,68,68,.08);
    color: #B91C1C;
}

.it-lb-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--it-border);
    border-radius: var(--it-radius);
    background: var(--it-surface);
    box-shadow: var(--it-shadow);
}

.it-lb-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .875rem;
    min-width: 900px;
}
.it-lb-table th,
.it-lb-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--it-border-2);
    white-space: nowrap;
}
.it-lb-table th {
    background: rgba(250,250,252,.95);
    color: var(--it-text-3);
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    position: sticky;
    top: 0;
    z-index: 1;
}
.it-lb-table th.is-sortable { cursor: pointer; user-select: none; }
.it-lb-table th.is-sortable:hover { color: var(--it-violet); }
.it-lb-table th.is-sorted { color: var(--it-violet); }
.it-lb-table th.is-sorted::after {
    content: attr(data-dir);
    display: none;
}
.it-lb-table th.is-sorted[data-dir="desc"]::after { content: ' ↓'; display: inline; }
.it-lb-table th.is-sorted[data-dir="asc"]::after { content: ' ↑'; display: inline; }

.it-lb-col-rank { width: 48px; color: var(--it-text-3); font-weight: 700; }
.it-lb-col-model { min-width: 260px; }

.it-lb-row:hover td { background: rgba(124,58,237,.03); }
.it-lb-table td.is-top {
    background: rgba(124,58,237,.08);
    font-weight: 700;
    color: var(--it-violet);
}

.it-lb-model-btn {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    border: 0;
    background: none;
    padding: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    text-align: left;
}
.it-lb-caret { color: var(--it-text-3); width: 1em; }
.it-lb-model-name { font-weight: 700; color: var(--it-text); }
.it-lb-badge {
    font-size: .625rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 6px;
    background: rgba(16,185,129,.12);
    color: #059669;
}
.it-lb-org {
    width: 100%;
    margin-left: 1.4em;
    font-size: .75rem;
    color: var(--it-text-3);
}

.it-lb-detail td {
    background: #FAFAFC;
    white-space: normal;
    padding: 16px 20px 20px;
}
.it-lb-subtasks {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}
.it-lb-sub-group strong {
    display: block;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--it-violet);
    margin-bottom: 8px;
}
.it-lb-sub-group ul { list-style: none; }
.it-lb-sub-group li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 4px 0;
    font-size: .8125rem;
    color: var(--it-text-2);
    border-bottom: 1px solid var(--it-border-2);
}
.it-lb-sub-group em {
    font-style: normal;
    font-weight: 700;
    color: var(--it-text);
    font-variant-numeric: tabular-nums;
}

.it-lb-empty {
    text-align: center;
    padding: 40px !important;
    color: var(--it-text-2);
}
.it-lb-footnote {
    margin-top: 16px;
    font-size: .75rem;
    color: var(--it-text-3);
    line-height: 1.5;
}
.it-lb-footnote a { color: var(--it-violet); text-decoration: underline; }

/* ---- Content hubs (modèles, guides, métiers, actus) ---- */
.it-content-page { padding-bottom: 80px; }

/* Shared centered page header — separates hero from content */
.it-page-hero,
.it-content-hero,
.it-lb-hero {
    position: relative;
    text-align: center;
    padding: 40px 0 70px;
    margin-bottom: 8px;
    background:
        radial-gradient(ellipse 70% 80% at 50% -10%, rgba(124,58,237,.12) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 85% 30%, rgba(249,115,22,.07) 0%, transparent 50%),
        radial-gradient(ellipse 45% 55% at 10% 40%, rgba(217,70,239,.06) 0%, transparent 50%),
        linear-gradient(180deg, var(--it-bg) 0%, #F1EEF8 100%);
    border-bottom: 1px solid var(--it-border);
    overflow: hidden;
}
.it-page-hero::before,
.it-content-hero::before,
.it-lb-hero::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(120px, 30%);
    height: 3px;
    border-radius: 999px;
    background: var(--it-grad);
    opacity: .9;
}
.it-page-hero-inner,
.it-content-hero,
.it-lb-hero > .it-wrap,
.it-page-hero > .it-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.it-page-hero .it-label,
.it-content-hero .it-label,
.it-lb-hero .it-label {
    margin-bottom: 14px;
}
.it-page-hero .it-h1,
.it-content-hero .it-h1,
.it-lb-hero .it-h1 {
    margin-bottom: 18px;
    max-width: 22ch;
}
.it-modele-single .it-page-hero .it-h1,
.it-content-page .it-page-hero .it-h1 {
    max-width: 28ch;
}
.it-page-hero .it-lead,
.it-content-hero .it-lead,
.it-lb-hero .it-lead {
    margin: 0 auto;
    max-width: 42ch;
    text-align: center;
}
.it-page-hero .it-breadcrumb,
.it-content-hero .it-breadcrumb {
    justify-content: center;
    margin-bottom: 18px;
}
.it-page-hero .it-hero-cta,
.it-content-hero .it-hero-cta {
    justify-content: center;
    margin-top: 28px;
}
.it-page-hero .it-modele-disclaimer,
.it-content-hero .it-modele-disclaimer,
.it-page-hero .it-modele-count,
.it-content-hero .it-modele-count,
.it-page-hero .it-lb-attrib,
.it-content-hero .it-lb-attrib {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.it-page-hero .it-modele-hero-badges,
.it-content-hero .it-modele-hero-badges {
    justify-content: center;
}

.it-breadcrumb {
    display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
    font-size: .8125rem; color: var(--it-text-3); margin-bottom: 16px;
}
.it-breadcrumb a { color: var(--it-text-2); }
.it-breadcrumb a:hover { color: var(--it-violet); }

.it-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 28px auto 40px;
    max-width: var(--it-wrap);
    padding: 0 24px;
}
.it-fact {
    background: var(--it-surface);
    border: 1px solid var(--it-border);
    border-radius: var(--it-radius-sm);
    padding: 14px 16px;
}
.it-fact span {
    display: block; font-size: .6875rem; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase; color: var(--it-text-3); margin-bottom: 6px;
}
.it-fact strong { font-size: .9375rem; color: var(--it-text); line-height: 1.35; }

.it-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-bottom: 40px;
}
.it-content-card {
    display: flex; flex-direction: column; gap: 10px;
    background: var(--it-surface);
    border: 1px solid var(--it-border);
    border-radius: var(--it-radius);
    padding: 22px;
    box-shadow: var(--it-shadow);
    transition: border-color .2s, transform .2s;
}
.it-content-card:hover { border-color: rgba(124,58,237,.35); transform: translateY(-2px); }
.it-content-card-tag {
    align-self: flex-start;
    font-size: .6875rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
    color: var(--it-violet); background: rgba(124,58,237,.08); padding: 4px 8px; border-radius: 999px;
}
.it-content-card h2 { font-size: 1.125rem; font-weight: 800; letter-spacing: -.02em; line-height: 1.25; }
.it-content-card p { font-size: .875rem; color: var(--it-text-2); line-height: 1.5; flex: 1; }
.it-content-card-meta {
    display: flex; justify-content: space-between; gap: 8px;
    font-size: .75rem; color: var(--it-text-3); margin-top: 4px;
}
.it-link { color: var(--it-violet); font-size: .875rem; font-weight: 700; }

.it-pagination {
    display: flex;
    justify-content: center;
    padding: 8px 0 56px;
}
.it-pagination .page-numbers {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.it-pagination .page-numbers li { margin: 0; }
.it-pagination .page-numbers a,
.it-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid var(--it-border);
    background: var(--it-surface);
    color: var(--it-text-2);
    font-size: .875rem;
    font-weight: 700;
    text-decoration: none;
    transition: border-color .2s, color .2s, background .2s;
}
.it-pagination .page-numbers a:hover {
    border-color: rgba(124, 58, 237, .35);
    color: var(--it-violet);
}
.it-pagination .page-numbers .current {
    background: rgba(124, 58, 237, .1);
    border-color: rgba(124, 58, 237, .35);
    color: var(--it-violet);
}
.it-pagination .page-numbers .dots {
    border: none;
    background: transparent;
    min-width: auto;
    padding: 0 4px;
}

.it-prose {
    max-width: 760px; margin: 0 auto 40px; padding: 0 24px;
    color: var(--it-text-2); line-height: 1.7;
}
.it-prose h2 { color: var(--it-text); font-size: 1.375rem; margin: 1.6em 0 .6em; letter-spacing: -.02em; }
.it-prose h3 { color: var(--it-text); font-size: 1.0625rem; margin: 1.3em 0 .4em; }
.it-prose p, .it-prose ul, .it-prose ol { margin-bottom: 1em; }
.it-prose ul, .it-prose ol { padding-left: 1.2em; }
.it-prose li { margin-bottom: .35em; }
.it-prose a { color: var(--it-violet); text-decoration: underline; }
.it-prose img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    margin: 1.25em 0;
}
.it-prose figure { margin: 1.4em 0; }
.it-prose figcaption {
    font-size: .8125rem;
    color: var(--it-text-3);
    margin-top: .5em;
}
.it-prose .it-table-wrap {
    overflow-x: auto;
    margin: 1.4em 0;
    border: 1px solid var(--it-border);
    border-radius: 14px;
    background: var(--it-surface);
}
.it-prose table {
    width: 100%;
    border-collapse: collapse;
    font-size: .875rem;
}
.it-prose th,
.it-prose td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid var(--it-border-2);
    vertical-align: top;
}
.it-prose th {
    font-weight: 700;
    color: var(--it-text);
    background: rgba(124,58,237,.05);
}
.it-prose tr:last-child td { border-bottom: none; }
.it-prose pre {
    background: #0F172A; color: #E2E8F0; padding: 14px 16px; border-radius: 12px;
    overflow-x: auto; font-size: .8125rem; white-space: pre-wrap;
}
.it-prose code {
    font-size: .875em;
    background: rgba(124,58,237,.08);
    padding: 1px 5px;
    border-radius: 5px;
}

.it-ad-slot {
    max-width: var(--it-wrap); margin: 24px auto; padding: 0 24px;
    min-height: 0;
}
.it-ad-slot--after-hero { margin-top: 8px; margin-bottom: 28px; }
.it-ad-slot--after-content { margin: 32px auto; }
.it-ad-slot--below-bench { margin-top: 28px; }
.it-ad-slot span {
    display: block; text-align: center; font-size: .75rem; color: var(--it-text-3);
    border: 1px dashed var(--it-border); border-radius: 12px; padding: 28px;
    background: rgba(15,23,42,.02);
}

@media (max-width: 1024px) {
    .it-facts { grid-template-columns: repeat(2, 1fr); }
    .it-card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .it-content-hero,
    .it-page-hero,
    .it-lb-hero { padding: 40px 0 70px; }
    .it-facts, .it-card-grid { grid-template-columns: 1fr; }
}

/* ---- Modèles API free ---- */
.it-modele-disclaimer {
    margin-top: 16px;
    font-size: .875rem;
    color: var(--it-text-3);
    max-width: 52ch;
    line-height: 1.55;
}
.it-modele-count {
    margin-top: 18px;
    font-size: .9375rem;
    color: var(--it-text-2);
}
.it-modele-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-bottom: 80px;
}
.it-modele-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 100%;
    padding: 22px 22px 20px;
    border-radius: var(--it-radius);
    background: var(--it-surface);
    border: 1px solid var(--it-border);
    box-shadow: var(--it-shadow);
    transition:
        transform .28s var(--it-ease-out),
        border-color .28s var(--it-ease),
        box-shadow .28s var(--it-ease);
    cursor: pointer;
}
.it-modele-card:hover {
    transform: translateY(-3px);
    border-color: rgba(124,58,237,.26);
    box-shadow: var(--it-shadow-lg);
}
.it-modele-card:active {
    transform: translateY(-1px);
}
.it-modele-card.is-expired {
    opacity: .78;
}
.it-modele-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.it-modele-vendor {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--it-text-3);
}
.it-modele-badge {
    font-size: .6875rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
}
.it-modele-badge--free {
    color: #047857;
    background: rgba(16,185,129,.12);
}
.it-modele-badge--expired {
    color: #92400E;
    background: rgba(245,158,11,.14);
}
.it-modele-card h2 {
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.3;
    color: var(--it-text);
}
.it-modele-slug {
    display: inline-block;
    font-size: .75rem;
    font-family: ui-monospace, 'Cascadia Code', 'Segoe UI Mono', monospace;
    color: var(--it-violet);
    background: rgba(124,58,237,.07);
    padding: 4px 8px;
    border-radius: 8px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.it-modele-slug--lg {
    margin: 8px 0 16px;
    font-size: .8125rem;
}
.it-modele-card p {
    font-size: .875rem;
    color: var(--it-text-2);
    line-height: 1.55;
    flex: 1;
}
.it-modele-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    font-size: .75rem;
    font-weight: 600;
    color: var(--it-text-3);
}
.it-modele-mods {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 2px;
}
.it-mod {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: lowercase;
    padding: 5px 10px 5px 8px;
    border-radius: 999px;
    border: 1px solid transparent;
    line-height: 1;
}
.it-mod::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    opacity: .85;
    flex-shrink: 0;
}
.it-mod--text {
    color: #5B21B6;
    background: rgba(124,58,237,.10);
    border-color: rgba(124,58,237,.16);
}
.it-mod--image {
    color: #BE185D;
    background: rgba(236,72,153,.10);
    border-color: rgba(236,72,153,.18);
}
.it-mod--video {
    color: #C2410C;
    background: rgba(249,115,22,.12);
    border-color: rgba(249,115,22,.2);
}
.it-mod--audio {
    color: #0369A1;
    background: rgba(14,165,233,.12);
    border-color: rgba(14,165,233,.2);
}
.it-mod--file {
    color: #0F766E;
    background: rgba(20,184,166,.12);
    border-color: rgba(20,184,166,.2);
}

.it-modele-card-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--it-border-2);
}
.it-modele-card-foot .it-modele-mods {
    margin-top: 0;
    flex: 1;
    min-width: 0;
}
.it-modele-card-cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 0;
    padding: 10px 16px;
    min-height: 40px;
    font-size: .8125rem;
    font-weight: 700;
    color: #fff;
    background: var(--it-grad);
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(124,58,237,.25);
    transition: transform var(--it-dur) var(--it-ease-out), box-shadow var(--it-dur);
}
.it-modele-card:hover .it-modele-card-cta {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(124,58,237,.35);
}
.it-modele-card.is-expired .it-modele-card-cta {
    background: rgba(26,20,48,.08);
    color: var(--it-text-2);
    box-shadow: none;
}
.it-modele-hero-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.it-modele-hero-badges .it-label { margin-bottom: 0; }

.it-modele-api {
    padding: 16px 24px 80px;
    max-width: var(--it-wrap);
    margin: 0 auto;
}
.it-modele-api-head { margin-bottom: 20px; }
.it-modele-api-head .it-h2 { margin: 4px 0 10px; }
.it-modele-api-head p { color: var(--it-text-2); font-size: .9375rem; max-width: 60ch; }
.it-modele-api-head code {
    font-size: .8125rem;
    background: rgba(124,58,237,.08);
    padding: 1px 6px;
    border-radius: 6px;
}

.it-api-tabs {
    border: 1px solid var(--it-border);
    border-radius: var(--it-radius);
    background: #0F172A;
    overflow: hidden;
    box-shadow: var(--it-shadow-lg);
}
.it-api-tablist {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.03);
}
.it-api-tab {
    font-family: var(--it-font);
    font-size: .8125rem;
    font-weight: 700;
    color: rgba(255,255,255,.55);
    background: transparent;
    border: 0;
    padding: 14px 18px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}
.it-api-tab.is-active {
    color: #fff;
    border-bottom-color: #D946EF;
}
.it-api-panel { padding: 16px; }
.it-api-panel[hidden] { display: none; }
.it-api-langlist {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}
.it-api-lang {
    font-family: var(--it-font);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    padding: 6px 12px;
    cursor: pointer;
}
.it-api-lang.is-active {
    color: #fff;
    background: rgba(124,58,237,.45);
    border-color: rgba(217,70,239,.45);
}
.it-api-code {
    position: relative;
}
.it-api-code[hidden] { display: none; }
.it-api-code pre {
    margin: 0;
    padding: 18px 18px 22px;
    overflow-x: auto;
    background: transparent;
    color: #E2E8F0;
    font-size: .8125rem;
    line-height: 1.55;
    white-space: pre;
}
.it-api-copy {
    position: absolute;
    top: 8px;
    right: 8px;
    font-family: var(--it-font);
    font-size: .75rem;
    font-weight: 700;
    color: #fff;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    padding: 6px 12px;
    cursor: pointer;
}
.it-api-copy:hover { background: rgba(255,255,255,.2); }

@media (max-width: 1024px) {
    .it-modele-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .it-modele-grid { grid-template-columns: 1fr; }
}

/* ---- Reveal motion ---- */
.it-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity .65s var(--it-ease-out),
        transform .65s var(--it-ease-out);
    transition-delay: var(--it-delay, 0ms);
    will-change: opacity, transform;
}
.it-reveal.is-in {
    opacity: 1;
    transform: none;
    will-change: auto;
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .it-reveal { opacity: 1; transform: none; transition: none; }
    .it-btn,
    .it-modele-card,
    .it-menu a,
    .it-home-rank-row {
        transition: none !important;
    }
}

/* ---- Home: ranking board ---- */
.it-home-board {
    padding: 72px 0 40px;
    position: relative;
}
.it-home-board-head {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 32px;
    align-items: end;
    margin-bottom: 36px;
}
.it-home-board-head .it-h2 { margin-top: 4px; }
.it-home-board-head-right {
    color: var(--it-text-2);
    font-size: 1rem;
    line-height: 1.65;
}
.it-home-board-head-right p { margin-bottom: 12px; max-width: 36ch; margin-left: auto; }
.it-home-board-release {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--it-violet);
    background: rgba(124,58,237,.08);
    border: 1px solid rgba(124,58,237,.14);
    padding: 6px 12px;
    border-radius: 999px;
    float: right;
}
.it-home-board-release::before {
    content: '';
    width: 6px; height: 6px; border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 0 3px rgba(16,185,129,.22);
}

.it-home-board-panel {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255,255,255,.96) 0%, #fff 40%),
        var(--it-surface);
    border: 1px solid var(--it-border);
    border-radius: var(--it-radius-lg);
    box-shadow: var(--it-shadow-lg);
    padding: 8px 8px 24px;
    overflow: hidden;
}
.it-home-board-panel::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: var(--it-grad);
    opacity: .9;
}

.it-home-rank {
    list-style: none;
    margin: 0;
    padding: 12px 16px 8px;
}
.it-home-rank-row {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) 56px;
    gap: 14px;
    align-items: center;
    padding: 14px 12px;
    border-radius: 16px;
    transition: background .25s var(--it-ease);
}
.it-home-rank-row:hover { background: var(--it-grad-soft); }
.it-home-rank-row:nth-child(1) .it-home-rank-n {
    background: var(--it-grad);
    color: #fff;
    box-shadow: 0 6px 18px rgba(124,58,237,.35);
}
.it-home-rank-row:nth-child(2) .it-home-rank-n,
.it-home-rank-row:nth-child(3) .it-home-rank-n {
    background: rgba(124,58,237,.12);
    color: var(--it-violet);
}

.it-home-rank-n {
    width: 36px; height: 36px;
    display: grid; place-items: center;
    border-radius: 12px;
    font-size: .875rem;
    font-weight: 800;
    color: var(--it-text-2);
    background: rgba(15,23,42,.04);
}

.it-home-rank-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 12px;
    margin-bottom: 8px;
}
.it-home-rank-meta strong {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--it-text);
}
.it-home-rank-meta span {
    font-size: .8125rem;
    color: var(--it-text-3);
}

.it-home-rank-bar {
    height: 6px;
    border-radius: 999px;
    background: rgba(15,23,42,.06);
    overflow: hidden;
}
.it-home-rank-bar i {
    display: block;
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: var(--it-grad);
    transition: width 1s cubic-bezier(.22, 1, .36, 1);
    transition-delay: calc(var(--it-delay, 0ms) + 200ms);
}
.it-reveal.is-in .it-home-rank-bar i { width: var(--it-w, 0%); }

.it-home-rank-score {
    text-align: right;
    font-size: 1.125rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: -.02em;
    background: var(--it-grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.it-home-board-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 8px 16px 0;
    padding: 20px 8px 4px;
    border-top: 1px solid var(--it-border-2);
}
.it-home-board-foot p {
    font-size: .8125rem;
    color: var(--it-text-3);
    max-width: 42ch;
}
.it-home-empty {
    padding: 40px 24px;
    text-align: center;
    color: var(--it-text-2);
}
.it-home-empty a { color: var(--it-violet); font-weight: 600; }

/* ---- Home: blog ---- */
.it-home-blog {
    padding: 56px 0 40px;
}
.it-home-blog-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
}
.it-home-blog-head .it-h2 { margin-top: 4px; }

.it-home-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    row-gap: 28px;
}

.it-home-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--it-radius);
    background: var(--it-surface);
    border: 1px solid var(--it-border);
    box-shadow: var(--it-shadow);
    overflow: hidden;
    transition:
        transform .3s var(--it-ease-out),
        border-color .3s var(--it-ease),
        box-shadow .3s var(--it-ease);
}
.it-home-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124,58,237,.26);
    box-shadow: var(--it-shadow-lg);
}

.it-home-card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--it-grad-soft);
}
.it-home-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s var(--it-ease-out);
}
.it-home-card:hover .it-home-card-media img {
    transform: scale(1.035);
}
.it-home-card-placeholder {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 70% 60% at 80% 20%, rgba(124,58,237,.25) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 10% 90%, rgba(249,115,22,.18) 0%, transparent 50%),
        #F0ECF8;
}

.it-home-card-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px 20px 22px;
    flex: 1;
}
.it-home-card-body h3 {
    font-size: 1.0625rem;
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.35;
    color: var(--it-text);
    flex: 1;
}
.it-home-card-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 14px;
    font-size: .8125rem;
    font-weight: 700;
    color: var(--it-violet);
    background: rgba(124,58,237,.08);
    border: 1px solid rgba(124,58,237,.14);
    border-radius: 999px;
    transition: background var(--it-dur), color var(--it-dur), border-color var(--it-dur);
}
.it-home-card:hover .it-home-card-btn {
    background: var(--it-grad);
    color: #fff;
    border-color: transparent;
}

.it-home-blog-empty {
    position: relative;
    grid-column: 1 / -1;
    text-align: center;
    padding: 64px 32px;
    border-radius: var(--it-radius-lg);
    border: 1px dashed rgba(124,58,237,.25);
    background: var(--it-grad-soft);
    overflow: hidden;
}
.it-home-blog-empty-glow {
    position: absolute;
    width: 280px; height: 280px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(217,70,239,.18) 0%, transparent 70%);
    pointer-events: none;
}
.it-home-blog-empty .it-label { position: relative; }
.it-home-blog-empty h3 {
    position: relative;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 10px;
}
.it-home-blog-empty p {
    position: relative;
    max-width: 42ch;
    margin: 0 auto 24px;
    color: var(--it-text-2);
}

/* ---- Home: paths ---- */
.it-home-paths {
    padding: 56px 0 40px;
}
.it-home-paths-head {
    margin-bottom: 32px;
}
.it-home-paths-head .it-h2 { margin-top: 4px; }

.it-home-paths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.it-home-path {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 32px 28px;
    border-radius: var(--it-radius);
    background: var(--it-surface);
    border: 1px solid var(--it-border);
    overflow: hidden;
    transition: transform .35s var(--it-ease), box-shadow .35s, border-color .35s;
}
.it-home-path::before {
    content: '';
    position: absolute;
    inset: -40% -20% auto auto;
    width: 220px; height: 220px;
    border-radius: 50%;
    opacity: .55;
    pointer-events: none;
    transition: transform .5s var(--it-ease), opacity .35s;
}
.it-home-path--violet::before {
    background: radial-gradient(circle, rgba(124,58,237,.35) 0%, transparent 70%);
}
.it-home-path--orange::before {
    background: radial-gradient(circle, rgba(249,115,22,.32) 0%, transparent 70%);
}
.it-home-path--pink::before {
    background: radial-gradient(circle, rgba(236,72,153,.32) 0%, transparent 70%);
}
.it-home-path:hover {
    transform: translateY(-6px);
    box-shadow: var(--it-shadow-lg);
    border-color: rgba(124,58,237,.22);
}
.it-home-path:hover::before {
    transform: scale(1.25) translate(-8%, 8%);
    opacity: .85;
}

.it-home-path-icon {
    width: 48px; height: 48px;
    display: grid; place-items: center;
    border-radius: 14px;
    background: rgba(15,23,42,.04);
    color: var(--it-violet);
}
.it-home-path--orange .it-home-path-icon { color: var(--it-orange); background: rgba(249,115,22,.1); }
.it-home-path--pink .it-home-path-icon { color: var(--it-pink); background: rgba(236,72,153,.1); }
.it-home-path-icon svg { width: 24px; height: 24px; }

.it-home-path h3 {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -.02em;
}
.it-home-path p {
    font-size: .9375rem;
    color: var(--it-text-2);
    line-height: 1.55;
    flex: 1;
}
.it-home-path-cta {
    font-size: .875rem;
    font-weight: 700;
    color: var(--it-violet);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.it-home-path--orange .it-home-path-cta { color: var(--it-orange); }
.it-home-path--pink .it-home-path-cta { color: var(--it-pink); }

/* ---- Home: trust ---- */
.it-home-trust {
    padding: 48px 0 40px;
}
.it-home-trust-inner {
    position: relative;
    padding: 48px 40px;
    border-radius: var(--it-radius-lg);
    background:
        radial-gradient(ellipse 70% 80% at 0% 50%, rgba(124,58,237,.08) 0%, transparent 55%),
        radial-gradient(ellipse 60% 70% at 100% 40%, rgba(249,115,22,.07) 0%, transparent 50%),
        #fff;
    border: 1px solid var(--it-border);
    box-shadow: var(--it-shadow);
}
.it-home-trust-inner .it-h2 { margin: 4px 0 32px; }
.it-home-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.it-home-trust-item strong {
    display: block;
    font-size: 1.0625rem;
    font-weight: 800;
    letter-spacing: -.015em;
    margin-bottom: 8px;
    color: var(--it-text);
}
.it-home-trust-item p {
    font-size: .9375rem;
    color: var(--it-text-2);
    line-height: 1.6;
}

/* ---- Home: finale CTA ---- */
.it-home-finale {
    padding: 40px 0 96px;
}
.it-home-finale-panel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 48px 44px;
    border-radius: var(--it-radius-lg);
    background: var(--it-grad-cta);
    color: #fff;
    box-shadow: 0 20px 60px rgba(124,58,237,.28);
    position: relative;
    overflow: hidden;
}
.it-home-finale-panel::before {
    content: '';
    position: absolute;
    width: 360px; height: 360px;
    right: -80px; top: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.18) 0%, transparent 70%);
    pointer-events: none;
}
.it-home-finale-panel::after {
    content: '';
    position: absolute;
    width: 220px; height: 220px;
    left: 20%; bottom: -100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249,115,22,.35) 0%, transparent 70%);
    pointer-events: none;
}
.it-home-finale-copy,
.it-home-finale-actions {
    position: relative;
    z-index: 1;
}
.it-home-finale-copy .it-h2 {
    color: #fff;
    margin-bottom: 10px;
}
.it-home-finale-copy p {
    font-size: 1.0625rem;
    color: rgba(255,255,255,.85);
    max-width: 36ch;
}
.it-home-finale-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .it-hero { min-height: clamp(480px, 70vh, 680px); }
    .it-hero-img { object-position: 70% center; }
    .it-hero-copy { max-width: 480px; }
    .it-cards { grid-template-columns: repeat(2, 1fr); }
    .it-metrics-grid { grid-template-columns: repeat(3, 1fr); }
    .it-showcase { grid-template-columns: 1fr; gap: 40px; }
    .it-foot-grid { grid-template-columns: 1fr 1fr; }
    .it-section-head { grid-template-columns: 1fr; }
    .it-home-board-head { grid-template-columns: 1fr; }
    .it-home-board-head-right p { margin-left: 0; }
    .it-home-board-release { float: none; }
    .it-home-blog-grid { grid-template-columns: 1fr 1fr; }
    .it-home-paths-grid { grid-template-columns: 1fr 1fr; }
    .it-home-paths-grid .it-home-path:last-child { grid-column: 1 / -1; }
    .it-home-trust-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 768px) {
    .it-menu, .it-hide-mobile { display: none; }
    .it-burger { display: flex; }
    .it-hero { padding: 120px 0 70px; min-height: 520px; }
    .it-hero-img { object-position: 75% center; }
    .it-hero-bg::after {
        background: linear-gradient(180deg, rgba(250,250,252,.88) 0%, rgba(250,250,252,.72) 45%, rgba(250,250,252,.35) 100%);
    }
    .it-hero-copy { max-width: none; }
    .it-page-hero,
    .it-lb-hero { padding: 40px 0 70px; }
    .it-lb-controls { flex-direction: column; align-items: stretch; }
    .it-cards { grid-template-columns: 1fr; }
    .it-metrics-grid { grid-template-columns: repeat(2, 1fr); }
    .it-cta-grid { flex-direction: column; text-align: center; padding: 32px 24px; }
    .it-foot-grid { grid-template-columns: 1fr; gap: 32px; }
    .it-foot-bar { flex-direction: column; gap: 12px; text-align: center; }
    .it-dash-kpis { grid-template-columns: 1fr; }
    .it-dash-charts { grid-template-columns: 1fr; }
    .it-home-blog-grid,
    .it-home-paths-grid { grid-template-columns: 1fr; }
    .it-home-paths-grid .it-home-path:last-child { grid-column: auto; }
    .it-home-board-foot { flex-direction: column; align-items: stretch; }
    .it-home-board-foot .it-btn { justify-content: center; }
    .it-home-trust-inner { padding: 36px 24px; }
    .it-home-finale-panel { padding: 36px 24px; }
    .it-home-finale-actions { width: 100%; }
    .it-home-finale-actions .it-btn { flex: 1; justify-content: center; }
}

@media (max-width: 480px) {
    .it-metrics-grid { grid-template-columns: 1fr 1fr; }
    .it-hero-cta { flex-direction: column; }
    .it-hero-cta .it-btn { justify-content: center; }
    .it-home-rank-row {
        grid-template-columns: 32px minmax(0, 1fr) 48px;
        gap: 10px;
        padding: 12px 6px;
    }
}

/* ---- Prompts generator + library ---- */
.it-prompt-hero-cta { margin-top: 20px; }
.it-prompt-gen { padding: 0 0 48px; }
.it-prompt-gen-card {
    background: var(--it-surface);
    border: 1px solid var(--it-border);
    border-radius: calc(var(--it-radius) + 4px);
    box-shadow: var(--it-shadow);
    padding: 28px 28px 32px;
}
.it-prompt-gen-head { margin-bottom: 22px; max-width: 640px; }
.it-prompt-gen-head .it-h2 { margin: 6px 0 8px; }
.it-prompt-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.it-prompt-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.it-prompt-field > span {
    font-size: .75rem; font-weight: 700; letter-spacing: .04em;
    text-transform: uppercase; color: var(--it-text-3);
}
.it-prompt-field input,
.it-prompt-field select,
.it-prompt-field textarea,
.it-prompt-output {
    width: 100%;
    border: 1px solid var(--it-border);
    border-radius: 12px;
    background: #fff;
    color: var(--it-text);
    padding: 12px 14px;
    font: inherit;
    font-size: .9375rem;
}
.it-prompt-field textarea { resize: vertical; min-height: 110px; }
.it-prompt-form-actions {
    display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 8px;
}
.it-prompt-status { margin: 0; font-size: .875rem; color: var(--it-text-2); }
.it-prompt-status.is-error { color: #b91c1c; }
.it-prompt-turnstile { margin: 8px 0 4px; }
.it-prompt-result {
    margin-top: 24px; padding-top: 22px;
    border-top: 1px solid var(--it-border);
}
.it-prompt-result-head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; margin-bottom: 10px;
}
.it-prompt-output {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: .875rem; line-height: 1.55; min-height: 220px;
}
.it-prompt-lib-head {
    display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between;
    gap: 16px; margin-bottom: 20px;
}
.it-prompt-filters { display: flex; flex-wrap: wrap; gap: 10px; }
.it-prompt-filters select {
    border: 1px solid var(--it-border); border-radius: 10px;
    padding: 10px 12px; background: #fff; font: inherit; font-size: .875rem;
}
.it-prompt-tax { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.it-prompt-copybox { position: relative; }
.it-prompt-copy-btn { position: absolute; top: 8px; right: 8px; z-index: 1; }
.it-prompt-pre {
    background: #0f172a; color: #e2e8f0; border-radius: 12px;
    padding: 18px 16px; overflow-x: auto; white-space: pre-wrap;
    font-size: .875rem; line-height: 1.55;
}
.screen-reader-text {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
@media (max-width: 768px) {
    .it-prompt-form-grid { grid-template-columns: 1fr; }
    .it-prompt-gen-card { padding: 22px 18px 26px; }
}
