/*  Startseite  */


/* ---- Hero ---- */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-height) + 48px) 0 72px;
    overflow: hidden;
}

/* wandernde Farbflächen im Hintergrund */
.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.5;
    pointer-events: none;
}

.hero__glow--violet {
    width: 560px;
    height: 560px;
    top: -140px;
    right: -120px;
    background: rgba(124, 58, 237, 0.35);
    animation: glow-drift 14s ease-in-out infinite alternate;
}

.hero__glow--blue {
    width: 480px;
    height: 480px;
    bottom: -160px;
    left: -140px;
    background: rgba(79, 127, 224, 0.25);
    animation: glow-drift 18s ease-in-out infinite alternate-reverse;
}

@keyframes glow-drift {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(-60px, 40px) scale(1.12); }
}

/* Punktraster über der Hero */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 32px 32px;
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 78%);
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 78%);
    pointer-events: none;
}

/* Hero: Copy links, Card rechts */
.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(36px, 5vw, 64px);
    align-items: start;
}

.hero h1 {
    font-size: clamp(34px, 4.6vw, 58px);
    letter-spacing: -1.5px;
    line-height: 1.04;
    margin: 18px 0 22px;
}

.hero__lead {
    font-size: clamp(16px, 1.6vw, 18.5px);
    max-width: 620px;
    margin-bottom: 22px;
}

/* Slogan als Pill */
.hero__slogan {
    display: inline-flex;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--text-bright);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 28px;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

/* Demo-Leiste unterm Hero-Grid */
.hero-demo {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr minmax(0, 460px);
    gap: 18px 40px;
    align-items: center;
    margin-top: clamp(32px, 4vw, 52px);
    padding: 24px 30px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.hero-demo__text strong {
    display: block;
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-bright);
    margin-bottom: 4px;
}

.hero-demo__text span {
    font-size: 14.5px;
    color: var(--text-dim);
}

.hero-demo .demo-bar__msg {
    min-height: 0;
    margin-top: 8px;
}

@media (max-width: 860px) {
    .hero-demo {
        grid-template-columns: 1fr;
        padding: 22px;
    }
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero__trust span {
    padding: 7px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    font-size: 13px;
    color: var(--text-dim);
    letter-spacing: 0.3px;
}

/* Operations-Card rechts – margin-top = Eyebrow + H1-Abstand,
   damit die Oberkante auf der Headline liegt */
.hero-card {
    position: relative;
    margin-top: 74px;
    padding: 28px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 90% 5%, rgba(139, 92, 246, 0.18), transparent 38%),
        linear-gradient(150deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 38px 100px rgba(0, 0, 0, 0.38);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    overflow: hidden;
}

/* Farbschimmer über der Card */
.hero-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.12), transparent 42%, rgba(79, 127, 224, 0.1));
    pointer-events: none;
}

.hero-card__badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(74, 222, 128, 0.14);
    color: #bbf7d0;
    font-family: var(--font-head);
    font-size: 13.5px;
    font-weight: 600;
}

.hero-card__badge span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--ok);
    box-shadow: 0 0 16px rgba(74, 222, 128, 0.9);
}

.hero-card__stats {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.hero-card__stats div {
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-card__stats span {
    display: block;
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.hero-card__stats strong {
    display: block;
    color: var(--text-bright);
    font-size: 15px;
    line-height: 1.3;
}

.hero-card__ai {
    position: relative;
    margin-top: 20px;
    padding: 20px 18px;
    border-radius: 18px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.28);
}

.hero-card__ai span {
    display: block;
    color: var(--violet-soft);
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-card__ai strong {
    display: block;
    color: var(--text-bright);
    font-family: var(--font-head);
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.25;
    letter-spacing: -0.3px;
}

.hero-card__checks {
    position: relative;
    margin-top: 20px;
    display: grid;
    gap: 11px;
}

.hero-card__checks li {
    position: relative;
    padding-left: 26px;
    color: var(--text);
    font-size: 14.5px;
    font-weight: 500;
}

.hero-card__checks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--ok);
    font-weight: 700;
}

@media (max-width: 920px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* einspaltig gibt's nichts auszurichten */
    .hero-card {
        margin-top: 0;
    }
}

/* Scroll-Hinweis */
.hero__scroll {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 42px;
    border: 2px solid var(--line-strong);
    border-radius: 14px;
    opacity: 0.7;
}

.hero__scroll::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 50%;
    width: 4px;
    height: 8px;
    margin-left: -2px;
    border-radius: 4px;
    background: var(--violet-soft);
    animation: scroll-hint 2s ease-in-out infinite;
}

@keyframes scroll-hint {
    0%   { transform: translateY(0); opacity: 1; }
    70%  { transform: translateY(12px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}


/* ---- Referenzen-Leiste ---- */

.clients {
    padding: 40px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg-deep);
}

.clients__label {
    display: block;
    text-align: center;
    margin-bottom: 26px;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-dim);
}

/* Endlos-Schleife wie bei den Technologie-Partnern */
.clients__track {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}

.clients__row {
    display: flex;
    align-items: center;
    gap: clamp(56px, 7vw, 110px);
    width: max-content;
    animation: marquee 32s linear infinite;
    padding: 8px 40px;
}

.clients img {
    height: 44px;
    width: auto;
    opacity: 0.55;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.clients img:hover {
    opacity: 1;
}


/* ---- Warum INMC ---- */

.why__split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(32px, 6vw, 64px);
    align-items: start;
    margin: 26px 0 64px;
}

.why__split h2 {
    font-size: clamp(30px, 4.2vw, 48px);
    letter-spacing: -1px;
    line-height: 1.08;
}

.why__text p {
    font-size: 16.5px;
    margin-bottom: 20px;
}

.why__text p:last-of-type {
    margin-bottom: 0;
}

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

.value-card {
    padding: 30px 28px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease,
                box-shadow 0.3s ease, background 0.3s ease;
}

.value-card span {
    display: block;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    color: var(--violet-soft);
    margin-bottom: 10px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14.5px;
    margin: 0;
}

@media (max-width: 860px) {
    .why__split {
        grid-template-columns: 1fr;
        margin-bottom: 44px;
    }

    .values__grid {
        grid-template-columns: 1fr;
    }
}


/* ---- Services ---- */

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* Ziffer, Titel, Text */
.service-card {
    display: flex;
    flex-direction: column;
    min-height: 220px;
}

.service-card__num {
    display: block;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    color: var(--violet-soft);
    margin-bottom: 12px;
}

.service-card h3 {
    font-size: 19px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14.5px;
    flex-grow: 1;
    margin: 0;
}

@media (max-width: 960px) {
    .services__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 620px) {
    .services__grid {
        grid-template-columns: 1fr;
    }
}


/* ---- AI-Panel (KI-Teaser) ---- */

.ai-panel {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 40px;
    align-items: center;
    padding: clamp(30px, 4.5vw, 44px);
    border-radius: 36px;
    border: 1px solid rgba(139, 92, 246, 0.32);
    background:
        radial-gradient(circle at 85% 20%, rgba(139, 92, 246, 0.18), transparent 32%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.ai-panel__copy h2 {
    font-size: clamp(28px, 4vw, 40px);
    letter-spacing: -0.8px;
    margin: 16px 0;
}

.ai-panel__copy p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 22px;
}

.ai-panel__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
}

.ai-panel__pills span {
    padding: 6px 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.7);
}

/* Phone-Mockup + Puls-Ring */
.ai-panel__demo {
    position: relative;
    min-height: 380px;
    display: grid;
    place-items: center;
}

.ai-panel__ring {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(167, 139, 250, 0.4);
    border-radius: 50%;
    animation: ai-ring-pulse 2.6s ease-in-out infinite;
}

@keyframes ai-ring-pulse {
    50% { transform: scale(1.22); opacity: 0.25; }
}

.ai-panel__phone {
    position: relative;
    width: 250px;
    padding: 38px 24px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(180deg, #241d3a, #141416);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.ai-panel__phone span {
    color: var(--violet-soft);
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
}

.ai-panel__phone strong {
    color: var(--text-bright);
    font-family: var(--font-head);
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -0.4px;
}

.ai-panel__phone p {
    color: var(--text-dim);
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 860px) {
    .ai-panel {
        grid-template-columns: 1fr;
    }

    .ai-panel__demo {
        min-height: 320px;
    }
}


/* ---- Zahlen ---- */

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    text-align: center;
}

.stat h3 {
    font-size: clamp(36px, 5vw, 52px);
    letter-spacing: -1px;
    background: linear-gradient(120deg, var(--violet-soft), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 6px;
}

.stat p {
    font-size: 14.5px;
    color: var(--text-dim);
}

@media (max-width: 800px) {
    .stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 22px;
    }
}


/* ---- Team ---- */

.team__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.team-card {
    padding: 0;
    overflow: hidden;
}

.team-card__photo {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Porträts oben ausrichten, sonst schneidet der quadratische
       Zuschnitt die Köpfe ab */
    object-position: top;
    filter: grayscale(0.25);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.team-card:hover .team-card__photo img {
    transform: scale(1.04);
    filter: none;
}

.team-card__body {
    padding: 26px 28px 30px;
}

.team-card__body h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.team-card__role {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--violet-soft);
    letter-spacing: 0.4px;
    margin-bottom: 16px;
}

.team-card__quote {
    font-size: 14.5px;
    margin-bottom: 20px;
}

.team-card__contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-top: 1px solid var(--line);
    padding-top: 16px;
}

.team-card__contact a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    color: var(--text);
}

.team-card__contact a:hover {
    color: var(--violet-soft);
}

.team-card__contact svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    opacity: 0.7;
}

@media (max-width: 900px) {
    .team__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}


/* ---- Slogan-Band ---- */

.slogan-band {
    padding: 10px 0 48px;
}

.slogan-band p {
    margin: 0;
    text-align: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(30px, 4.8vw, 68px);
    line-height: 1.05;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ffffff 20%, var(--violet-soft) 75%, var(--violet));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


/* ---- Partner-Marquee ---- */

.partners__track {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}

.partners__row {
    display: flex;
    align-items: center;
    gap: 64px;
    width: max-content;
    animation: marquee 38s linear infinite;
    padding: 12px 32px;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Alle Logos als weiße Silhouette — die Originale sind teils dunkel
   und wären auf dem dunklen Hintergrund sonst kaum zu sehen */
.partners__row img {
    height: 40px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    opacity: 0.55;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.partners__row img:hover {
    opacity: 1;
}


/* ---- FAQ ---- */

.faq__list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover,
.faq-item[open] {
    border-color: rgba(139, 92, 246, 0.4);
}

.faq-item[open] {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-head);
    font-size: 16.5px;
    font-weight: 600;
    color: var(--text-bright);
    -webkit-user-select: none;
    user-select: none;
}

/* Standard-Dreieck des Browsers ausblenden */
.faq-item summary::-webkit-details-marker {
    display: none;
}

/* Plus-Icon, das sich beim Öffnen zum X dreht */
.faq-item__icon {
    position: relative;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.3s ease, background 0.3s ease;
}

.faq-item__icon::before,
.faq-item__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--violet-soft);
    border-radius: 2px;
}

.faq-item__icon::before {
    width: 12px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.faq-item__icon::after {
    width: 2px;
    height: 12px;
    transform: translate(-50%, -50%);
}

.faq-item[open] .faq-item__icon {
    transform: rotate(45deg);
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.5);
}

.faq-item__body {
    padding: 0 24px 22px;
    animation: faq-body-in 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item__body p {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--text);
}

.faq-item__body a {
    color: var(--violet-soft);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-item__body a:hover {
    color: var(--text-bright);
}

@keyframes faq-body-in {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: none; }
}

@media (max-width: 640px) {
    .faq-item summary {
        font-size: 15.5px;
        padding: 17px 18px;
    }

    .faq-item__body {
        padding: 0 18px 18px;
    }
}


/* ---- Kontakt ---- */

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 40px;
    align-items: start;
}

.contact-card {
    position: sticky;
    top: calc(var(--nav-height) + 24px);
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.contact-card address {
    font-style: normal;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.contact-card__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-card__list a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text);
}

.contact-card__list a:hover {
    color: var(--violet-soft);
}

.contact-card__list svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    color: var(--violet-soft);
}

/* Kontaktformular-iframe – Höhe setzt JS, das hier ist nur der Fallback */
.contact__form-frame {
    display: block;
    width: 100%;
    height: 1000px;
    border: none;
    background: transparent;
    overflow: hidden;
}

@media (max-width: 860px) {
    .contact__grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        position: static;
    }
}


/* ---- Hero-Effekte: Netz-Canvas + Intro ---- */


/* Intro-Overlay – blendet per CSS von allein aus, JS räumt danach auf */
.brand-intro {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    background: var(--bg-deep);
    animation: brand-intro-out 0.55s ease 0.85s forwards;
}

@keyframes brand-intro-out {
    to { opacity: 0; visibility: hidden; }
}

.brand-intro__mark {
    position: relative;
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    animation: brand-mark-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.brand-intro__mark img {
    width: 100%;
    height: auto;
}

/* weicher, pulsierender Schein hinter dem Logo */
.brand-intro__mark::before {
    content: '';
    position: absolute;
    inset: -35%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.5), transparent 70%);
    filter: blur(16px);
    z-index: -1;
    animation: brand-glow 1.6s ease-in-out infinite;
}

/* dünner, rotierender Ring um das Logo */
.brand-intro__ring {
    position: absolute;
    inset: -13px;
    border-radius: 50%;
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-top-color: var(--violet-soft);
    animation: brand-ring-spin 1s linear infinite;
}

.brand-intro__word {
    font-family: var(--font-head);
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 7px;
    padding-left: 7px;
    color: var(--text-bright);
    animation: brand-word-in 0.5s ease 0.12s both;
}

@keyframes brand-mark-in { from { opacity: 0; transform: scale(0.82); } to { opacity: 1; transform: none; } }
@keyframes brand-word-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes brand-glow    { 0%, 100% { opacity: 0.55; } 50% { opacity: 1; } }
@keyframes brand-ring-spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
    .brand-intro__mark,
    .brand-intro__word { animation: none; }
    .brand-intro__ring { animation: none; opacity: 0.4; }
}
