@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("/assets/fonts/Inter-Latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("/assets/fonts/Inter-LatinExt.woff2") format("woff2");
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
    --bg: #000000;
    --panel: rgba(222, 222, 222, 0.9);
    --panel-border: rgba(255, 255, 255, 0.18);
    --text: #111111;
    --muted: #414141;
    --btn-dark: #101214;
    --btn-dark-hover: #1f2328;
    --btn-light: #dddddd;
    --btn-light-hover: #cfcfcf;
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", Arial, sans-serif;
    background: var(--bg);
    color: #ffffff;
    overflow: hidden;
}

button,
input,
textarea,
select,
option {
    font-family: inherit;
}

#particles-js {
    position: fixed;
    inset: 0;
    z-index: 0;
}

.landing-shell {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.intro {
    text-align: center;
}

.intro h1 {
    margin: 0;
    font-size: clamp(38px, 6vw, 58px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.typing-line {
    margin: 14px 0 28px;
    font-size: clamp(15px, 2.2vw, 22px);
    color: #d0d0d0;
}

.cursor {
    display: inline-block;
    animation: blink 1s step-start infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.cta-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.btn {
    border: 0;
    border-radius: 10px;
    padding: 11px 18px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
.modal-close:focus-visible {
    outline: 2px solid #8aa7ff;
    outline-offset: 2px;
}

.btn-primary {
    color: #ffffff;
    background: var(--btn-dark);
    border: 1px solid #3f3f3f;
}

.btn-primary:hover {
    background: var(--btn-dark-hover);
}

.btn-secondary {
    color: #1a1a1a;
    background: var(--btn-light);
}

.btn-secondary:hover {
    background: var(--btn-light-hover);
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    opacity: 0;
    transition: opacity 0.36s ease, backdrop-filter 0.36s ease, background 0.36s ease;
}

.modal-dialog {
    position: relative;
    width: min(88vw, 330px);
    max-height: min(90vh, 700px);
    overflow: auto;
    background: var(--panel);
    color: var(--text);
    border: 1px solid var(--panel-border);
    border-radius: 9px;
    padding: 14px 14px 12px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(22px) scale(0.97);
    transform-origin: center 85%;
    transition: opacity 0.36s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.modal.is-open .modal-overlay {
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 1;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .modal.is-open .modal-overlay {
        background: rgba(0, 0, 0, 0.78);
    }
}

.modal.is-open .modal-dialog {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .modal,
    .modal-overlay,
    .modal-dialog {
        transition: none;
    }
}

.modal-close {
    position: absolute;
    right: 8px;
    top: 8px;
    border: 0;
    background: transparent;
    color: #565656;
    font-size: 17px;
    line-height: 1;
    cursor: pointer;
}

.modal h2 {
    margin: 0 24px 12px 0;
    font-size: 18px;
    text-align: center;
}

.links-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.links-list a {
    display: block;
    text-decoration: none;
    color: #1e1e1e;
    padding: 7px 2px;
    font-size: 14px;
    position: relative;
    padding-left: 16px;
}

.links-list a::before {
    content: "›";
    position: absolute;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
    color: #444444;
    font-weight: 600;
}

.links-list a:hover {
    color: #000000;
    transform: translateX(2px);
}

#form {
    display: grid;
    gap: 8px;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

input,
textarea,
#submit {
    width: 100%;
    border-radius: 2px;
    border: 1px solid #9c9c9c;
    font-size: 13px;
    font-family: inherit;
}

input,
textarea {
    background: #f7f7f7;
    color: #1f1f1f;
    padding: 9px 10px;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.uyari {
    margin: 0;
    font-size: 12px;
    color: var(--muted);
}

.sending {
    display: none;
    font-size: 12px;
    color: #1e1e1e;
}

.turnstile-wrap {
    display: none;
}

.turnstile-wrap.is-ready {
    display: block;
}

#submit {
    background: #000000;
    color: #ffffff;
    font-weight: 600;
    border: none;
    padding: 10px 8px;
    cursor: pointer;
    transition: background 0.2s ease;
}

#submit:disabled {
    cursor: not-allowed;
    opacity: 1;
    background: #9e9e9e;
}

#submit:not(:disabled):hover {
    background: #1f2328;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
