/* ========================================
   EXODUS — Design System
   Soft Neomorphism + Editorial Typography
   ======================================== */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=IBM+Plex+Sans:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

/* ========================================
   CSS Variables
   ======================================== */
:root {
    /* Colors */
    --bg-primary: #F0EFEB;
    --bg-secondary: #E8E6E1;
    --bg-elevated: #F5F4F0;
    --text-primary: #2D2A26;
    --text-secondary: #6B665E;
    --text-muted: #9B958C;
    --accent: #C4755B;
    --accent-hover: #B5664C;
    --accent-light: rgba(196, 117, 91, 0.12);
    --secondary: #7A8B99;
    --secondary-light: rgba(122, 139, 153, 0.12);
    --border: rgba(45, 42, 38, 0.08);
    --border-strong: rgba(45, 42, 38, 0.15);

    /* Neomorphism shadows */
    --shadow-outset:
        6px 6px 12px rgba(0, 0, 0, 0.08),
        -6px -6px 12px rgba(255, 255, 255, 0.9);
    --shadow-outset-sm:
        3px 3px 6px rgba(0, 0, 0, 0.06),
        -3px -3px 6px rgba(255, 255, 255, 0.8);
    --shadow-inset:
        inset 4px 4px 8px rgba(0, 0, 0, 0.06),
        inset -4px -4px 8px rgba(255, 255, 255, 0.9);
    --shadow-hover:
        8px 8px 16px rgba(0, 0, 0, 0.1),
        -8px -8px 16px rgba(255, 255, 255, 0.95);

    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'IBM Plex Sans', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 10rem;

    /* Layout */
    --container-width: 1200px;
    --container-narrow: 800px;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Subtle texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.3;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    z-index: 9999;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent-hover);
}

ul, ol {
    list-style: none;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    color: var(--text-secondary);
    max-width: 65ch;
}

.text-serif {
    font-family: var(--font-serif);
}

.text-mono {
    font-family: var(--font-mono);
    font-size: 0.9em;
}

.text-muted {
    color: var(--text-muted);
}

.text-accent {
    color: var(--accent);
}

.lead {
    font-size: 1.25rem;
    line-height: 1.8;
    font-weight: 300;
}

/* ========================================
   Layout
   ======================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container--narrow {
    max-width: var(--container-narrow);
}

.section {
    padding: var(--space-2xl) 0;
}

.section--large {
    padding: var(--space-3xl) 0;
}

/* Asymmetric grid */
.grid {
    display: grid;
    gap: var(--space-lg);
}

.grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid--asymmetric {
    grid-template-columns: 1.2fr 0.8fr;
}

.grid--asymmetric-reverse {
    grid-template-columns: 0.8fr 1.2fr;
}

.grid--offset > *:nth-child(even) {
    transform: translateY(var(--space-xl));
}

@media (max-width: 768px) {
    .grid--2, .grid--3, .grid--asymmetric, .grid--asymmetric-reverse {
        grid-template-columns: 1fr;
    }

    .grid--offset > *:nth-child(even) {
        transform: none;
    }
}

/* ========================================
   Header & Navigation
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    background: rgba(240, 239, 235, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

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

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

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

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav__link {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    padding: var(--space-xs) 0;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav__link:hover,
.nav__link--active {
    color: var(--text-primary);
}

.nav__link:hover::after,
.nav__link--active::after {
    width: 100%;
}

.nav__cta {
    margin-left: var(--space-sm);
}

/* Mobile menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

@media (max-width: 900px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: var(--space-3xl) var(--space-lg);
        gap: var(--space-md);
        transition: right 0.3s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }

    .nav.active {
        right: 0;
    }

    .nav__cta {
        margin-left: 0;
        margin-top: var(--space-md);
    }

    .menu-toggle {
        display: flex;
    }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.9rem 2rem;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn--primary {
    background: var(--bg-primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-outset);
}

.btn--primary:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
    color: var(--accent);
}

.btn--primary:active {
    box-shadow: var(--shadow-inset);
    transform: translateY(0);
}

.btn--accent {
    background: var(--accent);
    color: white;
    box-shadow:
        4px 4px 10px rgba(196, 117, 91, 0.3),
        -2px -2px 8px rgba(255, 255, 255, 0.2);
}

.btn--accent:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    color: white;
    box-shadow:
        6px 6px 14px rgba(196, 117, 91, 0.35),
        -3px -3px 10px rgba(255, 255, 255, 0.25);
}

.btn--ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-strong);
}

.btn--ghost:hover {
    background: var(--bg-secondary);
    border-color: var(--accent);
    color: var(--accent);
}

.btn--large {
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
}

.btn--small {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
}

.btn__icon {
    width: 18px;
    height: 18px;
}

/* ========================================
   Cards (Neomorphic)
   ======================================== */
.card {
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-outset);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.card--inset {
    box-shadow: var(--shadow-inset);
}

.card--inset:hover {
    box-shadow: var(--shadow-inset);
    transform: none;
}

.card--elevated {
    background: var(--bg-elevated);
}

.card--bordered {
    box-shadow: none;
    border: 1px solid var(--border);
}

.card--bordered:hover {
    border-color: var(--accent);
    box-shadow: none;
}

.card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    border-radius: var(--border-radius-sm);
    margin-bottom: var(--space-md);
    color: var(--accent);
}

.card__title {
    margin-bottom: var(--space-sm);
}

.card__text {
    font-size: 0.95rem;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero__content {
    max-width: 700px;
}

.hero__label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: var(--space-md);
    padding: var(--space-xs) var(--space-sm);
    background: var(--accent-light);
    border-radius: var(--border-radius-sm);
}

.hero__title {
    margin-bottom: var(--space-md);
}

.hero__title em {
    font-style: italic;
    color: var(--accent);
}

.hero__text {
    font-size: 1.15rem;
    margin-bottom: var(--space-lg);
}

.hero__actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.hero__visual {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    opacity: 0.15;
}

.hero__shape {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(60px);
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: var(--space-2xl);
    }

    .hero__visual {
        display: none;
    }
}

/* ========================================
   Features Section
   ======================================== */
.features {
    position: relative;
}

.features__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.features__header h2 {
    margin-bottom: var(--space-sm);
}

.feature-card {
    padding: var(--space-xl);
}

.feature-card__number {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: var(--space-md);
}

.feature-card__title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

/* ========================================
   Stats Section
   ======================================== */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.stat {
    text-align: center;
    padding: var(--space-lg);
}

.stat__number {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--accent);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

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

@media (max-width: 768px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing-card {
    padding: var(--space-xl);
    text-align: center;
    position: relative;
}

.pricing-card--featured {
    background: var(--bg-elevated);
    border: 2px solid var(--accent);
}

.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 20px;
}

.pricing-card__name {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.pricing-card__price {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1;
}

.pricing-card__price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-card__desc {
    margin: var(--space-md) 0;
    font-size: 0.95rem;
}

.pricing-card__features {
    text-align: left;
    margin: var(--space-lg) 0;
    padding: var(--space-md) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pricing-card__features li {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-card__features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-item {
    border-bottom: 1px solid var(--border);
    padding: var(--space-md) 0;
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
    padding: var(--space-sm) 0;
    transition: color 0.2s ease;
}

.faq-item__question:hover {
    color: var(--accent);
}

.faq-item__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-item__answer {
    max-height: 500px;
    padding-bottom: var(--space-md);
}

.faq-item__answer p {
    padding-top: var(--space-sm);
}

/* ========================================
   CTA Section
   ======================================== */
.cta {
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    box-shadow: var(--shadow-inset);
}

.cta h2 {
    margin-bottom: var(--space-sm);
}

.cta p {
    margin: 0 auto var(--space-lg);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--bg-secondary);
    padding: var(--space-2xl) 0 var(--space-lg);
    margin-top: var(--space-2xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer__brand {
    max-width: 280px;
}

.footer__logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.footer__logo span {
    color: var(--accent);
}

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

.footer__title {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.footer__links li {
    margin-bottom: var(--space-xs);
}

.footer__links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer__links a:hover {
    color: var(--accent);
}

.footer__bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer__copy {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer__legal {
    display: flex;
    gap: var(--space-md);
}

.footer__legal a {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

    .footer__brand {
        grid-column: 1 / -1;
    }
}

/* ========================================
   Download Page
   ======================================== */
.download-card {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
}

.download-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    flex-shrink: 0;
}

.download-card__icon svg {
    width: 32px;
    height: 32px;
    color: var(--text-secondary);
}

.download-card__content {
    flex: 1;
}

.download-card__title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.download-card__meta {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.download-card__action {
    flex-shrink: 0;
}

/* ========================================
   Steps / How It Works
   ======================================== */
.steps {
    counter-reset: step;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
    position: relative;
}

.step::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent);
    padding-top: 0.3rem;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 12px;
    top: calc(var(--space-lg) + 1.5rem);
    bottom: 0;
    width: 1px;
    background: var(--border-strong);
}

.step__content h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

/* ========================================
   Team Grid
   ======================================== */
.team-card {
    text-align: center;
    padding: var(--space-lg);
}

.team-card__photo {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-md);
    border-radius: 50%;
    background: var(--bg-secondary);
    box-shadow: var(--shadow-outset);
    overflow: hidden;
}

.team-card__name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

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

/* ========================================
   Blog Cards
   ======================================== */
.blog-card {
    display: block;
    overflow: hidden;
}

.blog-card__image {
    aspect-ratio: 16/10;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    margin-bottom: var(--space-md);
    overflow: hidden;
}

.blog-card__meta {
    display: flex;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.blog-card__tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent);
    background: var(--accent-light);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.blog-card__title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
    transition: color 0.2s ease;
}

.blog-card:hover .blog-card__title {
    color: var(--accent);
}

.blog-card__excerpt {
    font-size: 0.95rem;
}

/* ========================================
   Contact Form
   ======================================== */
.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-inset);
    transition: all 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: var(--shadow-inset), 0 0 0 3px var(--accent-light);
}

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

/* ========================================
   Page Header (Inner pages)
   ======================================== */
.page-header {
    padding: calc(100px + var(--space-2xl)) 0 var(--space-2xl);
    text-align: center;
}

.page-header__label {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.page-header h1 {
    margin-bottom: var(--space-md);
}

.page-header p {
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ========================================
   Prose Content (Privacy, etc.)
   ======================================== */
.prose {
    max-width: 720px;
    margin: 0 auto;
}

.prose h2 {
    font-size: 1.75rem;
    margin: var(--space-xl) 0 var(--space-md);
}

.prose h3 {
    font-size: 1.35rem;
    margin: var(--space-lg) 0 var(--space-sm);
}

.prose p {
    margin-bottom: var(--space-md);
    max-width: none;
}

.prose ul, .prose ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-md);
}

.prose ul li {
    position: relative;
    padding-left: var(--space-sm);
    margin-bottom: var(--space-xs);
}

.prose ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
}

.prose ol {
    counter-reset: prose-counter;
}

.prose ol li {
    counter-increment: prose-counter;
    padding-left: var(--space-sm);
    margin-bottom: var(--space-xs);
}

.prose ol li::marker {
    font-family: var(--font-mono);
    color: var(--accent);
}

/* ========================================
   Utilities
   ======================================== */
.text-center {
    text-align: center;
}

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================
   Decorative Elements
   ======================================== */
.divider {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: var(--space-md) 0;
}

.divider--center {
    margin-left: auto;
    margin-right: auto;
}

.tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    background: var(--secondary-light);
    color: var(--secondary);
    border-radius: 4px;
}

/* ========================================
   Animations (Subtle)
   ======================================== */
@media (prefers-reduced-motion: no-preference) {
    .fade-in {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }
}
