/* VibeServerOps - Google-style Design System */

/* CSS Variables */
:root {
    --bg: #FFFFFF;
    --surface: #F8F9FA;
    --primary: #1A73E8;
    --primary-hover: #1557B0;
    --text-primary: #202124;
    --text-secondary: #5F6368;
    --success: #34A853;
    --border: #DADCE0;
    --radius: 16px;
    --radius-sm: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-lg: 0 4px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
}

/* Shader Background */
.shader-bg {
    position: fixed;
    top: -30%;
    left: 70%;
    transform: translateX(-50%);
    width: 85vw;
    height: 85vw;
    max-width: 890px;
    max-height: 890px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.35;
}

.shader-bg canvas {
    width: 100% !important;
    height: 100% !important;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Google Sans Text', 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Google Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.125rem;
}

p {
    margin: 0 0 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

code {
    font-family: 'SF Mono', 'Roboto Mono', monospace;
    font-size: 0.875em;
    background: var(--surface);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Header */
.header {
    padding: 1rem 0 0;
    text-align: center;
}

/* AI Headline Animation */
.ai-headline {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.3rem;
    font-weight: 500;
    color: #E65C00; /* Bright burnt orange */
    min-width: 420px;
}

.ai-icon {
    display: inline;
    transition: transform 0.25s ease;
    margin-right: 0.35rem;
}

/* Reserve space for longest phrase - prevent content shift */
.typed-text {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    white-space: nowrap;
    display: inline;
}

/* Blinking cursor effect */
.typed-text::after {
    content: '|';
    font-weight: 300;
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Site Title */
.site-title {
    font-family: 'Google Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #4169E1;
    margin: 0;
}

/* Legacy styles kept for compatibility */
.logo {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Hero */
.hero {
    padding: 2rem 0 3rem;
    text-align: center;
}

.hero h2 {
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto;
}

/* Step Sections */
.step {
    padding: 1.5rem 0;
}

.step-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
}

.step-number {
    display: inline-block;
    font-family: 'Google Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    background: rgba(26, 115, 232, 0.1);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.step-card h3 {
    margin-bottom: 0.5rem;
}

/* Optional step badge */
.step-optional-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #E65C00;
    background: rgba(230, 92, 0, 0.1);
    padding: 2px 8px;
    border-radius: 100px;
    margin-left: 6px;
    vertical-align: middle;
}

/* Dark mode step card */
.step-card-dark {
    background: #0a0a0a;
    border-color: #333;
    color: #ffffff;
    overflow: hidden;
}

.step-card-dark h3 {
    color: #ffffff;
}

.step-card-dark p {
    color: #ffffff;
}

.step-card-dark .step-subhead {
    color: #b0b0b0;
}

.step-number-dark {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.step-optional-badge-dark {
    color: #FF9D00;
    background: rgba(255, 157, 0, 0.2);
}

.step-optional-pill {
    display: inline-block;
    font-family: 'Google Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    background: #E65C00;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.step-card-shader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.4;
    pointer-events: none;
}

.step-card-shader canvas {
    width: 100% !important;
    height: 100% !important;
}

.step-card-dark > *:not(.step-card-shader) {
    position: relative;
    z-index: 1;
}

.tips-box-dark {
    background: rgba(255, 255, 255, 0.05);
}

.tips-box-dark h4 {
    color: #FF9D00;
}

.tips-box-dark ul {
    color: #a0a0a0;
}

.tips-box-dark li {
    color: #b0b0b0;
}

.tips-box-dark li::before {
    color: #666;
}

.tips-box-yolo {
    background: rgba(0, 0, 0, 0.9);
}

.tips-box-yolo h4 {
    color: #FF9D00;
}

.tips-box-yolo ul {
    color: #a0a0a0;
}

.tips-box-yolo li {
    color: #b0b0b0;
}

.tips-box-yolo li::before {
    color: #666;
}

.step-subhead {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Screenshot Zone */
.screenshot-zone {
    border: 2px dashed var(--border);
    border-radius: var(--radius-sm);
    padding: 3rem 1rem;
    text-align: center;
    margin: 1.5rem 0;
    background: var(--surface);
}

.screenshot-zone span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Custom AOS pop animation with tilt and overshoot */
[data-aos="pop-snap"] {
    opacity: 0;
    transform: scale(0.7) rotate(-3deg) translateY(30px);
    transition-property: opacity, transform;
}

[data-aos="pop-snap"].aos-animate {
    opacity: 1;
    transform: scale(1) rotate(0) translateY(0);
    animation: popSnap 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes popSnap {
    0% {
        opacity: 0;
        transform: scale(0.7) rotate(-3deg) translateY(30px);
    }
    60% {
        opacity: 1;
        transform: scale(1.05) rotate(1deg) translateY(-5px);
    }
    80% {
        transform: scale(0.98) rotate(-0.5deg) translateY(2px);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0) translateY(0);
    }
}

/* SSH Mockup */
.ssh-mockup {
    position: relative;
    background: #1a1a1a;
    border-radius: var(--radius);
    padding: 1.25rem;
    margin: 1.5rem 0;
    font-family: 'IBM Plex Mono', monospace;
    overflow: hidden;
}

.demo-banner {
    position: absolute;
    top: 22px;
    right: -45px;
    background: #39FF14;
    color: #000;
    font-family: 'Google Sans Flex', 'Google Sans', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 45px;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(57, 255, 20, 0.4);
}

.ssh-mockup-header {
    font-size: 0.875rem;
    font-weight: 500;
    color: #888;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #333;
}

.ssh-mockup-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.ssh-mockup-field {
    margin-bottom: 0;
}

.ssh-mockup-field label {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.ssh-mockup-field label .material-symbols-outlined {
    font-size: 14px;
}

.ssh-mockup-input {
    background: #2a2a2a;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
    color: #4ade80;
    height: 2.4rem;
    line-height: 1.2rem;
    box-sizing: border-box;
}

.ssh-mockup-input::before {
    content: '\200B';
}

.ssh-typewriter.typing::after {
    content: '|';
    font-weight: 300;
    animation: blink 0.7s step-end infinite;
    margin-left: 1px;
}

.ssh-typewriter.done::after {
    content: none;
}

.ssh-password {
    cursor: pointer;
    transition: background 0.2s;
}

.ssh-password:hover {
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    margin: -0.5rem;
    padding: 0.5rem;
}

.ssh-hint {
    font-size: 0.6rem;
    text-transform: none;
    letter-spacing: 0;
    color: #555;
    font-weight: 400;
}

/* CTA Buttons */
.cta-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin: 1.5rem 0 1rem;
}

.cta-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0 0 1rem;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0 0 1.5rem;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 56px;
    padding: 0 24px;
    font-family: 'Google Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

.btn:hover {
    text-decoration: none;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-hover);
}

.btn-secondary {
    background: var(--surface);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: #E8EAED;
}

.btn-hetzner {
    background: #D32F2F;
    color: white;
}

.btn-hetzner:hover {
    background: #B71C1C;
}

.btn-aws {
    background: #0A1929;
    color: white;
}

.btn-aws:hover {
    background: #001122;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.btn-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.btn-icon .material-symbols-outlined {
    font-size: 20px;
    font-weight: 300;
}

.btn-price,
.btn-pill {
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 100px;
    margin-left: 8px;
}

.btn-secondary .btn-price,
.btn-secondary .btn-pill {
    background: rgba(0, 0, 0, 0.08);
}

/* Tips Box */
.tips-box {
    background: var(--surface);
    border-radius: var(--radius-sm);
    padding: 2rem 2.5rem;
    margin: 1.5rem 0;
}

.tips-box h4 {
    font-size: 1.125rem;
    font-weight: 500;
    color: #E65C00;
    margin-bottom: 1rem;
}

.tips-box ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.875rem;
}

.tips-box li {
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.tips-box li::before {
    content: '– ';
    color: var(--text-secondary);
}

.tips-box li:last-child {
    margin-bottom: 0;
}

.tips-box.success {
    background: rgba(52, 168, 83, 0.1);
}

.tips-box.success h4 {
    color: var(--success);
}

/* Code Block */
.code-block {
    background: #1E1E1E;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin: 1.5rem 0;
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #2D2D2D;
    border-bottom: 1px solid #3D3D3D;
}

.code-header span {
    font-size: 0.75rem;
    color: #A0A0A0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Google Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: #A0A0A0;
    background: transparent;
    border: 1px solid #4D4D4D;
    border-radius: 4px;
    padding: 4px 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.copy-btn .material-symbols-outlined {
    font-size: 14px;
}

.copy-btn:hover {
    color: white;
    border-color: #6D6D6D;
}

.copy-btn.copied {
    color: var(--success);
    border-color: var(--success);
}

.code-block pre {
    margin: 0;
    padding: 1rem;
    overflow-x: auto;
}

.code-block code {
    font-family: 'SF Mono', 'Roboto Mono', Consolas, monospace;
    font-size: 0.875rem;
    color: #E0E0E0;
    background: transparent;
    padding: 0;
    white-space: pre-wrap;
    word-break: break-word;
}

/* Green terminal style */
.code-block-green {
    background: #0a1a0a;
}

.code-block-green .code-header {
    background: #0f2a0f;
    border-bottom-color: #1a3a1a;
}

/* Truncated code block with fade */
.code-block-truncated {
    position: relative;
}

.code-block-truncated pre {
    max-height: 340px;
    overflow: hidden;
}

.code-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #1E1E1E);
    pointer-events: none;
}

/* Prompt input */
.prompt-input {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #1a1a1a;
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    font-family: 'IBM Plex Mono', monospace;
}

.prompt-chevron {
    color: #4ade80;
    font-size: 20px;
}

.prompt-text {
    color: #888;
    font-size: 0.9rem;
}

.code-block-green code {
    color: #4ade80;
}

.code-typewriter {
    min-height: 1.4em;
}

.code-typewriter.typing::after {
    content: '|';
    font-weight: 300;
    animation: blink 0.7s step-end infinite;
    margin-left: 1px;
}

.code-typewriter.done::after {
    content: none;
}

/* Checklist */
.checklist {
    background: var(--surface);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
}

.checklist h4 {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    cursor: pointer;
}

.check-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    flex-shrink: 0;
    accent-color: var(--primary);
}

.check-item span {
    font-size: 0.9375rem;
    line-height: 1.4;
}

/* Notes Field */
.notes-field {
    margin-top: 1.5rem;
}

.notes-field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.notes-field textarea {
    width: 100%;
    min-height: 80px;
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    resize: vertical;
}

.notes-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

.notes-field textarea::placeholder {
    color: var(--text-secondary);
}

/* Prompt Library Section */
.prompt-library {
    padding: 3rem 0;
    background: var(--surface);
    margin-top: 2rem;
}

.prompt-library h3 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.prompt-library > .container > p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.prompt-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.prompt-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.prompt-well {
    background: #e0e0e0;
    border-radius: 16px;
    padding: 1.25rem 2rem 0 2rem;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.1);
    aspect-ratio: 4 / 3;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.2s;
}

.prompt-well:hover {
    background: #d8d8d8;
}

.prompt-well:hover .prompt-doc {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.prompt-doc {
    position: relative;
    background: #ffffff;
    border-radius: 8px 8px 0 0;
    padding: 1.5rem 1rem 1.5rem 1rem;
    aspect-ratio: 9 / 14;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    margin: 0 auto;
    width: 82%;
}

.prompt-doc pre {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.5rem;
    line-height: 1.7;
    color: #888;
    margin: 0;
    white-space: pre-wrap;
    overflow: hidden;
}

.prompt-copy-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #f5f5f5;
    border: none;
    border-radius: 6px;
    padding: 6px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prompt-well:hover .prompt-copy-btn {
    opacity: 1;
}

.prompt-copy-btn:hover {
    background: #e8e8e8;
}

.prompt-copy-btn .material-symbols-outlined {
    font-size: 16px;
    color: var(--text-secondary);
}

.prompt-copy-btn.copied {
    background: rgba(52, 168, 83, 0.1);
}

.prompt-copy-btn.copied .material-symbols-outlined {
    color: var(--success);
}

.prompt-meta {
    padding: 0 0.25rem;
}

.prompt-meta h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
}

.prompt-meta span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

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

/* Success Card */
.success-card {
    position: relative;
    background: #0000FF;
    border-radius: var(--radius);
    padding: 5rem 2rem;
    text-align: center;
    overflow: hidden;
    margin-top: 2rem;
}

.success-card-shader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.success-card-shader::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(65, 105, 225, 0.75);
    pointer-events: none;
}

.success-card-shader canvas {
    width: 100% !important;
    height: 100% !important;
}

.success-card > *:not(.success-card-shader) {
    position: relative;
    z-index: 1;
}

.success-card h3 {
    color: #ffffff;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.success-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    max-width: 480px;
    margin: 0 auto;
}

.success-card a {
    color: #ffffff;
    text-decoration: underline;
}

.success-card a:hover {
    opacity: 0.8;
}

/* Footer */
.footer {
    padding: 3rem 0;
    text-align: center;
}

.credits {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.credits em {
    font-style: italic;
    opacity: 0.8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--text-secondary);
    background: var(--surface);
    border-radius: 50%;
    transition: background-color 0.2s, color 0.2s;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
}

.speech-bubble {
    position: relative;
    display: inline-block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    margin: 0.25rem 0 1.5rem;
}

.speech-bubble::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--border);
}

.speech-bubble::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid var(--bg);
}

.copyright {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive: Tablet+ */
@media (min-width: 640px) {
    .container {
        padding: 0 32px;
    }

    .header {
        padding: 5rem 0 2rem;
    }

    .ai-headline {
        font-size: 1.5rem;
        min-width: 520px;
    }

    .logo {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .step-card {
        padding: 2rem;
    }

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

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .btn, .copy-btn, .social-links a {
        transition: none;
    }

    .ai-icon.thinking {
        animation: none;
    }

    .typed-text::after {
        animation: none;
    }
}

/* Touch targets */
@media (pointer: coarse) {
    .btn {
        min-height: 56px;
    }

    .check-item {
        min-height: 48px;
    }

    .social-links a {
        width: 48px;
        height: 48px;
    }
}

/* Print */
@media print {
    .screenshot-zone,
    .notes-field,
    .cta-group,
    .social-links {
        display: none;
    }

    .step-card {
        box-shadow: none;
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }
}
