:root {
    --bg: #f7efe6;
    --bg-soft: #fffaf5;
    --surface: rgba(255, 250, 245, 0.75);
    --surface-strong: #fffdf9;
    --ink: #1f1d1a;
    --muted: #665f58;
    --line: rgba(31, 29, 26, 0.1);
    --primary: #eb5e2e;
    --primary-dark: #bf431a;
    --secondary: #0f8a5f;
    --secondary-dark: #076245;
    --accent: #f3c969;
    --card-peach: linear-gradient(135deg, #ffd5c4, #ffefc7);
    --card-green: linear-gradient(135deg, #d2ffd8, #f4f7c2);
    --card-lime: linear-gradient(135deg, #d8ffd3, #fff4bb);
    --shadow: 0 24px 60px rgba(73, 44, 28, 0.12);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(243, 201, 105, 0.5), transparent 28%),
        radial-gradient(circle at top right, rgba(15, 138, 95, 0.16), transparent 30%),
        linear-gradient(180deg, #fff6eb 0%, var(--bg) 55%, #f3eadf 100%);
}

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

button,
input,
select,
textarea {
    font: inherit;
}

.site-shell,
.auth-layout {
    min-height: 100vh;
}

.site-shell {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
    padding: 24px 0 32px;
}

.topbar {
    position: sticky;
    top: 18px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 18px;
    backdrop-filter: blur(18px);
    background: rgba(255, 252, 247, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    box-shadow: 0 12px 35px rgba(73, 44, 28, 0.08);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand strong,
h1,
h2,
h3 {
    font-family: "Sora", sans-serif;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    padding: 6px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 30px rgba(73, 44, 28, 0.14);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    font-weight: 600;
}

.nav a {
    color: var(--muted);
}

.nav-pill,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 14px 22px;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-pill {
    color: white !important;
    background: var(--ink);
}

.button {
    font-weight: 700;
    border: 0;
    cursor: pointer;
}

.button:hover,
.nav-pill:hover,
.social-button:hover,
.menu-toggle:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: white;
    background: linear-gradient(135deg, var(--primary), #fb8c3c);
    box-shadow: 0 16px 28px rgba(235, 94, 46, 0.28);
}

.button-secondary {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(31, 29, 26, 0.08);
}

.button-block {
    width: 100%;
}

.button-small {
    padding: 10px 16px;
}

.section {
    padding: 86px 0 0;
}

.hero {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 42px;
    min-height: calc(100vh - 170px);
}

.eyebrow,
.pill-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(31, 29, 26, 0.08);
    color: var(--secondary-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.feature-band-copy h2,
.promo-card h2,
.auth-copy h1,
.auth-form-wrap h2 {
    margin: 0;
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.hero h1 {
    font-size: clamp(3.3rem, 5vw, 5.7rem);
    max-width: 11ch;
}

.hero p,
.section-heading p,
.feature-band-copy p,
.promo-card p,
.auth-copy p,
.auth-form-wrap p {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0;
}

.hero-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 16px;
    margin-top: 24px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.hero-search label,
.auth-form label,
.dashboard-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.92rem;
    font-weight: 700;
}

.hero-search input,
.auth-form input,
.auth-form select,
.dashboard-form input,
.dashboard-form select,
.dashboard-form textarea {
    width: 100%;
    border: 1px solid rgba(31, 29, 26, 0.08);
    border-radius: 14px;
    padding: 14px 16px;
    background: white;
    color: var(--ink);
}

.dashboard-form textarea {
    resize: vertical;
    min-height: 96px;
}

.dashboard-form input:disabled,
.dashboard-form select:disabled,
.button:disabled {
    cursor: not-allowed;
    opacity: 0.68;
}

.auth-select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
    background-position: calc(100% - 22px) calc(50% - 3px), calc(100% - 16px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.hero-search button {
    align-self: end;
    min-width: 150px;
    border: 0;
    border-radius: 16px;
    color: white;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary), #24b77f);
    cursor: pointer;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 0;
    margin: 26px 0 0;
    list-style: none;
}

.hero-stats li,
.metric-card {
    min-width: 150px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 253, 249, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 12px 30px rgba(73, 44, 28, 0.08);
}

.hero-stats strong,
.metric-card strong {
    display: block;
    margin-bottom: 4px;
    font-family: "Sora", sans-serif;
    font-size: 1.15rem;
}

.hero-stats span,
.metric-card span {
    color: var(--muted);
    font-size: 0.92rem;
}

.hero-visual {
    position: relative;
    padding: 38px 24px;
}

.phone-card,
.promo-card,
.auth-form-wrap,
.auth-panel-brand {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 250, 245, 0.72));
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow);
}

.phone-card {
    padding: 24px;
    max-width: 430px;
    margin-left: auto;
}

.phone-card::before,
.auth-panel-brand::before,
.auth-form-wrap::before,
.promo-card::before {
    content: "";
    position: absolute;
    inset: auto -30px -50px auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243, 201, 105, 0.4), transparent 70%);
}

.phone-card-header,
.order-sheet,
.restaurant-topline,
.auth-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.phone-card-header span:last-child {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(15, 138, 95, 0.1);
    color: var(--secondary-dark);
    font-size: 0.8rem;
    font-weight: 800;
}

.map-card {
    position: relative;
    height: 240px;
    margin: 18px 0;
    border-radius: 28px;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.55) 0 8%, transparent 8% 92%, rgba(255,255,255,0.55) 92% 100%),
        linear-gradient(rgba(255,255,255,0.55) 0 8%, transparent 8% 92%, rgba(255,255,255,0.55) 92% 100%),
        linear-gradient(135deg, #ffe8d5, #eef7d2);
}

.island-label {
    position: absolute;
    z-index: 1;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(73, 44, 28, 0.08);
}

.island-siargao {
    top: 28px;
    left: 26px;
}

.island-bucas {
    right: 22px;
    bottom: 28px;
}

.map-pin {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 10px rgba(235, 94, 46, 0.12);
}

.pin-one {
    top: 74px;
    left: 74px;
}

.pin-two {
    right: 78px;
    bottom: 72px;
    background: var(--secondary);
    box-shadow: 0 0 0 10px rgba(15, 138, 95, 0.14);
}

.map-route {
    position: absolute;
    inset: 84px 84px 84px 84px;
    border: 4px dashed rgba(31, 29, 26, 0.28);
    border-radius: 80px 90px 80px 90px;
}

.order-sheet {
    padding: 18px 20px;
    border-radius: 20px;
    background: white;
    margin-bottom: 16px;
}

.order-sheet p {
    margin: 0 0 4px;
    color: var(--muted);
    font-size: 0.9rem;
}

.order-sheet h3 {
    margin: 0;
    font-size: 1.15rem;
}

.order-sheet span {
    font-family: "Sora", sans-serif;
    font-weight: 800;
}

.mini-grid,
.feature-list,
.steps-grid,
.auth-metrics,
.social-grid {
    display: grid;
    gap: 16px;
}

.mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-grid article,
.feature-card,
.step-card,
.category-card,
.restaurant-card,
.metric-card,
.social-button {
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.mini-grid article {
    padding: 18px;
}

.mini-grid strong,
.step-card span {
    display: block;
    margin-bottom: 8px;
    font-family: "Sora", sans-serif;
}

.floating-card {
    position: absolute;
    padding: 16px 18px;
    max-width: 210px;
    border-radius: 20px;
    background: rgba(31, 29, 26, 0.92);
    color: white;
    box-shadow: 0 22px 45px rgba(31, 29, 26, 0.18);
}

.floating-card span {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.card-one {
    top: 36px;
    left: 0;
}

.card-two {
    right: 0;
    bottom: 14px;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 30px;
}

.section-topline {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.section-topline .section-heading {
    margin-bottom: 0;
}

.section-link {
    color: var(--primary-dark);
    font-weight: 800;
    white-space: nowrap;
}

.section-heading h2,
.feature-band-copy h2,
.promo-card h2,
.auth-copy h1,
.auth-form-wrap h2 {
    font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.category-grid,
.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.cuisine-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.category-card,
.feature-card,
.step-card {
    padding: 24px;
    box-shadow: 0 18px 35px rgba(73, 44, 28, 0.08);
}

.category-icon {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, #fff0c6, #ffd7cc);
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.category-card h3,
.feature-card h3,
.step-card h3 {
    margin: 0 0 8px;
    font-size: 1.08rem;
}

.category-card p,
.feature-card p,
.step-card p,
.restaurant-body p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.restaurant-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.restaurant-grid-all {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.restaurant-card {
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(73, 44, 28, 0.1);
}

.restaurant-visual {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 210px;
    padding: 24px;
}

.restaurant-visual span,
.restaurant-visual strong {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    font-size: 0.82rem;
}

.restaurant-body {
    padding: 24px;
}

.restaurant-topline h3 {
    margin: 0;
    font-size: 1.2rem;
}

.restaurant-topline span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15, 138, 95, 0.12);
    color: var(--secondary-dark);
    font-weight: 800;
}

.restaurant-body p {
    margin: 14px 0 18px;
}

.restaurant-body a,
.auth-row a,
.auth-footer-copy a {
    color: var(--primary-dark);
    font-weight: 800;
}

.deals-section {
    padding-top: 72px;
}

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

.deal-card {
    padding: 28px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 40px rgba(73, 44, 28, 0.08);
}

.deal-card-1 {
    background: linear-gradient(135deg, #fff0cf, #ffd7c9);
}

.deal-card-2 {
    background: linear-gradient(135deg, #dfffd8, #fff1bf);
}

.deal-card-3 {
    background: linear-gradient(135deg, #ffe0cd, #f0f7cf);
}

.deal-card h3 {
    margin: 0 0 10px;
    font-size: 1.28rem;
}

.deal-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.deal-card a {
    display: inline-flex;
    margin-top: 18px;
    color: var(--primary-dark);
    font-weight: 800;
}

.shop-card {
    height: 100%;
}

.shop-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.view-all-wrap {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.feature-band {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 20px;
    align-items: start;
}

.feature-list,
.steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.step-card {
    height: 100%;
}

.step-card span {
    font-size: 2rem;
    color: var(--primary);
}

.promo-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 34px;
}

.promo-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 42px 0 12px;
}

.footer p {
    margin: 4px 0 0;
    color: var(--muted);
}

.footer-links {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 18px;
    color: var(--muted);
    font-weight: 700;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--ink);
    border-radius: 999px;
}

.auth-body {
    background:
        radial-gradient(circle at top left, rgba(235, 94, 46, 0.18), transparent 28%),
        radial-gradient(circle at bottom right, rgba(15, 138, 95, 0.16), transparent 32%),
        linear-gradient(180deg, #fff8ef 0%, #f6ede2 100%);
}

.auth-layout {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
}

.auth-panel {
    min-height: 100vh;
    padding: 36px;
}

.auth-panel-brand {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.auth-brand {
    align-self: flex-start;
}

.auth-copy {
    max-width: 620px;
}

.auth-copy h1 {
    max-width: 10ch;
}

.auth-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.auth-panel-form {
    display: grid;
    place-items: center;
}

.auth-form-wrap {
    width: min(100%, 520px);
    padding: 38px;
}

.auth-form {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.auth-alert {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    font-size: 0.96rem;
    line-height: 1.7;
}

.auth-alert strong {
    display: block;
    margin-bottom: 6px;
}

.auth-alert-success {
    background: rgba(15, 138, 95, 0.12);
    border: 1px solid rgba(15, 138, 95, 0.18);
    color: var(--secondary-dark);
}

.auth-alert-error {
    background: rgba(235, 94, 46, 0.1);
    border: 1px solid rgba(235, 94, 46, 0.16);
    color: var(--primary-dark);
}

.auth-alert-list {
    margin: 0;
    padding-left: 18px;
}

.checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 0.95rem;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 26px 0 18px;
    color: var(--muted);
    font-size: 0.9rem;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(31, 29, 26, 0.12);
}

.social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.social-button {
    padding: 15px 18px;
    border: 0;
    font-weight: 800;
    cursor: pointer;
}

.auth-footer-copy {
    margin-top: 22px;
    text-align: center;
}

.workspaces {
    padding-bottom: 8px;
}

.workspace-grid,
.role-card-grid {
    display: grid;
    gap: 18px;
}

.workspace-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.workspace-card,
.role-card,
.dashboard-card,
.dashboard-metric {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 40px rgba(73, 44, 28, 0.08);
}

.workspace-card,
.role-card {
    padding: 26px;
}

.workspace-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15, 138, 95, 0.1);
    color: var(--secondary-dark);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.workspace-card h3,
.role-card h2,
.dashboard-card h2 {
    margin: 0 0 10px;
    font-size: 1.3rem;
}

.workspace-card p,
.role-card p,
.dashboard-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.workspace-card a,
.role-card a {
    display: inline-flex;
    margin-top: 18px;
    color: var(--primary-dark);
    font-weight: 800;
}

.workspace-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.dashboard-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(243, 201, 105, 0.35), transparent 28%),
        radial-gradient(circle at top right, rgba(15, 138, 95, 0.14), transparent 30%),
        linear-gradient(180deg, #fff7ee 0%, #f3eadf 100%);
}

.dashboard-shell {
    width: min(calc(100% - 32px), 1240px);
    margin: 0 auto;
    padding: 24px 0 40px;
}

.dashboard-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
    border-radius: 28px;
    background: rgba(255, 252, 247, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: 0 16px 36px rgba(73, 44, 28, 0.08);
}

.dashboard-logout {
    flex-shrink: 0;
}

.dashboard-nav {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dashboard-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 700;
}

.dashboard-nav a.active {
    color: white;
    background: var(--ink);
}

.dashboard-main {
    padding-top: 28px;
}

.dashboard-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding: 32px;
    margin-bottom: 18px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 245, 237, 0.76));
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 42px rgba(73, 44, 28, 0.08);
}

.dashboard-title {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
    max-width: 12ch;
}

.dashboard-copy {
    max-width: 760px;
    color: var(--muted);
    line-height: 1.8;
}

.dashboard-action-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.metric-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 18px;
}

.metric-strip-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dashboard-metric {
    padding: 24px;
}

.dashboard-metric strong {
    display: block;
    margin-bottom: 6px;
    font-family: "Sora", sans-serif;
    font-size: 1.8rem;
}

.dashboard-metric span {
    color: var(--muted);
}

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

.dashboard-card {
    padding: 26px;
}

.dashboard-card-wide {
    grid-column: span 2;
}

.dashboard-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.mini-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.dashboard-subcard {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(31, 29, 26, 0.06);
}

.dashboard-subcard strong,
.activity-row strong,
.progress-step strong {
    display: block;
    margin-bottom: 6px;
    font-family: "Sora", sans-serif;
}

.dashboard-subcard span,
.activity-row span,
.progress-step span,
.dashboard-list li {
    color: var(--muted);
}

.dashboard-subcard small,
.activity-row small {
    color: var(--primary-dark);
    font-weight: 800;
}

.activity-list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.dashboard-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.dashboard-form-card {
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(31, 29, 26, 0.06);
}

.dashboard-form-copy h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
}

.dashboard-form-copy p {
    margin: 0 0 16px;
}

.dashboard-form-card-featured {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(255, 246, 239, 0.98), rgba(255, 255, 255, 0.9));
    box-shadow: 0 26px 56px rgba(73, 44, 28, 0.14);
    transform: translateY(-10px);
}

.dashboard-form-card-featured::before,
.dashboard-form-card-featured::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.dashboard-form-card-featured::before {
    top: -36px;
    right: -22px;
    width: 128px;
    height: 128px;
    background: radial-gradient(circle, rgba(235, 94, 46, 0.18), transparent 72%);
}

.dashboard-form-card-featured::after {
    bottom: -48px;
    left: -28px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(15, 138, 95, 0.14), transparent 72%);
}

.dashboard-preview {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 170px;
    margin-bottom: 18px;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 219, 201, 0.9), rgba(255, 243, 206, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 32px rgba(73, 44, 28, 0.12);
}

.dashboard-preview img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.dashboard-preview-placeholder {
    display: grid;
    gap: 6px;
    padding: 20px;
    text-align: center;
}

.dashboard-preview-placeholder strong {
    font-family: "Sora", sans-serif;
    font-size: 1.1rem;
}

.dashboard-preview-placeholder span,
.dashboard-help {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.dashboard-form {
    display: grid;
    gap: 12px;
}

.dashboard-inline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
}

.dashboard-inline-grid-full {
    grid-column: 1 / -1;
}

.dashboard-alert {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    font-size: 0.96rem;
    line-height: 1.7;
}

.dashboard-alert strong {
    display: block;
    margin-bottom: 6px;
}

.dashboard-alert-success {
    background: rgba(15, 138, 95, 0.12);
    border: 1px solid rgba(15, 138, 95, 0.18);
    color: var(--secondary-dark);
}

.dashboard-alert-error {
    background: rgba(235, 94, 46, 0.1);
    border: 1px solid rgba(235, 94, 46, 0.16);
    color: var(--primary-dark);
}

.dashboard-empty-state {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px dashed rgba(31, 29, 26, 0.12);
    color: var(--muted);
    line-height: 1.7;
}

.activity-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(31, 29, 26, 0.06);
}

.activity-row-queue {
    align-items: flex-start;
}

.activity-row-main {
    display: flex;
    align-items: center;
    gap: 14px;
}

.activity-row-copy {
    display: grid;
    gap: 4px;
}

.activity-thumb {
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 227, 207, 0.95), rgba(242, 247, 208, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 22px rgba(73, 44, 28, 0.08);
    flex-shrink: 0;
}

.activity-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-thumb span {
    padding: 8px;
    text-align: center;
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1.4;
}

.queue-status-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.dashboard-list {
    margin: 18px 0 0;
    padding-left: 18px;
    line-height: 1.9;
}

.progress-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.progress-step {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(31, 29, 26, 0.06);
}

.progress-step.done {
    background: rgba(15, 138, 95, 0.1);
}

.progress-step.active {
    background: rgba(235, 94, 46, 0.12);
}

.role-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.role-links a {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(31, 29, 26, 0.08);
    color: var(--ink);
    font-weight: 700;
    text-align: center;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 1100px) {
    .hero,
    .feature-band,
    .auth-layout {
        grid-template-columns: 1fr;
    }

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

    .category-grid,
    .feature-list,
    .steps-grid,
    .auth-metrics,
    .workspace-grid,
    .metric-strip,
    .metric-strip-four,
    .dashboard-grid,
    .dashboard-form-grid,
    .dashboard-inline-grid,
    .mini-dashboard-grid,
    .role-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .restaurant-grid {
        grid-template-columns: 1fr;
    }

    .phone-card {
        margin: 0 auto;
    }

    .promo-card,
    .footer,
    .dashboard-hero,
    .dashboard-topbar,
    .dashboard-card-header,
    .section-topline {
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-card-wide {
        grid-column: auto;
    }
}

@media (max-width: 760px) {
    .site-shell {
        width: min(calc(100% - 20px), var(--container));
        padding-top: 16px;
    }

    .topbar {
        top: 10px;
        border-radius: 28px;
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: inline-block;
    }

    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 8px;
    }

    .nav.open {
        display: flex;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 12vw, 4.2rem);
    }

    .hero-search,
    .mini-grid,
    .category-grid,
    .deal-grid,
    .feature-list,
    .steps-grid,
    .social-grid,
    .auth-metrics,
    .workspace-grid,
    .role-card-grid,
    .metric-strip,
    .metric-strip-four,
    .dashboard-grid,
    .dashboard-form-grid,
    .dashboard-inline-grid,
    .mini-dashboard-grid,
    .role-links,
    .progress-list {
        grid-template-columns: 1fr;
    }

    .card-one,
    .card-two {
        position: static;
        margin-top: 14px;
        max-width: none;
    }

    .hero-visual {
        padding: 0;
    }

    .auth-panel {
        min-height: auto;
        padding: 22px;
    }

    .auth-form-wrap {
        padding: 28px 22px;
    }

    .dashboard-shell {
        width: min(calc(100% - 20px), 1240px);
        padding-top: 16px;
    }

    .dashboard-topbar,
    .dashboard-hero,
    .dashboard-card,
    .dashboard-metric {
        padding: 22px;
    }

    .activity-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .queue-status-form {
        width: 100%;
        justify-content: flex-start;
    }

    .section-link {
        white-space: normal;
    }
}
