/* Daunomania Design System */
:root {
    --dm-primary: #1e40af;
    --dm-primary-dark: #1e3a8a;
    --dm-primary-light: #3b82f6;
    --dm-primary-50: #eff6ff;
    --dm-primary-100: #dbeafe;
    --dm-accent: #0891b2;
    --dm-accent-light: #22d3ee;
    --dm-success: #059669;
    --dm-warning: #d97706;
    --dm-danger: #dc2626;
    --dm-dark: #0f172a;
    --dm-dark-soft: #1e293b;
    --dm-muted: #64748b;
    --dm-muted-light: #94a3b8;
    --dm-border: #e2e8f0;
    --dm-bg: #f8fafc;
    --dm-surface: #ffffff;
    --dm-radius: 12px;
    --dm-radius-lg: 16px;
    --dm-radius-xl: 20px;
    --dm-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
    --dm-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
    --dm-shadow-lg: 0 20px 40px -12px rgba(15, 23, 42, 0.15);
    --dm-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --dm-gradient: linear-gradient(135deg, #1e3a8a 0%, #1e40af 45%, #2563eb 100%);
    --dm-gradient-soft: linear-gradient(180deg, #eff6ff 0%, #f8fafc 100%);
}

/* Layout overrides */
body {
    font-family: var(--dm-font);
    background: var(--dm-bg);
    color: var(--dm-dark);
}

main.main--landing {
    padding: 0;
    min-height: auto;
}

main.main--landing > .container,
main.main--landing > .container-fluid {
    padding: 0;
    max-width: 100%;
}

/* Navbar enhancements */
.navbar-dm .navbar-brand {
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.03em;
    gap: 0.5rem;
}

.navbar-dm .brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--dm-gradient);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
}

.navbar-dm .nav-link {
    font-weight: 600;
    font-size: 0.9rem;
}

.navbar-dm .btn-nav-cta {
    padding: 0.5rem 1.1rem;
    border-radius: 10px;
    font-size: 0.875rem;
}

/* Buttons */
.btn-dm-primary {
    background: var(--dm-gradient);
    border: none;
    color: #fff;
    font-weight: 700;
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 4px 14px rgba(30, 64, 175, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-dm-primary:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.35);
}

.btn-dm-outline {
    border: 1.5px solid var(--dm-border);
    background: var(--dm-surface);
    color: var(--dm-dark);
    font-weight: 600;
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    transition: all 0.2s;
}

.btn-dm-outline:hover {
    border-color: var(--dm-primary-light);
    color: var(--dm-primary);
    background: var(--dm-primary-50);
}

/* Landing: Hero */
.dm-hero {
    background: var(--dm-gradient);
    color: #fff;
    padding: clamp(4rem, 8vw, 6.5rem) 0 4.5rem;
    position: relative;
    overflow: hidden;
    min-height: min(88vh, 760px);
    display: flex;
    align-items: center;
}

.dm-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 78%, rgba(34, 211, 238, 0.16) 0%, transparent 42%),
        radial-gradient(circle at 82% 18%, rgba(255,255,255,0.1) 0%, transparent 40%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.12), transparent 45%);
    pointer-events: none;
}

.dm-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.45), transparent);
    pointer-events: none;
    animation: dm-grid-drift 28s linear infinite;
}

.dm-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    opacity: 0.55;
}

.dm-hero-orb--1 {
    width: 280px;
    height: 280px;
    background: rgba(34, 211, 238, 0.35);
    top: -60px;
    right: 8%;
    animation: dm-orb-float 12s ease-in-out infinite;
}

.dm-hero-orb--2 {
    width: 220px;
    height: 220px;
    background: rgba(59, 130, 246, 0.4);
    bottom: -40px;
    left: 12%;
    animation: dm-orb-float 16s ease-in-out infinite reverse;
}

.dm-hero-content {
    position: relative;
    z-index: 1;
}

.dm-hero-brand {
    margin: 0 0 1rem;
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(120deg, #fff 0%, #bae6fd 55%, #fff 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: dm-brand-shine 7s ease-in-out infinite;
}

.dm-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.dm-hero h1 {
    font-size: clamp(2.1rem, 4.6vw, 3.1rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 1.1rem;
    max-width: 16ch;
}

.dm-hero-lead {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.92;
    max-width: 540px;
    margin-bottom: 1.75rem;
}

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

.dm-hero-actions .btn-dm-primary,
.dm-hero-actions .btn-dm-outline {
    padding: 0.875rem 1.75rem;
}

.dm-hero-actions .btn-dm-outline {
    border-color: rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.dm-hero-actions .btn-dm-outline:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

.dm-hero-proof {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.dm-pulse-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55);
    animation: dm-pulse 1.8s ease-out infinite;
    flex-shrink: 0;
}

.dm-hero-visual {
    position: relative;
    z-index: 1;
}

.dm-hero-check {
    background: rgba(255, 255, 255, 0.96);
    color: var(--dm-dark);
    border-radius: 22px;
    padding: 1.75rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
    border: 1px solid rgba(255,255,255,0.5);
    transform: translateY(0);
    animation: dm-panel-in 0.8s ease both;
}

.dm-hero-check-head {
    margin-bottom: 1.25rem;
}

.dm-hero-check-kicker {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dm-primary);
    margin-bottom: 0.45rem;
}

.dm-hero-check-head h2 {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 0.4rem;
}

.dm-hero-check-head p {
    margin: 0;
    color: var(--dm-muted);
    font-size: 0.925rem;
    line-height: 1.55;
}

.dm-hero-check-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.65rem;
}

.dm-hero-plate-input {
    border-radius: 12px !important;
    border: 1.5px solid var(--dm-border) !important;
    padding: 0.9rem 1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 1.05rem !important;
}

.dm-hero-plate-input:focus {
    border-color: var(--dm-primary-light) !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15) !important;
}

.dm-hero-check-benefits {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    padding: 1rem 0 0;
    margin: 1rem 0 0;
    border-top: 1px solid var(--dm-border);
}

.dm-hero-check-benefits li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--dm-muted);
}

.dm-hero-check-benefits i {
    color: var(--dm-success);
}

/* Sections */
.dm-section {
    padding: 4.5rem 0;
}

.dm-section-alt {
    background: var(--dm-surface);
}

.dm-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.dm-section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--dm-primary);
    background: var(--dm-primary-50);
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.dm-section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    color: var(--dm-dark);
}

.dm-section-header p {
    color: var(--dm-muted);
    font-size: 1.0625rem;
    margin: 0;
    line-height: 1.6;
}

/* Feature cards */
.dm-feature-card {
    background: var(--dm-surface);
    border: 1px solid var(--dm-border);
    border-radius: var(--dm-radius-lg);
    padding: 2rem;
    height: 100%;
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.dm-feature-card:hover {
    box-shadow: var(--dm-shadow-lg);
    transform: translateY(-4px);
    border-color: var(--dm-primary-100);
}

.dm-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.dm-feature-icon--blue { background: var(--dm-primary-50); color: var(--dm-primary); }
.dm-feature-icon--teal { background: #ecfeff; color: var(--dm-accent); }
.dm-feature-icon--green { background: #ecfdf5; color: var(--dm-success); }
.dm-feature-icon--amber { background: #fffbeb; color: var(--dm-warning); }

.dm-feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dm-dark);
}

.dm-feature-card p {
    color: var(--dm-muted);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.dm-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.dm-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--dm-muted);
    margin-bottom: 0.5rem;
}

.dm-feature-list li i {
    color: var(--dm-success);
    margin-top: 0.2rem;
    font-size: 0.75rem;
}

/* Steps */
.dm-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    counter-reset: step;
}

.dm-step {
    text-align: center;
    position: relative;
}

.dm-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--dm-gradient);
    color: #fff;
    font-weight: 800;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
}

.dm-step h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.dm-step p {
    font-size: 0.875rem;
    color: var(--dm-muted);
    line-height: 1.6;
    margin: 0;
}

/* Stats bar */
.dm-stats-bar {
    background: var(--dm-surface);
    border-top: 1px solid var(--dm-border);
    border-bottom: 1px solid var(--dm-border);
    padding: 2.5rem 0;
}

.dm-stat-item {
    text-align: center;
}

.dm-stat-item .number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dm-primary);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.dm-stat-item .label {
    font-size: 0.875rem;
    color: var(--dm-muted);
    font-weight: 500;
}

/* Trust row */
.dm-trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.dm-trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dm-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.dm-trust-item i {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--dm-primary-50);
    color: var(--dm-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FAQ */
.dm-faq-accordion {
    max-width: 760px;
    margin: 0 auto;
}

.dm-faq-item {
    background: var(--dm-surface);
    border: 1px solid var(--dm-border);
    border-radius: var(--dm-radius);
    padding: 0;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.dm-faq-item[open] {
    border-color: var(--dm-primary-100);
    box-shadow: var(--dm-shadow);
}

.dm-faq-item summary {
    list-style: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dm-dark);
    padding: 1.15rem 1.35rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.dm-faq-item summary::-webkit-details-marker {
    display: none;
}

.dm-faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dm-primary);
    line-height: 1;
}

.dm-faq-item[open] summary::after {
    content: '−';
}

.dm-faq-item h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dm-dark);
}

.dm-faq-item p {
    font-size: 0.9375rem;
    color: var(--dm-muted);
    margin: 0;
    line-height: 1.65;
    padding: 0 1.35rem 1.2rem;
}

/* CTA band */
.dm-cta {
    background: var(--dm-gradient);
    color: #fff;
    padding: 4.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dm-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(34, 211, 238, 0.18), transparent 45%);
    pointer-events: none;
}

.dm-cta .container {
    position: relative;
    z-index: 1;
}

.dm-cta-kicker {
    display: inline-block;
    margin: 0 0 0.75rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.85;
}

.dm-cta h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.dm-cta p {
    font-size: 1.0625rem;
    opacity: 0.9;
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.65;
}

.dm-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.dm-cta .btn-dm-primary {
    background: #fff;
    color: var(--dm-primary-dark);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.dm-cta .btn-dm-primary:hover {
    color: var(--dm-primary-dark);
    background: #f8fafc;
}

.dm-cta .btn-dm-outline {
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.dm-cta .btn-dm-outline:hover {
    background: rgba(255,255,255,0.16);
    color: #fff;
}

.dm-cta-micro {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.75;
}

/* Page header (inner pages) */
.dm-page-header {
    margin-bottom: 2rem;
}

.dm-page-header h1 {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.35rem;
}

.dm-page-header p {
    color: var(--dm-muted);
    margin: 0;
    font-size: 1rem;
}

/* DM Card (forms, livewire) */
.dm-card {
    background: var(--dm-surface);
    border: 1px solid var(--dm-border);
    border-radius: var(--dm-radius-lg);
    box-shadow: var(--dm-shadow-sm);
    overflow: hidden;
}

.dm-card-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--dm-border);
    background: var(--dm-gradient-soft);
}

.dm-card-header h4,
.dm-card-header h5 {
    margin: 0;
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--dm-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dm-card-header h4 i,
.dm-card-header h5 i {
    color: var(--dm-primary);
}

.dm-card-body {
    padding: 1.5rem;
}

/* Auth */
.dm-auth-wrap {
    min-height: calc(100vh - 280px);
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.dm-auth-card {
    max-width: 440px;
    margin: 0 auto;
    background: var(--dm-surface);
    border: 1px solid var(--dm-border);
    border-radius: var(--dm-radius-xl);
    box-shadow: var(--dm-shadow-lg);
    overflow: hidden;
}

.dm-auth-header {
    text-align: center;
    padding: 2rem 2rem 1.25rem;
}

.dm-auth-header .auth-logo {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--dm-gradient);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 14px rgba(30, 64, 175, 0.3);
}

.dm-auth-header h4 {
    font-weight: 800;
    font-size: 1.375rem;
    margin-bottom: 0.35rem;
}

.dm-auth-header p {
    color: var(--dm-muted);
    font-size: 0.9375rem;
    margin: 0;
}

.dm-auth-body {
    padding: 0 2rem 2rem;
}

/* Dashboard */
.dm-dash-hero {
    background: var(--dm-gradient);
    color: #fff;
    border-radius: var(--dm-radius-xl);
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.dm-dash-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.dm-dash-hero h1 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
    position: relative;
    z-index: 1;
}

.dm-dash-hero p {
    opacity: 0.9;
    margin: 0;
    position: relative;
    z-index: 1;
}

.dm-dash-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.dm-dash-stat {
    background: var(--dm-surface);
    border: 1px solid var(--dm-border);
    border-radius: var(--dm-radius-lg);
    padding: 1.5rem;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.dm-dash-stat:hover {
    box-shadow: var(--dm-shadow);
    border-color: var(--dm-primary-100);
}

.dm-dash-stat-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.dm-dash-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
}

.dm-dash-stat-value {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--dm-dark);
    line-height: 1;
}

.dm-dash-stat-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--dm-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.dm-quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.dm-quick-action {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--dm-surface);
    border: 1px solid var(--dm-border);
    border-radius: var(--dm-radius);
    text-decoration: none;
    color: var(--dm-dark);
    transition: all 0.2s;
}

.dm-quick-action:hover {
    border-color: var(--dm-primary-light);
    background: var(--dm-primary-50);
    color: var(--dm-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--dm-shadow);
}

.dm-quick-action i {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--dm-primary-50);
    color: var(--dm-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dm-quick-action span {
    font-weight: 600;
    font-size: 0.9375rem;
}

/* CTA banner (guest) */
.dm-guest-cta {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid #fde68a;
    border-radius: var(--dm-radius-lg);
    padding: 1.75rem;
    text-align: center;
}

.dm-guest-cta h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.dm-guest-cta p {
    color: var(--dm-muted);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
}

/* Footer polish */
footer.dm-footer {
    background: var(--dm-dark);
    border-top: none;
}

/* Responsive */
@media (max-width: 991px) {
    .dm-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .dm-hero {
        padding: 4rem 0 3rem;
    }

    .dm-hero-visual {
        margin-top: 2.5rem;
    }
}

@media (max-width: 575px) {
    .dm-steps {
        grid-template-columns: 1fr;
    }

    .dm-section {
        padding: 3rem 0;
    }

    .dm-hero-stats {
        gap: 1.25rem;
    }
}

/* ─── Inner page hero (about, badges, etc.) ─── */
.dm-inner-hero {
    background: var(--dm-gradient);
    color: #fff;
    padding: 3rem 0;
    margin: -2.5rem -1.5rem 2.5rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 576px) {
    .dm-inner-hero {
        margin-left: calc(-1.5rem - ((100vw - 100%) / 2));
        margin-right: calc(-1.5rem - ((100vw - 100%) / 2));
        padding-left: max(1.5rem, calc((100vw - 1140px) / 2 + 1.5rem));
        padding-right: max(1.5rem, calc((100vw - 1140px) / 2 + 1.5rem));
    }
}

.dm-inner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.dm-inner-hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.dm-inner-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.dm-inner-hero p {
    font-size: 1.0625rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.65;
}

.dm-inner-hero--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* ─── Tables ─── */
.dm-table-wrap {
    overflow-x: auto;
    border-radius: var(--dm-radius);
    border: 1px solid var(--dm-border);
}

.dm-table {
    width: 100%;
    margin: 0;
    font-size: 0.9375rem;
}

.dm-table thead th {
    background: var(--dm-bg);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--dm-muted);
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid var(--dm-border);
    white-space: nowrap;
}

.dm-table tbody td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--dm-border);
    vertical-align: middle;
    color: var(--dm-dark-soft);
}

.dm-table tbody tr:last-child td {
    border-bottom: none;
}

.dm-table tbody tr:hover {
    background: var(--dm-primary-50);
}

.dm-table tbody tr.dm-table-row--highlight {
    background: #fffbeb;
}

.dm-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    font-weight: 700;
    color: var(--dm-muted);
}

.dm-rank--gold { color: #ca8a04; }
.dm-rank--silver { color: #64748b; }
.dm-rank--bronze { color: #b45309; }

/* ─── Tabs ─── */
.dm-tabs .nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dm-muted);
    border: none;
    border-radius: 8px;
    padding: 0.625rem 1.125rem;
    margin-right: 0.25rem;
    transition: all 0.2s;
}

.dm-tabs .nav-link:hover {
    color: var(--dm-primary);
    background: var(--dm-primary-50);
}

.dm-tabs .nav-link.active {
    color: var(--dm-primary);
    background: var(--dm-primary-50);
    font-weight: 700;
}

/* ─── List items ─── */
.dm-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.125rem 1.25rem;
    background: var(--dm-bg);
    border: 1px solid var(--dm-border);
    border-radius: var(--dm-radius);
    margin-bottom: 0.75rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    flex-wrap: wrap;
}

.dm-list-item:hover {
    border-color: var(--dm-primary-100);
    box-shadow: var(--dm-shadow-sm);
}

.dm-list-item--pending {
    border-color: #67e8f9;
    background: linear-gradient(135deg, #ecfeff 0%, #f0f9ff 100%);
}

.dm-list-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--dm-primary-50);
    color: var(--dm-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.dm-list-icon--pending {
    background: #cffafe;
    color: var(--dm-accent);
}

/* ─── Profile ─── */
.dm-profile-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--dm-gradient);
    color: #fff;
    font-size: 2.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.25);
    border: 3px solid #fff;
}

.dm-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--dm-border);
    font-size: 0.9375rem;
}

.dm-stat-row:last-child {
    border-bottom: none;
}

.dm-stat-row strong {
    font-weight: 700;
    color: var(--dm-primary);
}

/* ─── Badges page ─── */
.dm-badge-card {
    background: var(--dm-surface);
    border: 1px solid var(--dm-border);
    border-radius: var(--dm-radius-lg);
    padding: 1.5rem;
    height: 100%;
    text-align: center;
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.dm-badge-card:hover {
    box-shadow: var(--dm-shadow);
    transform: translateY(-3px);
}

.dm-badge-card--earned {
    border-color: var(--dm-primary-light);
    background: linear-gradient(180deg, var(--dm-primary-50) 0%, var(--dm-surface) 100%);
}

.dm-badge-card--locked {
    opacity: 0.65;
    filter: grayscale(0.4);
}

.dm-badge-card .dm-badge-icon {
    font-size: 2.5rem;
    color: var(--dm-primary);
    margin-bottom: 0.75rem;
    display: block;
}

.dm-badge-card--locked .dm-badge-icon {
    color: var(--dm-muted-light);
}

.dm-badge-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.dm-badge-card p {
    font-size: 0.8125rem;
    color: var(--dm-muted);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.dm-badge-req {
    background: var(--dm-bg);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    color: var(--dm-muted);
    margin-bottom: 0.75rem;
}

.dm-category-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dm-dark);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--dm-primary-100);
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.dm-category-title i {
    color: var(--dm-primary);
}

.dm-progress-ring {
    position: relative;
    display: inline-block;
}

.dm-progress-ring-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dm-primary);
}

/* ─── Legal / prose ─── */
.dm-prose h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--dm-primary-dark);
    margin: 2rem 0 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dm-prose h4:first-child {
    margin-top: 0;
}

.dm-prose h5 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 1.25rem 0 0.5rem;
    color: var(--dm-dark-soft);
}

.dm-prose p,
.dm-prose li {
    color: var(--dm-muted);
    line-height: 1.75;
    font-size: 0.9375rem;
}

.dm-prose ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

/* ─── Report detail ─── */
.dm-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dm-detail-item {
    background: var(--dm-bg);
    border-radius: var(--dm-radius);
    padding: 1rem 1.25rem;
    border: 1px solid var(--dm-border);
}

.dm-detail-item label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--dm-muted);
    margin-bottom: 0.35rem;
}

.dm-detail-item span {
    font-weight: 600;
    color: var(--dm-dark);
    font-size: 0.9375rem;
}

/* ─── Empty state ─── */
.dm-empty {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--dm-muted);
}

.dm-empty i {
    font-size: 2.5rem;
    opacity: 0.2;
    margin-bottom: 1rem;
    display: block;
}

.dm-empty p {
    margin-bottom: 1rem;
}

/* ─── Card header override (subtle, not gradient) ─── */
.dm-card .card-header,
.card.dm-card-legacy .card-header {
    background: var(--dm-gradient-soft) !important;
    color: var(--dm-dark) !important;
    border-bottom: 1px solid var(--dm-border);
    font-weight: 700;
}

/* ─── Mission block ─── */
.dm-mission {
    background: var(--dm-surface);
    border: 1px solid var(--dm-border);
    border-radius: var(--dm-radius-xl);
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.dm-mission-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--dm-primary-50);
    color: var(--dm-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.dm-mission h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.dm-mission p {
    color: var(--dm-muted);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.dm-mission p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .dm-mission {
        flex-direction: column;
        padding: 1.75rem;
    }

    .dm-inner-hero {
        margin: -1.5rem -1.5rem 2rem;
        padding: 2.5rem 1.5rem;
    }
}

/* ─── Global polish ─── */
.btn-primary {
    background: var(--dm-gradient) !important;
    border: none !important;
    font-weight: 600;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 4px 14px rgba(30, 64, 175, 0.3);
    transform: translateY(-1px);
}

.btn-outline-primary {
    border-color: var(--dm-primary-light) !important;
    color: var(--dm-primary) !important;
    font-weight: 600;
    border-radius: 10px;
}

.btn-outline-primary:hover {
    background: var(--dm-primary-50) !important;
}

.card {
    border-color: var(--dm-border) !important;
    border-radius: var(--dm-radius-lg) !important;
    box-shadow: var(--dm-shadow-sm) !important;
}

.card:hover {
    transform: none;
}

.badge {
    font-weight: 600;
    border-radius: 6px;
}

/* Social proof strip */
.dm-proof-strip {
    background: var(--dm-surface);
    border-bottom: 1px solid var(--dm-border);
    padding: 1.5rem 0;
}

.dm-proof-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    align-items: center;
}

.dm-proof-item {
    text-align: center;
    padding: 0.35rem 0.5rem;
}

.dm-proof-item strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dm-primary);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.dm-proof-item span {
    font-size: 0.85rem;
    color: var(--dm-muted);
    font-weight: 600;
}

.dm-proof-item--accent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--dm-success);
}

.dm-proof-item--accent i {
    font-size: 1.1rem;
}

.dm-proof-item--accent span {
    color: var(--dm-success);
}

/* Pain / persuasion cards */
.dm-pain-card {
    background: var(--dm-surface);
    border: 1px solid var(--dm-border);
    border-radius: var(--dm-radius-lg);
    padding: 1.75rem;
    height: 100%;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.dm-pain-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dm-shadow-lg);
    border-color: var(--dm-primary-100);
}

.dm-pain-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: #fff7ed;
    color: #ea580c;
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.dm-pain-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.55rem;
}

.dm-pain-card p {
    margin: 0;
    color: var(--dm-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* Testimonials */
.dm-quote {
    background: var(--dm-surface);
    border: 1px solid var(--dm-border);
    border-radius: var(--dm-radius-lg);
    padding: 1.5rem 1.5rem 1.25rem;
    height: 100%;
    margin: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--dm-shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.dm-quote:hover {
    transform: translateY(-4px);
    box-shadow: var(--dm-shadow-lg);
    border-color: var(--dm-primary-100);
}

.dm-quote-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.dm-quote-stars {
    display: inline-flex;
    gap: 0.2rem;
    color: #f59e0b;
    font-size: 0.78rem;
}

.dm-quote-mark {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.5rem;
    line-height: 0.6;
    color: var(--dm-primary-100);
    font-weight: 700;
}

.dm-quote blockquote {
    margin: 0;
    padding: 0;
    border: 0;
    flex: 1;
}

.dm-quote blockquote p {
    margin: 0;
    color: var(--dm-dark-soft);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
}

.dm-quote-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--dm-border);
    margin: 0;
}

.dm-quote-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #fff;
    flex-shrink: 0;
}

.dm-quote-avatar--blue { background: linear-gradient(135deg, #1e40af, #3b82f6); }
.dm-quote-avatar--teal { background: linear-gradient(135deg, #0e7490, #22d3ee); }
.dm-quote-avatar--amber { background: linear-gradient(135deg, #b45309, #f59e0b); }

.dm-quote-meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.dm-quote-meta strong {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--dm-dark);
    line-height: 1.2;
}

.dm-quote-meta span {
    font-size: 0.8rem;
    color: var(--dm-muted);
    font-weight: 600;
}

.dm-quote-verified {
    color: var(--dm-success);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Activity ticker */
.dm-activity {
    padding: 0 0 1rem;
}

.dm-activity-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(90deg, #0f172a, #1e3a8a);
    color: #fff;
    border-radius: 14px;
    padding: 0.85rem 1rem;
    overflow: hidden;
}

.dm-activity-label {
    flex: 0 0 auto;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0.9;
}

.dm-activity-track {
    display: flex;
    gap: 2rem;
    animation: dm-marquee 28s linear infinite;
    white-space: nowrap;
}

.dm-activity-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.88rem;
    font-weight: 600;
    opacity: 0.92;
}

.dm-activity-item i {
    color: #67e8f9;
}

/* Sticky CTA */
.dm-sticky-cta {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1040;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    background: rgba(15, 23, 42, 0.94);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 0.85rem 1rem;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(10px);
    transform: translateY(120%);
    transition: transform 0.3s ease;
}

.dm-sticky-cta.is-visible {
    transform: translateY(0);
}

.dm-sticky-cta-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.dm-sticky-cta-copy strong {
    font-size: 0.9rem;
    font-weight: 800;
}

.dm-sticky-cta-copy span {
    font-size: 0.78rem;
    opacity: 0.8;
}

.dm-sticky-cta .btn-dm-primary {
    flex-shrink: 0;
    padding: 0.55rem 0.9rem;
    background: #fff;
    color: var(--dm-primary-dark);
}

/* Reveal on scroll */
.dm-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.dm-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Făurit în Dobrogea credit (aligned with imemory.ro) */
.dm-faurit-credit {
    --dm-faurit-ink: #5a3d3d;
    --dm-faurit-heart: #e11d48;
    --dm-faurit-heart-deep: #be123c;
    --dm-faurit-glow: rgba(225, 29, 72, 0.22);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.42rem 0.8rem 0.42rem 0.55rem;
    color: var(--dm-faurit-ink);
    text-decoration: none !important;
    font-weight: 650;
    font-size: 0.9em;
    line-height: 1.2;
    white-space: nowrap;
    border-radius: 999px;
    border: 1px solid rgba(225, 29, 72, 0.14);
    background: linear-gradient(180deg, rgba(255, 250, 242, 0.95), rgba(255, 241, 242, 0.88));
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.65) inset,
        0 4px 14px rgba(190, 18, 60, 0.08);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.dm-faurit-heart {
    display: inline-grid;
    place-items: center;
    width: 1.15rem;
    height: 1.15rem;
    flex: 0 0 auto;
    color: var(--dm-faurit-heart);
    line-height: 0;
}

.dm-faurit-heart-svg {
    display: block;
    width: 1.15rem;
    height: 1.15rem;
    overflow: visible;
    color: inherit;
}

.dm-faurit-text {
    background: linear-gradient(120deg, #5a3d3d 0%, #9f1239 45%, #5a3d3d 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.dm-faurit-credit:hover,
.dm-faurit-credit:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(225, 29, 72, 0.34);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.7) inset,
        0 10px 24px var(--dm-faurit-glow);
    outline: none;
}

.dm-faurit-credit:hover .dm-faurit-heart,
.dm-faurit-credit:focus-visible .dm-faurit-heart {
    color: var(--dm-faurit-heart-deep);
}

.dm-faurit-credit:hover .dm-faurit-text,
.dm-faurit-credit:focus-visible .dm-faurit-text {
    background-position: 100% 0;
}

.dm-faurit-credit--footer {
    margin-top: 0;
    font-size: 0.92rem;
}

.dm-faurit-credit--nav {
    font-size: 0.84rem;
    max-width: min(42vw, 13.5rem);
}

.dm-faurit-credit--nav .dm-faurit-text {
    overflow: hidden;
    text-overflow: ellipsis;
}

.dm-footer .dm-faurit-credit--footer {
    vertical-align: middle;
}

@keyframes dm-pulse {
    0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55); }
    70% { box-shadow: 0 0 0 12px rgba(52, 211, 153, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

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

@keyframes dm-grid-drift {
    from { background-position: 0 0; }
    to { background-position: 48px 48px; }
}

@keyframes dm-brand-shine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes dm-panel-in {
    from { opacity: 0; transform: translateY(18px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes dm-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 991.98px) {
    .dm-hero {
        min-height: auto;
        padding: 3.5rem 0 3rem;
    }

    .dm-hero h1 {
        max-width: none;
    }

    .dm-proof-strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .dm-hero-check-row {
        grid-template-columns: 1fr;
    }

    .dm-activity-label {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .dm-proof-strip-inner {
        grid-template-columns: 1fr 1fr;
    }

    .dm-sticky-cta {
        left: 0.65rem;
        right: 0.65rem;
        bottom: 0.65rem;
    }
}

@media (min-width: 992px) {
    .dm-sticky-cta {
        display: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dm-hero-grid,
    .dm-hero-orb,
    .dm-hero-brand,
    .dm-pulse-dot,
    .dm-activity-track,
    .dm-reveal,
    .dm-hero-check {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Onboarding wizard */
.dm-onboarding-page {
    padding: 2rem 0 3.5rem;
}

.dm-onboarding-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-bottom: 1.75rem;
}

.dm-onboarding-step {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--dm-muted-light);
    font-size: 0.8rem;
    font-weight: 700;
}

.dm-onboarding-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: var(--dm-border);
    color: var(--dm-muted);
    font-size: 0.8rem;
}

.dm-onboarding-step.is-active {
    color: var(--dm-primary);
}

.dm-onboarding-step.is-active .dm-onboarding-step-num {
    background: var(--dm-gradient);
    color: #fff;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
}

.dm-onboarding-step.is-done .dm-onboarding-step-num {
    background: var(--dm-success);
    color: #fff;
}

.dm-onboarding-line {
    width: 36px;
    height: 3px;
    border-radius: 99px;
    background: var(--dm-border);
}

.dm-onboarding-line.is-done {
    background: var(--dm-success);
}

.dm-onboarding-card {
    background: var(--dm-surface);
    border: 1px solid var(--dm-border);
    border-radius: var(--dm-radius-xl);
    padding: 2rem 1.75rem;
    box-shadow: var(--dm-shadow-lg);
    text-align: center;
}

.dm-onboarding-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    margin: 0 auto 1.25rem;
    background: var(--dm-primary-50);
    color: var(--dm-primary);
    font-size: 1.5rem;
}

.dm-onboarding-icon--teal {
    background: #ecfeff;
    color: var(--dm-accent);
}

.dm-onboarding-icon--green {
    background: #ecfdf5;
    color: var(--dm-success);
}

.dm-onboarding-card h1 {
    font-size: clamp(1.45rem, 3vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.65rem;
    color: var(--dm-dark);
}

.dm-onboarding-lead {
    color: var(--dm-muted);
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 auto 1.5rem;
    max-width: 36ch;
}

.dm-onboarding-plate {
    color: var(--dm-primary);
    font-weight: 800;
    letter-spacing: 0.03em;
}

.dm-onboarding-form {
    text-align: left;
}

.dm-onboarding-input {
    font-weight: 700 !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.9rem 1rem !important;
    border-radius: 12px !important;
    font-size: 1.05rem !important;
}

.dm-onboarding-skip {
    display: inline-block;
    margin-top: 1.25rem;
    background: none;
    border: 0;
    color: var(--dm-muted);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.dm-onboarding-skip:hover {
    color: var(--dm-primary);
}

.dm-onboarding-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    text-align: left;
    background: var(--dm-primary-50);
    color: var(--dm-dark-soft);
    border: 1px solid var(--dm-primary-100);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.dm-onboarding-alert--success {
    background: #ecfdf5;
    border-color: #a7f3d0;
    color: #065f46;
}

.dm-onboarding-next {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
}

.dm-onboarding-next li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 0;
    color: var(--dm-dark-soft);
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--dm-border);
}

.dm-onboarding-next li:last-child {
    border-bottom: 0;
}

.dm-onboarding-next i {
    color: var(--dm-success);
    width: 1.25rem;
    text-align: center;
}

@media (max-width: 575.98px) {
    .dm-onboarding-step-label {
        display: none;
    }

    .dm-onboarding-line {
        width: 48px;
    }

    .dm-onboarding-card {
        padding: 1.5rem 1.15rem;
    }
}
