:root {
    --bg: #ffffff;
    --ink: #0f172a;
    --muted: #64748b;
    --accent: #0fa3b1;
    --accent-strong: #0d8b99;
    --border: #e2e8f0;
    --card: #f8fafc;
    --shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    --radius: 14px;
    --radius-sm: 10px;
    --space: 20px;
    --font: "Manrope", system-ui, -apple-system, sans-serif;
    --section-gap: 32px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    scrollbar-gutter: stable both-edges;
}

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

img {
    max-width: 100%;
    display: block;
}

main {
    flex: 1 0 auto;
}

h1 {
    font-size: clamp(32px, 4vw, 42px);
    margin: 0 0 16px;
    line-height: 1.2;
    font-weight: 800;
}

h2 {
    display: block;
    font-size: clamp(24px, 3vw, 30px);
    margin: 18px 0 12px;
    line-height: 1.25;
    font-weight: 800;
    unicode-bidi: isolate;
}

h3 {
    font-size: 20px;
    margin: 16px 0 10px;
    line-height: 1.3;
    font-weight: 800;
}

.shell {
    width: min(900px, 92vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.site-header .shell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    position: relative;
}

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

.logo {
    font-weight: 800;
    letter-spacing: 0.6px;
    font-size: 18px;
    padding: 6px 10px;
    border: 1px solid var(--border);
    border-radius: 10px;
}

.brand-logo-link {
    display: inline-flex;
    align-items: center;
    height: 36px;
}

.brand-logo {
    height: 36px;
    width: 144px;
    display: block;
    object-fit: contain;
}

.tagline {
    color: var(--muted);
    font-size: 14px;
}

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

.burger-btn {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 12px;
    width: 44px;
    height: 44px;
    border: 1px solid #e6edf5;
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: transform 0.15s ease, opacity 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.burger-btn:hover {
    transform: translateY(-1px);
    opacity: 0.9;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06), 0 2px 5px rgba(15, 23, 42, 0.04);
    border-color: #dde7f2;
}

.burger-btn .bi {
    width: 24px;
    height: 24px;
    fill: var(--ink);
}

.drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -6px 0 24px rgba(15, 23, 42, 0.2);
    padding: 24px;
    display: none;
    gap: 16px;
    align-content: start;
    align-items: start;
    grid-auto-rows: min-content;
    transition: right 0.25s ease;
    z-index: 90;
    border-left: 1px solid var(--border);
    border-radius: 20px 0 0 20px;
    pointer-events: none;
    visibility: hidden;
}

.drawer.open {
    display: grid;
    right: 0;
    pointer-events: all;
    visibility: visible;
}

.drawer-close {
    justify-self: end;
    background: #ffffff;
    border: 1px solid #e6edf5;
    cursor: pointer;
    color: var(--ink);
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: transform 0.15s ease, opacity 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.drawer-close .bi {
    width: 20px;
    height: 20px;
}

.drawer-close:hover {
    transform: translateY(-1px);
    opacity: 0.9;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06), 0 2px 5px rgba(15, 23, 42, 0.04);
    border-color: #dde7f2;
}

.drawer-nav {
    display: grid;
    gap: 12px;
}

.drawer-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    padding: 10px 0;
    border-radius: 12px;
}

.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.25);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 85;
    display: none;
}

.drawer-backdrop.show {
    display: block;
    opacity: 1;
    pointer-events: all;
}

@media (min-width: 769px) {
    .burger-btn {
        display: none !important;
    }
    .main-nav {
        display: flex !important;
    }
    .drawer,
    .drawer.open,
    .drawer-backdrop,
    .drawer-backdrop.show {
        display: none !important;
        pointer-events: none !important;
        visibility: hidden !important;
    }
}

@media (max-width: 768px) {
    .drawer {
        display: grid;
    }
    .drawer-backdrop {
        display: block;
    }
}

.nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 12px 14px;
    font-size: 17px;
    border-radius: 12px;
    color: var(--ink);
    font-weight: 600;
}

.nav a:hover {
    color: var(--accent-strong);
}

.pill {
    border: 1px solid var(--border);
    background: #f1f5f9;
}

.hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    padding: 24px 0;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(32px, 4vw, 42px);
    margin: 10px 0;
    line-height: 1.2;
}

.eyebrow {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent-strong);
    font-size: 12px;
}

.lede {
    font-size: 16px;
    color: #000000;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-weight: 700;
    cursor: pointer;
    background: #f8fafc;
    color: var(--ink);
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
}

.btn.ghost {
    background: #ffffff;
}

.btn.icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn.store.apple {
    background: #0b162b;
    color: #ffffff;
    border: #0b162b;
}

.btn.store.google {
    background: linear-gradient(135deg, #1da1f2, #22c55e);
    color: #ffffff;
    border: none;
}

.btn.web {
    background: #e9f6f8;
    border-color: #cdebf0;
    color: #0c6f7a;
}

.btn.support {
    background: #ffffff;
    border: 1px solid var(--border);
    color: var(--ink);
}

.btn.web:hover {
    background: #dff0f3;
    border-color: #c2e3ea;
    color: #0c6f7a;
}

.btn .bi {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

.btn.small {
    padding: 10px 12px;
    font-size: 14px;
}

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

.contact-submit {
    margin-top: 12px;
    align-self: start;
    font-size: 20px;
    padding: 16px 18px;
    min-height: 52px;
}

.textarea-tall {
    min-height: 200px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--muted);
}

.hero-badges span {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--card);
    font-weight: 600;
}

.hero-panel {
    background: radial-gradient(circle at 20% 20%, #d9f5f9, #ffffff);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.panel-title {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 26px;
}

.panel-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    color: #000000;
}

.panel-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border);
}

.panel-list li:last-child {
    border-bottom: none;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
}

.panel-note {
    font-weight: 700;
}

.section {
    padding: 16px 0 60px;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
}

.section-header h2 {
    margin: 6px 0 2px;
    font-size: 26px;
}

.muted {
    color: #000000;
}

.section-subtext {
    display: block;
    margin-top: 0;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 18px;
    grid-auto-rows: 1fr;
}

.card {
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #ffffff;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.card-link {
    color: inherit;
    text-decoration: none;
    display: block;
    height: 100%;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.card-media {
    aspect-ratio: 16 / 9;
    background: #e2f3f5;
    overflow: hidden;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

.card-media.placeholder {
    display: grid;
    place-items: center;
    color: var(--accent-strong);
    font-weight: 800;
    font-size: 34px;
}

.card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1 1 auto;
}

.card-body.compact {
    gap: 10px;
}

.product-preview {
    margin: 4px 0 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 12px;
}

@media (max-width: 768px) {
    .product-preview {
        -webkit-line-clamp: 2;
    }
}

.card-meta,
.product-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    min-width: 0;
}

.product-name {
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-body.compact .muted {
    flex: 1 1 auto;
}

.app-logo {
    width: 94px;
    height: 94px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #ffffff;
    display: grid;
    place-items: center;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.14);
    font-weight: 800;
    color: #0369a1;
}

.app-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.app-logo.fallback {
    font-size: 18px;
}

.app-logo.compact {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.14);
}

.app-logo.large {
    width: 56px;
    height: 56px;
    border-radius: 14px;
}

.chip {
    width: fit-content;
    padding: 6px 8px;
    font-size: 12px;
    background: #e0f2f1;
    color: #0f766e;
    border-radius: 8px;
    font-weight: 700;
}

.tagline {
    font-weight: 600;
}

.card-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.text-link {
    color: var(--accent-strong);
    font-weight: 700;
}

.text-link.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    align-self: flex-end;
    margin-left: auto;
}

.text-link.subtle {
    color: var(--muted);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}

.arrow-icon {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.card.tall {
    min-height: 460px;
}

.contact-section {
    padding-bottom: 80px;
}

.contact-card {
    border: 1px solid #e8f0fd;
    border-radius: 18px;
    padding: 30px;
    background: #ffffff;
    display: grid;
    gap: 18px;
}

.contact-form {
    display: grid;
    gap: 14px;
}

.field-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.field {
    display: grid;
    gap: 6px;
}

.field label {
    font-weight: 700;
    color: var(--ink);
}

.field input,
.field select,
.field textarea {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #9dbec2;
    font-family: var(--font);
    font-size: 15px;
    background: #ffffff;
}

.field textarea {
    resize: vertical;
}

.field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 16 16' fill='%2364748b'%3E%3Cpath d='M4.146 6.646a.5.5 0 0 1 .708 0L8 9.793l3.146-3.147a.5.5 0 0 1 .708.708l-3.5 3.5a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
    padding-right: 36px;
}

.error {
    color: #dc2626;
    margin: 0;
    font-size: 14px;
}

.messages {
    padding: 10px 0;
}

.message {
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 8px;
    background: #ecfeff;
}

.site-footer {
    border-top: 1px solid var(--border);
    padding: 24px 0 40px;
    background: #f8fafc;
    color: var(--muted);
}

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

.footer-title {
    font-weight: 800;
    color: var(--ink);
}

.footer-links {
    display: grid;
    gap: 8px;
}

.product-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: center;
    padding: 32px 0 28px;
    margin-bottom: var(--section-gap);
}

.product-copy h1 {
    margin: 6px 0 8px;
}

.product-media {
    background: none;
    border: none;
    border-radius: 20px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(320px, 42vw, 440px);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: none;
}

.product-media img {
    border-radius: 20px;
    box-shadow: none;
    max-height: 760px;
    width: auto;
    max-width: min(100%, 480px);
    height: auto;
    object-fit: contain;
    display: block;
    cursor: pointer;
}

.product-media .placeholder {
    width: 160px;
    height: 160px;
    border-radius: 24px;
    background: #e0f2fe;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #0369a1;
    font-size: 42px;
}

.product-body {
    display: grid;
    gap: 18px;
    grid-template-columns: 2fr 1fr;
    align-items: flex-start;
    padding: 0 0 var(--section-gap);
    margin-bottom: var(--section-gap);
}

.rich-toolbar {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    padding: 8px 10px;
    background: #f5f7fb;
    border: 1px solid #d8dde6;
    border-radius: 10px;
}

.rich-btn {
    padding: 7px 12px;
    border: 1px solid #cdd6e3;
    background: #ffffff;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.rich-btn:hover {
    background: #e8eef7;
    border-color: #bfc9d8;
}

.rich-editor {
    min-height: 220px;
    border-radius: 10px;
    border: 1px solid #d8dde6;
    padding: 10px;
}
.prose p {
    margin: 10px 0;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meta-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.meta-box {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    background: var(--card);
}

.meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--card);
    color: inherit;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.meta-chip .bi {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.meta-chip:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
    border-color: #cfd8e3;
}

.meta-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    padding: 16px;
    display: grid;
    gap: 8px;
    align-self: start;
    margin-top: 18px;
}

.meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 10px;
    color: inherit;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}

.meta-row .bi {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.meta-row:hover {
    background: #eef2f7;
    transform: translateY(-1px);
}

.meta-box-link {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.meta-box-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
    border-color: #cfd8e3;
}

.meta-box-link .btn {
    pointer-events: none;
}

.meta-box-link:focus-visible {
    outline: 2px solid #0ea5e9;
    outline-offset: 2px;
}

.meta-title {
    font-weight: 700;
    margin-bottom: 6px;
}

.policy-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.policy-title {
    margin-bottom: 30px;
    font-weight: 800;
}

.policy-heading {
    margin: 0 0 12px;
    font-weight: 800;
}

.policy-subhead {
    margin: 0 0 24px;
    font-weight: 600;
    color: var(--muted);
}

.policy-card {
    margin-top: 18px;
    border: 1px solid #e8f0fd;
    border-radius: 18px;
    padding: 30px;
    display: grid;
    line-height: 2;
    font-size: 16px;
    /* word-break: break-word; */
}

.policy-card h2,
.policy-card h3,
.policy-card h4 {
    margin: 12px 0 6px;
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 800;
}

.policy-card h3 {
    font-size: clamp(22px, 3vw, 28px);
    margin: 0 0 18px;
    font-weight: 800;
}

.policy-card p {
    margin: 8px 0;
}

.policy-card ul {
    margin: 8px 0 8px 20px;
    padding: 0;
}

.policy-card li {
    margin: 4px 0;
}

.policy-meta {
    margin-top: 16px;
}

.policy-card a.policy-mail {
    color: var(--accent-strong);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.policy-card a.policy-mail:hover {
    color: #0a6a76;
}

.screenshots {
    margin-top: var(--section-gap);
    margin-bottom: var(--section-gap);
}

@media (min-width: 901px) {
    .screenshots {
        margin-top: 16px;
    }

    .product-hero {
        margin-bottom: 16px;
    }
}

.screenshots h3 {
    margin-bottom: 14px;
}

.screenshot-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.screenshot-slider {
    position: relative;
    overflow: visible;
    margin-top: 8px;
    padding: 12px;
    background: #f4f7fb;
    border-radius: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.screenshot-track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 6px 6px 12px;
    scroll-snap-type: x mandatory;
    width: 100%;
    scrollbar-width: none;
    align-items: flex-start;
}

.screenshot-track::-webkit-scrollbar {
    display: none;
}

.screenshot-item {
    flex: 0 0 220px;
    aspect-ratio: 9 / 16;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    scroll-snap-align: start;
    box-shadow: none;
    transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.screenshot-item:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    border-radius: 18px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid #d7dee8;
    background: #ffffff;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.22);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
    z-index: 2;
}

.slider-arrow.left {
    left: -12px;
}

.slider-arrow.right {
    right: -12px;
}

.slider-arrow:hover {
    transform: translateY(-50%) translateX(-1px);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.28);
}

.slider-arrow .bi {
    width: 20px;
    height: 20px;
}

.screenshot-modal {
    position: fixed;
    inset: 0;
    background: rgba(12, 18, 32, 0.72);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px 18px;
    z-index: 40;
    backdrop-filter: blur(4px);
}

.screenshot-modal.open {
    display: flex;
}

.screenshot-modal__image {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: min(90vw, 540px);
    max-height: 88vh;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
}

.screenshot-modal__image img {
    width: auto;
    height: auto;
    max-width: min(90vw, 520px);
    max-height: calc(88vh - 28px);
    object-fit: contain;
    border-radius: 12px;
    display: block;
}

.modal-close {
    position: fixed;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #dfe5ef;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.24);
    cursor: pointer;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    color: #0f172a;
    z-index: 41;
}

.modal-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 1px solid #dfe5ef;
    background: #ffffff;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.26);
    z-index: 41;
}

.modal-nav.left {
    left: 24px;
}

.modal-nav.right {
    right: 24px;
}

.modal-nav .bi {
    width: 28px;
    height: 28px;
}

body.no-scroll {
    overflow: hidden;
}

@media (max-width: 900px) {
    :root {
        --section-gap: 28px;
    }
}

@media (max-width: 900px) {
    .hero,
    .product-body {
        grid-template-columns: 1fr;
    }

    .site-header .shell {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .hero {
        padding-top: 40px;
    }

    .product-hero {
        grid-template-columns: 1fr;
        align-items: flex-start;
        gap: 16px;
        padding: 24px 0 18px;
        margin-bottom: var(--section-gap);
    }

    .product-media {
        margin: 6px auto 0;
        max-width: 380px;
        width: 100%;
    }

    .product-copy {
        width: 100%;
        margin-bottom: 10px;
    }

    .hero-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    :root {
        --section-gap: 24px;
    }

    .main-nav {
        display: none;
    }

    .burger-btn {
        display: inline-flex;
    }

    .site-header .shell {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0;
    }
}

@media (max-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .card-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
}
.section.tight {
    padding-top: 8px;
    padding-bottom: 8px;
}

.nav-icon {
    width: 18px;
    height: 18px;
    fill: var(--muted);
}

.nav a:hover .nav-icon,
.drawer-nav a:hover .nav-icon {
    fill: var(--accent-strong);
}
