/* ==========================================================================
   Web Light District — design system
   ========================================================================== */

:root {
    --bg: #07070b;
    --bg-elev: #0e0e15;
    --surface: rgba(255, 255, 255, 0.028);
    --surface-hover: rgba(255, 255, 255, 0.055);
    --line: rgba(255, 255, 255, 0.09);
    --line-strong: rgba(255, 255, 255, 0.16);

    --text: #f4f4f7;
    --text-muted: #a2a2b4;
    --text-dim: #6f6f84;

    --violet: #7c5cff;
    --cyan: #22d3ee;
    --accent-grad: linear-gradient(120deg, var(--violet), var(--cyan));

    --green: #34d399;
    --amber: #fbbf24;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius: 14px;
    --radius-lg: 22px;
    --container: 1120px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Ambient background glow */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(60rem 40rem at 12% -8%, rgba(124, 92, 255, 0.16), transparent 60%),
        radial-gradient(50rem 34rem at 92% 4%, rgba(34, 211, 238, 0.10), transparent 62%);
    pointer-events: none;
}

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

a {
    color: inherit;
}

:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 3px;
    border-radius: 4px;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.narrow {
    max-width: 760px;
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--violet);
    color: #fff;
    padding: 12px 20px;
    z-index: 200;
    border-radius: 0 0 8px 0;
    font-weight: 600;
}

.skip-link:focus {
    left: 0;
}

/* ---------- Typography ---------- */

h1,
h2,
h3,
h4 {
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2.4rem, 6vw, 4rem);
}

h2 {
    font-size: clamp(1.75rem, 3.6vw, 2.6rem);
}

h3 {
    font-size: 1.2rem;
}

p {
    color: var(--text-muted);
}

.grad-text {
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 20px;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--line-strong);
}

.section {
    padding: clamp(64px, 9vw, 116px) 0;
}

.section-head {
    max-width: 660px;
    margin-bottom: 56px;
}

.section-head p {
    font-size: 1.05rem;
    margin-top: 16px;
}

/* ---------- Buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 26px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.18s var(--ease), background-color 0.18s, border-color 0.18s, opacity 0.18s;
    white-space: nowrap;
}

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

.btn:active {
    transform: translateY(0);
}

.btn--primary {
    background: var(--accent-grad);
    color: #0a0a10;
    font-weight: 700;
    box-shadow: 0 8px 30px -10px rgba(124, 92, 255, 0.7);
}

.btn--primary:hover {
    opacity: 0.92;
}

.btn--ghost {
    background: var(--surface);
    border-color: var(--line-strong);
    color: var(--text);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    background: var(--surface-hover);
    border-color: var(--cyan);
}

.btn--sm {
    padding: 10px 18px;
    font-size: 0.85rem;
}

.btn--block {
    width: 100%;
}

.btn[disabled] {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

/* ---------- Header ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(7, 7, 11, 0.72);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-mark {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name strong {
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.brand-name span {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-dim);
}

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

.site-nav a:not(.btn) {
    text-decoration: none;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

.site-nav a:not(.btn):hover {
    color: var(--text);
}

.nav-toggle {
    display: none;
    background: var(--surface);
    border: 1px solid var(--line-strong);
    border-radius: 9px;
    width: 42px;
    height: 42px;
    color: var(--text);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* ---------- Hero ---------- */

.hero {
    padding: clamp(64px, 10vw, 128px) 0 clamp(48px, 7vw, 88px);
}

.hero h1 {
    max-width: 15ch;
}

.hero .lead {
    font-size: clamp(1.05rem, 1.7vw, 1.28rem);
    max-width: 56ch;
    margin-top: 26px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 40px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 30px;
    margin-top: 52px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat strong {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-stat span {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* ---------- Founder card ---------- */

.founder {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 24px 18px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    backdrop-filter: blur(8px);
    width: fit-content;
    max-width: 100%;
}

.founder img {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--line-strong);
}

.founder-name {
    font-weight: 700;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.3;
}

.founder-role {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.founder a {
    font-size: 0.84rem;
    color: var(--cyan);
    text-decoration: none;
    font-weight: 600;
}

.founder a:hover {
    text-decoration: underline;
}

/* ---------- Carousel ---------- */

.carousel {
    position: relative;
}

.carousel-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-inline: -24px;
    padding-inline: 24px;
}

.carousel-viewport::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    gap: 24px;
    padding-bottom: 6px;
}

.slide {
    scroll-snap-align: center;
    flex: 0 0 min(100%, 880px);
    display: flex;
    flex-direction: column;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.3s;
}

.slide:hover {
    border-color: var(--line-strong);
}

.slide-shot {
    position: relative;
    aspect-ratio: 1440 / 672;
    background: #0b0b12;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.slide-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.slide-shot--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(30rem 16rem at 30% 0%, rgba(124, 92, 255, 0.22), transparent 65%),
        radial-gradient(26rem 14rem at 80% 100%, rgba(34, 211, 238, 0.14), transparent 60%),
        #0b0b12;
}

.slide-shot--empty span {
    font-size: 0.8rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    padding: 0 20px;
}

.slide-body {
    padding: 28px 30px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 12px;
}

.slide-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.slide-body h3 {
    font-size: 1.4rem;
}

.slide-body p {
    font-size: 0.95rem;
    max-width: 62ch;
}

.slide-foot {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 12px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    color: var(--text-muted);
    white-space: nowrap;
}

.tag--live {
    color: var(--green);
    border-color: rgba(52, 211, 153, 0.4);
    background: rgba(52, 211, 153, 0.08);
}

.tag--product {
    color: var(--amber);
    border-color: rgba(251, 191, 36, 0.4);
    background: rgba(251, 191, 36, 0.08);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 28px;
}

.carousel-dots {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

.carousel-dots button {
    width: 30px;
    height: 4px;
    border-radius: 999px;
    border: none;
    background: var(--line-strong);
    cursor: pointer;
    padding: 0;
    transition: background-color 0.25s, width 0.25s var(--ease);
}

.carousel-dots button[aria-current="true"] {
    background: var(--accent-grad);
    width: 46px;
}

.carousel-arrows {
    display: flex;
    gap: 10px;
}

.carousel-arrows button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, border-color 0.2s, opacity 0.2s;
}

.carousel-arrows button:hover:not([disabled]) {
    background: var(--surface-hover);
    border-color: var(--cyan);
}

.carousel-arrows button[disabled] {
    opacity: 0.35;
    cursor: not-allowed;
}

/* ---------- Product ---------- */

.product {
    background:
        linear-gradient(180deg, rgba(124, 92, 255, 0.07), transparent 42%),
        var(--bg-elev);
    border-block: 1px solid var(--line);
}

.product-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: start;
}

.product h2 {
    margin-bottom: 8px;
}

.product-sub {
    font-size: 1.06rem;
    margin-bottom: 28px;
}

.feature-list {
    list-style: none;
    display: grid;
    gap: 13px;
    margin: 26px 0;
}

.feature-list li {
    position: relative;
    padding-left: 32px;
    font-size: 0.96rem;
    color: var(--text-muted);
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(52, 211, 153, 0.14);
    border: 1px solid rgba(52, 211, 153, 0.5);
}

.feature-list li::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 0.72em;
    width: 5px;
    height: 9px;
    border-right: 2px solid var(--green);
    border-bottom: 2px solid var(--green);
    transform: rotate(45deg);
}

.feature-list li strong {
    color: var(--text);
    font-weight: 600;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.module {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    background: var(--surface);
}

.module .num {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-dim);
    display: block;
    margin-bottom: 8px;
}

.module h4 {
    font-size: 1rem;
    margin-bottom: 7px;
}

.module p {
    font-size: 0.87rem;
    line-height: 1.55;
}

/* Price card */

.pricecard {
    position: sticky;
    top: 100px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    padding: 32px;
    background: rgba(14, 14, 21, 0.85);
    backdrop-filter: blur(10px);
}

.pricecard .label {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 12px 0 4px;
}

.price-now {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
}

.price-old {
    font-size: 1.15rem;
    color: var(--text-dim);
    text-decoration: line-through;
}

.price-note {
    font-size: 0.86rem;
    color: var(--text-dim);
    margin-bottom: 24px;
}

.pricecard .btn {
    margin-bottom: 18px;
}

.pricecard dl {
    display: grid;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-size: 0.86rem;
}

.pricecard dl>div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.pricecard dt {
    color: var(--text-dim);
    flex-shrink: 0;
}

.pricecard dd {
    text-align: right;
    color: var(--text);
    font-weight: 500;
}

.disclaimer {
    margin-top: 22px;
    padding: 16px 18px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: rgba(251, 191, 36, 0.05);
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.disclaimer strong {
    color: var(--amber);
    display: block;
    margin-bottom: 4px;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ---------- Contact ---------- */

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: start;
}

.contact-detail {
    margin-top: 30px;
    display: grid;
    gap: 20px;
}

.contact-detail div {
    display: grid;
    gap: 3px;
}

.contact-detail dt,
.contact-detail .k {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.contact-detail a {
    color: var(--cyan);
    text-decoration: none;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.contact-detail address {
    font-style: normal;
    color: var(--text-muted);
    line-height: 1.7;
}

.form {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
    background: var(--surface);
    display: grid;
    gap: 18px;
}

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

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.field label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
}

.field label .req {
    color: var(--violet);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    padding: 13px 15px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.94rem;
    transition: border-color 0.2s, background-color 0.2s;
}

.field textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

.field input::placeholder,
.field textarea::placeholder {
    color: var(--text-dim);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--violet);
    background: rgba(0, 0, 0, 0.5);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
    border-color: #f87171;
}

.field-hint {
    font-size: 0.78rem;
    color: var(--text-dim);
}

.hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    font-size: 0.9rem;
    padding: 13px 16px;
    border-radius: 10px;
    display: none;
}

.form-status.is-visible {
    display: block;
}

.form-status--ok {
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.4);
    color: #6ee7b7;
}

.form-status--err {
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.4);
    color: #fca5a5;
}

/* ---------- Footer ---------- */

.site-footer {
    border-top: 1px solid var(--line);
    padding: 64px 0 40px;
    background: var(--bg-elev);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 44px;
    margin-bottom: 48px;
}

.footer-grid h4 {
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 18px;
    font-weight: 700;
}

.footer-grid ul {
    list-style: none;
    display: grid;
    gap: 11px;
}

.footer-grid a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-grid a:hover {
    color: var(--text);
}

.footer-entity address {
    font-style: normal;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-top: 14px;
}

.footer-entity .brand {
    margin-bottom: 4px;
}

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--text-dim);
}

/* ---------- Legal / content pages ---------- */

.doc {
    padding: clamp(48px, 7vw, 90px) 0 clamp(64px, 8vw, 100px);
}

.doc-head {
    padding-bottom: 32px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--line);
}

.doc-head h1 {
    font-size: clamp(2rem, 4.5vw, 2.9rem);
}

.doc-updated {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-top: 12px;
}

.doc-body h2 {
    font-size: 1.35rem;
    margin: 44px 0 14px;
}

.doc-body h3 {
    font-size: 1.05rem;
    margin: 28px 0 10px;
}

.doc-body p,
.doc-body li {
    color: var(--text-muted);
    font-size: 0.97rem;
}

.doc-body p+p {
    margin-top: 14px;
}

.doc-body ul,
.doc-body ol {
    margin: 14px 0 14px 22px;
    display: grid;
    gap: 9px;
}

.doc-body a {
    color: var(--cyan);
}

.doc-body strong {
    color: var(--text);
}

.doc-body address {
    font-style: normal;
    line-height: 1.8;
    color: var(--text-muted);
    margin-top: 12px;
}

.callout {
    border: 1px solid var(--line-strong);
    border-left: 3px solid var(--violet);
    border-radius: var(--radius);
    padding: 20px 24px;
    background: var(--surface);
    margin: 26px 0;
}

.doc-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.92rem;
}

.doc-table th,
.doc-table td {
    text-align: left;
    padding: 13px 16px;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

.doc-table th {
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.doc-table td {
    color: var(--text-muted);
}

.table-scroll {
    overflow-x: auto;
}

/* ---------- Admin ---------- */

.admin-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

.admin-card {
    width: 100%;
    max-width: 420px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    padding: 36px;
    background: var(--bg-elev);
}

.admin-card h1 {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.admin-card p {
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.admin-shell {
    padding: 32px 0 80px;
}

.admin-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.admin-bar h1 {
    font-size: 1.5rem;
}

.admin-tools {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.admin-search {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--line-strong);
    border-radius: 9px;
    padding: 9px 14px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.88rem;
    min-width: 200px;
}

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

.msg {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 20px 24px;
}

.msg-head {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 10px;
}

.msg-who {
    font-weight: 600;
    color: var(--text);
}

.msg-who a {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    margin-left: 8px;
}

.msg-date {
    font-size: 0.78rem;
    color: var(--text-dim);
    font-variant-numeric: tabular-nums;
}

.msg-subject {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.msg-body {
    white-space: pre-wrap;
    word-break: break-word;
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.65;
}

.msg-meta {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    font-size: 0.75rem;
    color: var(--text-dim);
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.empty-state {
    text-align: center;
    padding: 70px 20px;
    color: var(--text-dim);
    border: 1px dashed var(--line-strong);
    border-radius: var(--radius-lg);
}

/* ---------- Responsive ---------- */

@media (max-width: 940px) {

    .product-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricecard {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
    }

    .footer-entity {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .site-nav {
        position: fixed;
        inset: 72px 0 auto;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(7, 7, 11, 0.97);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--line);
        padding: 12px 24px 24px;
        display: none;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a:not(.btn) {
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
        font-size: 1rem;
    }

    .site-nav .btn {
        margin-top: 16px;
    }

    .nav-toggle {
        display: flex;
    }

    .slide-body {
        padding: 24px 22px 26px;
    }

    .field-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .form,
    .pricecard {
        padding: 24px 20px;
    }

    .hero-meta {
        gap: 20px;
    }

    .carousel-controls {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 18px;
    }

    .carousel-arrows {
        justify-content: center;
    }

    .carousel-dots {
        justify-content: center;
    }

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

    .founder {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .carousel-viewport {
        scroll-behavior: auto;
    }
}
