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

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #0a0a0a;
    color: #e8e8e8;
    line-height: 1.2;
    overflow-x: hidden;
}

.dashboard-body {
    background: radial-gradient(circle at top, #12182a 0%, #0a0a0a 55%);
}

.site-menu {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translate(-50%, -10px);
    display: flex;
    align-items: center;
    background: rgba(15, 15, 15, 0.85);
    border: 1px solid #2a2a2a;
    border-radius: 999px;
    padding: 0.6rem 1.4rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 5;
    backdrop-filter: blur(10px);
}

.site-menu.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.site-menu-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid #2a2a2a;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #cfcfcf;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-menu.is-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-menu.is-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.site-menu.is-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-menu a,
.site-menu button {
    color: #cfcfcf;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
    transition: color 0.3s ease;
}

.site-menu a:hover,
.site-menu button:hover,
.site-menu button.is-active {
    color: #4a9eff;
}

.site-menu-separator {
    width: 1px;
    height: 16px;
    background: #2a2a2a;
    margin: 0 0.25rem;
}

.language-switch {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
    background: radial-gradient(ellipse at top, #1a1a2e 0%, #0a0a0a 50%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    z-index: 0;
    overflow: visible;
}

.hero-bg circle {
    filter: blur(60px);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    background: linear-gradient(90deg,
        #4ade80 0%,
        #3b82f6 25%,
        #06b6d4 50%,
        #3b82f6 75%,
        #4ade80 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #b0b0b0;
    font-weight: 300;
    letter-spacing: 0.01em;
}

/* Section Base */
section {
    padding: 8rem 2rem;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* What I Do Section */
.what-i-do {
    background: #0a0a0a;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid #2a2a2a;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4a9eff, transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.card:hover::before {
    transform: translateX(100%);
}

.card:hover {
    border-color: #3a3a3a;
    transform: translateY(-5px);
}

.card-icon {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

/* Icon-specific motion */
.card:nth-child(1) .card-icon path {
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    animation: lineDraw 5s ease-in-out infinite;
}

.card:nth-child(1) .card-icon circle {
    animation: nodePulse 3.5s ease-in-out infinite;
}

.card:nth-child(2) .card-icon path {
    transform-origin: 30px 30px;
    animation: clockSweep 6s linear infinite;
}

.card:nth-child(3) .card-icon circle {
    animation: nodePulse 3s ease-in-out infinite;
}

.card:nth-child(3) .card-icon line {
    stroke-dasharray: 6 6;
    animation: flowDash 4s linear infinite;
}

.card:nth-child(4) .card-icon rect {
    stroke-dasharray: 160;
    stroke-dashoffset: 0;
    animation: frameTrace 6s ease-in-out infinite;
}

.card:nth-child(4) .card-icon path {
    transform-origin: center;
    animation: aiSmile 4s ease-in-out infinite;
}

@keyframes lineDraw {
    0%, 20% { stroke-dashoffset: 120; }
    50%, 80% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -120; }
}

@keyframes nodePulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.08); opacity: 1; }
}

@keyframes clockSweep {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes flowDash {
    from { stroke-dashoffset: 0; }
    to { stroke-dashoffset: -24; }
}

@keyframes frameTrace {
    0%, 100% { stroke-dashoffset: 0; opacity: 0.8; }
    50% { stroke-dashoffset: 160; opacity: 1; }
}

@keyframes aiSmile {
    0%, 100% { transform: scaleX(1); opacity: 0.8; }
    50% { transform: scaleX(1.08); opacity: 1; }
}

.card-content {
    flex: 1;
}

.card h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.card p {
    color: #b0b0b0;
    line-height: 1.8;
    font-weight: 300;
    font-size: 1.15rem;
}

/* About Section */
.about {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 10rem 2rem;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(74, 158, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(74, 158, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.about-item {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.about-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, transparent, #4a9eff, transparent);
    opacity: 0.5;
}

.about-number {
    font-size: 3.5rem;
    font-weight: 200;
    background: linear-gradient(135deg, #4a9eff, #7aaae8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
}

.about-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #888;
    margin-bottom: 0.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: #b0b0b0;
    font-weight: 300;
}

.about-statement {
    text-align: center;
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 3rem;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid #2a2a2a;
    border-left: 3px solid #4a9eff;
    position: relative;
}

.about-statement::before {
    content: "\"";
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 6rem;
    color: #4a9eff;
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.about-statement p {
    font-size: 1.4rem;
    line-height: 1.9;
    color: #d0d0d0;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.about-statement p:last-child {
    margin-bottom: 0;
}

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-statement {
        padding: 2rem;
    }
}

/* Writing Section */
.writing {
    background: #0a0a0a;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 4rem;
    text-align: center;
    color: #ffffff;
}

.writing-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.writing-header .section-title {
    margin-bottom: 0;
}

.all-articles-link {
    color: #4a9eff;
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
}

.all-articles-link:hover {
    color: #7bb5ff;
}

.essays {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.essay-card {
    background: #0f0f0f;
    border: 1px solid #2a2a2a;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
}

.essay-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 1.5rem;
    border: 1px solid #1f1f1f;
}

.essay-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.essay-card h4 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #ffffff;
}

.essay-card p {
    color: #a0a0a0;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.essay-subtitle {
    color: #7d7d7d;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
}

.essay-card .read-more {
    color: #4a9eff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
}

/* Articles Pages */
.articles-page {
    padding: 10rem 2rem 8rem;
}

.articles-hero {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.articles-hero h1 {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 300;
    margin-bottom: 1rem;
}

.articles-hero p {
    font-size: 1.1rem;
    color: #b0b0b0;
}

.articles-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.article-list-item {
    background: #0f0f0f;
    border: 1px solid #2a2a2a;
    padding: 2.5rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.article-list-item:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.article-link {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2rem;
    text-decoration: none;
    color: inherit;
    align-items: center;
}

.article-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid #1f1f1f;
}

.article-image-placeholder {
    width: 100%;
    height: 160px;
    border-radius: 16px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.article-detail-image {
    width: 100%;
    height: auto;
    border-radius: 22px;
    margin: 1.5rem 0;
    border: 1px solid #1f1f1f;
}

.article-title {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.article-subtitle {
    color: #7d7d7d;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.article-abstract {
    color: #b0b0b0;
    font-weight: 300;
    line-height: 1.7;
}

.article-text {
    display: flex;
    flex-direction: column;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.5rem 0 1rem;
}

.tag-pill {
    border: 1px solid #2a2a2a;
    border-radius: 999px;
    padding: 0.2rem 0.7rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #cfcfcf;
    background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 768px) {
    .article-link {
        grid-template-columns: 1fr;
    }

    .article-image {
        height: 200px;
    }

    .article-image-placeholder {
        height: 200px;
    }
}

.article-page {
    padding: 10rem 2rem 8rem;
}

.article-detail {
    max-width: 1040px;
    margin: 0 auto;
}

.article-detail h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 300;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

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

.article-main {
    min-width: 0;
}

.article-sidebar {
    position: sticky;
    top: 6.5rem;
    align-self: start;
    background: rgba(15, 15, 15, 0.7);
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 1.5rem;
}

.article-sidebar-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    color: #cfcfcf;
    margin-bottom: 1rem;
}

.article-downloads {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.article-downloads a {
    color: #7bb5ff;
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(123, 181, 255, 0.35);
    padding-bottom: 2px;
}

.article-downloads a:hover {
    border-bottom-color: rgba(123, 181, 255, 0.85);
}

.download-form {
    display: grid;
    gap: 0.9rem;
    margin-top: 1rem;
}

.download-form.is-hidden {
    display: none;
}

.download-options {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: grid;
    gap: 0.6rem;
}

.download-option-button {
    width: 100%;
    text-align: left;
    background: rgba(15, 15, 15, 0.7);
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 0.75rem 0.9rem;
    color: #cfcfcf;
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.download-option-button:hover {
    border-color: #4a9eff;
    transform: translateY(-1px);
}

.download-option-button.is-active {
    border-color: #4a9eff;
    color: #4a9eff;
}

.download-form-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #cfcfcf;
}

.download-form-intro {
    font-size: 0.85rem;
    color: #9a9a9a;
    line-height: 1.6;
}

.download-form-selected {
    font-size: 0.8rem;
    color: #b0b0b0;
}

.download-form-field {
    display: grid;
    gap: 0.4rem;
}

.download-form-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #8c8c8c;
}

.download-form input,
.download-form textarea,
.download-form select {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    color: #e6e6e6;
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
}

.download-form textarea {
    resize: vertical;
    min-height: 80px;
}

.download-form-consent {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    font-size: 0.8rem;
    color: #a0a0a0;
    line-height: 1.5;
}

.download-form-consent input {
    margin-top: 0.15rem;
}

.download-form-submit {
    background: #4a9eff;
    color: #0a0a0a;
    border: 0;
    border-radius: 999px;
    padding: 0.65rem 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.download-form-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(74, 158, 255, 0.25);
}

.download-form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.download-form-status {
    font-size: 0.85rem;
    line-height: 1.5;
    min-height: 1.2rem;
}

.download-form-status.is-success {
    color: #8fe0b3;
}

.download-form-status.is-error {
    color: #ff8b8b;
}

.article-detail .article-subtitle {
    margin-bottom: 2rem;
    letter-spacing: 0.25em;
    font-weight: 500;
}

.article-detail .article-abstract {
    font-size: 1.25rem;
    line-height: 1.9;
    margin-bottom: 3rem;
    color: #cfcfcf;
    font-family: "Source Serif 4", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
}

.article-audio {
    margin: 1.5rem 0 2rem;
    background: rgba(15, 15, 15, 0.7);
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 1.25rem;
}

.article-audio-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #8c8c8c;
    margin-bottom: 0.75rem;
}

.article-audio audio {
    width: 100%;
}

.article-body {
    font-family: "Source Serif 4", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
}

.article-body p {
    margin-bottom: 1.8rem;
    color: #d6d6d6;
    font-weight: 300;
    line-height: 2;
    font-size: 1.15rem;
}

.article-body h2,
.article-body h3 {
    margin: 2.5rem 0 1rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.article-body h2 {
    font-size: 1.8rem;
}

.article-body h3 {
    font-size: 1.4rem;
}

.article-body ul {
    margin: 0 0 2rem 1.5rem;
    color: #d6d6d6;
}

.article-body li {
    margin-bottom: 0.75rem;
    line-height: 1.9;
}

.article-body a {
    color: #7bb5ff;
    text-decoration: none;
    border-bottom: 1px solid rgba(123, 181, 255, 0.35);
}

.article-body a:hover {
    border-bottom-color: rgba(123, 181, 255, 0.85);
}

.article-filters {
    max-width: 900px;
    margin: 0 auto 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.article-filters-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #8c8c8c;
}

.article-filters-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag-filter {
    border: 1px solid #2a2a2a;
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #cfcfcf;
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
}

.tag-filter.is-active {
    border-color: #4a9eff;
    color: #4a9eff;
}

.article-back-link {
    display: inline-block;
    margin-bottom: 3rem;
    color: #4a9eff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
}

.article-back-link:hover {
    color: #7bb5ff;
}

/* For Whom Section */
.for-whom {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 8rem 2rem;
}

.for-whom-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.for-whom h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #ffffff;
}

.for-whom ul {
    list-style: none;
    font-size: 1.3rem;
    color: #c0c0c0;
    margin-bottom: 3rem;
}

.for-whom li {
    margin: 1rem 0;
    font-weight: 300;
}

.for-whom li::before {
    content: "•";
    margin-right: 0.8rem;
    color: #4a9eff;
}

.disclaimer {
    font-size: 1.1rem;
    color: #888;
    font-style: italic;
    font-weight: 300;
    margin-top: 2rem;
}

/* Contact Section */
.contact {
    background: #0a0a0a;
    padding: 8rem 2rem;
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact p {
    font-size: 1.4rem;
    color: #c0c0c0;
    font-weight: 300;
    margin-bottom: 1rem;
}

.contact a {
    color: #4a9eff;
    text-decoration: none;
    font-size: 1.3rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.contact a:hover {
    border-bottom-color: #4a9eff;
}

/* Footer */
.site-footer {
    padding: 3.5rem 2rem 5rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, rgba(14, 14, 14, 0.98) 100%);
    border-top: 1px solid #1f1f1f;
}

.footer-text {
    color: #8c8c8c;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* Dashboard */
.dashboard-hero {
    padding: 6rem 2rem 4rem;
    background: radial-gradient(circle at 20% 20%, rgba(74, 158, 255, 0.18), transparent 60%);
}

.dashboard-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.dashboard-kicker {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.75rem;
    color: #7aaae8;
    margin-bottom: 1rem;
}

.dashboard-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 300;
    margin-bottom: 1rem;
}

.dashboard-subtitle {
    color: #b0b0b0;
    max-width: 520px;
}

.dashboard-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.dashboard-link {
    text-decoration: none;
    color: #cfcfcf;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    border: 1px solid #2a2a2a;
    border-radius: 999px;
    padding: 0.6rem 1.2rem;
}

.dashboard-link:hover {
    color: #4a9eff;
    border-color: #4a9eff;
}

.dashboard-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem 5rem;
}

.dashboard-section {
    margin-bottom: 4rem;
}

.dashboard-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.dashboard-section-header h2 {
    font-size: 1.6rem;
    font-weight: 300;
}

.dashboard-status {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #7d7d7d;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.dashboard-card {
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid #2a2a2a;
    border-radius: 18px;
    padding: 1.6rem;
    display: grid;
    gap: 0.6rem;
}

.dashboard-card-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #8c8c8c;
}

.dashboard-card-value {
    font-size: 2rem;
    font-weight: 300;
    color: #ffffff;
}

.dashboard-card-detail {
    color: #7bb5ff;
    font-size: 0.9rem;
}

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

.dashboard-list {
    background: rgba(12, 12, 12, 0.8);
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 1.5rem;
}

.dashboard-list h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    color: #cfcfcf;
}

.dashboard-list-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.7rem;
    font-size: 0.9rem;
    color: #b0b0b0;
}

.dashboard-list-items li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.dashboard-download-row {
    grid-template-columns: 1.4fr 1.4fr 0.8fr;
    align-items: center;
}

.dashboard-download-row span {
    color: #c0c0c0;
}

.dashboard-download-row strong {
    color: #ffffff;
    font-weight: 500;
    text-align: right;
}

.dashboard-list-items strong {
    color: #ffffff;
    font-weight: 500;
}

.dashboard-charts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.dashboard-chart {
    background: rgba(12, 12, 12, 0.8);
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 1.5rem;
}

.dashboard-chart h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #cfcfcf;
    margin-bottom: 1rem;
}

.dashboard-bar-list {
    display: grid;
    gap: 0.8rem;
}

.dashboard-bar-row {
    display: grid;
    grid-template-columns: 120px 1fr 40px;
    gap: 0.8rem;
    align-items: center;
    font-size: 0.85rem;
    color: #b0b0b0;
}

.dashboard-bar {
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.dashboard-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #4a9eff, #4ade80);
}

@media (max-width: 768px) {
    .dashboard-hero {
        padding: 4rem 1.5rem 2.5rem;
    }

    .dashboard-main {
        padding: 0 1.5rem 4rem;
    }

    .dashboard-section-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@media (prefers-reduced-motion: reduce) {
    .card-icon,
    .scroll-indicator,
    .card:nth-child(1) .card-icon path,
    .card:nth-child(1) .card-icon circle,
    .card:nth-child(2) .card-icon path,
    .card:nth-child(3) .card-icon circle,
    .card:nth-child(3) .card-icon line,
    .card:nth-child(4) .card-icon rect,
    .card:nth-child(4) .card-icon path {
        animation: none;
    }
}

@media (max-width: 768px) {
    section { padding: 5rem 1.5rem; }
    .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .card {
        padding: 2rem 1.5rem;
        flex-direction: column;
        gap: 1.5rem;
    }
    .card-icon {
        width: 80px;
        height: 80px;
    }
    .site-menu {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        transform: translateY(12px);
        width: 100%;
        padding: 0.75rem 1.2rem;
        border-radius: 0;
        justify-content: flex-end;
    }
    .site-menu.is-visible {
        transform: translateY(0);
    }
    .site-menu-links {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 64px;
        background: rgba(10, 10, 10, 0.98);
        border-top: 1px solid #2a2a2a;
        padding: 1.5rem 1.2rem 2rem;
        flex-direction: column;
        gap: 1rem;
        opacity: 0;
        pointer-events: none;
        transform: translateY(10px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }
    .site-menu.is-open .site-menu-links {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    .site-menu a,
    .site-menu button {
        font-size: 0.8rem;
    }
    .menu-toggle {
        display: inline-flex;
    }
    .site-menu-separator {
        width: 100%;
        height: 1px;
        margin: 0.75rem 0;
        background: #1f1f1f;
    }
    .language-switch {
        justify-content: center;
    }
    .article-layout {
        grid-template-columns: 1fr;
    }
    .article-sidebar {
        position: static;
        width: 100%;
    }
}
