/* Plandy web — uygulamanın paletiyle aynı: sıcak turuncu vurgu, sade yüzeyler. */

:root {
    color-scheme: light dark;

    --bg: #f6f6f8;
    --surface: #ffffff;
    --text: #11131a;
    --text-soft: #5c6070;
    --separator: #e4e4e9;
    --accent: #e8620c;
    --grad-a: #f97316;
    --grad-b: #fbbf24;
    --shadow: 0 1px 3px rgba(17, 19, 26, .06), 0 8px 24px rgba(17, 19, 26, .05);
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg: #000000;
        --surface: #1c1c1e;
        --text: #f3f3f5;
        --text-soft: #9a9aa3;
        --separator: #38383a;
        --accent: #ff9243;
        --grad-a: #c2410c;
        --grad-b: #b45309;
        --shadow: none;
    }
}

* { box-sizing: border-box; }

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

body {
    margin: 0;
    padding: 0 20px 80px;
    background: var(--bg);
    color: var(--text);
    font: 400 17px/1.65 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 700px; margin: 0 auto; }

/* Üst bant */

header {
    padding: 56px 0 36px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.mark {
    width: 46px;
    height: 46px;
    flex: none;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--grad-a), var(--grad-b));
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 24px;
    line-height: 1;
}

.mark svg { width: 24px; height: 24px; display: block; }

header a.brand {
    color: inherit;
    text-decoration: none;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -.02em;
}

header .tag {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-soft);
    letter-spacing: 0;
}

/* Metin */

h1 {
    font-size: 34px;
    line-height: 1.2;
    letter-spacing: -.025em;
    margin: 0 0 8px;
}

h2 {
    font-size: 21px;
    letter-spacing: -.015em;
    margin: 44px 0 10px;
    padding-top: 28px;
    border-top: 1px solid var(--separator);
}

h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 32px; }

h3 { font-size: 17px; margin: 26px 0 6px; }

p, li { color: var(--text); }

p { margin: 0 0 16px; }

ul { margin: 0 0 16px; padding-left: 22px; }

li { margin-bottom: 8px; }

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 2px; }

strong { font-weight: 600; }

.lead {
    font-size: 19px;
    color: var(--text-soft);
    margin-bottom: 28px;
}

.meta {
    font-size: 14px;
    color: var(--text-soft);
    margin: 0 0 36px;
}

/* Kart */

.card {
    background: var(--surface);
    border-radius: 18px;
    padding: 22px 24px;
    margin: 0 0 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--separator);
}

.card p:last-child, .card ul:last-child { margin-bottom: 0; }

.card h3 { margin-top: 0; }

/* Tablo */

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

.table th, .table td {
    text-align: left;
    padding: 12px 14px;
    border-bottom: 1px solid var(--separator);
    vertical-align: top;
}

.table th { font-weight: 600; font-size: 14px; color: var(--text-soft); }

.table tr:last-child td { border-bottom: 0; }

.scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* Düğmeler ve bağlantı listesi */

.links { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 0; padding: 0; list-style: none; }

.links a {
    display: inline-block;
    padding: 11px 18px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--separator);
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.links a.primary {
    background: linear-gradient(135deg, var(--grad-a), var(--grad-b));
    border-color: transparent;
    color: #fff;
}

/* Alt bilgi */

footer {
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid var(--separator);
    font-size: 14px;
    color: var(--text-soft);
}

footer a { color: var(--text-soft); }

footer nav { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 12px; }

@media (max-width: 560px) {
    header { padding: 40px 0 28px; }
    h1 { font-size: 28px; }
    body { font-size: 16px; }
}
