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

:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --bg-color: #0f172a;
    --surface-color: #1e293b;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --border-color: #334155;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
    flex: 1;
}

header {
    margin-bottom: 3rem;
    text-align: center;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

main {
    flex: 1;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--primary-color));
    opacity: 0.8;
    animation: rotate 8s linear infinite;
    z-index: 0;
    mask: radial-gradient(circle at center, transparent calc(50% - 3px), white calc(50% - 3px), white calc(50% + 3px), transparent calc(50% + 3px));
    -webkit-mask: radial-gradient(circle at center, transparent calc(50% - 3px), white calc(50% - 3px), white calc(50% + 3px), transparent calc(50% + 3px));
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.2;
    filter: blur(20px);
    z-index: -1;
    animation: pulse-glow 3s ease-in-out infinite;
}

.hero-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
    border: 4px solid var(--surface-color);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3), 0 0 0 1px rgba(99, 102, 241, 0.1);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.05);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.1);
    }
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-decoration {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gradient);
    animation: pulse 2s ease-in-out infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.info-section,
.instructions-section,
.onboarding-section {
    margin-bottom: 3rem;
}

.info-card,
.instructions-card,
.onboarding-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover,
.instructions-card:hover,
.onboarding-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.info-card h3,
.instructions-card h3,
.onboarding-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card h3::before,
.instructions-card h3::before,
.onboarding-card h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--gradient);
    border-radius: 2px;
}

.info-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.instructions-content {
    /* Content-based height */
}

.placeholder-text {
    color: var(--text-secondary);
    font-style: italic;
    opacity: 0.7;
}

/* Onboarding Section Styles */
.onboarding-subsection {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.onboarding-subsection:nth-child(1) { animation-delay: 0.1s; }
.onboarding-subsection:nth-child(2) { animation-delay: 0.2s; }
.onboarding-subsection:nth-child(3) { animation-delay: 0.3s; }
.onboarding-subsection:nth-child(4) { animation-delay: 0.4s; }
.onboarding-subsection:nth-child(5) { animation-delay: 0.5s; }

.onboarding-subsection:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

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

.onboarding-subsection h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.onboarding-subsection h4::before {
    content: '';
    width: 3px;
    height: 20px;
    background: var(--gradient);
    border-radius: 2px;
}

.onboarding-subsection h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    margin-top: 1.5rem;
}

.onboarding-subsection h5:first-of-type {
    margin-top: 0;
}

.question {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
    border-left: 4px solid var(--primary-color);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.question::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.question:hover::before {
    left: 100%;
}

.question:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 12px rgba(99, 102, 241, 0.2);
}

.answer {
    color: var(--text-secondary);
    line-height: 1.8;
}

.answer ul {
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.answer li {
    margin-bottom: 0.75rem;
}

.recommendations-list {
    list-style: none;
    padding-left: 0;
}

.recommendations-list li {
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    color: var(--text-secondary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.1);
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.5s ease forwards;
}

.recommendations-list li:nth-child(1) { animation-delay: 0.1s; }
.recommendations-list li:nth-child(2) { animation-delay: 0.2s; }

.recommendations-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
    transition: left 0.5s ease;
}

.recommendations-list li:hover::before {
    left: 100%;
}

.recommendations-list li:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(99, 102, 241, 0.15));
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.recommendations-list a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.recommendations-list a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.resource-category {
    margin-bottom: 2rem;
}

.category-note {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(99, 102, 241, 0.1));
    border-left: 4px solid var(--accent-color);
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(236, 72, 153, 0.15);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 4px 8px rgba(236, 72, 153, 0.15);
    }
    to {
        box-shadow: 0 4px 16px rgba(236, 72, 153, 0.3);
    }
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.resource-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(99, 102, 241, 0.1);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
}

.resource-card.animate-in {
    animation: cardPopIn 0.5s ease forwards;
}

.resource-card:nth-child(1).animate-in { animation-delay: 0.1s; }
.resource-card:nth-child(2).animate-in { animation-delay: 0.15s; }
.resource-card:nth-child(3).animate-in { animation-delay: 0.2s; }
.resource-card:nth-child(4).animate-in { animation-delay: 0.25s; }
.resource-card:nth-child(5).animate-in { animation-delay: 0.3s; }
.resource-card:nth-child(6).animate-in { animation-delay: 0.35s; }

.resource-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.resource-card:hover::before {
    opacity: 1;
}

.resource-card:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 24px rgba(99, 102, 241, 0.3);
}

@keyframes cardPopIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.resource-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.resource-platform {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.25));
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.4);
    box-shadow: 0 2px 4px rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.resource-card:hover .resource-platform {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), rgba(139, 92, 246, 0.35));
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(99, 102, 241, 0.3);
}

.resource-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    flex: 1;
    text-align: right;
    position: relative;
    z-index: 1;
    display: inline-block;
}

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

.resource-link:hover {
    color: var(--accent-color);
    transform: translateX(-4px);
}

.resource-link:hover::after {
    width: 100%;
}

.resource-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.75rem;
    font-style: italic;
    padding-left: 0.5rem;
    border-left: 2px solid rgba(99, 102, 241, 0.3);
}

.phase-intro {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(99, 102, 241, 0.1));
    border-radius: 16px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.phase-intro:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 16px rgba(139, 92, 246, 0.3);
}

.phase-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.phase-item {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(139, 92, 246, 0.08));
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(99, 102, 241, 0.15);
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInPhase 0.6s ease forwards;
}

.phase-item:nth-child(1) { animation-delay: 0.1s; }
.phase-item:nth-child(3) { animation-delay: 0.2s; }
.phase-item:nth-child(5) { animation-delay: 0.3s; }
.phase-item:nth-child(7) { animation-delay: 0.4s; }
.phase-item:nth-child(9) { animation-delay: 0.5s; }

.phase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
    transition: left 0.6s ease;
}

.phase-item:hover::before {
    left: 100%;
}

.phase-item:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.15));
    border-color: rgba(99, 102, 241, 0.6);
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

@keyframes slideInPhase {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.phase-item.phase-final {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(139, 92, 246, 0.15));
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.25);
}

.phase-item.phase-final:hover {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(139, 92, 246, 0.2));
    border-color: rgba(236, 72, 153, 0.7);
    box-shadow: 0 8px 28px rgba(236, 72, 153, 0.5);
    transform: translateX(8px) scale(1.03);
}

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

.phase-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.phase-split {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
}

.phase-item.phase-final .phase-split {
    color: var(--accent-color);
    background: rgba(236, 72, 153, 0.2);
    border-color: var(--accent-color);
}

.phase-content {
    color: var(--text-secondary);
    line-height: 1.8;
}

.phase-content p {
    margin: 0;
}

.phase-arrow {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin: -0.5rem 0;
    opacity: 0;
    font-weight: bold;
    animation: arrowFadeIn 0.5s ease forwards;
    position: relative;
}

.phase-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2), transparent);
    animation: pulse 2s ease-in-out infinite;
}

.phase-arrow:nth-child(2) { animation-delay: 0.15s; }
.phase-arrow:nth-child(4) { animation-delay: 0.25s; }
.phase-arrow:nth-child(6) { animation-delay: 0.35s; }
.phase-arrow:nth-child(8) { animation-delay: 0.45s; }

@keyframes arrowFadeIn {
    to {
        opacity: 0.7;
    }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Workflow Styles */
.workflow {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.workflow-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.workflow-step:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateX(4px);
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.step-action {
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 0.75rem;
    padding-left: 1rem;
    border-left: 3px solid var(--primary-color);
}

.step-output {
    color: var(--accent-color);
    font-weight: 500;
    margin-top: 0.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--accent-color);
}

.step-note {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 0.5rem;
    padding-left: 1rem;
}

.workflow-arrow {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin: -0.5rem 0;
    opacity: 0.6;
}

.bug-formats {
    margin: 1rem 0;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.bug-formats li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

code {
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary-color);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.quick-reference {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.quick-reference h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

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

.reference-item {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.reference-item:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-2px);
}

.reference-item strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.reference-item code {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    word-break: break-all;
}

.common-requests {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.common-requests h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.common-requests ul {
    list-style: none;
    padding-left: 0;
}

.common-requests li {
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    color: var(--text-secondary);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.common-requests li:hover {
    background: rgba(236, 72, 153, 0.15);
    border-color: rgba(236, 72, 153, 0.4);
    transform: translateX(4px);
}

footer {
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .info-card,
    .instructions-card,
    .onboarding-card {
        padding: 1.5rem;
    }

    .onboarding-subsection {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .onboarding-subsection h4 {
        font-size: 1.1rem;
    }

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

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

    .resource-link {
        text-align: left;
        margin-top: 0.5rem;
    }

    .phase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .phase-split {
        font-size: 1.25rem;
        padding: 0.4rem 0.8rem;
    }

    .phase-item {
        padding: 1.25rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-image {
        width: 150px;
        height: 150px;
    }

    .hero-image-wrapper {
        margin-bottom: 1.5rem;
    }

    .workflow-step {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .workflow-arrow {
        font-size: 1.5rem;
        margin: -0.25rem 0;
    }

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

    .step-content h4 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.95rem;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--primary-color);
    color: white;
}

