/* CSS Custom Properties */
:root {
    /* Typography */
    --font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-mono: "SF Mono", Monaco, "Cascadia Code", monospace;
    
    --text-base: 1.125rem;  /* 18px */
    --text-lg: 1.25rem;     /* 20px */
    --text-xl: 1.5rem;      /* 24px */
    --text-2xl: 2rem;       /* 32px */
    --text-3xl: 2.5rem;     /* 40px */
    --text-4xl: 3rem;       /* 48px */
    --text-5xl: 4rem;       /* 64px */
    
    /* Colors - Enhanced palette with gradients */
    --color-text: #0f172a;
    --color-text-muted: #64748b;
    --color-bg: #ffffff;
    --color-bg-subtle: #f8fafc;
    --color-accent: #0f172a;
    --color-accent-blue: #3b82f6;
    --color-accent-purple: #8b5cf6;
    --color-accent-green: #10b981;
    --color-border: #e2e8f0;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-blue: linear-gradient(135deg, #667eea 0%, #3b82f6 100%);
    --gradient-green: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
}

/* CSS Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-base);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
}

main {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
}

/* Responsive Breakpoints */
/* Mobile: 320px (base) */
/* Tablet: 768px */
@media (min-width: 768px) {
    /* Tablet styles will be added per section */
}

/* Desktop: 1024px */
@media (min-width: 1024px) {
    /* Desktop styles will be added per section */
}

/* Phase 3: User Story 1 Styles */
/* Headline Section */
#headline-section {
    padding: 3rem 1.5rem 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

/* Animated gradient background */
#headline-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

#headline-section h1 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto 1rem;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subheadline {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    max-width: 650px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.cta-button-hero {
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.urgency-text {
    font-size: 0.9375rem;
    color: #fef3c7;
    font-weight: 500;
    margin: 0;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

@media (min-width: 768px) {
    #headline-section {
        padding: 4rem 2rem 3rem;
    }
    
    #headline-section h1 {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .subheadline {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 1024px) {
    #headline-section {
        padding: 5rem 2rem 4rem;
    }
    
    #headline-section h1 {
        font-size: 3.5rem;
        max-width: 900px;
    }
}

/* Social Proof Strip */
/* .social-proof-strip {
    padding: 1rem 1.5rem;
    background-color: var(--color-bg-subtle);
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.social-proof-strip p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

@media (min-width: 768px) {
    .social-proof-strip p {
        font-size: 0.9375rem;
    }
} */

/* Hero Testimonial Section */
.hero-testimonial-section {
    padding: 3rem 0;
    background-color: var(--color-bg-subtle);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

.testimonial-carousel {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding-bottom: 1rem;
}

.testimonial-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.hero-testimonial {
    min-width: 100%;
    max-width: 800px;
    flex-shrink: 0;
    scroll-snap-align: start;
    padding: 2rem;
    background-color: var(--color-bg);
    border-left: 3px solid transparent;
    background-image: linear-gradient(white, white), var(--gradient-purple);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-testimonial:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.hero-testimonial__text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 1rem;
    font-style: italic;
}

.hero-testimonial__author {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dot:hover {
    border-color: #94a3b8;
    transform: scale(1.2);
}

.testimonial-dot.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
}

/* Mobile testimonial adjustments */
@media (max-width: 767px) {
    .hero-testimonial {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .hero-testimonial__text {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    .hero-testimonial__author {
        font-size: 0.875rem;
    }
}

@media (min-width: 768px) {
    .hero-testimonial-section {
        padding: 4rem 0;
    }
    
    .testimonial-carousel {
        padding: 0 2rem;
    }
    
    .testimonial-track {
        gap: 2rem;
    }
    
    .hero-testimonial {
        min-width: calc(50% - 1rem);
        max-width: calc(50% - 1rem);
        padding: 2.5rem;
    }
    
    .hero-testimonial__text {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .testimonial-track {
        gap: 2rem;
    }
    
    .hero-testimonial {
        min-width: calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
}

/* Value Section */
.value-section {
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
}

.value-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-text);
    font-weight: 700;
}

.value-subtext {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.value-cta {
    display: inline-block;
}

@media (min-width: 768px) {
    .value-section {
        padding: 5rem 2rem;
    }
    
    .value-section h2 {
        font-size: 2.5rem;
    }
    
    .value-subtext {
        font-size: 1.25rem;
    }
}

/* Structure Section */
.structure-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.structure-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-text);
    font-weight: 700;
}

.structure-container {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.structure-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.structure-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.structure-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
}

.structure-item h3 {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

.structure-item p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin: 0;
}

@media (min-width: 768px) {
    .structure-section {
        padding: 6rem 2rem;
    }
    
    .structure-section h2 {
        font-size: 2.5rem;
    }
    
    .structure-item h3 {
        font-size: 1.75rem;
    }
    
    .structure-item p {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .structure-container {
        flex-direction: row;
        gap: 3rem;
    }
    
    .structure-item {
        flex: 1;
    }
}


/* Guide Section */
.guide-section {
    background-color: white;
    padding: 4rem 1.5rem;
    text-align: center;
}

.guide-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.guide-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.guide-section .cta-button {
    margin: 0 auto;
}

/* Problem and Solution Sections */
/* Problem/Solution Section */
.problem-solution-wrapper {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 5rem 1.5rem;
}

.problem-solution-container {
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out;
}

/* Mobile: Stack sections vertically */
.problem-section,
.solution-section {
    margin-bottom: 3rem;
}

.solution-section {
    margin-bottom: 0;
}

.problem-header,
.solution-header {
    font-size: var(--text-2xl);
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 2rem 0;
    color: var(--color-text);
    letter-spacing: -0.02em;
    position: relative;
    text-align: center;
    padding-bottom: 1rem;
}

.problem-header::after,
.solution-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-purple);
    border-radius: 2px;
}

.problem-items,
.solution-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.problem-item,
.solution-item {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    padding: 1.5rem;
    margin-bottom: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.problem-item:hover,
.solution-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.1);
    background: rgba(255, 255, 255, 1);
}

.problem-item strong,
.solution-item strong {
    color: var(--color-text);
    font-weight: 600;
}

/* Tablet */
@media (min-width: 768px) {
    .problem-solution-wrapper {
        padding: 6rem 2rem;
    }
    
    .problem-header,
    .solution-header {
        font-size: var(--text-3xl);
        text-align: left;
    }
    
    .problem-header::after,
    .solution-header::after {
        left: 0;
        transform: none;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .problem-solution-wrapper {
        padding: 7rem 2rem;
    }
    
    .problem-solution-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }
    
    .problem-section,
    .solution-section {
        margin-bottom: 0;
    }
    
    .problem-items,
    .solution-items {
        gap: 1.25rem;
    }
    
    .problem-item,
    .solution-item {
        min-height: 130px;
    }
}

/* Phase 4: User Story 2 Styles - Proof Section */
.proof-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: none;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.proof-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

.proof-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.proof-section h2 {
    font-size: var(--text-2xl);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--color-text);
    text-align: center;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.proof-section > p {
    font-size: var(--text-base);
    line-height: 1.7;
    margin-bottom: 3.5rem;
    color: var(--color-text-muted);
    text-align: center;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.metric {
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    text-align: center;
    border-bottom: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    position: relative;
}

.metric:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(102, 126, 234, 0.15);
    background: rgba(255, 255, 255, 1);
}

.metric:last-child {
    border-bottom: none;
}

.metric__value {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.metric__label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric__context {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
    font-style: italic;
}

/* Testimonials */
.testimonial-section {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial {
    padding: 2rem;
    background-color: var(--color-bg-subtle);
    border-left: 3px solid var(--color-accent);
}

.testimonial__text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial__author {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin: 0;
}

@media (min-width: 768px) {
    .proof-section {
        padding: 6rem 2rem;
    }
    
    .proof-section h2 {
        font-size: var(--text-3xl);
    }
    
    .metrics-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }
    
    .metric {
        border-bottom: none;
        border-right: 1px solid var(--color-border);
        padding: 3rem 2rem;
    }
    
    .metric:last-child {
        border-right: none;
    }
    
    .metric__value {
        font-size: 4rem;
    }
    
    .testimonial-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .proof-section {
        padding: 7rem 2rem;
    }
    
    .metric__value {
        font-size: 4.5rem;
    }
}

/* Phase 5: User Story 3 Styles - CTA Button and Error Modal */
.cta-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(100, 116, 139, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.cta-heading {
    font-size: var(--text-2xl);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--color-text);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.cta-subtext {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-base);
    color: #ffffff;
    background: var(--gradient-blue);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
    line-height: 1.5;
    letter-spacing: -0.01em;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(102, 126, 234, 0.4);
}

.cta-button:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.guarantee-text {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .cta-section {
        padding: 6rem 2rem;
    }
    
    .cta-heading {
        font-size: var(--text-3xl);
    }
    
    .cta-button {
        padding: 1.125rem 2.5rem;
        font-size: 1.0625rem;
    }
    
    .guide-section {
        padding: 5rem 2rem;
    }
    
    .guide-heading {
        font-size: 2.5rem;
    }
    
    .guide-text {
        font-size: 1.1875rem;
    }
}

@media (min-width: 1024px) {
    .cta-section {
        padding: 7rem 2rem;
    }
    
    .guide-section {
        padding: 6rem 2rem;
    }
}

/* Error Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.visible {
    opacity: 1;
    pointer-events: auto;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal__content {
    position: relative;
    max-width: 500px;
    width: 90%;
    padding: 2rem;
    background-color: var(--color-bg);
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    z-index: 1001;
}

.modal__content h2 {
    font-size: var(--text-2xl);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.modal__content p {
    font-size: var(--text-base);
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.contact-info {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: var(--color-bg-alt);
    border-radius: 0.375rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info a {
    color: var(--color-accent);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.modal__close {
    padding: 0.75rem 1.5rem;
    font-size: var(--text-base);
    font-weight: 500;
    font-family: var(--font-base);
    color: var(--color-text);
    background-color: var(--color-bg-alt);
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.modal__close:hover {
    background-color: #e5e7eb;
}

.modal__close:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* Phase 6: Footer Styles */
.footer {
    padding: 3rem 1.5rem 2rem;
    background-color: var(--color-bg);
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer nav {
    margin-bottom: 0.75rem;
}

.footer a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.15s ease;
    display: inline-block;
    margin: 0 0.5rem;
}

.footer a:not(:last-child)::after {
    content: '•';
    margin-left: 1rem;
    color: var(--color-text-muted);
    display: inline-block;
}

.footer a:hover {
    color: var(--color-text);
}

.footer p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
}
