:root {
    --ink: #0b1f24;
    --ink-soft: #123a42;
    --paper: #f4fafb;
    --paper-2: #e5f2f4;
    --accent: #0b6b7c;
    --accent-bright: #1a9bb0;
    --accent-warm: #e87a2e;
    --accent-ink: #ffffff;
    --err: #b42318;
    --ok: #1b7a4a;
    --muted: #5a6e73;
    --line: rgba(11, 31, 36, 0.12);
    --font-display: "Nunito", sans-serif;
    --font-body: "Manrope", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background:
        radial-gradient(1000px 520px at 8% -8%, rgba(26, 155, 176, 0.18), transparent 55%),
        radial-gradient(800px 480px at 95% 10%, rgba(232, 122, 46, 0.12), transparent 50%),
        linear-gradient(165deg, #f7fcfd 0%, #eef6f8 48%, #e8f3f0 100%);
    line-height: 1.5;
}

a {
    color: inherit;
}

.ol-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem clamp(1rem, 4vw, 2.5rem);
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
    background: color-mix(in srgb, var(--paper) 82%, transparent);
    border-bottom: 1px solid var(--line);
}

.ol-brand {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--accent);
}

.ol-brand__mark {
    width: 40px;
    height: 40px;
    border-radius: 0.55rem;
    object-fit: cover;
    background: #0a0a0a;
}

.ol-nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.ol-nav a {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0.72;
}

.ol-nav a[aria-current="page"],
.ol-nav a:hover {
    opacity: 1;
    color: var(--accent);
}

.ol-hero {
    min-height: calc(100vh - 5.5rem);
    display: grid;
    align-items: end;
    position: relative;
    overflow: hidden;
    padding: clamp(2rem, 6vw, 5rem);
}

.ol-hero__plane {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, transparent 32%, #0b1f24ee 32%, #0b6b7c 100%),
        radial-gradient(circle at 70% 30%, rgba(232, 122, 46, 0.35), transparent 45%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cpath fill='none' stroke='%23123a42' stroke-opacity='.22' stroke-width='1' d='M0 80h160M80 0v160'/%3E%3C/svg%3E");
    transform: scale(1.02);
    animation: ol-plane 14s ease-in-out infinite alternate;
}

.ol-hero__copy {
    position: relative;
    z-index: 1;
    max-width: 38rem;
    color: var(--paper);
    animation: ol-rise 0.8s ease-out both;
}

.ol-brand-mark {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.2rem, 6.5vw, 4rem);
    letter-spacing: -0.03em;
    margin: 0 0 0.5rem;
    line-height: 1;
    color: #7fd4e0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ol-brand-mark__logo {
    width: clamp(3.2rem, 8vw, 4.8rem);
    height: clamp(3.2rem, 8vw, 4.8rem);
    border-radius: 0.85rem;
    object-fit: cover;
    background: #0a0a0a;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.ol-hero h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.45rem, 3.2vw, 2.1rem);
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.ol-lead {
    color: var(--muted);
    max-width: 40rem;
}

.ol-hero .ol-lead {
    color: color-mix(in srgb, var(--paper) 78%, transparent);
}

.ol-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.ol-btn {
    appearance: none;
    border: 1px solid transparent;
    border-radius: 0.45rem;
    padding: 0.7rem 1.15rem;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.ol-btn:hover {
    transform: translateY(-1px);
}

.ol-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

.ol-btn--primary {
    background: var(--accent-warm);
    color: #fff;
}

.ol-btn--ghost {
    background: transparent;
    border-color: color-mix(in srgb, var(--paper) 45%, transparent);
    color: var(--paper);
}

.ol-page {
    padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 4vw, 2.5rem) 4rem;
    max-width: 960px;
    margin: 0 auto;
    animation: ol-rise 0.55s ease-out both;
}

.ol-page h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    letter-spacing: -0.03em;
    margin: 0 0 0.5rem;
    color: var(--accent);
}

.ol-form {
    margin-top: 1.5rem;
    display: grid;
    gap: 1rem;
    max-width: 28rem;
}

.ol-form--inline {
    max-width: none;
    grid-template-columns: minmax(12rem, 18rem) auto;
    align-items: end;
}

.ol-field {
    display: grid;
    gap: 0.35rem;
}

.ol-field > span:first-child {
    font-weight: 600;
    font-size: 0.9rem;
}

.ol-field input {
    font: inherit;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--line);
    border-radius: 0.4rem;
    background: #fff;
}

.ol-field input:focus {
    outline: 2px solid color-mix(in srgb, var(--accent) 45%, transparent);
    border-color: var(--accent);
}

.ol-slug-row {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.ol-slug-row input {
    flex: 1;
    min-width: 0;
}

.ol-slug-suffix {
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
}

.ol-hint {
    font-size: 0.85rem;
    color: var(--muted);
}

.ol-hint.is-ok {
    color: var(--ok);
}

.ol-hint.is-err {
    color: var(--err);
}

.ol-alert {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 0.4rem;
    background: #fff;
    border: 1px solid var(--line);
}

.ol-alert--err {
    border-color: color-mix(in srgb, var(--err) 40%, var(--line));
    color: var(--err);
}

.ol-market {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.ol-mod {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0.65rem;
    padding: 1.1rem 1.15rem;
}

.ol-mod__cat {
    margin: 0 0 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--accent);
}

.ol-mod h2 {
    margin: 0 0 0.4rem;
    font-size: 1.15rem;
    font-family: var(--font-display);
}

.ol-mod p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.ol-mod__row {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.ol-price {
    font-weight: 700;
    color: var(--ink-soft);
}

.ol-foot {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem 1rem;
    padding: 1.25rem clamp(1rem, 4vw, 2.5rem) 2rem;
    color: var(--muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--line);
}

@keyframes ol-plane {
    from { transform: scale(1.02) translateX(0); }
    to { transform: scale(1.04) translateX(-1.2%); }
}

@keyframes ol-rise {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: none; }
}

@media (max-width: 640px) {
    .ol-form--inline {
        grid-template-columns: 1fr;
    }
}
