﻿:root {
    --color-bg: #faf8f3;
    --color-surface: #ffffff;
    --color-mint: #e8f7f4;
    --color-mint-strong: #cfeee9;
    --color-teal: #009a9b;
    --color-teal-dark: #007b7d;
    --color-navy: #071a3d;
    --color-muted: #5d6b82;
    --color-border: #dde7e6;
    --color-amber: #f5b942;
    --color-purple: #7a4bc2;
    --shadow-soft: 0 20px 50px rgba(7, 26, 61, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-navy);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(221, 231, 230, 0.9);
    background: rgba(250, 248, 243, 0.94);
    backdrop-filter: blur(14px);
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0;
}

.brand-mark {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 8px;
    background: var(--color-teal);
    color: #ffffff;
    font-weight: 900;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--color-muted);
    font-size: 15px;
    font-weight: 700;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.account-summary,
.mobile-account {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.account-summary {
    min-height: 44px;
    padding: 6px 12px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #ffffff;
}

.account-summary:hover,
.mobile-account:hover {
    border-color: var(--color-teal);
    color: inherit;
}

.account-avatar {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 8px;
    background: var(--color-teal);
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.account-name,
.account-email {
    display: block;
    line-height: 1.15;
}

.account-name {
    max-width: 180px;
    overflow: hidden;
    color: var(--color-navy);
    font-size: 14px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-email {
    max-width: 180px;
    overflow: hidden;
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mobile-menu {
    position: relative;
    display: none;
}

.mobile-menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #ffffff;
    color: var(--color-navy);
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.mobile-menu-toggle[aria-expanded="true"] {
    border-color: var(--color-teal);
    color: var(--color-teal-dark);
}

.mobile-menu-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: grid;
    min-width: 220px;
    padding: 8px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(7, 26, 61, 0.14);
}

.mobile-menu-panel[hidden] {
    display: none;
}

.mobile-menu-panel a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 8px;
    color: var(--color-navy);
    font-weight: 900;
}

.mobile-menu-panel a:hover {
    background: var(--color-mint);
    color: var(--color-teal-dark);
}

.mobile-account {
    padding: 10px 12px 12px;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 6px;
    color: inherit;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    white-space: nowrap;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: var(--color-teal);
    color: #ffffff;
}

.button-primary:hover {
    background: var(--color-teal-dark);
}

.button-secondary {
    border-color: var(--color-border);
    background: #ffffff;
    color: var(--color-navy);
}

.hero {
    display: grid;
    align-items: center;
    min-height: calc(92vh - 72px);
    padding: 54px 0 36px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    text-align: center;
}

.hero-copy {
    max-width: 840px;
    margin: 0 auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 12px;
    border: 1px solid var(--color-mint-strong);
    border-radius: 8px;
    background: var(--color-mint);
    color: var(--color-teal-dark);
    font-size: 14px;
    font-weight: 800;
}

h1 {
    max-width: 780px;
    margin: 0 auto;
    font-size: clamp(42px, 7vw, 74px);
    line-height: 1.02;
    letter-spacing: 0;
}

.accent-text {
    color: var(--color-teal);
}

.hero-lead {
    max-width: 620px;
    margin: 20px auto 0;
    color: var(--color-muted);
    font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.hero-preview {
    position: relative;
    display: grid;
    justify-items: center;
    margin: 8px auto 0;
}

.phone-shell {
    width: min(360px, 88vw);
    min-height: 610px;
    padding: 16px;
    border: 10px solid #ffffff;
    border-radius: 36px;
    background: #f6fbfa;
    box-shadow: var(--shadow-soft);
}

.phone-screen {
    min-height: 560px;
    padding: 18px;
    border: 1px solid var(--color-border);
    border-radius: 26px;
    background: #ffffff;
}

.phone-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    color: var(--color-navy);
    font-size: 12px;
    font-weight: 800;
}

.app-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    gap: 12px;
    font-size: 20px;
    font-weight: 900;
}

.app-title span {
    color: var(--color-teal);
}

.week-card {
    padding: 16px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-mint);
    text-align: left;
}

.week-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 13px;
    color: var(--color-muted);
    font-weight: 800;
}

.week-badge {
    padding: 5px 8px;
    border-radius: 8px;
    background: #ffffff;
    color: var(--color-teal-dark);
    font-size: 12px;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.metric {
    min-height: 74px;
    padding: 10px 8px;
    border-radius: 8px;
    background: #ffffff;
    text-align: center;
}

.metric strong {
    display: block;
    font-size: 22px;
    line-height: 1;
}

.metric small {
    display: block;
    margin-top: 5px;
    color: var(--color-muted);
    font-size: 11px;
    font-weight: 700;
}

.shift-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.shift-row {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 10px;
    min-height: 66px;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-teal);
    border-radius: 8px;
    background: #ffffff;
    text-align: left;
}

.shift-row:nth-child(2) {
    border-left-color: var(--color-purple);
}

.shift-avatar {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 8px;
    background: var(--color-mint);
    color: var(--color-teal-dark);
    font-weight: 900;
}

.shift-row:nth-child(2) .shift-avatar {
    background: #efe8fb;
    color: var(--color-purple);
}

.shift-name {
    display: block;
    font-size: 14px;
    font-weight: 900;
}

.shift-meta {
    display: block;
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 700;
}

.shift-hours {
    color: var(--color-teal-dark);
    font-size: 13px;
    font-weight: 900;
}

.desktop-preview {
    display: grid;
    width: min(920px, 100%);
    margin: -60px auto 0;
    padding: 18px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(7, 26, 61, 0.08);
    transform: translateY(70px);
}

.schedule-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    gap: 10px;
    overflow: hidden;
}

.day-column {
    min-height: 150px;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #fbfdfc;
}

.day-column strong {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.mini-shift {
    margin-top: 8px;
    padding: 8px;
    border-radius: 8px;
    background: var(--color-mint);
    color: var(--color-navy);
    font-size: 12px;
    font-weight: 800;
}

.section {
    padding: 96px 0;
}

.section-mint {
    background: var(--color-mint);
}

.section-header {
    max-width: 680px;
    margin-bottom: 34px;
}

.section-header.center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    letter-spacing: 0;
}

.section-copy {
    margin: 14px 0 0;
    color: var(--color-muted);
    font-size: 18px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.benefit-card,
.price-card,
.step-card {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-surface);
}

.benefit-card {
    min-height: 210px;
    padding: 24px;
}

.benefit-symbol {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 8px;
    background: var(--color-mint);
    color: var(--color-teal-dark);
    font-weight: 900;
}

.benefit-card h3,
.step-card h3,
.price-card h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.25;
}

.benefit-card p,
.step-card p,
.price-card p {
    margin: 10px 0 0;
    color: var(--color-muted);
}

.audience-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 26px;
}

.audience-chip {
    padding: 10px 14px;
    border: 1px solid var(--color-mint-strong);
    border-radius: 8px;
    background: #ffffff;
    color: var(--color-navy);
    font-weight: 800;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.step-card {
    padding: 26px;
}

.step-number {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 8px;
    background: var(--color-navy);
    color: #ffffff;
    font-weight: 900;
}

.product-band {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 28px;
}

.report-panel {
    padding: 22px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #ffffff;
}

.report-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
}

.report-row:last-child {
    border-bottom: 0;
}

.report-label {
    font-weight: 900;
}

.report-note {
    display: block;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 700;
}

.report-value {
    font-weight: 900;
    color: var(--color-teal-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.pricing-empty {
    padding: 26px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #ffffff;
    color: var(--color-muted);
    font-weight: 800;
    text-align: center;
}

.price-card {
    display: flex;
    min-height: 350px;
    padding: 26px;
    flex-direction: column;
}

.price-card.featured {
    border-color: var(--color-teal);
    box-shadow: 0 18px 42px rgba(0, 154, 155, 0.12);
}

.price {
    margin: 18px 0;
    font-size: 38px;
    font-weight: 900;
}

.price span {
    color: var(--color-muted);
    font-size: 15px;
    font-weight: 800;
}

.price-list {
    display: grid;
    gap: 10px;
    margin: 0 0 24px;
    padding: 0;
    color: var(--color-muted);
    list-style: none;
}

.price-list li {
    padding-left: 18px;
    position: relative;
}

.price-list li::before {
    position: absolute;
    left: 0;
    color: var(--color-teal);
    content: "•";
    font-weight: 900;
}

.price-card .button {
    margin-top: auto;
}

.final-cta {
    padding: 70px 0;
    background: var(--color-navy);
    color: #ffffff;
    text-align: center;
}

.final-cta p {
    max-width: 620px;
    margin: 14px auto 26px;
    color: #dbe8ea;
    font-size: 18px;
}

.login-page {
    min-height: calc(100vh - 72px);
    background: var(--color-bg);
}

.login-section {
    display: grid;
    min-height: calc(100vh - 72px);
    padding: 72px 0;
    align-items: center;
}

.login-container {
    display: flex;
    justify-content: center;
}

.login-panel {
    display: grid;
    width: min(920px, 100%);
    grid-template-columns: 0.95fr 1.05fr;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.login-copy {
    display: flex;
    min-height: 460px;
    padding: 42px;
    flex-direction: column;
    justify-content: center;
    background: var(--color-mint);
}

.login-copy h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.05;
}

.login-copy p {
    margin: 18px 0 0;
    color: var(--color-muted);
    font-size: 18px;
}

.login-form {
    display: flex;
    padding: 42px;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

.form-field {
    display: grid;
    gap: 8px;
}

.form-error {
    padding: 12px 14px;
    border: 1px solid #f3b5b5;
    border-radius: 8px;
    background: #fff0f0;
    color: #9f1d1d;
    font-weight: 800;
}

.form-field label {
    color: var(--color-navy);
    font-weight: 900;
}

.form-field input {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-navy);
    font: inherit;
}

.form-field input:focus {
    border-color: var(--color-teal);
    outline: 3px solid rgba(0, 154, 155, 0.16);
}

.login-form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--color-muted);
    font-size: 14px;
    font-weight: 800;
}

.login-form-row a,
.login-register-link a {
    color: var(--color-teal-dark);
    font-weight: 900;
}

.remember-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.remember-option input {
    width: 16px;
    height: 16px;
    accent-color: var(--color-teal);
}

.login-submit {
    width: 100%;
    margin-top: 4px;
}

.login-register-link {
    margin: 0;
    color: var(--color-muted);
    text-align: center;
    font-size: 14px;
    font-weight: 800;
}

.admin-body {
    min-height: 100vh;
    overflow: hidden;
    background: #f6faf9;
}

.admin-shell {
    display: grid;
    min-height: 100vh;
    grid-template-columns: 280px minmax(0, 1fr);
}

.admin-sidebar {
    display: flex;
    min-height: 100vh;
    padding: 24px;
    flex-direction: column;
    background: #05142f;
    color: #ffffff;
}

.admin-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    margin-bottom: 30px;
    font-size: 23px;
    font-weight: 900;
}

.admin-sidebar-nav {
    display: grid;
    gap: 6px;
}

.admin-sidebar-nav a,
.admin-support-link {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    padding: 0 10px;
    border-radius: 8px;
    color: #d8e4e8;
    font-weight: 800;
}

.admin-sidebar-nav a:hover,
.admin-sidebar-nav a.active,
.admin-support-link:hover {
    background: rgba(0, 154, 155, 0.18);
    color: #ffffff;
}

.admin-nav-icon {
    display: grid;
    width: 24px;
    place-items: center;
    color: #ffffff;
    font-weight: 900;
}

.admin-sidebar-bottom {
    display: grid;
    gap: 12px;
    margin-top: auto;
}

.admin-plan {
    display: grid;
    gap: 10px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-plan span {
    color: #52d8ff;
    font-weight: 900;
}

.admin-plan a {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 18px;
    border: 1px solid rgba(82, 216, 255, 0.7);
    border-radius: 8px;
    color: #52d8ff;
    font-weight: 800;
}

.admin-main {
    min-width: 0;
    min-height: 100vh;
    overflow-y: auto;
}

.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 82px;
    padding: 16px 32px;
    border-bottom: 1px solid var(--color-border);
    background: rgba(246, 250, 249, 0.94);
    backdrop-filter: blur(14px);
}

.admin-page-kicker {
    display: block;
    color: var(--color-teal-dark);
    font-size: 13px;
    font-weight: 900;
}

.admin-topbar h1 {
    margin: 2px 0 0;
    font-size: 28px;
    line-height: 1.1;
}

.admin-account-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-content {
    display: grid;
    gap: 18px;
    padding: 32px;
}

.admin-welcome {
    padding: 30px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(7, 26, 61, 0.06);
}

.admin-welcome h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
}

.admin-welcome p {
    max-width: 720px;
    margin: 14px 0 0;
    color: var(--color-muted);
    font-size: 18px;
}

.admin-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.admin-stat-card {
    min-height: 160px;
    padding: 24px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #ffffff;
}

.admin-stat-card span,
.admin-stat-card small {
    display: block;
    color: var(--color-muted);
    font-weight: 800;
}

.admin-stat-card strong {
    display: block;
    margin: 14px 0 6px;
    color: var(--color-navy);
    font-size: 44px;
    line-height: 1;
}

.site-footer {
    padding: 28px 0;
    background: #05142f;
    color: #c5d5d8;
    font-size: 14px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 900px) {
    .main-nav {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .desktop-preview {
        margin-top: -20px;
        transform: translateY(40px);
    }

    .schedule-strip {
        grid-template-columns: repeat(5, 160px);
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .benefit-grid,
    .steps-grid,
    .pricing-grid,
    .product-band,
    .login-panel {
        grid-template-columns: 1fr;
    }

    .login-copy {
        min-height: auto;
    }

    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        min-height: auto;
        padding: 16px;
    }

    .admin-sidebar-brand {
        margin-bottom: 14px;
    }

    .admin-sidebar-nav {
        display: flex;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .admin-sidebar-nav a {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .admin-sidebar-bottom {
        display: none;
    }

    .admin-topbar {
        position: static;
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    .header-inner {
        min-height: 64px;
    }

    .brand {
        font-size: 19px;
    }

    .hero {
        min-height: auto;
        padding: 40px 0 28px;
    }

    h1 {
        font-size: 42px;
    }

    .hero-lead {
        font-size: 17px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .phone-shell {
        min-height: 560px;
        border-width: 8px;
        border-radius: 30px;
    }

    .phone-screen {
        min-height: 520px;
        padding: 15px;
    }

    .metric-grid {
        gap: 6px;
    }

    .metric strong {
        font-size: 19px;
    }

    .shift-row {
        grid-template-columns: 36px 1fr;
    }

    .shift-hours {
        grid-column: 2;
    }

    .section {
        padding: 68px 0;
    }

    .login-section {
        padding: 42px 0;
    }

    .login-copy,
    .login-form {
        padding: 28px;
    }

    .login-form-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .admin-topbar,
    .admin-content {
        padding: 20px;
    }

    .admin-account-actions {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .admin-account-actions .account-summary,
    .admin-account-actions .button {
        width: 100%;
    }

    .footer-inner {
        flex-direction: column;
    }
}
