/* Duding global font — clean, modern, minimal */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg: #ffffff;
    --ink: #111111;
    --muted: #6b7280;
    --line: #e5e7eb;
    --brand: #ff5a5f;
    --brand-glow: rgba(255, 90, 95, 0.22);
    --chip: #f3f4f6;
    --radius: 18px;
    --shadow-soft: 0 12px 32px rgba(15, 23, 42, 0.06);
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
        Roboto, Helvetica, Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.5;
    overflow-x: hidden;
}

.wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =====================
   HEADER / NAV
   ===================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: #0b0b0b;
    color: #ffffff;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

.nav {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    font-size: 22px;
    letter-spacing: 0.06em;
    text-transform: lowercase;
    font-weight: 800;
    text-decoration: none;
    color: #ffffff;
}

.nav-right {
    display: flex;
    gap: 16px;
    align-items: center;
}

.nav-right .link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
}

.nav-right .link:hover {
    opacity: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 0;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.btn-small {
    padding: 8px 14px;
    font-size: 13px;
}

.btn-primary {
    background: var(--brand);
    color: #ffffff;
    box-shadow: 0 10px 24px var(--brand-glow);
}

.btn-primary:hover {
    transform: translateY(-1px);
}

.btn-lite {
    background: #ffffff;
    color: #333333;
    border: 1px solid #dedede;
}

.btn-lite:hover {
    background: #f8f8f8;
}

.btn-wide {
    max-width: 360px;
    width: 100%;
}

/* =====================
   HERO
   ===================== */

.hero {
    padding: 56px 0 24px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-copy {
    max-width: 520px;
}

.kicker {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 12px;
    color: var(--muted);
    margin: 0 0 12px;
}

.headline {
    font-size: clamp(40px, 5.2vw, 62px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
    font-weight: 900;
}

.hero-sub {
    font-size: 15px;
    color: #4b5563;
    margin: 0 0 14px;
}

.value-bullets {
    margin: 0 0 20px;
    padding-left: 18px;
    font-size: 14px;
    color: #374151;
}

.value-bullets li {
    margin: 6px 0;
}

.cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.chip-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.chip {
    background: var(--chip);
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 12px;
    color: #333333;
}

.hero-note {
    font-size: 12px;
    color: #6b7280;
    margin-top: 10px;
}

.hero-figure {
    display: grid;
    place-items: center;
}

.mascot {
    max-width: clamp(320px, 42vw, 540px);
    height: auto;
    display: block;
}

/* =====================
   GENERIC SECTIONS
   ===================== */

.section {
    padding: 56px 0;
    background: #ffffff;
}

.section-alt {
    background: #f9fafb;
}

.section-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 32px;
    align-items: flex-start;
}

.section-copy {
    max-width: 540px;
}

.section-list ul {
    margin: 0;
    padding-left: 18px;
    font-size: 14px;
    color: #4b5563;
}

.section-list li {
    margin: 6px 0;
}

.section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11px;
    color: #9ca3af;
    margin: 0 0 8px;
}

.section-title {
    font-size: 24px;
    margin: 0 0 8px;
}

.section-text {
    font-size: 14px;
    color: #4b5563;
    margin: 0 0 10px;
}

.section-text-small {
    font-size: 13px;
    color: #6b7280;
}

/* Feature grid */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.feature-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 14px 14px 16px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.03);
    font-size: 13px;
}

.feature-card h3 {
    font-size: 14px;
    margin: 0 0 6px;
}

/* Three-step section */

.three-step-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.step-card {
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 14px 14px 18px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.03);
    font-size: 13px;
}

.step-label {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9ca3af;
    margin-bottom: 4px;
}

.step-card h3 {
    font-size: 15px;
    margin: 0 0 6px;
}

/* Pill / who-this-is-for section */

.pill-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 24px;
    align-items: flex-start;
}

.pill-list ul {
    margin: 8px 0 0;
    padding-left: 18px;
    font-size: 14px;
    color: #4b5563;
}

.pill-list li {
    margin: 6px 0;
}

.pill-callout {
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    padding: 14px 16px 16px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.03);
    font-size: 13px;
}

.pill-tag {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 11px;
    color: #9ca3af;
    margin: 0 0 6px;
}

/* Tiers */

.tier-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.tier-card {
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    padding: 16px 16px 18px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.03);
    font-size: 13px;
    position: relative;
}

.tier-card h3 {
    font-size: 15px;
    margin: 0 0 4px;
}

.tier-price {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 8px;
}

.tier-card ul {
    margin: 0;
    padding-left: 18px;
}

.tier-card li {
    margin: 4px 0;
}

.tier-card-highlight {
    border-color: var(--brand);
    box-shadow: 0 16px 40px rgba(255, 90, 95, 0.18);
}

.tier-badge {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #b91c1c;
}

/* Reserve section */

.reserve-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 24px;
    align-items: flex-start;
}

.reserve-callout {
    border-radius: 18px;
    border: 1px dashed #d1d5db;
    background: #f9fafb;
    padding: 14px 16px 16px;
    font-size: 13px;
    color: #4b5563;
}

.reserve-label {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 11px;
    color: #9ca3af;
    margin: 0 0 6px;
}

.reserve-text {
    margin: 0;
}

/* =====================
   LEAD FORM
   ===================== */

.lead {
    padding: 56px 0 72px;
    background: #fafafa;
}

.lead-title {
    font-size: 24px;
    margin: 0 0 8px;
}

.lead-subtext {
    font-size: 14px;
    color: #4b5563;
    max-width: 600px;
    margin: 0 0 16px;
}

.banner {
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 600;
}

.banner.success {
    background: #e7fbe9;
    color: #166534;
}

.banner.danger {
    background: #fee2e2;
    color: #7f1d1d;
}

.lead-form .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 14px;
}

.field {
    width: 100%;
    height: 44px;
    border-radius: 10px;
    border: 1px solid var(--line);
    padding: 10px 12px;
    font-size: 15px;
    background: #ffffff;
}

.field:focus {
    outline: none;
    border-color: #cbd5e1;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* =====================
   FOOTER
   ===================== */

.site-footer {
    border-top: 1px solid var(--line);
    padding: 28px 0;
    font-size: 12px;
    color: var(--muted);
}

/* =====================
   ADMIN / DASHBOARD
   ===================== */

.admin-shell {
    padding: 56px 0 72px;
    background: #ffffff;
}

.admin-wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.admin-title {
    margin: 0 0 6px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-subtitle {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
    max-width: 520px;
}

.admin-header-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-export {
    font-size: 13px;
}

.admin-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.admin-stat-card {
    flex: 0 0 180px;
    padding: 14px 18px 16px;
    border-radius: 16px;
    border: 1px solid #eeeeee;
    background: #fafafa;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.03);
}

.admin-stat-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #9ca3af;
    margin-bottom: 6px;
}

.admin-stat-value {
    display: block;
    font-size: 22px;
    font-weight: 700;
}

/* Section + table */

.admin-section {
    margin-top: 8px;
}

.admin-section-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 14px;
}

.admin-section-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.admin-section-subtitle {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
}

.admin-table-card {
    border-radius: 18px;
    border: 1px solid #eeeeee;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.03);
}

.admin-table-scroll {
    width: 100%;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.admin-table thead {
    background: #fafafa;
}

.admin-table th,
.admin-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid #f1f1f1;
    white-space: nowrap;
}

.admin-table th {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    color: #9ca3af;
}

.admin-table tbody tr:nth-child(even) {
    background: #fcfcfc;
}

.admin-table tbody tr:hover {
    background: #f7f7f7;
}

/* Column tweaks */

.col-id {
    font-variant-numeric: tabular-nums;
    color: #777777;
}

.col-created {
    font-variant-numeric: tabular-nums;
}

.col-email {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.col-count {
    text-align: center;
}

/* Status badges */

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.badge-new {
    background: #e5f2ff;
    color: #1d4ed8;
}

.badge-completed {
    background: #e7fbe9;
    color: #15803d;
}

.badge-default {
    background: #f3f4f6;
    color: #4b5563;
}

.admin-empty {
    text-align: center;
    padding: 32px 12px;
    color: #9ca3af;
    font-size: 13px;
}

/* =====================
   RESPONSIVE
   ===================== */

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-figure {
        order: 2;
        margin-top: 24px;
    }

    .section-grid,
    .pill-grid,
    .reserve-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .three-step-grid,
    .tier-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-header {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-stat-card {
        flex: 1 1 140px;
    }
}

@media (max-width: 720px) {
    .hero {
        padding-top: 32px;
        padding-bottom: 40px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        gap: 24px;
    }

    .hero-copy {
        max-width: 400px;
    }

    .value-bullets {
        display: inline-block;
        text-align: left;
        margin-inline: auto;
    }

    .hero-figure {
        margin-top: 8px;
    }

    .mascot {
        max-width: 220px;
    }

    .lead-form .grid {
        grid-template-columns: 1fr;
    }

    .btn-wide {
        max-width: 100%;
    }

    .feature-grid,
    .three-step-grid,
    .tier-grid {
        grid-template-columns: 1fr;
    }
}
