/* OTOHASAR public landing — hasarkayit.com */
.lp {
    --lp-ink: #0c1219;
    --lp-ink-soft: #1a2433;
    --lp-sand: #e8e4dc;
    --lp-mist: #f3f1ec;
    --lp-steel: #5b6b7c;
    --lp-amber: #d97706;
    --lp-amber-deep: #b45309;
    --lp-line: rgba(12, 18, 25, 0.12);
    --lp-font: "Sora", "Segoe UI", sans-serif;
    --lp-display: "Syne", "Sora", sans-serif;
    margin: 0;
    font-family: var(--lp-font);
    color: var(--lp-ink);
    background: var(--lp-mist);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

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

.lp a { color: inherit; text-decoration: none; }
.lp img { display: block; max-width: 100%; height: auto; }

.lp-wrap {
    width: min(1100px, calc(100% - 2.5rem));
    margin-inline: auto;
}

/* —— Nav —— */
.lp-nav {
    position: absolute;
    z-index: 20;
    inset: 0 0 auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem clamp(1rem, 3vw, 2rem);
    color: #f8fafc;
}

.lp-brand {
    font-family: var(--lp-display);
    font-weight: 800;
    font-size: clamp(1.15rem, 2.4vw, 1.45rem);
    letter-spacing: 0.04em;
}

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: clamp(0.65rem, 1.8vw, 1.35rem);
    font-size: 0.8125rem;
    font-weight: 500;
}

.lp-nav-links a {
    opacity: 0.88;
    transition: opacity 0.2s ease;
}

.lp-nav-links a:hover { opacity: 1; }

.lp-nav-cta {
    padding: 0.45rem 0.9rem;
    border: 1px solid rgba(248, 250, 252, 0.45);
    border-radius: 999px;
    opacity: 1 !important;
}

@media (max-width: 760px) {
    .lp-nav-links a:not(.lp-nav-cta) { display: none; }
}

/* —— Hero —— */
.lp-hero {
    position: relative;
    min-height: 100svh;
    min-height: 100vh;
    display: grid;
    align-items: end;
    overflow: hidden;
    color: #f8fafc;
}

.lp-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.lp-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    transform: scale(1.06);
    animation: lpKenBurns 18s ease-out forwards;
}

@keyframes lpKenBurns {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
}

.lp-hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(8, 12, 18, 0.55) 0%, rgba(8, 12, 18, 0.28) 38%, rgba(8, 12, 18, 0.82) 100%),
        linear-gradient(90deg, rgba(8, 12, 18, 0.55) 0%, transparent 55%);
}

.lp-hero-copy {
    position: relative;
    z-index: 2;
    width: min(720px, calc(100% - 2.5rem));
    margin: 0 auto 0 clamp(1rem, 4vw, 4rem);
    padding: 0 0 clamp(2.75rem, 8vh, 4.5rem);
    animation: lpRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes lpRise {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}

.lp-brand-mark {
    font-family: var(--lp-display);
    font-weight: 800;
    font-size: clamp(2.4rem, 7vw, 4.25rem);
    letter-spacing: 0.02em;
    line-height: 0.95;
    margin: 0 0 0.85rem;
}

.lp-brand-mark-dark { color: var(--lp-ink); }

.lp-hero h1 {
    font-family: var(--lp-display);
    font-weight: 700;
    font-size: clamp(1.35rem, 3.2vw, 2rem);
    line-height: 1.2;
    max-width: 20ch;
    margin: 0 0 0.85rem;
}

.lp-hero-lead {
    margin: 0 0 1.5rem;
    max-width: 38ch;
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    color: rgba(248, 250, 252, 0.86);
}

.lp-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.7rem 1.25rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid transparent;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.lp-btn-primary {
    background: var(--lp-amber);
    color: #111827;
}

.lp-btn-primary:hover { background: #f59e0b; }

.lp-btn-ghost {
    border-color: rgba(248, 250, 252, 0.55);
    color: #f8fafc;
}

.lp-btn-ghost:hover { background: rgba(248, 250, 252, 0.1); }

.lp-btn-ghost-dark {
    border-color: rgba(12, 18, 25, 0.35);
    color: var(--lp-ink);
}

.lp-btn-ghost-dark:hover { background: rgba(12, 18, 25, 0.05); }

.lp-btn-secondary {
    background: var(--lp-ink);
    color: #f8fafc;
    margin-top: 1.5rem;
}

.lp-btn-secondary:hover { background: var(--lp-ink-soft); }

/* —— Sections —— */
.lp-section {
    padding: clamp(3.5rem, 9vw, 6rem) 0;
}

.lp-kicker {
    margin: 0 0 0.65rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lp-amber-deep);
}

.lp-section h2 {
    font-family: var(--lp-display);
    font-weight: 700;
    font-size: clamp(1.65rem, 3.5vw, 2.45rem);
    line-height: 1.15;
    max-width: 16ch;
    margin: 0 0 0.9rem;
}

.lp-lead {
    margin: 0 0 1.75rem;
    max-width: 52ch;
    color: var(--lp-steel);
    font-size: 1.02rem;
}

.lp-points {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--lp-line);
}

.lp-points li {
    display: grid;
    gap: 0.35rem;
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--lp-line);
}

.lp-points strong {
    font-size: 1.02rem;
    font-weight: 650;
}

.lp-points span {
    color: var(--lp-steel);
    max-width: 58ch;
}

.lp-points-compact li {
    grid-template-columns: minmax(10rem, 14rem) 1fr;
    align-items: baseline;
    gap: 1rem;
}

@media (max-width: 640px) {
    .lp-points-compact li { grid-template-columns: 1fr; }
}

.lp-why {
    background: #fff;
}

.lp-split {
    background: var(--lp-mist);
}

.lp-split-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

@media (max-width: 860px) {
    .lp-split-grid { grid-template-columns: 1fr; }
    .lp-split-media { order: -1; }
}

.lp-split-media {
    overflow: hidden;
    border-radius: 4px;
    min-height: 280px;
}

.lp-split-media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    filter: saturate(0.92) contrast(1.04);
}

.lp-checklist {
    list-style: none;
    margin: 0 0 1.35rem;
    padding: 0;
}

.lp-checklist li {
    position: relative;
    padding: 0.55rem 0 0.55rem 1.35rem;
    border-bottom: 1px solid var(--lp-line);
    color: var(--lp-ink-soft);
    font-size: 0.95rem;
}

.lp-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.05rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--lp-amber);
}

.lp-text-link {
    font-weight: 650;
    color: var(--lp-amber-deep);
    border-bottom: 1px solid currentColor;
    padding-bottom: 0.1rem;
    transition: color 0.2s ease;
}

.lp-text-link:hover { color: var(--lp-ink); }

.lp-tone {
    background: var(--lp-ink);
    color: #eef2f6;
}

.lp-tone .lp-kicker { color: #fbbf24; }
.lp-tone .lp-lead { color: rgba(238, 242, 246, 0.72); }

.lp-roles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(248, 250, 252, 0.14);
}

.lp-roles article {
    padding: 1.35rem 1.1rem 0.25rem 0;
    border-right: 1px solid rgba(248, 250, 252, 0.14);
}

.lp-roles article:last-child {
    border-right: 0;
    padding-right: 0;
}

.lp-roles h3 {
    font-family: var(--lp-display);
    font-size: 1.15rem;
    margin: 0 0 0.55rem;
}

.lp-roles p {
    margin: 0;
    color: rgba(238, 242, 246, 0.7);
    font-size: 0.92rem;
    max-width: 28ch;
}

@media (max-width: 800px) {
    .lp-roles { grid-template-columns: 1fr; }
    .lp-roles article {
        border-right: 0;
        border-bottom: 1px solid rgba(248, 250, 252, 0.14);
        padding: 1.2rem 0;
    }
}

.lp-cta-band {
    padding: clamp(3.5rem, 9vw, 5.5rem) 0;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(217, 119, 6, 0.18), transparent 50%),
        var(--lp-sand);
    text-align: left;
}

.lp-cta-band h2 {
    font-family: var(--lp-display);
    font-size: clamp(1.6rem, 3.4vw, 2.3rem);
    max-width: 22ch;
    margin: 0 0 0.65rem;
}

.lp-cta-band p {
    margin: 0 0 1.35rem;
    max-width: 42ch;
    color: var(--lp-steel);
}

.lp-footer {
    background: var(--lp-ink);
    color: rgba(248, 250, 252, 0.7);
    padding: 1.35rem 0;
    font-size: 0.8rem;
}

.lp-footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    justify-content: space-between;
    align-items: center;
}

.lp-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.15rem;
}

.lp-footer a:hover { color: #fff; }

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-in {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .lp-hero-media img { animation: none; transform: none; }
    .lp-hero-copy { animation: none; }
    [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* Cookie banner (landing has no app stylesheet) */
.lp .cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #0c1219;
    color: #e2e8f0;
    padding: 0.85rem 1rem;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
}
.lp .cookie-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.lp .cookie-banner-inner p {
    margin: 0;
    font-size: 0.8125rem;
    flex: 1;
    min-width: 220px;
    line-height: 1.45;
}
.lp .cookie-banner-inner a { color: #fbbf24; }
.lp .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    font: inherit;
    font-weight: 600;
    border-radius: 999px;
}
.lp .btn-sm { padding: 0.45rem 0.95rem; font-size: 0.8125rem; }
.lp .btn-primary { background: var(--lp-amber); color: #111827; }
.lp .btn-primary:hover { background: #f59e0b; }

