/* ═══════════════════════════════════════════════════════════
   KI KUNSTBERATER — Styles
   /assets/css/kunstberater.css
   ═══════════════════════════════════════════════════════════ */

/* ── Fonts & Base ─────────────────────────────────────────── */
.kb-v1 { font-family: Inter, system-ui, sans-serif; }
.kb-v1 * { box-sizing: border-box; }

/* ── Wrap ─────────────────────────────────────────────────── */
.kb-v1-wrap {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-bottom: 0px;
}
.kb-v1-glow1 {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(2, 208, 206, 0.22) 0%, transparent 60%);
    pointer-events: none;
}
.kb-v1-glow2 {
    position: absolute; top: 300px; right: -150px; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(200,169,110,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.kb-v1-inner {
    position: relative;
    max-width: 100dvw; margin: 0 auto; padding-top: 40px;
    padding-bottom: 0px;
}

/* ── AI Block ─────────────────────────────────────────────── */
.kb-v1-ai-block { max-width: 760px; margin: 0 auto; text-align: center; }
.kb-v1-ai-label {
    display: flex; flex-direction: column; align-items: center; gap: 10px; margin-bottom: 32px;
}
.kb-v1-orb { width: 120px; height: 120px; }
.kb-v1-orb svg { width: 120px; height: 120px; }
.kb-v1-ai-title {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: -0.01em;
    padding-bottom: 20px;
    color: rgba(200, 169, 110, 0.9);
    font-family: 'JetBrains Mono', monospace;
    font-family: var(--font-display);
}
.kb-v1-ai-sub {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(28px, 4vw, 42px); font-weight: 400;
    letter-spacing: -0.02em; line-height: 1.1; color: #fff;
}

.kb-v1-ai-hints-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(--text-lg); font-weight: 400;
    letter-spacing: -0.02em; line-height: 1.1; color: rgba(255, 255, 255, 0.8);
}

/* ── Pill Input ───────────────────────────────────────────── */
.kb-v1-pill {
    position: relative; border-radius: 999px; background: #000;
    padding: 2px; z-index: 0; margin: 0 auto 20px;
    max-width: 600px;
    box-shadow: 0 0 80px rgba(2,208,206,0.25), 0 0 40px rgba(2,208,206,0.15);
}
.kb-v1-pill-ring {
    position: absolute; inset: -5px; border-radius: 999px; z-index: -1;
    background: conic-gradient(from var(--v1a), rgba(2,208,206,0.8), rgba(255,255,255,0.4), transparent 30%, transparent 70%, rgba(2,208,206,0.8));
    animation: v1ring 4s linear infinite;
    transition: filter 0.4s ease, opacity 0.4s ease;
}

/* ── KI analysiert — Knight Rider Scanner ────────────────── */
.kb-v1-pill.loading .kb-v1-pill-ring {
    /* Rotation stoppen — stattdessen Scanner-Spot */
    animation: none;
    /* Statischer, subtiler Teal-Ring als Basis */
    background: conic-gradient(
        from 0deg,
        rgba(2,208,206,0.25), rgba(2,208,206,0.25),
        rgba(2,208,206,0.25), rgba(2,208,206,0.25)
    );
}

/* Scanner-Spot als eigene Ebene via ::after */
.kb-v1-pill.loading .kb-v1-pill-ring::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: linear-gradient(90deg,
        transparent                  0%,
        transparent                  20%,
        rgba(2,208,206,0.35)         38%,
        rgba(255,255,255,0.85)       50%,
        rgba(2,208,206,0.35)         62%,
        transparent                  80%,
        transparent                  100%
    );
    background-size: 300% 100%;
    animation: kb-scanner 1.8s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}

@keyframes kb-scanner {
    from { background-position: 200% 0; }
    to   { background-position: -100% 0; }
}
.kb-v1-pill.loading {
    box-shadow: 0 0 120px rgba(2,208,206,0.5), 0 0 40px rgba(2,208,206,0.2);
}

/* ── Pill Glow Pulse on Hint Click ───────────────────────── */
.kb-v1-pill.glow-pulse {
    animation: pill-glow-pulse 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes pill-glow-pulse {
    0%   { box-shadow: 0 0 80px rgba(2,208,206,0.25), 0 0 40px rgba(2,208,206,0.15); }
    30%  { box-shadow: 0 0 140px rgba(2,208,206,0.75), 0 0 70px rgba(2,208,206,0.50), 0 0 25px rgba(2,208,206,0.30); }
    60%  { box-shadow: 0 0 110px rgba(2,208,206,0.45), 0 0 55px rgba(2,208,206,0.30); }
    100% { box-shadow: 0 0 80px rgba(2,208,206,0.25), 0 0 40px rgba(2,208,206,0.15); }
}

/*
.kb-v1-input {
    width: 100%; background: #000; color: #fff;
    border: none; outline: none;
    padding: 20px 32px; font-size: 17px;
    border-radius: 999px; font-family: inherit;
    line-height: 1;
}
*/

.kb-v1-input {
    width: 100%; background: #fff; color: #000;
    border: none; outline: none;
    padding: 20px 32px; font-size: 17px;
    border-radius: 999px; font-family: inherit;
    line-height: 1;
}


.kb-v1-input::placeholder { color: rgba(0,0,0,0.5); }
.kb-v1-input:disabled { opacity: 0.7; pointer-events: none; }

/* ── Hints ────────────────────────────────────────────────── */
.kb-v1-hints {
    display: flex; flex-wrap: wrap; gap: 8px;
    justify-content: center; margin-bottom: 20px; margin-top: 20px;
}
.kb-v1-hint {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.09);
    color: rgba(255,255,255,0.6); padding: 9px 18px; border-radius: 999px;
    font-size: 12.5px; cursor: pointer; font-family: inherit;
    transition: all 0.22s; letter-spacing: 0.01em;
    opacity: 0; transform: translateY(8px) scale(0.96);
}
.kb-v1-hint.hint-visible {
    opacity: 1; transform: translateY(0) scale(1);
}
.kb-v1-hint:hover {
    border-color: rgba(2,208,206,0.35); color: #02d0ce;
    background: rgba(2,208,206,0.05);
}
.kb-v1-hint:disabled { opacity: 0.3; pointer-events: none; }

/* Mehr Ideen Button */
.kb-hints-more {
    margin-top: 4px; margin-bottom: 20px;
    background: transparent; border: none;
    color: #02d0ce; font-size: 11px;
    font-family: 'JetBrains Mono', monospace; letter-spacing: 0.15em;
    cursor: pointer; padding: 6px 12px;
    transition: color 0.2s; text-transform: uppercase;
    display: flex; align-items: center; gap: 8px; margin-left: auto; margin-right: auto;
}
.kb-hints-more:hover { color: #02d0ce; }
.kb-hints-more.done { display: none; }
.kb-hints-more-arrow {
    display: inline-block; transition: transform 0.3s;
    font-size: 14px; line-height: 1;
}
.kb-hints-more:hover .kb-hints-more-arrow { transform: translateY(-2px); }

/* ── Button ───────────────────────────────────────────────── */
.kb-v1-btn {
    background: linear-gradient(135deg,#c8a96e 0%,#e8c88e 100%);
    color: #000; border: none; padding: 20px 40px;
    border-radius: 999px; font-size: 15px; font-weight: 700;
    letter-spacing: 0.03em; cursor: pointer;
    display: inline-flex; align-items: center; gap: 10px;
    font-family: inherit;
    box-shadow: 0 12px 40px rgba(200,169,110,0.35);
    transition: all 0.3s;
    position: relative; overflow: hidden;
}
.kb-v1-btn.loading {
    background: rgba(2,208,206,0.15); color: #02d0ce;
    box-shadow: 0 0 60px rgba(2,208,206,0.5);
}
.kb-v1-btn:disabled { cursor: not-allowed; }
.kb-v1-btn-pulse { display: inline-flex; gap: 6px; align-items: center; }
.kb-v1-dot {
    width: 8px; height: 8px; background: #02d0ce; border-radius: 50%;
    animation: v1dot 1.2s ease-in-out infinite;
}
.kb-v1-dot:nth-child(2) { animation-delay: 0.15s; }
.kb-v1-dot:nth-child(3) { animation-delay: 0.3s; }

/* ── Status ───────────────────────────────────────────────── */
.kb-v1-status {
    text-align: center; font-size: 12px; opacity: 0; transition: opacity 0.25s;
    margin-top: 8px; min-height: 18px; color: rgba(255,255,255,0.6);
    font-family: 'JetBrains Mono', monospace; letter-spacing: 0.1em;
}
.kb-v1-status.visible { opacity: 0.75; }

/* ── Result Box ───────────────────────────────────────────── */
/*
.kb-v1-result-wrap {
    margin-top: 0; padding: 40px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(2,208,206,0.15);
    border-radius: 24px;
    height: 0; overflow: hidden; opacity: 0;
}
*/

.kb-v1-result-wrap,
.kb-v1-result-wrap-footer {
    margin-top: 0; padding: 40px;
    border-radius: 24px;
    height: 0; overflow: hidden; opacity: 0;
}

.kb-v1-q-top { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.kb-v1-q-line { flex: 1; height: 1px; background: rgba(2,208,206,0.35); }
.kb-v1-q-label {
    font-size: 10px; letter-spacing: 0.22em; font-family: 'JetBrains Mono', monospace;
    color: rgba(2,208,206,0.9);
}
.kb-v1-q-mark {
    font-family: Georgia, serif; font-size: 130px; color: rgba(2,208,206,0.6);
    line-height: 0.5; text-align: center; font-style: italic;
}
.kb-v1-q-text {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(22px, 3vw, 32px); font-weight: 400;
    line-height: 1.3; color: #fff; text-align: center; margin: 16px 0 24px;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 20px;
}
.kb-v1-q-author {
    font-family: 'JetBrains Mono', monospace; font-size: 9px;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.5); text-align: center; margin-bottom: 20px;
}
.kb-v1-q-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 24px; }
.kb-v1-tag {
    padding: 6px 14px; border-radius: 999px; font-size: var(--text-base); font-weight: 600;
    font-family: 'JetBrains Mono', monospace; letter-spacing: 0.05em;
}
.kb-v1-tag.cat    { background: rgba(2,208,206,0.1);    color: #02d0ce;              border: 1px solid rgba(2,208,206,0.3); }
.kb-v1-tag.col    { background: rgba(200,169,110,0.1);  color: #c8a96e;              border: 1px solid rgba(200,169,110,0.3); }
.kb-v1-tag.size   { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.15); }
.kb-v1-tag.price  { background: rgba(76,175,135,0.1);   color: #4caf87;              border: 1px solid rgba(76,175,135,0.3); }
.kb-v1-tag.hub    { background: rgba(2,208,206,0.15);   color: #02d0ce;              border: 1px solid rgba(2,208,206,0.4); font-weight: 700; }
.kb-v1-tag.format { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.65); border: 1px solid rgba(255,255,255,0.12); }

/* ── Hub Card ─────────────────────────────────────────────── */
.kb-v1-hub {
    margin-top: 28px; padding: 24px;
    background: linear-gradient(135deg, rgba(2,208,206,0.08), rgba(200,169,110,0.06));
    border: 1px solid rgba(2,208,206,0.2); border-radius: 16px; text-align: center;
    display: none;
}
.kb-v1-hub.visible { display: block; }
.kb-v1-hub-badge {
    display: inline-block; padding: 4px 12px; border-radius: 999px;
    border: 1px solid rgba(2,208,206,0.3); color: rgba(2,208,206,0.9);
    font-size: 9px; letter-spacing: 0.25em; font-family: 'JetBrains Mono', monospace;
}
.kb-v1-hub-name { font-size: 26px; font-weight: 700; margin: 12px 0 16px; letter-spacing: -0.02em; }
.kb-v1-hub-link {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 22px; background: rgba(2,208,206,0.15);
    border: 1px solid rgba(2,208,206,0.4); border-radius: 999px;
    color: #02d0ce; font-size: 13px; font-weight: 600; cursor: pointer;
    font-family: inherit; text-decoration: none; transition: all 0.2s;
}
.kb-v1-hub-link:hover { background: rgba(2,208,206,0.25); }

/* ── Reset + Powered ──────────────────────────────────────── */
.kb-v1-reset-btn {
    margin-top: 24px; background: transparent; border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.5); padding: 10px 20px; border-radius: 999px;
    font-size: 12px; cursor: pointer; font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.1em; transition: all 0.2s;
}
.kb-v1-reset-btn:hover { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); }
.kb-v1-powered {
    margin: 24px; display: flex; gap: 8px; justify-content: center;
    align-items: center; opacity: 0.4;
}
.kb-v1-powered-lbl   { font-family: 'JetBrains Mono', monospace; font-size: 9px;  letter-spacing: 0.2em; }
.kb-v1-powered-dot   { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.3); }
.kb-v1-powered-brand { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.15em; font-weight: 600; }

/* ── Suggestion Link ──────────────────────────────────────── */
.kb-suggestion-link {
    color: #00b8b6 !important; text-decoration: underline !important;
    text-decoration-color: #00b8b6 !important; text-underline-offset: 3px;
    transition: color 0.2s;
}
.kb-suggestion-link:hover { color: rgb(82 255 253 / 90%) !important; }

/* ── Divider ──────────────────────────────────────────────── */
.kb-v1-divider {
    display: flex; align-items: center; gap: 20px;
    margin: 80px auto 60px; max-width: 600px;
}
.kb-v1-div-line { flex: 1; height: 1px; background: rgba(255,255,255,0.1); }
.kb-v1-div-txt {
    font-family: 'JetBrains Mono', monospace; font-size: 10px;
    letter-spacing: 0.3em; color: rgba(255,255,255,0.8); white-space: nowrap;
}

/* ── Tabs ─────────────────────────────────────────────────── */
.kb-v1-tabs { display: flex; gap: 4px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.kb-v1-tab {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 24px; background: transparent;
    border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.6);
    border-radius: 999px; font-family: inherit; font-size: 14px; cursor: pointer;
    transition: all 0.25s;
}
.kb-v1-tab.active {
    background: rgba(2,208,206,0.1); border-color: rgba(2,208,206,0.4);
    color: #02d0ce; box-shadow: 0 4px 20px rgba(2,208,206,0.2);
}
.kb-v1-tab-num  { font-family: 'JetBrains Mono', monospace; font-size: 11px; opacity: 0.6; }
.kb-v1-tab-body { min-height: 340px; margin-bottom: 80px; }
.kb-v1-tab-panel { display: none; }
.kb-v1-tab-panel.active { display: block; }

/* ── Category Grid ────────────────────────────────────────── */
.kb-v1-cat-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    max-width: 800px; margin: 0 auto;
}
.kb-v1-cat-item { cursor: pointer; text-align: center; }
.kb-v1-cat-img {
    width: 100%; aspect-ratio: 1; border-radius: 12px;
    position: relative; transition: all 0.3s; margin-bottom: 12px;
    overflow: hidden; background: #111;
}
.kb-v1-cat-check {
    position: absolute; top: 10px; right: 10px; width: 28px; height: 28px;
    border-radius: 50%; background: #02d0ce; color: #000;
    display: none; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px;
}
.kb-v1-cat-item.active .kb-v1-cat-check { display: flex; }
.kb-v1-cat-item.active .kb-v1-cat-img { box-shadow: 0 0 0 2px #02d0ce, 0 8px 32px rgba(2,208,206,0.4); }
.kb-v1-cat-name { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.85); }

/* ── Color Grid ───────────────────────────────────────────── */
.kb-v1-color-grid { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; max-width: 700px; margin: 0 auto; }
.kb-v1-color-swatch {
    width: 60px; height: 60px; border-radius: 50%;
    border: none; cursor: pointer; position: relative; transition: transform 0.2s;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.kb-v1-color-swatch.active { box-shadow: 0 0 0 2px #02d0ce, 0 4px 16px rgba(2,208,206,0.5); }
.kb-v1-color-check {
    position: absolute; inset: 0; display: none;
    align-items: center; justify-content: center;
    color: #02d0ce; font-weight: 700; font-size: 20px; text-shadow: 0 0 10px #000;
}
.kb-v1-color-swatch.active .kb-v1-color-check { display: flex; }

/* ── Size Grid ────────────────────────────────────────────── */
.kb-v1-size-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1000px; margin: 0 auto; }
.kb-v1-size-item {
    padding: 20px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer; text-align: center; transition: all 0.25s;
    background: rgba(255,255,255,0.02);
}
.kb-v1-size-item.active { border-color: #02d0ce; background: rgba(2,208,206,0.08); }
.kb-v1-size-viz { height: 140px; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; margin-bottom: 16px; position: relative; }
.kb-v1-couch {
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 160px; height: 24px;
    background: linear-gradient(180deg,#2a2420 0%,#181410 100%);
    border-radius: 4px 4px 0 0;
}
.kb-v1-size-canvas {
    position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg,rgba(2,208,206,0.13),rgba(200,169,110,0.13));
    border: 1px solid rgba(2,208,206,0.4); border-radius: 2px;
}
.kb-v1-size-label { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.kb-v1-size-sub   { font-size: 12px; color: rgba(255,255,255,0.5); font-family: 'JetBrains Mono', monospace; }

/* ── Budget Grid ──────────────────────────────────────────── */
.kb-v1-budget-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; max-width: 800px; margin: 0 auto; }
.kb-v1-budget-btn {
    padding: 24px 12px; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
    cursor: pointer; font-family: inherit; font-size: 14px; font-weight: 600;
    transition: all 0.25s; background: rgba(255,255,255,0.02); color: rgba(255,255,255,0.85);
}
.kb-v1-budget-btn.active {
    background: linear-gradient(135deg,#c8a96e 0%,#e8c88e 100%);
    border-color: #c8a96e; color: #000;
}

/* ── Hidden form ──────────────────────────────────────────── */
#kb-kunstberater-form { display: none; }

/* ── KI Result Slider ─────────────────────────────────────── */
.kb-slider-section { height: 0; overflow: hidden; opacity: 0; }
.kb-slider-header  { text-align: center; margin-bottom: 48px; padding: 0 40px; }
.kb-slider-eyebrow {
    font-family: 'JetBrains Mono', monospace; font-size: var(--text-lg); letter-spacing: 0.35em;
    color: rgba(2,208,206,0.7); margin-bottom: 16px; text-transform: uppercase;
}
.kb-slider-title,
.content h2.kb-slider-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(36px, 5vw, 64px); font-weight: 400;
    letter-spacing: -0.02em; color: #fff; margin: 0 0 14px; line-height: 1;
}

.kb-highlight-for-you{
	color: rgba(2, 208, 206, 1);
	font-style: italic;
}


.kb-slider-sub {
    font-size: 14px; color: rgba(255,255,255,0.5);
    font-family: 'JetBrains Mono', monospace; letter-spacing: 0.06em;
}
.kb-slider-line { display: flex; display:none; align-items: center; gap: 20px; max-width: 500px; margin: 24px auto 0; }
.kb-slider-line-bar { flex: 1; height: 1px; background: rgba(2,208,206,0.2); }
.kb-slider-line-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #02d0ce; box-shadow: 0 0 12px rgba(2,208,206,0.8);
    animation: v1pulse 2s ease-in-out infinite;
}

/* Skeleton */
.kb-slider-skeleton { display: flex; gap: 20px; overflow: hidden; padding: 0 40px; }
.kb-slider-skeleton.hidden { display: none; }
.kb-skel-item {
    flex: 0 0 260px; height: 360px; border-radius: 12px;
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.07) 40%, rgba(255,255,255,0.03) 100%);
    background-size: 300% 100%; animation: kb-shimmer 1.8s ease-in-out infinite;
}
.kb-skel-item:nth-child(2) { animation-delay: 0.15s; }
.kb-skel-item:nth-child(3) { animation-delay: 0.3s; }
.kb-skel-item:nth-child(4) { animation-delay: 0.45s; }
@keyframes kb-shimmer { 0% { background-position: 300% 0; } 100% { background-position: -300% 0; } }

#kb-slider-container { opacity: 0; transition: opacity 0.6s ease; }
#kb-slider-container.loaded { opacity: 1; }

.kb-slider-error {
    text-align: center; padding: 60px 40px; color: rgba(255,255,255,0.3);
    font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.1em;
}

/* ── Keyframes ────────────────────────────────────────────── */
@keyframes v1pulse  { 0%,100%{opacity:0.9;transform:scale(1)} 50%{opacity:0.3;transform:scale(1.2)} }
@keyframes v1dot    { 0%,80%,100%{transform:scale(0.4);opacity:0.4} 40%{transform:scale(1);opacity:1} }
@property --v1a     { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes v1ring   { to { --v1a: 360deg } }

/* ── Mobile ───────────────────────────────────────────────── */
@media (max-width: 768px) {
    .kb-v1-cat-grid    { grid-template-columns: repeat(2,1fr); }
    .kb-v1-size-grid   { grid-template-columns: repeat(2,1fr); }
    .kb-v1-budget-grid { grid-template-columns: repeat(3,1fr); }
    .kb-v1-inner       { padding: 0 20px; }
}

/* ── Button Gold Shine nach Typewriter ───────────────────── */
.kb-v1-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(255,255,255,0.0) 20%,
        rgba(255,255,255,0.55) 48%,
        rgba(255,220,130,0.45) 55%,
        transparent 75%
    );
    transform: skewX(-15deg);
    pointer-events: none;
}
.kb-v1-btn.btn-shine::before {
    animation: kb-btn-shine 1.618s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}
@keyframes kb-btn-shine {
    from { left: -100%; opacity: 0; }
    8%   { opacity: 1; }
    85%  { opacity: 1; }
    to   { left: 160%; opacity: 0; }
}


.ai-hero-title-wrap{
	margin-bottom: 30px;
}

.ai-hero-mega-text{
    font-family: "Instrument Serif", Georgia, serif;
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 0.95;
    
}

.ai-hero-mega-text-top{
	display:block;
}

.ai-hero-mega-text-sub{
    font-style: italic;
    color: rgba(2, 208, 206, 0.9);
    font-weight: 400;
    display:block;
    margin:0 auto;
}

