/* =================================
   Agentist - Main Stylesheet
   Purveyors of Fine Agentic Apps
   ================================= */

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@300;400;500;600;700&family=Manrope:wght@300;400;500;600;700&display=swap');

/* Custom Properties */
:root {
    --bg-base: #12100e;
    /* Deep, warm charcoal almost black */
    --bg-surface: #1a1816;
    /* Slightly lighter for cards */
    --bg-elevated: #24221f;
    /* Card hovers */

    --text-main: #f0e9e1;
    /* Soft cream/off-white */
    --text-mid: #cfc7ad;
    /* Warm grey for secondary text */
    --text-muted: #a8a096;
    /* Warm grey for secondary text */

    --accent-primary: #d67a58;
    /* Terracotta - human warmth */
    --accent-primary-hover: #eb8c67;
    --accent-secondary: #c2a67e;
    /* Soft gold/sand */
    --accent-tertiary: #5c6b61;
    /* Sage green hint */

    --glass-bg: rgba(26, 24, 22, 0.45);
    --glass-border: rgba(240, 233, 225, 0.08);

    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(214, 122, 88, 0.1);

    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    background-color: #080808;
    /* Darker back-bg for footer reveal */
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Noise overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Dosis", sans-serif;
    color: var(--text-main);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    /* letter-spacing: 0em; */
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 500;
    margin-bottom: 1.2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

h4 {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 300;
}

strong {
    font-weight: 600;
    color: var(--text-main);
}

ul {
    list-style-position: inside;
    padding-bottom: 1rem;
}

pre {
    padding: 2rem;
    margin: 2rem 0;
}

.highlight-text {
    color: var(--accent-primary);
    font-weight: 500;
}

/* Layout Utilities */
.site-main {
    background-color: var(--bg-base);
    min-height: 100vh;
    position: relative;
    z-index: 2;
    border-bottom-left-radius: var(--radius-xl);
    border-bottom-right-radius: var(--radius-xl);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9);
    padding-bottom: 4rem;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Smooth fade in util */
.animate-in {
    opacity: 0;
    animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

nav.scrolled {
    padding: 1rem 0;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: "Dosis", sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.logo span {
    color: var(--accent-primary);
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 400;
    font-family: "Dosis", sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent-primary);
}

.nav-links li a.active {
    opacity: 1;
    font-weight: 500;
    color: var(--accent-primary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    background-color: var(--accent-primary);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-family: inherit;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--accent-primary);
    color: var(--bg-base);
}

.btn-primary:hover {
    background: var(--accent-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(214, 122, 88, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--accent-primary);
    border: 1px solid var(--accent-primary);
}

.btn-outline:hover {
    background: rgba(214, 122, 88, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 150px;
    padding-bottom: 8rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(214, 122, 88, 0.15), transparent 60%),
        radial-gradient(circle at bottom left, rgba(194, 166, 126, 0.1), rgba(18, 16, 14, 1) 80%);
}

.hero-content {
    position: relative;
    width: 100%;
}

.tagline {
    font-family: "Dosis", sans-serif;
    color: var(--accent-secondary);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.hero h2 {
    text-align: left;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--text-main);
    opacity: 0.9;
    font-weight: 300;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 1000px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero-action {
    display: flex;
}

.value-props {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .value-props {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.value-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    background: var(--bg-elevated);
    border-color: rgba(214, 122, 88, 0.2);
}

.value-card h3 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.3rem;
}

/* Sections */
section {
    padding: 7rem 0;
    position: relative;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.25rem;
}

.section-tag {
    display: block;
    text-align: center;
    font-family: "Dosis", sans-serif;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Solutions Section */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: var(--bg-surface);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.solution-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    box-shadow: inset 0 0 0 1px rgba(214, 122, 88, 0);
    border-radius: var(--radius-md);
    transition: var(--transition);
    pointer-events: none;
}

.solution-card:hover {
    transform: translateY(-4px);
    background: var(--bg-elevated);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.solution-card:hover::after {
    box-shadow: inset 0 0 0 1px rgba(214, 122, 88, 0.4);
}

.solution-icon {
    width: 64px;
    height: 64px;
    background: rgba(214, 122, 88, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
}

.solution-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

/* Approach Section */
.approach-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.approach-img-wrapper {
    position: sticky;
    top: 120px;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 600px;
}

.approach-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
    transition: var(--transition-slow);
}

.approach-img-wrapper:hover .approach-img {
    filter: brightness(0.9) contrast(1.1) scale(1.03);
}

.approach-timeline {
    position: relative;
    padding-left: 2rem;
}

.approach-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--accent-primary), rgba(214, 122, 88, 0.1));
}

.timeline-item {
    position: relative;
    margin-bottom: 3.5rem;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 0.3rem;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(214, 122, 88, 0.2);
    transform: translateX(-50%);
}

.timeline-content h3 {
    color: var(--text-main);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

/* Start Options */
.start-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.start-card {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 3.5rem 2.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.start-card:hover {
    background: var(--bg-elevated);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.start-card.recommended {
    border-color: rgba(214, 122, 88, 0.4);
    background: linear-gradient(180deg, var(--bg-surface) 0%, rgba(214, 122, 88, 0.05) 100%);
}

.start-card.recommended::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-primary);
    color: var(--bg-base);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-family: var(--font-heading);
}

.start-features {
    text-align: left;
    margin: 2rem 0;
    list-style: none;
    flex-grow: 1;
}

.start-features li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.start-features li::before {
    content: '→';
    color: var(--accent-primary);
}

/* Resources */
.resources-hero {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 4rem;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resources-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
}

.resources-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(18, 16, 14, 0.9), rgba(18, 16, 14, 0.4));
    z-index: 2;
}

.resources-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 600px;
}

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

.resource-link {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2rem;
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    text-decoration: none;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.resource-link:hover {
    background: var(--bg-elevated);
    border-color: var(--accent-primary);
    transform: translateX(5px);
}

.resource-link .icon {
    color: var(--accent-secondary);
}

.resource-link strong {
    display: block;
    color: var(--text-main);
    font-family: "Dosis", sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

.resource-link p {
    margin: 0;
    font-size: 0.95rem;
}

/* Contact */
.contact-form {
    max-width: 650px;
    margin: 0 auto;
    background: var(--bg-surface);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 4px rgba(214, 122, 88, 0.1);
}

/* Accordion Form & Project Grid */
.form-accordion {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    background: rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: var(--transition);
}

.form-accordion[open] {
    background: rgba(0, 0, 0, 0.4);
    border-color: var(--accent-primary);
}

.form-accordion summary {
    padding: 1.25rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-main);
    cursor: pointer;
    list-style: none;
    /* remove default arrow in some browsers */
    position: relative;
    user-select: none;
}

.form-accordion summary::after {
    content: '+';
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-primary);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.form-accordion[open] summary::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.form-accordion summary::-webkit-details-marker {
    display: none;
}

.accordion-content {
    padding: 0 1.25rem 1.25rem;
    animation: fadeInDown 0.3s ease-in-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
}

.project-btn {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    padding: 1.5rem 1rem;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.project-btn:hover {
    border-color: var(--accent-secondary);
    color: var(--text-main);
    background: var(--bg-elevated);
}

.project-btn.selected {
    border-color: var(--accent-primary);
    background: rgba(214, 122, 88, 0.1);
    color: var(--text-main);
}

/* Footer - Reveal Effect Setup */
.reveal-footer {
    position: sticky;
    bottom: 0;
    z-index: 1;
    background-color: #080808;
    color: var(--text-muted);
    padding: 6rem 2rem 4rem;
    box-shadow: inset 0 20px 40px rgba(0, 0, 0, 0.8);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    font-family: "Dosis", sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-main);
}

.footer-logo span {
    color: var(--accent-primary);
}

.footer-divider {
    width: 60px;
    height: 2px;
    background: var(--accent-primary);
    margin: 0 auto;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    margin-top: 2rem;
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Animations */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Article Layout Styles */
.article-header {
    padding: 24px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 16px;
}

.article-header a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
}

.article-header a.back-link {
    color: var(--accent-primary);
}

.article-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
    min-height: 80vh;
}

.article-container {
    background: var(--bg-surface);
    border: 1px solid #24221f;
    border-radius: 12px;
    padding: 48px;
}

.article-meta {
    color: var(--text-muted);
    text-align: center;
    font-size: 14px;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.article-content img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 24px 0;
    display: block;
    object-fit: contain;
}

.article-content {
    line-height: 1.8;
    font-size: 16px;
    color: #cfc7ad;
}

.article-container img {
    margin: 3.5rem 0;
}

.article-container p {
    color: var(--text-mid);
}

.article-container h1 {
    font-size: 3rem;
    color: var(--text-main);
    margin-bottom: 1.75rem;
    text-align: center;
}

.article-container h2 {
    font-size: 2.25rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.article-container h3 {
    font-size: 1.75rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.article-container h4 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

/* Resources Page Styles */
.resources-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 60px;
}

.resources-title {
    font-family: 'Dosis', sans-serif;
    font-size: 48px;
    color: var(--text-main);
    margin-bottom: 40px;
    text-align: center;
}

.resources-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.resource-card {
    text-decoration: none;
}

.resource-card article {
    background: var(--bg-surface);
    border: 1px solid #24221f;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s;
}

.resource-card:hover article {
    border-color: rgba(214, 122, 88, 0.3);
    transform: translateY(-2px);
}

.resource-card h2 {
    font-family: 'Dosis', sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--text-main);
    margin-bottom: 2rem;
}

.resource-card .resource-description {
    color: #cfc7ad;
    text-align: center;
    font-weight: 400;
    /* font-size: 15px; */
    line-height: 1.6;
    margin-bottom: 2rem;
}

.resource-card .resource-meta {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .approach-layout {
        grid-template-columns: 1fr;
    }

    .approach-img-wrapper {
        height: 300px;
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .site-main {
        border-radius: 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    .hero {
        padding-top: 120px;
    }

    pre {
        padding: 1rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--glass-bg);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--glass-border);
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .start-options {
        grid-template-columns: 1fr;
    }

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

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .article-container {
        padding: 32px 20px;
    }

    .article-container h1 {
        font-size: 36px;
    }

    .resources-title {
        font-size: 36px;
    }
}