/* RecoverIQ marketing theme — unhashed so FTP deploys cannot 404 Tailwind. */
:root {
    --riq-ink: #0b1f2a;
    --riq-deep: #123040;
    --riq-teal: #1f8a7a;
    --riq-mint: #b7f0e3;
    --riq-sand: #e8eef1;
    --riq-glow: rgba(31, 138, 122, 0.28);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.riq-site {
    margin: 0;
    font-family: 'Sora', system-ui, sans-serif;
    color: var(--riq-ink);
    background:
        radial-gradient(1200px 600px at 10% -10%, var(--riq-glow), transparent 55%),
        radial-gradient(900px 500px at 90% 0%, rgba(18, 48, 64, 0.12), transparent 50%),
        linear-gradient(180deg, #f4faf8 0%, #eef3f6 45%, #f7f9fa 100%);
    min-height: 100vh;
}

a { color: inherit; }

.riq-display { font-family: 'Fraunces', Georgia, serif; }
.riq-wrap { width: 100%; max-width: 72rem; margin: 0 auto; padding: 0 1rem; }

.riq-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid rgba(18, 48, 64, 0.08);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px);
}
.riq-nav a { color: var(--riq-deep); text-decoration: none; }
.riq-nav a:hover { color: var(--riq-teal); }
.riq-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}
.riq-logo {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--riq-ink) !important;
    flex: 0 0 auto;
}
.riq-nav-links {
    display: none;
    align-items: center;
    gap: 1.35rem;
    font-size: 0.875rem;
    font-weight: 500;
}
.riq-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 0 0 auto;
}
@media (min-width: 768px) {
    .riq-nav-links { display: flex; }
}
@media (min-width: 1024px) {
    .riq-nav-wide { display: inline; }
}
.riq-nav-wide { display: none; }

.riq-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 0.75rem;
    padding: 0.85rem 1.35rem;
    font-weight: 600;
    text-decoration: none !important;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.riq-btn:hover { transform: translateY(-1px); }
.riq-btn-sm { padding: 0.5rem 0.9rem; font-size: 0.875rem; }
.riq-btn-primary {
    background: var(--riq-teal);
    color: #fff !important;
    box-shadow: 0 10px 30px rgba(31, 138, 122, 0.25);
}
.riq-btn-primary:hover { background: #187466; }
.riq-btn-secondary {
    background: transparent;
    color: var(--riq-deep) !important;
    border-color: rgba(18, 48, 64, 0.2);
}

.riq-hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 4.5rem);
    display: grid;
    align-items: end;
}
.riq-hero-compact { min-height: 0; }
.riq-hero-visual {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(11, 31, 42, 0.78), rgba(18, 48, 64, 0.42)),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1600" height="900" viewBox="0 0 1600 900"><defs><linearGradient id="g" x1="0" x2="1"><stop stop-color="%231f8a7a"/><stop offset="1" stop-color="%23123040"/></linearGradient></defs><rect width="1600" height="900" fill="%230b1f2a"/><circle cx="1180" cy="220" r="260" fill="url(%23g)" opacity=".35"/><rect x="120" y="420" width="520" height="320" rx="28" fill="%23ffffff" opacity=".06"/><rect x="160" y="470" width="280" height="18" rx="9" fill="%23b7f0e3" opacity=".55"/><rect x="160" y="510" width="420" height="12" rx="6" fill="%23ffffff" opacity=".25"/><rect x="160" y="540" width="360" height="12" rx="6" fill="%23ffffff" opacity=".18"/></svg>') center/cover no-repeat;
}
.riq-hero-copy {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 7rem 1rem 5rem;
}
.riq-hero-copy h1,
.riq-hero-copy p { color: #fff; }
.riq-hero-copy .riq-lede { color: rgba(255, 255, 255, 0.88); font-size: 1.125rem; max-width: 40rem; margin: 0 0 2rem; line-height: 1.55; }
.riq-hero-copy .riq-note { color: rgba(255, 255, 255, 0.75); font-size: 0.875rem; }
.riq-hero .riq-kicker { color: var(--riq-mint); }
.riq-hero .riq-btn-secondary {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.4);
}
.riq-brand-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin: 0 0 1rem;
    max-width: 48rem;
}
.riq-hero-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 1.25rem;
    max-width: 48rem;
}

.riq-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }

.riq-section { padding: 5rem 0; }
.riq-section-alt { background: rgba(255, 255, 255, 0.5); }
.riq-kicker {
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--riq-teal);
    font-weight: 600;
    margin: 0 0 0.75rem;
}
.riq-section h2.riq-display { font-size: clamp(1.75rem, 3vw, 2.25rem); margin: 0 0 1rem; }

.riq-os-grid {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .riq-os-grid { grid-template-columns: 1fr 1fr; }
}

.riq-os-mark {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: linear-gradient(160deg, var(--riq-mint), #e8f7f3);
    color: var(--riq-deep);
    box-shadow: 0 8px 24px rgba(31, 138, 122, 0.18);
}
.riq-os-mark svg { width: 1.75rem; height: 1.75rem; display: block; }
.riq-os-mark-sm {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 0.3rem;
    background: transparent;
    box-shadow: none;
    color: currentColor;
}
.riq-os-mark-sm svg { width: 1.15rem; height: 1.15rem; }
.riq-btn-primary .riq-os-mark-sm { color: #fff; }

.riq-os-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(18, 48, 64, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 12px 36px rgba(18, 48, 64, 0.06);
}
.riq-os-card-head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.riq-os-card h2.riq-display { font-size: 1.5rem; margin: 0; }
.riq-os-card p { margin: 0 0 1rem; color: #475569; line-height: 1.55; }
.riq-os-card .riq-meta { font-size: 0.875rem; color: #64748b; }
.riq-hint { font-size: 0.75rem; color: #64748b; margin: 0.75rem 0 0; }
.riq-steps {
    margin: 0.75rem 0 0.5rem 1.1rem;
    padding: 0;
    color: #334155;
    line-height: 1.55;
}
.riq-steps li { margin: 0.35rem 0; }

.riq-footer {
    border-top: 1px solid rgba(18, 48, 64, 0.1);
    margin-top: 4rem;
    padding: 2.5rem 0 0;
}
.riq-footer-grid {
    display: grid;
    gap: 2rem;
    font-size: 0.875rem;
    color: #475569;
    padding-bottom: 2.5rem;
}
.riq-footer a { color: #475569; text-decoration: none; display: block; padding: 0.15rem 0; }
.riq-footer a:hover { color: var(--riq-teal); }
.riq-footer-title { font-weight: 600; color: #1e293b; margin-bottom: 0.5rem; }
.riq-footer-copy {
    text-align: center;
    font-size: 0.75rem;
    color: #64748b;
    padding-bottom: 2rem;
}
@media (min-width: 768px) {
    .riq-footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.riq-split { display: grid; gap: 2.5rem; align-items: center; }
.riq-list { display: grid; gap: 1rem; color: #334155; }
.riq-list div { border-left: 4px solid var(--riq-teal); padding-left: 1rem; }
@media (min-width: 768px) {
    .riq-split-2 { grid-template-columns: 1fr 1fr; }
    .riq-split-3 { grid-template-columns: 1fr 1fr 1fr; }
    .riq-split-4 { grid-template-columns: repeat(4, 1fr); }
}

.riq-panel {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(18, 48, 64, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
}
.riq-cta-band {
    background: var(--riq-deep);
    color: #fff;
    text-align: center;
}
.riq-cta-band h2,
.riq-cta-band p { color: #fff; }
.riq-cta-band p { color: rgba(255, 255, 255, 0.8); max-width: 36rem; margin: 0 auto 2rem; }
