:root {
    --bg: #f6f2ec;
    --bg-soft: #efe8de;
    --paper: rgba(255, 255, 255, 0.72);
    --paper-strong: #fffdfa;
    --text: #161514;
    --text-soft: #5f594f;
    --text-muted: #7b7368;
    --line: rgba(22, 21, 20, 0.08);
    --line-strong: rgba(22, 21, 20, 0.14);
    --accent: #b78852;
    --accent-deep: #8a6035;
    --dark: #111111;
    --dark-soft: #1a1a1a;
    --success: #2b6243;
    --build: #8a6035;
    --next: #666666;
    --shadow-xs: 0 10px 26px rgba(28, 22, 17, 0.05);
    --shadow-sm: 0 18px 48px rgba(28, 22, 17, 0.08);
    --shadow-md: 0 28px 74px rgba(28, 22, 17, 0.11);
    --shadow-lg: 0 44px 120px rgba(18, 16, 13, 0.16);
    --radius-xl: 36px;
    --radius-lg: 26px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --container: 1280px;
    --sans: Inter, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--sans);
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(183, 136, 82, 0.10), transparent 24%),
        radial-gradient(circle at 100% 0%, rgba(0, 0, 0, 0.04), transparent 26%),
        linear-gradient(180deg, #fbf8f3 0%, #f6f2ec 52%, #f8f5ef 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(22, 21, 20, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22, 21, 20, 0.02) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.24), transparent 86%);
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.24), transparent 86%);
}

a {
    color: inherit;
    text-decoration: none;
}

.page-shell {
    position: relative;
    min-height: 100vh;
    overflow: clip;
}

.page-shell::before,
.page-shell::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(26px);
    pointer-events: none;
    opacity: 0.55;
}

.page-shell::before {
    width: 360px;
    height: 360px;
    top: 90px;
    right: -130px;
    background: rgba(183, 136, 82, 0.16);
}

.page-shell::after {
    width: 280px;
    height: 280px;
    left: -130px;
    bottom: 180px;
    background: rgba(17, 17, 17, 0.06);
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin: 0 auto;
}

/* nav */
.site-nav {
    position: sticky;
    top: 14px;
    z-index: 50;
    width: min(calc(100% - 48px), var(--container));
    margin: 18px auto 0;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: rgba(255, 252, 247, 0.80);
    border: 1px solid rgba(22, 21, 20, 0.08);
    border-radius: 999px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 14px 40px rgba(30, 24, 18, 0.08);
}

.brand-mark {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.site-nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-link,
.btn,
.tag-pill {
    transition: 180ms ease;
}

.nav-link {
    color: var(--text-soft);
    font-size: 0.94rem;
    font-weight: 600;
    padding: 9px 12px;
    border-radius: 999px;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--text);
    background: rgba(22, 21, 20, 0.05);
}

.nav-toggle {
    display: none;
    border: 0;
    background: rgba(22, 21, 20, 0.06);
    color: var(--text);
    padding: 10px 14px;
    border-radius: 999px;
    font: inherit;
    cursor: pointer;
}

/* helpers */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    color: var(--text-soft);
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    border: 1px solid rgba(22, 21, 20, 0.08);
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-deep), var(--accent));
}

.eyebrow-dark {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.78);
    border-color: rgba(255, 255, 255, 0.10);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 0.96rem;
    font-weight: 700;
    border: 1px solid transparent;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: #fffaf5;
    background: linear-gradient(135deg, var(--dark), #282828);
    box-shadow: 0 18px 36px rgba(17, 17, 17, 0.16);
}

.btn-secondary {
    color: var(--text);
    border-color: rgba(22, 21, 20, 0.10);
    background: rgba(255, 255, 255, 0.68);
}

.btn-white {
    color: var(--dark);
    background: #ffffff;
}

.btn-outline {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}

.btn-small {
    min-height: 46px;
    padding: 0 18px;
}

/* hero */
.hero {
    padding: 58px 0 46px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
    gap: 40px;
    align-items: center;
    min-height: calc(100vh - 150px);
}

.hero-copy {
    max-width: 560px;
}

.hero-title {
    margin: 18px 0 22px;
    max-width: 7.2ch;
    font-family: var(--serif);
    font-size: clamp(4.2rem, 7.2vw, 7.2rem);
    font-weight: 500;
    line-height: 0.88;
    letter-spacing: -0.065em;
}

.hero-text {
    margin: 0;
    max-width: 48ch;
    color: var(--text-soft);
    font-size: 1.03rem;
    line-height: 1.85;
}

.hero-actions,
.footer-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: 22px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-points span {
    position: relative;
    padding-left: 14px;
}

.hero-points span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

/* stage */
.hero-stage {
    position: relative;
}

.stage-panel {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(255,255,255,0.64));
    border: 1px solid rgba(22, 21, 20, 0.08);
    box-shadow: var(--shadow-lg);
}

.stage-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at top right, rgba(183, 136, 82, 0.16), transparent 28%),
        linear-gradient(135deg, rgba(255,255,255,0.22), transparent 36%);
}

.stage-topbar {
    position: relative;
    z-index: 1;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid rgba(22, 21, 20, 0.06);
    background: rgba(255, 255, 255, 0.74);
}

.stage-dots {
    display: flex;
    gap: 6px;
}

.stage-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(22, 21, 20, 0.14);
}

.stage-label {
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.stage-body {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    min-height: 700px;
    background: linear-gradient(180deg, #faf7f1 0%, #f1eadf 100%);
}

.stage-sidebar {
    padding: 24px 18px;
    background: linear-gradient(180deg, #141414 0%, #1d1d1d 100%);
    color: rgba(255,255,255,0.92);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.brand-box {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--accent-deep), var(--accent));
    box-shadow: 0 14px 28px rgba(183, 136, 82, 0.22);
}

.sidebar-lines {
    display: grid;
    gap: 12px;
}

.line {
    display: block;
    height: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
}

.w-100 { width: 100%; }
.w-86 { width: 86%; }
.w-76 { width: 76%; }
.w-58 { width: 58%; }

.sidebar-plan {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
}

.sidebar-plan small {
    display: block;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.56);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.sidebar-plan strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.08rem;
}

.sidebar-plan span {
    display: block;
    color: rgba(255,255,255,0.68);
    line-height: 1.6;
    font-size: 0.88rem;
}

.stage-content {
    padding: 28px;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 22px;
}

.content-kicker {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.content-header h2 {
    margin: 0 0 10px;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.04em;
}

.content-header p {
    margin: 0;
    max-width: 40ch;
    color: var(--text-soft);
    line-height: 1.75;
}

.status-chip {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(22, 21, 20, 0.08);
    color: var(--text-soft);
    font-size: 0.82rem;
    white-space: nowrap;
    box-shadow: var(--shadow-xs);
}

.profile-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 18px;
    padding: 18px;
    margin-bottom: 16px;
    border-radius: 28px;
    background: rgba(255,255,255,0.60);
    border: 1px solid rgba(22, 21, 20, 0.06);
}

.avatar-box {
    width: 112px;
    height: 112px;
    border-radius: 30px;
    display: grid;
    place-items: center;
    font-size: 1.92rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(180deg, #252525 0%, #0f0f0f 100%);
    box-shadow: var(--shadow-sm);
}

.profile-main strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.04rem;
}

.profile-main p {
    margin: 0 0 14px;
    color: var(--text-soft);
    line-height: 1.75;
    max-width: 46ch;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.metric-tile {
    padding: 16px;
    border-radius: 20px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(22, 21, 20, 0.06);
}

.metric-tile strong {
    display: block;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.metric-tile span {
    display: block;
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.55;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.feature-card {
    padding: 20px;
    border-radius: 24px;
    background: rgba(255,255,255,0.70);
    border: 1px solid rgba(22, 21, 20, 0.06);
}

.feature-card small {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--accent-deep);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.feature-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.feature-card p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
    font-size: 0.92rem;
}

.feature-card-dark {
    background: linear-gradient(135deg, #111111 0%, #1b1b1b 100%);
    color: #ffffff;
    box-shadow: 0 22px 48px rgba(17, 17, 17, 0.16);
}

.feature-card-dark small,
.feature-card-dark p {
    color: rgba(255,255,255,0.74);
}

.floating-badge {
    position: absolute;
    z-index: 2;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(22, 21, 20, 0.08);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.floating-badge strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.92rem;
}

.floating-badge span {
    display: block;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.floating-badge-top {
    top: 26px;
    right: -14px;
}

.floating-badge-bottom {
    left: -18px;
    bottom: 56px;
}

/* sections */
.section {
    padding: 36px 0 46px;
}

.section-dark {
    padding-top: 18px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 16px;
}

.intro-card {
    padding: 26px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.62);
    border: 1px solid rgba(22, 21, 20, 0.07);
    box-shadow: var(--shadow-xs);
}

.intro-card-large {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.intro-card-large h2,
.section-heading h2,
.footer-copy h2,
.dark-copy h2 {
    margin: 16px 0 14px;
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.intro-card-large p,
.section-heading p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.85;
}

.intro-card strong,
.benefit-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.04rem;
    letter-spacing: -0.03em;
}

.intro-card p,
.benefit-card p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.75;
    font-size: 0.95rem;
}

/* dark band */
.dark-band {
    padding: 38px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top right, rgba(183, 136, 82, 0.14), transparent 24%),
        linear-gradient(135deg, #101010 0%, #181818 100%);
    color: #ffffff;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 28px;
    box-shadow: 0 36px 84px rgba(18, 18, 18, 0.18);
}

.dark-copy p {
    margin: 0;
    max-width: 62ch;
    color: rgba(255,255,255,0.72);
    line-height: 1.85;
}

.steps-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.step-box {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
}

.step-box strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
}

.step-box span {
    display: block;
    color: rgba(255,255,255,0.68);
    line-height: 1.65;
    font-size: 0.9rem;
}

.dark-roadmap {
    padding: 22px;
    border-radius: 28px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.roadmap-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.roadmap-head strong {
    font-size: 0.98rem;
}

.roadmap-head span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.56);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.roadmap-list {
    display: grid;
    gap: 14px;
    padding-top: 18px;
}

.roadmap-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
}

.roadmap-copy small {
    display: block;
    margin-bottom: 5px;
    color: rgba(255,255,255,0.56);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.roadmap-copy strong {
    display: block;
    font-size: 0.98rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    text-transform: lowercase;
}

.badge-live {
    background: rgba(43, 98, 67, 0.16);
    color: #8fd0ac;
}

.badge-build {
    background: rgba(183, 136, 82, 0.16);
    color: #e0b98c;
}

.badge-next {
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.82);
}

.badge-muted {
    background: rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.70);
}

/* benefits */
.benefits-wrap,
.fields-panel {
    padding: 34px;
    border-radius: var(--radius-xl);
    background: rgba(255,255,255,0.56);
    border: 1px solid rgba(22, 21, 20, 0.07);
    box-shadow: var(--shadow-sm);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 28px;
    align-items: end;
    margin-bottom: 28px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.benefit-card {
    padding: 24px 22px;
    border-radius: 24px;
    background: rgba(255,255,255,0.70);
    border: 1px solid rgba(22, 21, 20, 0.06);
    box-shadow: var(--shadow-xs);
}

.benefit-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(183, 136, 82, 0.12);
    color: var(--accent-deep);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

/* fields */
.fields-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(22, 21, 20, 0.08);
    color: var(--text-soft);
    font-size: 0.9rem;
    font-weight: 600;
}

.tag-pill:hover {
    transform: translateY(-1px);
    background: #ffffff;
}

/* footer */
.footer {
    padding: 24px 0 56px;
}

.footer-panel {
    padding: 40px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top right, rgba(183, 136, 82, 0.18), transparent 24%),
        linear-gradient(135deg, #101010 0%, #181818 100%);
    color: #ffffff;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    box-shadow: 0 36px 84px rgba(18, 18, 18, 0.20);
}

.footer-copy p {
    margin: 0;
    max-width: 58ch;
    color: rgba(255,255,255,0.72);
    line-height: 1.85;
}

.footer-bottom {
    padding: 24px 0 0;
    margin-top: 18px;
    border-top: 1px solid rgba(22, 21, 20, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer-bottom p {
    margin: 0;
    max-width: 760px;
    color: var(--text-soft);
    line-height: 1.8;
}

/* reveal */
[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* responsive */
@media (max-width: 1180px) {
    .hero-grid,
    .dark-band,
    .section-heading,
    .benefits-grid,
    .footer-panel {
        grid-template-columns: 1fr;
    }

    .intro-grid {
        grid-template-columns: 1fr 1fr;
    }

    .intro-card-large {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .floating-badge {
        display: none;
    }

    .hero-grid {
        min-height: auto;
    }
}

@media (max-width: 900px) {
    .site-nav {
        border-radius: 28px;
        align-items: flex-start;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav-links {
        display: none;
        width: 100%;
        padding-top: 6px;
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav.is-open .site-nav-links {
        display: flex;
    }

    .nav-link {
        width: 100%;
    }

    .stage-body,
    .profile-card,
    .metric-grid,
    .feature-grid,
    .steps-columns {
        grid-template-columns: 1fr;
    }

    .content-header,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 780px) {
    .container {
        width: min(calc(100% - 20px), var(--container));
    }

    .hero {
        padding-top: 24px;
    }

    .section,
    .footer {
        padding-top: 26px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: clamp(3rem, 14vw, 4.8rem);
    }

    .hero-actions,
    .footer-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .stage-content,
    .benefits-wrap,
    .fields-panel,
    .dark-band,
    .footer-panel,
    .intro-card {
        padding: 22px;
    }

    .stage-panel {
        border-radius: 26px;
    }

    .stage-body {
        min-height: auto;
    }

    .stage-sidebar {
        padding: 20px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .hero-points {
        flex-direction: column;
        gap: 10px;
    }
}

@media (min-width: 1600px) {
    :root {
        --container: 1360px;
    }
}