@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Instrument+Serif:ital,wght@0,400;1,400&display=swap');

:root {
    --bg: #fdfcfb;
    --bg-deep: #f2f0ee;
    --ink: #1c1c1c;
    --muted: #6b6b6b;
    --panel: #ffffff;
    --panel-strong: #fdfcfb;
    --line: #e5e2df;
    --accent: #3f4e34;
    --accent-dark: #2d3825;
    --accent-soft: #e9ece6;
    --success: #3f4e34;
    --failed: #914d42;
    --received: #84703a;
    --shadow: 0 12px 40px rgba(63, 78, 52, 0.06);
    --radius-lg: 1.5rem;
    --radius-md: 1rem;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    margin: 0;
    min-height: 100vh;
    width: 100%;
    overflow-x: clip;
    color: var(--ink);
    background-color: var(--bg);
    font-family: "Instrument Sans", "Inter", -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

main {
    display: grid;
    gap: 64px;
    min-width: 0;
}

.page-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 22px 0 48px;
    min-width: 0;
}

.site-header,
.site-nav,
.hero,
.feature-grid,
.pricing-grid,
.example-showcase,
.example-visual,
.dashboard-grid,
.dashboard-columns,
.list-row,
.spread,
.hero-actions,
.hero-strip {
    display: flex;
}

.site-header,
.spread,
.list-row {
    justify-content: space-between;
    align-items: center;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    margin-bottom: 48px;
    padding: 24px 0;
    background: rgba(253, 252, 251, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.site-header-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    min-width: 0;
}

.site-nav,
.hero-actions,
.hero-strip {
    gap: 32px;
    align-items: center;
}

.hero-actions {
    flex-wrap: wrap;
}

.site-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    min-width: 0;
}

.mobile-nav-toggle {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink);
    box-shadow: 0 8px 20px rgba(63, 78, 52, 0.06);
}

.mobile-nav-toggle-box {
    display: inline-grid;
    gap: 4px;
}

.mobile-nav-toggle-box span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition:
        transform 160ms ease,
        opacity 160ms ease;
}

.mobile-nav-toggle-label {
    font-size: 0.92rem;
    font-weight: 600;
}

.brand,
h1,
h2,
h3 {
    font-family: "Instrument Serif", serif;
    font-weight: 400;
}

.brand {
    font-size: 1.65rem;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: -0.01em;
}

.site-nav a,
.site-nav button {
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--muted);
    transition: color 0.15s ease;
}

.site-nav a:hover,
.site-nav button:hover {
    color: var(--ink);
}

.site-nav form {
    display: inline-flex;
    margin: 0;
}

.hero,
.dashboard-columns {
    gap: 24px;
}

.hero,
.example-showcase {
    align-items: stretch;
}

.hero > *,
.example-showcase > *,
.dashboard-columns > * {
    flex: 1;
    min-width: 0;
}

.hero-copy-block {
    padding: 8px 0;
}

.hero h1,
.auth-card h1 {
    font-size: clamp(3.1rem, 6vw, 5.8rem);
    line-height: 0.92;
    margin: 0 0 14px;
    max-width: 12ch;
}

.hero-copy,
.muted,
.section-copy {
    color: var(--muted);
}

.hero-copy {
    max-width: 60ch;
    font-size: 1.08rem;
    line-height: 1.65;
    margin: 0;
}

.hero-landing .hero-copy {
    max-width: 56ch;
    font-size: 1.12rem;
}

.hero-panel,
.card,
.price-card,
.token-panel,
.message,
.auth-card {
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: var(--shadow);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 100%;
    min-width: 0;
}

.hero-panel {
    position: relative;
    display: grid;
    gap: 16px;
    align-content: center;
    min-height: 100%;
    overflow: hidden;
    background:
        linear-gradient(160deg, rgba(255, 250, 243, 0.98), rgba(255, 234, 213, 0.86)),
        linear-gradient(180deg, rgba(193, 79, 35, 0.08), rgba(255, 255, 255, 0));
}

.hero-panel::after {
    content: "";
    position: absolute;
    inset: auto -24px -28px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(193, 79, 35, 0.18), transparent 68%);
    pointer-events: none;
}

.hero-strip {
    flex-wrap: wrap;
    margin-top: 26px;
}

.hero-proof,
.usp-band {
    display: grid;
    gap: 16px;
}

.hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
}

.hero-proof > div,
.usp-item {
    border: 1px solid rgba(34, 25, 20, 0.08);
    border-radius: 20px;
    background: rgba(255, 251, 246, 0.76);
    padding: 16px 18px;
}

.hero-proof strong,
.usp-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 6px;
}

.hero-proof span,
.usp-item p {
    margin: 0;
    color: var(--muted);
}

.hero-strip > div,
.metric {
    position: relative;
    border: 1px solid rgba(34, 25, 20, 0.08);
    border-radius: 20px;
    background: rgba(255, 251, 246, 0.72);
    padding: 16px 18px;
}

.hero-strip > div {
    flex: 1 1 180px;
}

.hero-strip span,
.metric span,
.eyebrow,
.plan-tag {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
    margin-bottom: 8px;
}

.hero-strip strong,
.metric strong,
.price {
    font-size: 1.35rem;
}

.metric.callout {
    background: linear-gradient(180deg, rgba(193, 79, 35, 0.12), rgba(255, 250, 243, 0.74));
}

.section-head {
    display: grid;
    gap: 6px;
    margin-bottom: 10px;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 0.98;
    max-width: 12ch;
}

.feature-grid,
.pricing-grid,
.dashboard-grid,
.split-focus {
    gap: 20px;
    flex-wrap: wrap;
}

.usp-band {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.intent-grid .card {
    min-height: 100%;
}

.dashboard-hero {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr;
    align-items: start;
    margin-bottom: 48px;
}

.dashboard-hero h1 {
    margin: 0;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .dashboard-hero {
        grid-template-columns: 1fr 400px;
        gap: 48px;
    }
}

.dashboard-shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}

@media (min-width: 1024px) {
    .dashboard-shell {
        grid-template-columns: 280px 1fr;
        gap: 48px;
    }
}

.dashboard-sidebar {
    padding: 32px;
    background: var(--bg-deep);
    border-radius: var(--radius-lg);
}

@media (min-width: 1024px) {
    .dashboard-sidebar {
        position: sticky;
        top: 120px;
    }
}

.dashboard-tablist {
    display: grid;
    gap: 8px;
}

.dashboard-tab {
    text-align: left;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--muted);
    background: transparent;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    cursor: pointer;
}

.dashboard-tab:hover {
    background: rgba(63, 78, 52, 0.05);
    color: var(--ink);
    transform: none;
    box-shadow: none;
}

.dashboard-tab.is-active {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
}

.dashboard-content,
.dashboard-tab-panel {
    display: grid;
    gap: 24px;
}

.dashboard-tab-panel[hidden] {
    display: none !important;
}

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

.dashboard-panel-grid,
.metric-grid,
.form-two-up,
.option-checks,
.stat-list {
    display: grid;
    gap: 18px;
}

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

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

.dashboard-panel-grid > .card,
.dashboard-hero,
.dashboard-hero .metric-grid {
    min-width: 0;
}

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

.metric-grid .metric {
    min-height: 120px;
}

.metric p {
    margin: 8px 0 0;
}

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

.option-checks {
    align-content: start;
    padding-top: 34px;
}

.option-checks p {
    margin: 0;
}

.section-copy {
    margin: 0;
}

.promo-callout {
    margin: 0 0 18px;
    padding: 16px 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(181, 224, 187, 0.28), rgba(255, 255, 255, 0.92));
    border: 1px solid rgba(63, 78, 52, 0.14);
}

.promo-callout p {
    margin: 0;
}

.promo-callout p + p {
    margin-top: 8px;
}

.promo-callout-eyebrow {
    color: var(--accent-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.stat-list {
    margin-bottom: 18px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.job-error {
    margin: 8px 0 0;
    padding: 12px 14px;
    border-left: 4px solid var(--failed);
    border-radius: 12px;
    background: rgba(138, 29, 29, 0.06);
    color: var(--failed);
    overflow-wrap: anywhere;
}

.progress-block {
    display: grid;
    gap: 8px;
    margin-top: 10px;
}

.progress-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    color: var(--muted);
    font-size: 0.95rem;
}

.progress-bar {
    width: 100%;
    height: 12px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(34, 25, 20, 0.08);
    border: 1px solid rgba(34, 25, 20, 0.08);
}

.progress-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    transition: width 0.35s ease;
}

.progress-fill.processing {
    background: linear-gradient(90deg, #d18a2b, var(--accent));
}

.progress-fill.completed {
    background: linear-gradient(90deg, #2d7b58, var(--success));
}

.progress-fill.failed {
    background: linear-gradient(90deg, #c84a4a, var(--failed));
}

.progress-fill.stalled {
    background: linear-gradient(90deg, #c84a4a, #d18a2b);
}

.log-card {
    grid-column: 1 / -1;
}

.log-list {
    display: grid;
    gap: 12px;
    max-height: 520px;
    overflow: auto;
    padding-right: 6px;
}

.log-entry {
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 252, 248, 0.75);
}

.log-meta {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}

.feature-grid > *,
.pricing-grid > *,
.dashboard-grid > *,
.split-focus > * {
    flex: 1 1 240px;
}

.feature-grid {
    align-items: stretch;
}

.focus-card {
    border: 1px solid rgba(34, 25, 20, 0.1);
    border-radius: 28px;
    padding: 28px;
    background:
        linear-gradient(180deg, rgba(255, 250, 243, 0.96), rgba(255, 244, 233, 0.9));
    box-shadow: var(--shadow);
}

.focus-card.integration {
    background:
        linear-gradient(180deg, rgba(246, 247, 242, 0.96), rgba(236, 241, 235, 0.92));
}

.focus-card h2 {
    margin-top: 0;
}

.example-copy {
    display: grid;
    gap: 12px;
    align-content: center;
}

.example-notes {
    display: grid;
    gap: 12px;
}

.example-notes > div {
    border: 1px solid rgba(34, 25, 20, 0.08);
    border-radius: 18px;
    background: rgba(255, 251, 246, 0.72);
    padding: 14px 16px;
}

.example-notes span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
    margin-bottom: 6px;
}

.example-visual {
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.example-card {
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
    border: 1px solid rgba(34, 25, 20, 0.1);
    border-radius: 28px;
    padding: 16px;
    background: rgba(255, 249, 241, 0.92);
    box-shadow: var(--shadow);
}

.example-card.emphasis {
    background:
        linear-gradient(180deg, rgba(255, 239, 221, 0.95), rgba(255, 249, 241, 0.98));
}

.example-image {
    width: min(100%, 320px);
    aspect-ratio: 1;
    object-fit: contain;
    image-rendering: auto;
    border-radius: 22px;
    border: 1px solid rgba(34, 25, 20, 0.08);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.88), rgba(246, 237, 225, 0.92));
    padding: 18px;
}

.example-image.pixelated {
    image-rendering: pixelated;
}

.example-arrow {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--accent-dark);
}

.card h2,
.price-card h3 {
    margin: 0 0 10px;
}

.card p,
.price-card p,
.hero-panel p,
.metric p {
    margin: 0;
}

.pricing-grid {
    align-items: stretch;
}

.price-card {
    display: grid;
    gap: 12px;
    align-content: start;
    min-height: 100%;
    background: var(--panel-strong);
    padding: 22px;
}

.price-card.featured {
    border-color: rgba(193, 79, 35, 0.35);
    transform: translateY(-8px);
    background:
        linear-gradient(180deg, rgba(255, 239, 221, 0.95), rgba(255, 249, 241, 0.96));
}

.dashboard-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 18px;
}

.pricing-card-disabled {
    opacity: 0.72;
}

.final-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    background:
        linear-gradient(180deg, rgba(255, 244, 230, 0.96), rgba(255, 250, 243, 0.98));
}

.final-cta h2 {
    margin: 0 0 12px;
}

.final-cta p {
    margin: 0;
}

.plan-tag {
    margin: 0;
    color: var(--accent-dark);
}

.credit-count {
    margin: -2px 0 0;
    font-size: 1.1rem;
    color: var(--ink);
}

.plan-points {
    margin: 4px 0 0;
    padding-left: 20px;
    color: var(--muted);
    display: grid;
    gap: 6px;
}

.button,
button,
input,
select,
textarea {
    border-radius: 16px;
    font: inherit;
}

.button,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--accent);
    padding: 10px 20px;
    background: var(--accent);
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 500;
    transition:
        background-color 160ms ease,
        transform 160ms ease,
        box-shadow 160ms ease;
}

.button:hover,
button:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(63, 78, 52, 0.15);
}

.button.subtle,
.button-outline,
.link-button {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
}

.button.subtle:hover,
.button-outline:hover,
.link-button:hover {
    background: var(--bg-deep);
    border-color: var(--muted);
    color: var(--ink);
}

.link-button {
    padding: 0;
}

.button-google {
    justify-content: center;
    gap: 12px;
    background: rgba(255, 252, 246, 0.94);
    color: var(--ink);
    border-color: rgba(60, 68, 49, 0.12);
    box-shadow:
        0 1px 2px rgba(31, 36, 27, 0.04),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.button-google:hover {
    color: var(--ink);
    background: rgba(248, 243, 232, 0.98);
    border-color: rgba(69, 81, 56, 0.14);
    box-shadow:
        0 6px 16px rgba(72, 68, 45, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.button-google:visited {
    color: var(--ink);
}

.button-google-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: inset 0 0 0 1px rgba(60, 68, 49, 0.08);
}

.button-google-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.stack-form p {
    margin: 0 0 14px;
}

.stack-form label {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
}

.stack-form input:not([type="checkbox"]),
.stack-form input[type="file"],
.stack-form select,
.stack-form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.stack-form input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.token-panel,
code,
pre {
    border-radius: 16px;
}

.token-panel {
    padding: 16px;
    margin: 16px 0;
    background: rgba(28, 25, 23, 0.92);
    color: #fff8f2;
}

code,
pre {
    background: rgba(34, 25, 20, 0.06);
    font-family: "JetBrains Mono", "SFMono-Regular", monospace;
    overflow-wrap: anywhere;
}

code {
    display: inline-block;
    padding: 6px 10px;
}

pre {
    margin: 0;
    padding: 18px;
    overflow-x: auto;
}

pre code {
    display: block;
    padding: 0;
    background: transparent;
}

.list {
    display: grid;
    gap: 14px;
}

.list-row {
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.list-row.vertical {
    display: block;
}

.badge {
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge.completed {
    background: var(--accent-soft);
    color: var(--accent-dark);
}

.badge.failed {
    background: #fdf2f2;
    color: var(--failed);
}

.badge.stalled {
    background: #fff3e8;
    color: #b25d18;
}

.badge.received,
.badge.processing {
    background: #fefcf0;
    color: var(--received);
}

.messages {
    margin-bottom: 18px;
}

.site-footer {
    display: grid;
    gap: 24px;
    justify-items: center;
    margin-top: 120px;
    padding: 80px 0;
    border-top: 1px solid var(--line);
    text-align: center;
    background: var(--bg-deep);
}

.site-footer-copy {
    font-family: "Instrument Serif", serif;
    font-size: 1.25rem;
    color: var(--ink);
}

.site-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.site-footer-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.15s ease;
}

.site-footer-link:hover {
    color: var(--ink);
}

.legal-shell {
    display: grid;
    gap: 24px;
}

.legal-card {
    max-width: 900px;
    margin: 0 auto;
}

.legal-card h1 {
    margin: 0 0 12px;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1;
    max-width: none;
}

.legal-card h2 {
    margin: 24px 0 10px;
    font-size: 1.4rem;
}

.legal-card p,
.legal-card li {
    color: var(--muted);
    line-height: 1.7;
}

.legal-card ul {
    margin: 0;
    padding-left: 20px;
}

.contact-list {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.contact-list strong {
    color: var(--ink);
}

.seo-card h3 {
    margin: 18px 0 8px;
    font-size: 1.1rem;
}

.seo-breadcrumbs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 0.95rem;
}

.seo-link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 16px;
}

.seo-link-card {
    display: block;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 252, 246, 0.76);
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(72, 68, 45, 0.05);
}

.seo-link-card:hover {
    border-color: rgba(69, 81, 56, 0.18);
    background: rgba(248, 243, 232, 0.94);
}

.message.success {
    border-left: 4px solid var(--success);
}

.message.error {
    border-left: 4px solid var(--failed);
}

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

.auth-card {
    width: min(560px, 100%);
}

.section-head.compact {
    margin-bottom: 12px;
}

@media (max-width: 1023px) {
    .page-shell {
        width: min(100% - 32px, 1180px);
    }

    .hero,
    .example-showcase,
    .example-visual,
    .dashboard-columns {
        display: block;
    }

    .dashboard-panel-grid,
    .metric-grid,
    .form-two-up,
    .hero-proof,
    .usp-band {
        grid-template-columns: 1fr;
    }

    .dashboard-tablist {
        grid-auto-flow: column;
        grid-auto-columns: minmax(140px, 1fr);
        overflow-x: auto;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .dashboard-tab {
        min-height: 48px;
        white-space: nowrap;
    }

    .dashboard-hero h1 {
        font-size: clamp(2.2rem, 8vw, 3.2rem);
    }
}

@media (max-width: 768px) {
    .page-shell,
    .site-header-container {
        width: min(100% - 20px, 1180px);
    }

    .site-header {
        padding: 16px 0;
        margin-bottom: 24px;
    }

    .site-header-container {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 14px;
    }

    .brand {
        font-size: 1.4rem;
        min-width: 0;
    }

    .mobile-nav-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .site-nav {
        display: none;
        grid-column: 1 / -1;
        width: 100%;
        min-width: 0;
        gap: 12px;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 10px 28px rgba(63, 78, 52, 0.08);
        flex-direction: column;
        align-items: stretch;
    }

    .no-js .site-nav,
    body.nav-open .site-nav {
        display: flex;
    }

    .site-nav > *,
    .site-nav form {
        display: flex;
        margin: 0;
        width: 100%;
    }

    .site-nav a,
    .site-nav button,
    .site-nav .button {
        width: 100%;
        min-height: 44px;
        justify-content: center;
        text-align: center;
    }

    .link-button {
        justify-content: center;
    }

    body.nav-open .mobile-nav-toggle-box span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    body.nav-open .mobile-nav-toggle-box span:nth-child(2) {
        opacity: 0;
    }

    body.nav-open .mobile-nav-toggle-box span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .hero-panel,
    .card,
    .price-card,
    .auth-card,
    .message {
        border-radius: var(--radius-lg);
        padding: 20px;
    }

    .progress-meta,
    .spread,
    .list-row {
        flex-wrap: wrap;
    }
}
