﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    color-scheme: light;
    font-family: 'Space Grotesk', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    --bg: #07070c;
    --text: #f3f4f7;
    --muted: #9ba4bc;
    --primary: #ff5c8a;
    --secondary: #7a7dff;
    --accent: #1bcad8;
}

body {
    background: radial-gradient(circle at 20% 20%, rgba(26, 26, 59, 0.8), transparent 50%), #040308;
    color: var(--text);
    font-family: var(--font-family, 'Space Grotesk', 'PingFang SC', 'Microsoft YaHei', sans-serif);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

.rl-container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.rl-glow {
    position: fixed;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(123, 125, 255, 0.35), rgba(255, 92, 138, 0));
    top: 10%;
    right: 5%;
    filter: blur(60px);
    z-index: -1;
}

.rl-header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(25px);
    background: rgba(4, 3, 8, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 10;
}

.rl-header .rl-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.rl-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    font-size: 1.1rem;
}

.rl-nav {
    display: flex;
    gap: 30px;
    font-size: 0.95rem;
    color: var(--muted);
    margin-left: auto;
}

.rl-nav a {
    position: relative;
    padding-bottom: 6px;
}

.rl-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.rl-nav a:hover::after {
    transform: scaleX(1);
}

.rl-hero {
    padding: 90px 0 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
}

.hero-tag {
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--muted);
    font-size: 0.75rem;
}

.hero-text h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    margin: 20px 0;
    white-space: nowrap; /* 保持文案单行展示 */
}

.hero-desc {
    color: var(--muted);
    max-width: 500px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.rl-btn {
    border-radius: 999px;
    padding: 12px 28px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.rl-btn.primary {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border: none;
    color: #fff;
}

.rl-btn.ghost {
    color: var(--muted);
}

.rl-btn.tertiary {
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--accent);
    background: transparent;
}

.rl-btn.primary.sm {
    padding: 10px 20px;
}

.rl-btn.primary.full {
    width: 100%;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    list-style: none;
    margin-top: 40px;
    color: var(--muted);
}

.hero-stats strong {
    display: block;
    font-size: 1.8rem;
    color: var(--text);
}

.hero-media {
    position: relative;
    min-height: 320px;
}

.hero-card {
    position: absolute;
    padding: 24px;
    border-radius: 16px;
    width: 80%;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    background: rgba(255, 255, 255, 0.04);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    z-index: 1;
}

.hero-card span {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    color: rgba(255, 255, 255, 0.6);
}

.hero-card h3 {
    margin: 12px 0;
}

.hero-card.drama {
    top: -10px;
    right: 0;
    background: linear-gradient(135deg, rgba(255, 92, 138, 0.35), rgba(17, 17, 33, 0.25));
    z-index: 2;
}

.hero-card.novel {
    bottom: 12%;
    left: 5%;
    background: linear-gradient(135deg, rgba(123, 125, 255, 0.4), rgba(7, 7, 12, 0.25));
    z-index: 2;
}

.hero-card.teaser {
    top: 58%;
    left: 45%;
    width: 80%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(18, 20, 40, 0.18));
    border-style: dashed;
    z-index: 4;
}

.hero-badge {
    position: absolute;
    bottom: -30px;
    right: 20%;
    padding: 14px 28px;
    border-radius: 999px;
    background: rgba(27, 202, 216, 0.2);
    border: 1px solid rgba(27, 202, 216, 0.4);
    letter-spacing: 0.4em;
}

.rl-section {
    padding: 100px 0;
}

.section-head {
    margin-bottom: 40px;
}

.section-head-inline {
    display: flex;
    gap: 30px;
    align-items: flex-end;
}

.section-head-copy {
    flex: 1;
}

.section-head-inline .rl-btn {
    align-self: flex-end;
    white-space: nowrap;
}

.section-head h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin: 10px 0;
}

.eyebrow {
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--accent);
}

.section-desc {
    color: var(--muted);
    max-width: 640px;
}

.rl-features {
    background: rgba(5, 11, 26, 0.8);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature-grid article {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.02);
    transition: transform 0.3s, border-color 0.3s;
}

.feature-grid article:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.35);
}

.feature-grid h3 {
    margin-bottom: 12px;
}

.rl-stories {
    background: linear-gradient(135deg, rgba(29, 34, 74, 0.9), rgba(7, 7, 12, 0.95));
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.stories-grid article {
    padding: 28px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.story-meta {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: 0.85rem;
}

.stories-grid h3 {
    margin: 14px 0;
}

.stories-grid ul {
    margin-top: 15px;
    color: var(--muted);
    list-style: none;
}

.stories-grid li {
    padding-left: 16px;
    position: relative;
    margin-bottom: 8px;
}

.stories-grid li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.rl-novels {
    background: rgba(8, 12, 28, 0.9);
}

.novel-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.novel-card {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.novel-infos {
    font-size: 0.85rem;
    color: var(--accent);
}

.novel-card.highlight {
    border-color: rgba(255, 92, 138, 0.4);
    background: linear-gradient(135deg, rgba(255, 92, 138, 0.2), rgba(26, 15, 40, 0.9));
}

.rl-timeline {
    background: rgba(255, 255, 255, 0.02);
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.timeline-item {
    padding: 30px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.25);
    position: relative;
}

.timeline-item span {
    font-size: 0.9rem;
    color: var(--accent);
    letter-spacing: 0.3em;
}

.timeline-item h3 {
    margin: 20px 0 10px;
    font-size: 1.3rem;
}

.detail-hero {
    padding-top: 60px;
}

.detail-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    align-items: start;
}

.detail-hero-grid {
    display: grid;
    grid-template-columns: minmax(360px, 1.4fr) minmax(220px, 0.8fr) minmax(220px, 0.8fr);
    gap: 40px;
    align-items: start;
}

.detail-hero .hero-text h1 {
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    line-height: 1.15;
    max-width: 16ch;
    white-space: normal;
}

.detail-meta {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.meta-card {
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    min-height: 240px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.meta-card span {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 4px;
}

.meta-card h3 {
    font-size: 1.3rem;
}

.meta-card p {
    color: var(--muted);
    line-height: 1.8;
}

.detail-symbols {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.symbol-card {
    display: flex;
    gap: 18px;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.35);
}

.symbol-card h4 {
    margin-bottom: 6px;
    font-size: 1rem;
}

.symbol-card p {
    color: var(--muted);
    font-size: 0.9rem;
}

.symbol-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    position: relative;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(10, 16, 40, 0.9), rgba(8, 8, 20, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.symbol-icon::before,
.symbol-icon::after {
    content: '';
    position: absolute;
    inset: 14px;
    border-radius: 50%;
    opacity: 0.8;
}

.icon-flow::before {
    border: 1px solid rgba(27, 202, 216, 0.6);
    border-left-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(45deg);
}

.icon-grid::before {
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.icon-grid::after {
    inset: 6px;
    border-radius: 0;
    border: 1px solid rgba(123, 125, 255, 0.6);
}

.icon-beam::before {
    inset: 10px;
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(255, 92, 138, 0.9), rgba(123, 125, 255, 0.8));
    filter: blur(0.5px);
}

.icon-beam::after {
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6), transparent);
    inset: 20px;
}

.detail-focus {
    background: rgba(7, 10, 24, 0.85);
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.detail-card {
    padding: 28px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(135deg, rgba(10, 12, 30, 0.9), rgba(6, 7, 14, 0.8));
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-card h3 {
    font-size: 1.3rem;
}

.detail-card p {
    color: var(--muted);
    min-height: 70px;
}

.detail-card ul {
    list-style: none;
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--accent);
    font-size: 0.9rem;
}

.detail-panels {
    background: rgba(6, 8, 20, 0.8);
}

.audience-showcase {
    background: rgba(4, 10, 28, 0.85);
}

.audience-show-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.audience-show-card {
    padding: 26px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.audience-show-card header {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.audience-show-card header span {
    font-size: 0.85rem;
    color: var(--accent);
    letter-spacing: 0.2em;
}

.audience-show-card header strong {
    font-size: 1.2rem;
}

.audience-show-card p {
    color: var(--muted);
    line-height: 1.8;
}

.audience-show-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--text);
}

.detail-panel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.detail-panel {
    padding: 26px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.detail-panel p {
    color: var(--muted);
    min-height: 70px;
}

.detail-panel ul {
    list-style: none;
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--text);
    font-size: 0.9rem;
}

.detail-matrix {
    background: rgba(8, 12, 30, 0.9);
}

.detail-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.detail-meter {
    margin-bottom: 22px;
}

.detail-meter span {
    font-size: 0.9rem;
    color: var(--muted);
}

.meter-bar {
    margin-top: 10px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    position: relative;
}

.meter-bar span {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.meter-bar strong {
    margin-left: 10px;
    font-size: 0.85rem;
    color: var(--accent);
}

.detail-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--muted);
}

.detail-list strong {
    color: var(--text);
    margin-right: 6px;
}

.aud-hero {
    padding: 110px 0 80px;
}

.aud-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
    align-items: center;
}

.aud-hero-copy h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    margin: 20px 0;
}

.aud-stat-board {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 18px;
    margin: 30px 0;
}

.aud-stat-board article {
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

.aud-stat-board strong {
    font-size: 1.8rem;
    display: block;
}

.aud-segments {
    padding: 60px 0 20px;
}

.aud-segment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.aud-hero-card {
    padding: 26px;
    border-radius: 24px;
    background: rgba(5, 12, 30, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 200px;
}

.audicon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 30% 30%, rgba(255, 92, 138, 0.6), rgba(7, 7, 18, 0.9));
}

.audicon::after,
.audicon::before {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 50%;
}

.audicon-wave::before {
    background: radial-gradient(circle, rgba(27, 202, 216, 0.8), transparent 70%);
    filter: blur(2px);
}

.audicon-wave::after {
    inset: 5px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 30%, transparent 70%);
}

.audicon-box::before {
    background: radial-gradient(circle, rgba(123, 125, 255, 0.7), transparent);
    filter: blur(3px);
}

.audicon-box::after {
    inset: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
}

.audicon-ring::before {
    border: 3px dotted rgba(255, 92, 138, 0.7);
}

.audicon-ring::after {
    inset: 18px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27, 202, 216, 0.8), transparent);
}

.audicon-pulse::before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent 60%);
    filter: blur(1px);
}

.audicon-pulse::after {
    inset: 6px;
    background: radial-gradient(circle at 70% 30%, rgba(255, 92, 138, 0.8), transparent 60%);
}

.aud-glance {
    padding: 90px 0;
    background: rgba(5, 10, 24, 0.75);
}

.aud-glance-body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    align-items: center;
}

.aud-glance-copy ul {
    list-style: none;
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--muted);
}

.aud-wordcloud {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    margin: 0 auto;
}

.aud-wordcloud span {
    position: absolute;
    transform: translate(-50%, -50%);
    color: var(--muted);
    font-weight: 500;
    white-space: nowrap;
    letter-spacing: 0.08em;
    --drift-x: 0px;
    --drift-y: 0px;
    animation: wordcloud-drift 4s ease-in-out infinite alternate;
}

.cloud-xlarge { font-size: 1.8rem; }
.cloud-large { font-size: 1.45rem; }
.cloud-medium { font-size: 1.05rem; }
.cloud-small { font-size: 0.85rem; }

.aud-wordcloud .accent {
    color: #7eeaff;
}

.aud-wordcloud .word-a { top: 22%; left: 40%; color: #ffb3c7; --drift-x: -18px; --drift-y: 12px; }
.aud-wordcloud .word-b { top: 32%; left: 65%; color: #7eeaff; --drift-x: 16px; --drift-y: -12px; }
.aud-wordcloud .word-c { top: 50%; left: 22%; color: #f8d57c; --drift-x: 12px; --drift-y: 16px; }
.aud-wordcloud .word-d { top: 64%; left: 60%; color: #9de0ff; --drift-x: -15px; --drift-y: -14px; }
.aud-wordcloud .word-e { top: 35%; left: 30%; color: #ffda9b; --drift-x: 18px; --drift-y: -10px; }
.aud-wordcloud .word-f { top: 75%; left: 45%; color: #f9b2ff; --drift-x: -12px; --drift-y: 11px; }
.aud-wordcloud .word-g { top: 45%; left: 50%; color: #e0f3ff; --drift-x: 10px; --drift-y: -12px; }
.aud-wordcloud .word-h { top: 82%; left: 63%; color: #7eeaff; --drift-x: -13px; --drift-y: 9px; }
.aud-wordcloud .word-i { top: 28%; left: 78%; color: #ffc0a6; --drift-x: -12px; --drift-y: 15px; }
.aud-wordcloud .word-j { top: 70%; left: 20%; color: #d7b2ff; --drift-x: 14px; --drift-y: -10px; }
.aud-wordcloud .word-k { top: 42%; left: 75%; color: #ffddad; --drift-x: -11px; --drift-y: 8px; }
.aud-wordcloud .word-l { top: 55%; left: 35%; color: #ffd4e4; --drift-x: 13px; --drift-y: -14px; }
.aud-wordcloud .word-m { top: 18%; left: 60%; color: #7eeaff; --drift-x: -12px; --drift-y: 12px; }
.aud-wordcloud .word-n { top: 62%; left: 78%; color: #bde0ff; --drift-x: -9px; --drift-y: -12px; }
.aud-wordcloud .word-o { top: 30%; left: 52%; color: #ffe7a6; --drift-x: 11px; --drift-y: 12px; }
.aud-wordcloud .word-p { top: 82%; left: 30%; color: #c2f2dd; --drift-x: 13px; --drift-y: -12px; }
.aud-wordcloud .word-q { top: 38%; left: 15%; color: #ffbaf5; --drift-x: -9px; --drift-y: 11px; }
.aud-wordcloud .word-r { top: 54%; left: 70%; color: #9ad0ff; --drift-x: -8px; --drift-y: 12px; }
.aud-wordcloud .word-s { top: 68%; left: 50%; color: #ffe3c1; --drift-x: 11px; --drift-y: -8px; }
.aud-wordcloud .word-t { top: 40%; left: 60%; color: #c6f6ff; --drift-x: 9px; --drift-y: 9px; }

@keyframes wordcloud-drift {
    0% {
        transform: translate(-50%, -50%);
    }
    100% {
        transform: translate(calc(-50% + var(--drift-x)), calc(-50% + var(--drift-y)));
    }
}

.aud-funnel {
    padding: 90px 0;
    background: rgba(4, 8, 20, 0.8);
}

.aud-funnel-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    align-items: center;
}

.aud-funnel-pyramid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 420px;
    margin: 0 auto;
}

.funnel-slice {
    position: relative;
    padding: 6px 24px;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(28, 34, 78, 0.95), rgba(58, 64, 120, 0.9));
    clip-path: polygon(8% 0, 92% 0, 90% 100%, 10% 100%);
}

.funnel-slice div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.funnel-slice span {
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 0.25em;
}

.funnel-slice strong {
    font-size: 1.35rem;
}

.funnel-slice p {
    margin-top: 4px;
    color: var(--muted);
    text-align: center;
    font-size: 0.78rem;
}

.slice-1 {
    clip-path: polygon(0% 0, 100% 0, 95% 100%, 5% 100%);
}

.slice-2 {
    clip-path: polygon(5% 0, 95% 0, 90% 100%, 10% 100%);
}

.slice-3 {
    clip-path: polygon(10% 0, 90% 0, 85% 100%, 15% 100%);
}

.slice-4 {
    clip-path: polygon(15% 0, 85% 0, 80% 100%, 20% 100%);
}

.aud-funnel-notes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--muted);
}

.aud-funnel-notes strong {
    color: var(--text);
    margin-right: 6px;
}

.aud-dashboard {
    padding: 90px 0 120px;
}

.aud-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
}

.aud-meters {
    display: grid;
    gap: 20px;
}

.aud-meters article {
    padding: 22px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    }

.aud-meters header {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 10px;
}

.aud-chart-stack {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto;
}

.chart-layer {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-weight: 600;
    text-align: center;
    padding: 10px;
    border: 4px solid transparent;
    background: transparent;
}

.chart-layer::before {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
}

.chart-layer::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    inset: 0;
    border: 4px solid currentColor;
    mask: conic-gradient(#000 0 var(--progress), transparent var(--progress));
    -webkit-mask: conic-gradient(#000 0 var(--progress), transparent var(--progress));
    color: inherit;
}

.chart-layer span {
    position: absolute;
    top: -30px;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    z-index: 1;
}

.chart-discussion {
    width: 220px;
    height: 220px;
    color: rgba(255, 92, 138, 0.9);
    --progress: 315deg;
}

.chart-sentiment {
    width: 160px;
    height: 160px;
    left: 30px;
    top: 30px;
    color: rgba(123, 125, 255, 0.9);
    --progress: 266deg;
}

.chart-commit {
    width: 100px;
    height: 100px;
    left: 60px;
    top: 60px;
    color: rgba(27, 202, 216, 0.9);
    --progress: 230deg;
}

.chart-center {
    position: absolute;
    width: 80px;
    height: 80px;
    left: 70px;
    top: 70px;
    border-radius: 50%;
    background: rgba(4, 6, 18, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    color: var(--muted);
    font-size: 0.85rem;
}

.aud-meters strong {
    display: block;
    margin-top: 8px;
    font-size: 1.4rem;
}

.aud-resource {
    padding: 26px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
    text-align: left;
}

.aud-resource ul {
    list-style: none;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--muted);
}

.aud-resource strong {
    color: var(--text);
    margin-right: 6px;
}

.rl-contact {
    background: linear-gradient(135deg, rgba(8, 18, 48, 0.95), rgba(6, 6, 12, 0.95));
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    align-items: center;
}

.contact-headline {
    font-size: clamp(2rem, 4vw, 3.2rem);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.contact-card {
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.25);
}

.contact-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-card p {
    color: var(--muted);
}

.rl-footer {
    text-align: center;
    padding: 30px 0 40px;
    color: var(--muted);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .rl-nav {
        display: none;
    }

    .hero-media {
        position: static;
        min-height: auto;
    }

    .hero-stack {
        height: 280px;
    }

    .stack-card {
        width: 140px;
        height: 80px;
        font-size: 0.85rem;
    }

    .hero-card {
        position: relative;
        width: 100%;
        margin-bottom: 25px;
    }

    .hero-badge {
        position: static;
        display: inline-flex;
        margin-top: 10px;
    }

    .hero-stats {
        gap: 20px;
    }
}
.chart-sentiment span {
    top: -25px;
}

.chart-commit span {
    top: -20px;
}

