@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0&display=swap');

body.landing-stitch {
    --brand: #006d3d;
    --brand-dark: #00502b;
    --brand-accent: #2ccb7b;
    --ink: #131b2e;
    --muted: #3c4a3f;
    --line: #bbcabc;
    --surface: #faf8ff;
    --surface-low: #f2f3ff;
    --surface-container: #eaedff;
    --electric-blue: #3a86ff;
    --royal-purple: #8338ec;
    --inverse: #283044;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--ink);
    background: var(--surface);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body.landing-stitch * { box-sizing: border-box; }
body.landing-stitch a { color: inherit; text-decoration: none; }
body.landing-stitch img { max-width: 100%; height: auto; display: block; }

body.landing-stitch h1,
body.landing-stitch h2,
body.landing-stitch h3,
body.landing-stitch h4 {
    font-family: 'Plus Jakarta Sans', Inter, sans-serif;
    margin: 0;
    color: var(--ink);
}

body.landing-stitch .material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
    line-height: 1;
}

body.landing-stitch .material-symbols-outlined.filled {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

body.landing-stitch .landing-container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

body.landing-stitch .glass-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

body.landing-stitch .hero-gradient {
    background: radial-gradient(circle at top right, #e2f7ed 0%, #faf8ff 60%);
}

body.landing-stitch .cta-gradient {
    background: linear-gradient(135deg, #2ccb7b 0%, #1470e8 100%);
    color: #fff;
}

/* Nav */
body.landing-stitch .landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 80px;
    padding: 0 clamp(16px, 5vw, 64px);
    background: rgba(250, 248, 255, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

body.landing-stitch .landing-brand {
    font-family: 'Plus Jakarta Sans', Inter, sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--brand);
}

body.landing-stitch .landing-nav-links {
    display: none;
    align-items: center;
    gap: 40px;
}

body.landing-stitch .landing-nav-links a {
    color: var(--muted);
    font-weight: 500;
    transition: color 0.2s ease;
}

body.landing-stitch .landing-nav-links a:hover { color: var(--brand); }

body.landing-stitch .landing-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

body.landing-stitch .landing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

body.landing-stitch .landing-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(19, 27, 46, 0.06);
}

body.landing-stitch .landing-btn-primary {
    background: var(--brand);
    border-color: transparent;
    color: #fff;
}

body.landing-stitch .landing-btn-ghost {
    background: transparent;
    border-color: transparent;
    color: var(--muted);
}

body.landing-stitch .landing-btn-ghost:hover { color: var(--brand); }

body.landing-stitch .landing-btn-lg {
    min-height: 52px;
    padding: 0 28px;
    font-size: 16px;
}

body.landing-stitch .landing-btn-white {
    background: #fff;
    color: var(--brand);
    border-color: transparent;
}

body.landing-stitch .landing-locale select {
    min-height: 36px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 28px 6px 12px;
    font: inherit;
    background: #fff;
}

/* Hero */
body.landing-stitch .landing-hero {
    padding: 128px clamp(16px, 5vw, 64px) 80px;
}

body.landing-stitch .landing-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

body.landing-stitch .landing-hero h1 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    font-weight: 800;
    margin-bottom: 24px;
}

body.landing-stitch .landing-hero h1 span { color: var(--brand); }

body.landing-stitch .landing-hero-lead {
    font-size: 18px;
    line-height: 1.55;
    color: var(--muted);
    max-width: 560px;
    margin-bottom: 32px;
}

body.landing-stitch .landing-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

body.landing-stitch .landing-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

body.landing-stitch .landing-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: 0 4px 14px rgba(19, 27, 46, 0.05);
    font-weight: 600;
    font-size: 14px;
}

body.landing-stitch .landing-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

body.landing-stitch .landing-hero-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
    padding: 16px;
    border-radius: var(--radius-xl);
    transform: rotate(2deg);
    box-shadow: 0 24px 48px rgba(19, 27, 46, 0.12);
}

body.landing-stitch .landing-hero-card img,
body.landing-stitch .landing-inline-svg {
    border-radius: var(--radius-lg);
    width: 100%;
    height: auto;
    display: block;
}

body.landing-stitch .landing-stack-visual-card {
    padding: 8px;
    border-radius: 16px;
    background: #faf8ff;
    overflow: hidden;
}

body.landing-stitch .landing-float {
    position: absolute;
    z-index: 3;
    animation: landing-float 6s ease-in-out infinite;
}

body.landing-stitch .landing-float.delay { animation-delay: -2s; }

@keyframes landing-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

body.landing-stitch .landing-float-icon {
    top: -24px;
    right: -8px;
    width: 64px;
    height: 64px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--royal-purple);
    box-shadow: 0 12px 28px rgba(19, 27, 46, 0.1);
}

body.landing-stitch .landing-float-social {
    bottom: -24px;
    left: -8px;
    padding: 14px;
    border-radius: var(--radius-lg);
    display: flex;
    gap: 10px;
}

body.landing-stitch .landing-social-dot {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

/* Sections */
body.landing-stitch .landing-section {
    padding: 80px clamp(16px, 5vw, 64px);
}

body.landing-stitch .landing-section-white { background: #fff; }
body.landing-stitch .landing-section-soft { background: var(--surface); }

body.landing-stitch .landing-section-head {
    text-align: center;
    margin-bottom: 56px;
}

body.landing-stitch .landing-section-head h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

body.landing-stitch .landing-section-head p {
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto;
}

/* Tiers */
body.landing-stitch .landing-tier-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

body.landing-stitch .landing-tier-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

body.landing-stitch .landing-tier-card:hover {
    border-color: var(--brand);
    box-shadow: 0 16px 36px rgba(0, 109, 61, 0.08);
}

body.landing-stitch .landing-tier-card.featured {
    background: var(--brand);
    border-color: transparent;
    color: #fff;
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 109, 61, 0.2);
    position: relative;
}

body.landing-stitch .landing-tier-card.featured h3,
body.landing-stitch .landing-tier-card.featured .landing-tier-rate,
body.landing-stitch .landing-tier-card.featured .landing-tier-note { color: #fff; }

body.landing-stitch .landing-tier-card.featured .landing-tier-note { opacity: 0.85; }

body.landing-stitch .landing-tier-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--brand-accent);
    color: var(--brand-dark);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

body.landing-stitch .landing-tier-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--surface-low);
    color: var(--brand);
}

body.landing-stitch .landing-tier-card.featured .landing-tier-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

body.landing-stitch .landing-tier-card.purple .landing-tier-icon { color: var(--royal-purple); }
body.landing-stitch .landing-tier-card.purple:hover { border-color: var(--royal-purple); }

body.landing-stitch .landing-tier-rate {
    font-size: 40px;
    font-weight: 800;
    color: var(--brand);
    margin: 8px 0;
}

body.landing-stitch .landing-tier-card.purple .landing-tier-rate { color: var(--royal-purple); }

body.landing-stitch .landing-tier-note { color: var(--muted); margin-bottom: 20px; }

body.landing-stitch .landing-tier-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: left;
}

body.landing-stitch .landing-tier-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 15px;
}

body.landing-stitch .landing-tier-list .material-symbols-outlined { font-size: 18px; color: var(--brand); }
body.landing-stitch .landing-tier-card.featured .landing-tier-list .material-symbols-outlined { color: #fff; }
body.landing-stitch .landing-tier-card.purple .landing-tier-list .material-symbols-outlined { color: var(--royal-purple); }

/* Steps */
body.landing-stitch .landing-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

body.landing-stitch .landing-step-card {
    padding: 28px;
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

body.landing-stitch .landing-step-num {
    font-family: 'Plus Jakarta Sans', Inter, sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--brand);
    opacity: 0.2;
    line-height: 1;
}

body.landing-stitch .landing-step-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

body.landing-stitch .landing-step-icon.brand { background: rgba(44, 203, 123, 0.15); color: var(--brand); }
body.landing-stitch .landing-step-icon.blue { background: rgba(58, 134, 255, 0.15); color: var(--electric-blue); }
body.landing-stitch .landing-step-icon.purple { background: rgba(131, 56, 236, 0.15); color: var(--royal-purple); }
body.landing-stitch .landing-step-icon.emerald { background: rgba(44, 203, 123, 0.2); color: var(--brand-accent); }

body.landing-stitch .landing-step-card h3 { font-size: 20px; font-weight: 700; }
body.landing-stitch .landing-step-card p { color: var(--muted); margin: 0; font-size: 15px; }

/* Stack */
body.landing-stitch .landing-stack {
    background: var(--inverse);
    border-radius: 32px;
    padding: clamp(32px, 5vw, 64px);
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

body.landing-stitch .landing-stack-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

body.landing-stitch .landing-stack h2 {
    font-size: clamp(28px, 3vw, 40px);
    color: #fff;
    margin-bottom: 20px;
}

body.landing-stitch .landing-stack-lead {
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1.55;
    margin-bottom: 28px;
}

body.landing-stitch .landing-stack-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

body.landing-stitch .landing-stack-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

body.landing-stitch .landing-stack-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #49e08d;
}

body.landing-stitch .landing-stack-visual {
    position: relative;
}

body.landing-stitch .landing-stack-visual img {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    width: 100%;
    height: auto;
    display: block;
}

body.landing-stitch .landing-stack-float {
    position: absolute;
    right: -12px;
    bottom: -20px;
    padding: 14px 16px;
    border-radius: var(--radius-lg);
    color: var(--ink);
    display: none;
}

/* Payout */
body.landing-stitch .landing-payout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

body.landing-stitch .landing-payout h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

body.landing-stitch .landing-payout-intro {
    color: var(--muted);
    margin-bottom: 20px;
}

body.landing-stitch .landing-payout-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brand);
    font-weight: 600;
}

body.landing-stitch .landing-payout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

body.landing-stitch .landing-payout-card {
    background: var(--surface-low);
    border-radius: var(--radius-xl);
    padding: 22px;
}

body.landing-stitch .landing-payout-card.wide { grid-column: 1 / -1; }

body.landing-stitch .landing-payout-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 8px;
}

body.landing-stitch .landing-payout-value {
    font-size: 28px;
    font-weight: 800;
}

body.landing-stitch .landing-payout-card p {
    font-size: 12px;
    color: var(--muted);
    margin: 8px 0 0;
}

body.landing-stitch .landing-method-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

body.landing-stitch .landing-method-tags span {
    padding: 6px 12px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--line);
    font-size: 14px;
}

/* Final CTA */
body.landing-stitch .landing-final-cta {
    border-radius: 40px;
    padding: clamp(48px, 8vw, 96px) clamp(24px, 5vw, 48px);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(20, 112, 232, 0.18);
}

body.landing-stitch .landing-final-cta-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.1;
    pointer-events: none;
}

body.landing-stitch .landing-final-cta-bg .material-symbols-outlined { font-size: 320px; }

body.landing-stitch .landing-final-cta h2 {
    position: relative;
    z-index: 1;
    font-size: clamp(28px, 4vw, 40px);
    color: #fff;
    margin-bottom: 20px;
}

body.landing-stitch .landing-final-cta p {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    max-width: 640px;
    margin: 0 auto 28px;
}

body.landing-stitch .landing-final-cta .landing-btn {
    position: relative;
    z-index: 1;
}

body.landing-stitch .landing-final-note {
    position: relative;
    z-index: 1;
    margin-top: 18px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
}

/* Footer */
body.landing-stitch .landing-footer {
    padding: 40px clamp(16px, 5vw, 64px);
    background: var(--surface-low);
    border-top: 1px solid var(--line);
}

body.landing-stitch .landing-footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

body.landing-stitch .landing-footer-brand {
    font-family: 'Plus Jakarta Sans', Inter, sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--brand);
}

body.landing-stitch .landing-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

body.landing-stitch .landing-footer-links a {
    color: var(--muted);
    transition: color 0.2s ease;
}

body.landing-stitch .landing-footer-links a:hover { color: var(--electric-blue); }

body.landing-stitch .landing-footer-copy {
    font-size: 12px;
    color: var(--muted);
    margin-top: 6px;
}

@media (min-width: 900px) {
    body.landing-stitch .landing-nav-links { display: flex; }
    body.landing-stitch .landing-stack-float { display: block; }
}

@media (max-width: 1024px) {
    body.landing-stitch .landing-hero-grid,
    body.landing-stitch .landing-stack,
    body.landing-stitch .landing-payout { grid-template-columns: 1fr; }
    body.landing-stitch .landing-tier-grid { grid-template-columns: 1fr; }
    body.landing-stitch .landing-tier-card.featured { transform: none; }
    body.landing-stitch .landing-steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    body.landing-stitch .landing-hero { padding-top: 108px; }
    body.landing-stitch .landing-hero-grid { text-align: center; }
    body.landing-stitch .landing-hero-lead { margin-left: auto; margin-right: auto; }
    body.landing-stitch .landing-hero-cta,
    body.landing-stitch .landing-hero-stats { justify-content: center; }
    body.landing-stitch .landing-steps-grid,
    body.landing-stitch .landing-stack-features,
    body.landing-stitch .landing-payout-grid { grid-template-columns: 1fr; }
    body.landing-stitch .landing-btn-ghost.hide-sm { display: none; }
}

/* Auth pages */
body.landing-stitch.auth-page .landing-auth-nav {
    position: sticky;
}

body.landing-stitch.auth-page .landing-auth-shell {
    min-height: calc(100vh - 80px);
    padding: 32px 0 48px;
}

body.landing-stitch.auth-page .landing-auth-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(24px, 4vw, 56px);
    align-items: start;
}

body.landing-stitch.auth-page .landing-auth-aside {
    padding-top: 24px;
}

body.landing-stitch.auth-page .landing-auth-kicker {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--brand);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

body.landing-stitch.auth-page .landing-auth-aside h2 {
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.15;
    margin-bottom: 14px;
}

body.landing-stitch.auth-page .landing-auth-aside > p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
    max-width: 420px;
}

body.landing-stitch.auth-page .landing-auth-points {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: grid;
    gap: 14px;
}

body.landing-stitch.auth-page .landing-auth-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.62);
    font-weight: 600;
}

body.landing-stitch.auth-page .landing-auth-points .material-symbols-outlined {
    color: var(--brand);
}

body.landing-stitch.auth-page .landing-auth-card {
    padding: clamp(24px, 4vw, 36px);
    border-radius: var(--radius-xl);
}

body.landing-stitch.auth-page .landing-auth-card.is-wide {
    max-width: none;
}

body.landing-stitch.auth-page .landing-auth-card h1 {
    font-size: clamp(28px, 3vw, 34px);
    margin-bottom: 8px;
}

body.landing-stitch.auth-page .landing-auth-lead {
    color: var(--muted);
    margin: 0 0 22px;
    line-height: 1.55;
}

body.landing-stitch.auth-page .landing-auth-form label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin: 16px 0 6px;
    color: var(--ink);
}

body.landing-stitch.auth-page .landing-auth-form label:first-of-type {
    margin-top: 0;
}

body.landing-stitch.auth-page .landing-auth-form input,
body.landing-stitch.auth-page .landing-auth-form select,
body.landing-stitch.auth-page .landing-auth-form textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px 12px;
    font: inherit;
    background: rgba(255, 255, 255, 0.9);
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

body.landing-stitch.auth-page .landing-auth-form textarea {
    min-height: 110px;
    resize: vertical;
}

body.landing-stitch.auth-page .landing-auth-form input:focus,
body.landing-stitch.auth-page .landing-auth-form select:focus,
body.landing-stitch.auth-page .landing-auth-form textarea:focus {
    outline: none;
    border-color: rgba(0, 109, 61, 0.45);
    box-shadow: 0 0 0 4px rgba(44, 203, 123, 0.12);
}

body.landing-stitch.auth-page .landing-auth-form input[type="checkbox"] {
    width: auto;
    min-height: auto;
    margin-right: 8px;
}

body.landing-stitch.auth-page .landing-auth-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.5;
}

body.landing-stitch.auth-page .landing-auth-check label {
    margin: 0;
    font-weight: 500;
}

body.landing-stitch.auth-page .landing-auth-card a {
    color: var(--brand);
    font-weight: 600;
}

body.landing-stitch.auth-page .landing-auth-error {
    color: #b91c1c;
    font-size: 14px;
    margin-top: 6px;
}

body.landing-stitch.auth-page .landing-auth-status {
    border: 1px solid #bbf7d0;
    background: #f0fdf4;
    color: #166534;
    padding: 12px 14px;
    border-radius: var(--radius);
    margin-bottom: 16px;
}

body.landing-stitch.auth-page .landing-auth-notice {
    border: 1px solid #fed7aa;
    background: rgba(255, 247, 237, 0.9);
    color: #9a3412;
    padding: 12px 14px;
    border-radius: var(--radius);
    margin: 16px 0;
    font-size: 14px;
    line-height: 1.5;
}

body.landing-stitch.auth-page .landing-auth-actions {
    margin-top: 22px;
}

body.landing-stitch.auth-page .landing-auth-switch {
    margin-top: 20px;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
}

body.landing-stitch.auth-page .landing-auth-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

body.landing-stitch.auth-page .landing-auth-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

body.landing-stitch.auth-page .landing-auth-section {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(187, 202, 188, 0.45);
}

body.landing-stitch.auth-page .landing-auth-section h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

body.landing-stitch.auth-page .landing-auth-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

body.landing-stitch.auth-page .landing-platform-row {
    padding: 14px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(187, 202, 188, 0.4);
    margin-bottom: 12px;
}

body.landing-stitch.auth-page .landing-auth-steps {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

body.landing-stitch.auth-page .landing-auth-step {
    display: flex;
    gap: 14px;
    padding: 14px 16px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.62);
}

body.landing-stitch.auth-page .landing-auth-step-num {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(44, 203, 123, 0.15);
    color: var(--brand);
    font-weight: 800;
    flex-shrink: 0;
}

body.landing-stitch.auth-page .landing-auth-step strong {
    display: block;
    margin-bottom: 4px;
}

body.landing-stitch.auth-page .landing-auth-step p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

body.landing-stitch.auth-page .landing-auth-footer {
    padding: 20px 0 28px;
}

body.landing-stitch.auth-page .landing-auth-footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

body.landing-stitch.auth-page .landing-auth-footer-inner a {
    color: var(--muted);
    font-size: 14px;
}

body.landing-stitch.auth-page .landing-auth-footer-inner a:hover {
    color: var(--brand);
}

@media (max-width: 960px) {
    body.landing-stitch.auth-page .landing-auth-grid {
        grid-template-columns: 1fr;
    }

    body.landing-stitch.auth-page .landing-auth-aside {
        padding-top: 8px;
    }
}

@media (max-width: 640px) {
    body.landing-stitch.auth-page .landing-auth-grid-2,
    body.landing-stitch.auth-page .landing-auth-grid-3,
    body.landing-stitch.auth-page .landing-platform-row .landing-auth-grid-3 {
        grid-template-columns: 1fr;
    }
}
