/* ==========================================================================
   Posien — tasarım sistemi "v3 · karikatür"
   Mor palet, kalın çerçeve (2.5–3px), sert gölge (Npx Npx 0), hap yuvarlamalar,
   Baloo 2 (başlık) + Nunito (metin). Yazı tipleri yerelden servis edilir (fonts.css).
   Tüm renkler değişken; bileşenler ham renk kullanmaz. --ana tema anahtarıdır.
   Tasarım oyuncu, veri sunumu kesin: dereceler tabular rakamla yazılır.
   ========================================================================== */

/* --- 1. Belirteçler ------------------------------------------------------- */

:root {
    color-scheme: light;

    /* Mürekkep ve metin */
    --ink:        #3A3160;
    --ink-2:      #4A3F7A;
    --muted:      #6B5FA8;
    --line-soft:  #9A8CD6;

    /* Zeminler */
    --bg:         #EFEAFC;
    --bg-2:       #E4DCFA;
    --bg-deep:    #CFC7EC;
    --soft:       #EDE7FC;
    --soft-2:     #F3EEFF;
    --cloud:      #F4F0FE;
    --focus-bg:   #F6F1FF;
    --cream:      #FFFDF6;
    --white:      #FFFFFF;

    /* Vurgular — --ana tema anahtarı */
    --ana:        #FCE38F;
    --coral:      #F0857A;
    --mor:        #7B5EC7;
    --nane:       #A8DDD0;

    /* Pastel kart zeminleri */
    --p-sari:     #FCE38F;
    --p-mor:      #DDD3F7;
    --p-nane:     #A8DDD0;
    --p-somon:    #F7C4BC;
    --p-gok:      #C3DBF5;
    --p-krem:     #FFFDF6;

    /* Açı çizgileri */
    --aspect-sextile:    #A8DDD0;
    --aspect-square:     #F0857A;
    --aspect-trine:      #7B5EC7;
    --aspect-opposition: #F0857A;

    /* Çerçeve ve gölge */
    --bw:   2.5px;
    --bw-l: 3px;
    --shadow-1: 3px 3px 0 var(--ink);
    --shadow-2: 5px 5px 0 var(--ink);
    --shadow-3: 7px 7px 0 var(--ink);

    /* Yuvarlama */
    --r-s:    12px;
    --r-m:    16px;
    --r-l:    22px;
    --r-xl:   28px;
    --r-pill: 999px;

    /* Yazı */
    --font-display: 'Baloo 2', Nunito, 'Segoe UI', system-ui, sans-serif;
    --font-body:    Nunito, 'Segoe UI', system-ui, sans-serif;
    --font-glyph:   'Segoe UI Symbol', 'Apple Symbols', 'Noto Sans Symbols', 'DejaVu Sans', sans-serif;

    --step--1: clamp(0.84rem, 0.82rem + 0.1vw, 0.9rem);
    --step-0:  clamp(1rem, 0.97rem + 0.15vw, 1.06rem);
    --step-1:  clamp(1.15rem, 1.08rem + 0.35vw, 1.3rem);
    --step-2:  clamp(1.35rem, 1.2rem + 0.7vw, 1.75rem);
    --step-3:  clamp(1.75rem, 1.4rem + 1.6vw, 2.65rem);
    --step-4:  clamp(2.4rem, 1.6rem + 3.6vw, 4.9rem);

    /* Aralık */
    --space-3xs: 0.25rem;
    --space-2xs: 0.5rem;
    --space-xs:  0.75rem;
    --space-s:   1rem;
    --space-m:   1.5rem;
    --space-l:   2.25rem;
    --space-xl:  3.25rem;
    --space-2xl: 4.5rem;

    --container: 1240px;
    --measure: 66ch;

    --ease: cubic-bezier(0.2, 0, 0, 1);
    --dur: 140ms;
}

/* --- 2. Sıfırlama ve temel ------------------------------------------------ */

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

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

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    margin: 0;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: var(--step-0);
    font-weight: 500;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-variant-emoji: text;
}

main { flex: 1 0 auto; }

h1, h2, h3, h4 {
    margin: 0 0 var(--space-xs);
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    text-wrap: balance;
    color: var(--ink);
}
h1 { font-size: var(--step-4); line-height: 1.02; letter-spacing: -0.025em; }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }
h4 { font-size: var(--step-0); }

p, ul, ol, dl { margin: 0 0 var(--space-s); }
p { max-width: var(--measure); text-wrap: pretty; }
ul, ol { padding-inline-start: 1.3em; }
li { margin-bottom: var(--space-3xs); max-width: var(--measure); }

a { color: var(--mor); text-decoration-thickness: 2px; text-underline-offset: 0.16em; }
a:hover { color: var(--ink); }

strong { font-weight: 800; }
small { font-size: var(--step--1); }

hr { border: 0; border-top: var(--bw) solid var(--ink); margin: var(--space-l) 0; }

img, svg, video { max-width: 100%; height: auto; }

code, kbd, samp {
    font-family: ui-monospace, Consolas, monospace;
    font-size: 0.9em;
    background: var(--soft);
    border: 2px solid var(--line-soft);
    border-radius: 8px;
    padding: 0.05em 0.4em;
}

:focus-visible { outline: 3px solid var(--mor); outline-offset: 3px; border-radius: 8px; }
main:focus { outline: none; }

::selection { background: var(--ana); color: var(--ink); }

/* Gök cismi ve burç sembolleri: metin sunumu, renkli emoji yok */
.glyph {
    font-family: var(--font-glyph);
    font-variant-emoji: text;
    font-weight: 400;
    line-height: 1;
}

/* --- 3. Yardımcılar ------------------------------------------------------- */

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(16px, 3vw, 26px);
}

.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    margin: -1px; padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: var(--space-s);
    top: -100px;
    z-index: 100;
    padding: 0.5rem 1rem;
    background: var(--ana);
    color: var(--ink);
    border: var(--bw) solid var(--ink);
    border-radius: var(--r-pill);
    font-family: var(--font-display);
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow-1);
}
.skip-link:focus { top: var(--space-s); }

.text-muted { color: var(--muted); }
.text-faint { color: var(--line-soft); }
.text-center { text-align: center; }
.no-measure { max-width: none; }
.num { font-variant-numeric: tabular-nums; }

/* Bölüm bantları: tam genişlik, alt çizgi 3px */
.band {
    padding-block: clamp(2rem, 4vw, 3rem);
    border-bottom: var(--bw-l) solid var(--ink);
    background: var(--bg);
}
.band--2 { background: var(--bg-2); }
.band--ana { background: var(--ana); }
.band--tight { padding-block: var(--space-m); }
.band--last { border-bottom: 0; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 14px;
    background: var(--cream);
    border: var(--bw) solid var(--ink);
    border-radius: var(--r-pill);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: var(--space-s);
}
.section-label__dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--coral);
    flex: none;
}

.band-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-m);
    flex-wrap: wrap;
    margin-bottom: var(--space-m);
}
.band-head h2 { margin-bottom: 0; }
.band-head p { margin: 4px 0 0; font-weight: 600; color: var(--muted); max-width: 72ch; }

.lede {
    font-size: clamp(1.05rem, 1rem + 0.4vw, 1.2rem);
    line-height: 1.55;
    font-weight: 500;
    color: var(--ink-2);
    max-width: 44ch;
}

/* --- 4. Haplar ve düğmeler ------------------------------------------------ */

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 15px;
    background: var(--cream);
    border: var(--bw) solid var(--ink);
    border-radius: var(--r-pill);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
    color: var(--ink);
    text-decoration: none;
    white-space: nowrap;
}
.pill--soft { background: var(--soft); border-color: transparent; }
.pill--coral { background: var(--coral); color: var(--cream); }
.pill--ana { background: var(--ana); }
.pill--sm { font-size: 13.5px; padding: 1px 10px; border-width: 2px; }
.pill .glyph { font-size: 1.1em; }

.pill-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: var(--space-m);
}
.pill-row .pill { font-family: var(--font-body); font-weight: 700; font-size: 14.5px; padding: 8px 16px; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.5em 1.25em;
    border: var(--bw) solid var(--ink);
    border-radius: var(--r-pill);
    background: var(--white);
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.btn:hover { color: var(--ink); background: var(--soft-2); }

.btn--primary {
    background: var(--ana);
    box-shadow: 4px 4px 0 var(--ink);
}
.btn--primary:hover { background: var(--ana); transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }

.btn--coral {
    background: var(--coral);
    color: var(--cream);
    border-width: var(--bw-l);
    box-shadow: 4px 4px 0 var(--ink);
}
.btn--coral:hover { background: var(--coral); color: var(--cream); transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }

.btn--purple {
    background: var(--mor);
    color: var(--cream);
    border-width: var(--bw-l);
}
.btn--purple:hover { background: var(--ink); color: var(--cream); }

.btn--ghost { background: var(--cream); }

.btn--lg { padding: 0.6em 1.5em; font-size: 19px; }
.btn--block { width: 100%; }
.btn--tall { height: 58px; border-radius: 18px; font-size: 20px; }

.btn:active { transform: translate(3px, 3px); box-shadow: none; }

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs) var(--space-s);
    align-items: center;
    margin-top: var(--space-m);
}

/* --- 5. Üst bilgi --------------------------------------------------------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--bg-2);
    border-bottom: var(--bw-l) solid var(--ink);
}
.site-header__inner {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 72px;
    padding-block: 10px;
}
.site-header__right { display: flex; align-items: center; gap: 10px; margin-left: auto; flex: none; }

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 27px;
    letter-spacing: -0.01em;
    color: var(--ink);
    text-decoration: none;
    flex: none;
}
.brand:hover { color: var(--ink); }
.brand__mark {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: var(--bw) solid var(--ink);
    background: var(--ana);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    box-shadow: var(--shadow-1);
    flex: none;
}

.site-nav { margin-left: 12px; }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 6px; flex-wrap: nowrap; }
.site-nav a:not(.btn) {
    display: inline-block;
    padding: 5px 13px;
    border: 2px solid transparent;
    border-radius: var(--r-pill);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    color: var(--ink);
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.site-nav a:not(.btn):hover { background: var(--white); border-color: var(--ink); }
.site-nav a:not(.btn)[aria-current="page"] { background: var(--cream); border-color: var(--ink); }

/* Açılır alt menü (Ajanda): masaüstünde hover/odakla açılır, mobilde iç içe liste */
.site-nav__dropdown { position: relative; }
.site-nav__caret { font-size: 12px; margin-left: 2px; }
.site-nav ul.site-nav__sub {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    margin: 0;
    padding: 8px;
    list-style: none;
    display: none;
    flex-direction: column;
    gap: 4px;
    background: var(--cream);
    border: var(--bw) solid var(--ink);
    border-radius: var(--r-m);
    box-shadow: 4px 4px 0 var(--ink);
    z-index: 60;
}
.site-nav__sub a:not(.btn) { display: block; border-color: transparent; }
.site-nav .site-nav__dropdown:hover ul.site-nav__sub,
.site-nav .site-nav__dropdown:focus-within ul.site-nav__sub { display: flex; }
/* Hover'dan alt menüye geçerken boşlukta kapanmasın */
.site-nav__dropdown::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 10px; }

/* Masaüstünde hesap bağlantıları ve çağrı düğmesi sağ grupta; listede tekrar etmez */
.site-nav__hesap, .site-nav__cta { display: none; }

/* Mobil menü: CSS-only, gizli onay kutusu */
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.nav-toggle__label {
    display: none;
    width: 42px; height: 42px;
    border-radius: 50%;
    border: var(--bw) solid var(--ink);
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    flex: none;
}
.nav-toggle__label span { width: 15px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform var(--dur) var(--ease); }
.nav-toggle:focus-visible + .nav-toggle__label { outline: 3px solid var(--mor); outline-offset: 2px; }
/* Açıkken iki çubuk çarpı olur */
.nav-toggle:checked + .nav-toggle__label span:first-child { transform: translateY(3px) rotate(45deg); }
.nav-toggle:checked + .nav-toggle__label span:last-child { transform: translateY(-3px) rotate(-45deg); }

@media (max-width: 1139px) {
    .site-header__inner { flex-wrap: wrap; min-height: 62px; gap: 10px; }
    .brand { font-size: 22px; margin-right: auto; }
    .brand__mark { width: 32px; height: 32px; font-size: 16px; }
    .nav-toggle__label { display: inline-flex; order: 3; }
    .site-header__right { order: 2; margin-left: 0; }
    .site-header__right .btn { display: none; }
    .site-nav {
        display: none;
        order: 4;
        flex-basis: 100%;
        margin: 0;
        padding: 6px 0 10px;
        border-top: 2px solid var(--line-soft);
        margin-top: 4px;
    }
    .nav-toggle:checked ~ .site-nav { display: block; }
    .site-nav ul { flex-direction: column; gap: 6px; }
    .site-nav a:not(.btn) { display: block; background: var(--cream); border-color: var(--ink); }
    .site-nav a:not(.btn)[aria-current="page"] { background: var(--ana); }
    .site-nav__hesap, .site-nav__cta { display: block; }
    .site-nav .btn { width: 100%; margin-top: 4px; }
    .site-nav ul.site-nav__sub {
        display: flex;
        position: static;
        margin: 6px 0 2px 18px;
        padding: 0;
        border: 0;
        box-shadow: none;
        background: transparent;
        min-width: 0;
    }
    .site-nav__sub a:not(.btn) { border-color: var(--line-soft); background: var(--soft-2); }
    .site-nav__dropdown::after { display: none; }
    .site-nav__caret { display: none; }
}

/* --- 6. Kahraman ---------------------------------------------------------- */

.hero {
    position: relative;
    overflow: hidden;
    background: var(--bg-2);
    border-bottom: var(--bw-l) solid var(--ink);
    padding-block: clamp(1.8rem, 4vw, 3.4rem) clamp(1.8rem, 4vw, 3rem);
}
.hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
    gap: clamp(1.5rem, 3vw, 2.75rem);
    align-items: center;
}
.hero h1 {
    margin-top: 18px;
    max-width: 14ch;
}
.hero .lede { margin-top: 18px; font-size: clamp(1.05rem, 1rem + 0.5vw, 1.2rem); }

.hero::after {
    left: 6px;
    top: 4px;
    width: clamp(160px, 15vw, 210px);
    height: 110px;
    opacity: .85;
}
.hero .container { position: relative; z-index: 1; }
@media (max-width: 959px) {
    .hero::after { left: auto; right: -40px; top: -20px; width: 220px; height: 115px; opacity: .6; }
}

.stats {
    margin-top: 28px;
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}
.stat { display: flex; align-items: center; gap: 10px; }
.stat__icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: var(--bw) solid var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex: none;
}
.stat__title { font-family: var(--font-display); font-weight: 700; font-size: 17px; line-height: 1.2; }
.stat__sub { font-size: 13.5px; font-weight: 700; color: var(--muted); }

@media (max-width: 959px) {
    .hero__grid { grid-template-columns: 1fr; }
    .hero h1 { max-width: none; }
}

/* --- 7. Kartlar ----------------------------------------------------------- */

.card {
    background: var(--cream);
    border: var(--bw) solid var(--ink);
    border-radius: var(--r-l);
    padding: 18px;
}
.card h3 { margin-bottom: 6px; font-size: 21px; }
.card p { font-size: 14.5px; line-height: 1.45; font-weight: 600; color: var(--ink-2); max-width: none; }
.card p:last-child { margin-bottom: 0; }
.card--shadow { border-width: var(--bw-l); border-radius: var(--r-xl); box-shadow: var(--shadow-3); }
.card--link {
    display: block;
    color: var(--ink);
    text-decoration: none;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card--link:hover { color: var(--ink); transform: translate(-2px, -2px); box-shadow: var(--shadow-2); }
.card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.card__arrow { font-family: var(--font-display); font-weight: 700; font-size: 20px; }
.card__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px; height: 44px;
    padding: 0 12px;
    border-radius: 50%;
    border: var(--bw) solid var(--ink);
    background: var(--cream);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
}
.card__index .glyph { font-size: 20px; }

.tone-sari  { background: var(--p-sari); }
.tone-mor   { background: var(--p-mor); }
.tone-nane  { background: var(--p-nane); }
.tone-somon { background: var(--p-somon); }
.tone-gok   { background: var(--p-gok); }
.tone-krem  { background: var(--p-krem); }

.grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
}
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); gap: clamp(1.5rem, 3vw, 2.75rem); align-items: start; }
.grid--tools { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
@media (max-width: 559px) { .grid--tools { grid-template-columns: 1fr; } }

/* Panel: başlıklı kart (form, künye) */
.panel {
    background: var(--cream);
    border: var(--bw-l) solid var(--ink);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-3);
    overflow: hidden;
}
.panel--flat { box-shadow: none; }
.panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px 12px;
    padding: 12px 20px;
    background: var(--ana);
    border-bottom: var(--bw-l) solid var(--ink);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
}
.panel__head--mor { background: var(--p-mor); }
.panel__head--nane { background: var(--p-nane); }
.panel__head--sari { background: var(--p-sari); }
.panel__head .pill { white-space: normal; text-align: left; line-height: 1.3; }
.panel__body { padding: 20px; }
@media (max-width: 539px) {
    .panel__head { font-size: 18px; padding: 10px 16px; }
    .panel__body { padding: 16px; }
}
.panel__body > :last-child { margin-bottom: 0; }
.panel__body p { max-width: none; }

/* Not kutusu */
.note {
    background: var(--cream);
    border: var(--bw) solid var(--ink);
    border-radius: var(--r-m);
    padding: 14px 18px;
    margin-bottom: var(--space-s);
    font-size: 15px;
    font-weight: 600;
    color: var(--ink-2);
}
.note p, .note li { max-width: none; }
.note p:last-child, .note ul:last-child { margin-bottom: 0; }
.note strong { color: var(--ink); }
.note--warn { background: var(--p-somon); }
.note--info { background: var(--p-gok); }

/* Kesikli konum çipi (form içi durum) */
.pin {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--soft);
    border: 2px dashed var(--line-soft);
    border-radius: var(--r-m);
    padding: 11px 14px;
    font-weight: 700;
    font-size: 14px;
    color: var(--ink-2);
    font-variant-numeric: tabular-nums;
}
.pin .glyph { font-size: 17px; }

/* Onay listesi */
.checks { list-style: none; padding: 0; margin: var(--space-m) 0 0; display: flex; flex-direction: column; gap: 11px; }
.checks li { display: flex; align-items: center; gap: 11px; font-size: 16.5px; font-weight: 700; max-width: none; margin: 0; }
.checks__mark {
    width: 26px; height: 26px;
    border-radius: 50%;
    border: var(--bw) solid var(--ink);
    background: var(--nane);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex: none;
}

/* Künye listesi */
.spec {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 8px 20px;
    margin: 0;
}
.spec dt {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    align-self: center;
}
.spec dd { margin: 0; font-weight: 700; font-variant-numeric: tabular-nums; }
@media (max-width: 479px) {
    .spec { grid-template-columns: 1fr; gap: 2px; }
    .spec dd { margin-bottom: 8px; }
}

/* --- 8. Bugünün göğü ------------------------------------------------------ */

.sky-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}
.sky-card {
    border: var(--bw) solid var(--ink);
    border-radius: var(--r-l);
    padding: 16px;
    transition: transform var(--dur) var(--ease);
}
.sky-card:hover { transform: translateY(-3px); }
.sky-card__top { display: flex; align-items: center; justify-content: space-between; min-height: 46px; }
.sky-card__glyph {
    width: 46px; height: 46px;
    border-radius: 50%;
    border: var(--bw) solid var(--ink);
    background: var(--cream);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.sky-card__name { margin-top: 10px; font-family: var(--font-display); font-weight: 700; font-size: 20px; line-height: 1.2; }
.sky-card__sign { margin-top: 2px; font-size: 15px; font-weight: 700; color: var(--ink-2); }
.sky-card__deg {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--cream);
    border: 2px solid var(--ink);
    border-radius: var(--r-pill);
    padding: 3px 11px;
    font-weight: 800;
    font-size: 14px;
    font-variant-numeric: tabular-nums;
}
.sky-card__deg span:last-child { color: var(--muted); }

@media (max-width: 1099px) { .sky-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 899px) { .sky-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 639px) {
    .sky-grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 4px 4px 8px;
        margin-inline: -4px;
        -webkit-overflow-scrolling: touch;
    }
    .sky-card { flex: 0 0 152px; scroll-snap-align: start; padding: 14px; }
    .sky-card__glyph { width: 40px; height: 40px; font-size: 20px; }
    .sky-card__name { font-size: 18px; }
    .sky-card__deg { justify-content: center; }
    .sky-card__deg span:last-child { display: none; }
}

/* --- 9. Çark -------------------------------------------------------------- */

.wheel-card {
    background: var(--cream);
    border: var(--bw-l) solid var(--ink);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-3);
    padding: 22px;
}
.wheel-card__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.wheel-card__title { font-family: var(--font-display); font-weight: 700; font-size: 19px; }
.wheel-card__meta { font-weight: 700; font-size: 13px; color: var(--muted); font-variant-numeric: tabular-nums; }
.wheel-card__foot { margin-top: 12px; font-size: 13.5px; font-weight: 700; color: var(--muted); text-align: center; }

.wheel { display: block; width: 100%; height: auto; max-width: 520px; margin-inline: auto; overflow: visible; }
.wheel__ring--outer { fill: var(--soft-2); stroke: var(--ink); stroke-width: 3; }
.wheel__ring--sign  { fill: var(--cream); stroke: var(--ink); stroke-width: 2.5; }
.wheel__ring--house { fill: var(--white); stroke: var(--line-soft); stroke-width: 2; stroke-dasharray: 5 6; }
.wheel__cusps line { stroke: var(--line-soft); stroke-width: 1.6; }
.wheel__signs line { stroke: var(--ink); stroke-width: 2; }
.wheel__aspect { stroke-width: 2.6; stroke-linecap: round; }
.wheel__aspect--sextile    { stroke: var(--aspect-sextile); }
.wheel__aspect--square     { stroke: var(--aspect-square); }
.wheel__aspect--trine      { stroke: var(--aspect-trine); }
.wheel__aspect--opposition { stroke: var(--aspect-opposition); }
.wheel__glyph {
    font-family: var(--font-glyph);
    font-size: 18px;
    fill: var(--muted);
    text-anchor: middle;
    dominant-baseline: central;
}
.wheel__number {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    fill: var(--line-soft);
    text-anchor: middle;
    dominant-baseline: central;
}
.wheel__tick {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 11px;
    fill: var(--ink);
    text-anchor: middle;
    dominant-baseline: central;
}
.wheel__hub { fill: var(--ana); stroke: var(--ink); stroke-width: 2.5; }
.wheel__planet-shadow { fill: var(--ink); }
.wheel__planet-disc { stroke: var(--ink); stroke-width: 2.5; fill: var(--p-krem); }
.wheel__planet--sari  .wheel__planet-disc { fill: var(--p-sari); }
.wheel__planet--mor   .wheel__planet-disc { fill: var(--p-mor); }
.wheel__planet--nane  .wheel__planet-disc { fill: var(--p-nane); }
.wheel__planet--somon .wheel__planet-disc { fill: var(--p-somon); }
.wheel__planet--gok   .wheel__planet-disc { fill: var(--p-gok); }
.wheel__planet-glyph {
    font-family: var(--font-glyph);
    font-size: 18px;
    fill: var(--ink);
    text-anchor: middle;
    dominant-baseline: central;
}
.wheel__planet-retro {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 11px;
    fill: var(--coral);
    text-anchor: middle;
    dominant-baseline: central;
}

.wheel-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
}
.wheel-legend span { display: inline-flex; align-items: center; gap: 6px; }
.wheel-legend i { display: inline-block; width: 18px; height: 3px; border-radius: 2px; }

/* --- 10. Formlar ---------------------------------------------------------- */

.form { max-width: none; }
.field { margin-bottom: 14px; }
.field:last-child { margin-bottom: 0; }

.field > label, .field__legend {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 5px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15.5px;
    line-height: 1.3;
}
.field__icon { font-size: 15px; }
.field__optional { font-weight: 600; color: var(--muted); font-size: 0.9em; }

.field__hint {
    display: block;
    max-width: none;
    margin-top: 6px;
    font-size: 13.5px;
    line-height: 1.45;
    font-weight: 600;
    color: var(--muted);
}

input[type="text"], input[type="email"], input[type="password"], input[type="tel"], input[type="url"],
input[type="date"], input[type="time"], input[type="search"], input[type="number"], select, textarea {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    background: var(--white);
    border: var(--bw) solid var(--ink);
    border-radius: var(--r-m);
    color: var(--ink);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    font-variant-numeric: tabular-nums;
    outline: none;
    transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
input::placeholder { color: rgba(58, 49, 96, 0.35); font-weight: 600; }
input:focus, select:focus, textarea:focus { border-color: var(--mor); background: var(--focus-bg); }
input:focus-visible, select:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--p-mor); }
input[aria-invalid="true"], .input-validation-error { border-color: var(--coral); background: #FFF6F4; }
select { appearance: none; -webkit-appearance: none; padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%233A3160' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center; }
select:disabled { opacity: 0.55; background-color: var(--soft); }
input[type="checkbox"], input[type="radio"] {
    width: 22px; height: 22px;
    margin: 0;
    accent-color: var(--mor);
    flex: none;
}

.field-row { display: grid; gap: 14px; }
@media (min-width: 540px) { .field-row--2 { grid-template-columns: 1fr 1fr; } }

.field__error {
    display: none;
    margin-top: 6px;
    font-size: 13.5px;
    font-weight: 700;
    color: #C0392B;
}
.field__error.is-visible, .field__error.field-validation-error { display: block; }

.check-label {
    display: flex !important;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body) !important;
    font-weight: 700 !important;
    cursor: pointer;
}

.disclosure {
    background: var(--cream);
    border: var(--bw) solid var(--ink);
    border-radius: var(--r-m);
    margin-bottom: 12px;
}
.disclosure > summary {
    list-style: none;
    cursor: pointer;
    padding: 12px 16px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.disclosure > summary::-webkit-details-marker { display: none; }
.disclosure > summary::before {
    content: "+";
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 2px solid var(--ink);
    background: var(--ana);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    line-height: 1;
    flex: none;
    transition: transform var(--dur) var(--ease);
}
.disclosure[open] > summary::before { transform: rotate(45deg); }
.disclosure__body { padding: 0 16px 16px; }
.disclosure__body > :last-child { margin-bottom: 0; }

.form-status {
    background: var(--p-nane);
    border: var(--bw) solid var(--ink);
    border-radius: var(--r-m);
    padding: 12px 16px;
    margin-bottom: 14px;
    font-weight: 700;
    font-size: 15px;
}
.form-status--error { background: var(--p-somon); }
.form-status--error.validation-summary-valid { display: none; }
.form-status--error ul { margin: 0; padding-inline-start: 1.2em; }
.form-status--error ul:only-child li:only-child { list-style: none; margin-inline-start: -1.2em; }

.signup { display: grid; gap: 10px; }
@media (min-width: 540px) { .signup { grid-template-columns: 1fr auto; align-items: start; } .signup__consent { grid-column: 1 / -1; } }
.signup__consent { margin: 0; font-size: 13px; font-weight: 600; color: var(--muted); }

/* Şehir önerileri */
.combo { position: relative; }
.combo__list {
    position: absolute;
    z-index: 30;
    left: 0; right: 0;
    top: calc(100% + 6px);
    margin: 0;
    padding: 6px;
    list-style: none;
    background: var(--cream);
    border: var(--bw) solid var(--ink);
    border-radius: var(--r-m);
    box-shadow: 4px 4px 0 var(--ink);
    max-height: 280px;
    overflow-y: auto;
}
.combo__option {
    padding: 9px 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    max-width: none;
    margin: 0;
}
.combo__option.is-active, .combo__option:hover { background: var(--soft); }

.choice-list {
    border: var(--bw) solid var(--ink);
    border-radius: var(--r-m);
    background: var(--cream);
    padding: 12px 14px;
    margin: 0 0 14px;
}
.choice { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; cursor: pointer; }
.choice + .choice { border-top: 2px solid var(--soft); }
.choice input { margin-top: 3px; }
.choice__meta { display: block; font-size: 13px; font-weight: 700; color: var(--muted); }

/* --- 11. Tablolar ve sonuç ----------------------------------------------- */

.table-scroll {
    overflow-x: auto;
    border: var(--bw) solid var(--ink);
    border-radius: var(--r-m);
    background: var(--cream);
}
.data-table { width: 100%; min-width: 640px; border-collapse: collapse; font-size: 15px; }
.data-table th, .data-table td { padding: 10px 14px; text-align: left; border-bottom: 2px solid var(--soft); white-space: nowrap; }
.data-table thead th {
    background: var(--soft);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}
.data-table tbody th { font-weight: 800; }
.data-table tbody tr:last-child th, .data-table tbody tr:last-child td { border-bottom: 0; }
.data-table .deg { font-weight: 800; font-variant-numeric: tabular-nums; }
.data-table .glyph { margin-right: 6px; font-size: 1.1em; }

.flag {
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border: 2px solid var(--ink);
    border-radius: var(--r-pill);
    background: var(--soft);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    line-height: 1.5;
    vertical-align: middle;
}
.flag--retro { background: var(--coral); color: var(--cream); }

.lede-offset {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 16px;
}
.lede-offset strong { font-weight: 800; background: var(--ana); border: 2px solid var(--ink); border-radius: 10px; padding: 0 8px; }

.result-grid {
    display: grid;
    grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 2.75rem);
    align-items: start;
}
@media (max-width: 959px) { .result-grid { grid-template-columns: 1fr; } }

.result-grid--aside { grid-template-columns: minmax(0, 1fr) minmax(0, 360px); }
@media (max-width: 959px) { .result-grid--aside { grid-template-columns: 1fr; } }
.grid--summary { grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); gap: 14px; }

.result-section { margin-top: var(--space-xl); }
.result-section > h2 { font-size: var(--step-2); }
.result-section > .field__hint { margin-top: 10px; }

/* Yorum blokları — altındaki kanıt satırı kaldırılmaz */
.readings { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); margin-bottom: var(--space-m); }
.reading {
    background: var(--cream);
    border: var(--bw) solid var(--ink);
    border-radius: var(--r-l);
    padding: 18px 20px;
}
.reading__head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.reading__icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: var(--bw) solid var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex: none;
}
.reading h4 { margin: 0; font-size: 19px; }
.reading p { font-size: 15px; line-height: 1.55; font-weight: 500; color: var(--ink-2); max-width: none; margin-bottom: 12px; }
.evidence {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    background: var(--soft);
    border: 2px solid var(--line-soft);
    border-radius: var(--r-pill);
    font-weight: 800;
    font-size: 13.5px;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
}
.evidence .glyph { font-size: 15px; }

/* --- 12. Sayfa başlığı ve metin sayfaları --------------------------------- */

.page-head {
    position: relative;
    overflow: hidden;
    background: var(--bg-2);
    border-bottom: var(--bw-l) solid var(--ink);
    padding-block: clamp(1.8rem, 3.5vw, 2.8rem);
}
/* Gökyüzü dekoru: takımyıldız, hilal, halkalı gezegen ve yıldızlar. Tasarımın çizgi diliyle
   (2–2.5px mürekkep kontur, pastel dolgu). İçeriğin ARKASINDA durur; renkler palet sabitleri. */
.page-head::after, .hero::after {
    content: "";
    position: absolute;
    z-index: 0;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 420 220%22%3E%3Cpath d=%22M40 210 A 300 300 0 0 1 400 30%22 fill=%22none%22 stroke=%22%239A8CD6%22 stroke-width=%222%22 stroke-dasharray=%226 8%22 opacity=%22.7%22/%3E%3Cpolyline points=%2228,168 96,118 158,140 222,74 286,100 356,44%22 fill=%22none%22 stroke=%22%233A3160%22 stroke-width=%222%22 stroke-linejoin=%22round%22 stroke-linecap=%22round%22/%3E%3Ccircle cx=%2228%22 cy=%22168%22 r=%225%22 fill=%22%23FFFDF6%22 stroke=%22%233A3160%22 stroke-width=%222%22/%3E%3Ccircle cx=%2296%22 cy=%22118%22 r=%225%22 fill=%22%23FFFDF6%22 stroke=%22%233A3160%22 stroke-width=%222%22/%3E%3Ccircle cx=%22158%22 cy=%22140%22 r=%225%22 fill=%22%23FFFDF6%22 stroke=%22%233A3160%22 stroke-width=%222%22/%3E%3Ccircle cx=%22222%22 cy=%2274%22 r=%225%22 fill=%22%23FFFDF6%22 stroke=%22%233A3160%22 stroke-width=%222%22/%3E%3Ccircle cx=%22286%22 cy=%22100%22 r=%225%22 fill=%22%23FFFDF6%22 stroke=%22%233A3160%22 stroke-width=%222%22/%3E%3Ccircle cx=%22356%22 cy=%2244%22 r=%225%22 fill=%22%23FFFDF6%22 stroke=%22%233A3160%22 stroke-width=%222%22/%3E%3Cpath d=%22M70 42 A 30 30 0 1 0 70 100 A 22 22 0 1 1 70 42 Z%22 fill=%22%23FCE38F%22 stroke=%22%233A3160%22 stroke-width=%222.5%22 stroke-linejoin=%22round%22/%3E%3Cg transform=%22translate(330 168) rotate(-18)%22%3E%3Cellipse cx=%220%22 cy=%220%22 rx=%2234%22 ry=%229%22 fill=%22none%22 stroke=%22%233A3160%22 stroke-width=%222.5%22/%3E%3Ccircle cx=%220%22 cy=%220%22 r=%2216%22 fill=%22%23C3DBF5%22 stroke=%22%233A3160%22 stroke-width=%222.5%22/%3E%3Cpath d=%22M-34 0 A 34 9 0 0 0 34 0%22 fill=%22none%22 stroke=%22%233A3160%22 stroke-width=%222.5%22/%3E%3C/g%3E%3Cpath d=%22M392.0 108.0 L397.1 118.9 L408.0 124.0 L397.1 129.1 L392.0 140.0 L386.9 129.1 L376.0 124.0 L386.9 118.9 Z%22 fill=%22%23FCE38F%22 stroke=%22%233A3160%22 stroke-width=%222%22 stroke-linejoin=%22round%22/%3E%3Cpath d=%22M126.0 25.0 L129.5 32.5 L137.0 36.0 L129.5 39.5 L126.0 47.0 L122.5 39.5 L115.0 36.0 L122.5 32.5 Z%22 fill=%22%23F7C4BC%22 stroke=%22%233A3160%22 stroke-width=%222%22 stroke-linejoin=%22round%22/%3E%3Cpath d=%22M238.0 187.0 L240.9 193.1 L247.0 196.0 L240.9 198.9 L238.0 205.0 L235.1 198.9 L229.0 196.0 L235.1 193.1 Z%22 fill=%22%23DDD3F7%22 stroke=%22%233A3160%22 stroke-width=%222%22 stroke-linejoin=%22round%22/%3E%3Cpath d=%22M300.0 13.0 L302.2 17.8 L307.0 20.0 L302.2 22.2 L300.0 27.0 L297.8 22.2 L293.0 20.0 L297.8 17.8 Z%22 fill=%22%23FFFDF6%22 stroke=%22%233A3160%22 stroke-width=%222%22 stroke-linejoin=%22round%22/%3E%3C/svg%3E") no-repeat center / contain;
}
.page-head::after {
    right: clamp(8px, 3vw, 40px);
    top: 50%;
    width: clamp(240px, 30vw, 440px);
    height: 230px;
    transform: translateY(-50%);
    opacity: .95;
}
.page-head .container { position: relative; z-index: 1; }
@media (max-width: 899px) {
    .page-head::after { right: -50px; top: auto; bottom: -48px; width: 240px; height: 125px; transform: none; opacity: .4; }
}
.page-head h1 { font-size: var(--step-3); max-width: 30ch; }
.page-head p { font-size: var(--step-1); font-weight: 500; color: var(--ink-2); margin-bottom: 0; }

.page-body { padding-block: var(--space-l) var(--space-2xl); }

.toc {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-l);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.toc li { margin: 0; }
.toc a {
    display: inline-block;
    padding: 5px 14px;
    border: 2px solid var(--ink);
    border-radius: var(--r-pill);
    background: var(--cream);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14.5px;
    color: var(--ink);
    text-decoration: none;
}
.toc a:hover { background: var(--ana); }

.prose h2 {
    font-size: var(--step-2);
    margin-top: var(--space-l);
    padding-top: var(--space-s);
}
.prose h2:first-of-type, .prose .toc + h2 { margin-top: 0; padding-top: 0; }
.prose ol li, .prose ul li { font-weight: 500; }
.legal h2 { font-size: var(--step-1); margin-top: var(--space-l); }
/* Dar kapta ölçü sınırı gereksiz; paragraf kabı doldurur. */
.prose p, .legal p { max-width: none; }

/* --- 13. Alt bilgi -------------------------------------------------------- */

.site-footer {
    background: var(--ink);
    color: var(--bg);
    padding: 40px 0 34px;
}
.site-footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 32px;
}
@media (max-width: 899px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 539px) { .site-footer__grid { grid-template-columns: 1fr; } }

.site-footer .brand { color: var(--bg); font-size: 25px; }
.site-footer .brand__mark { border-color: var(--bg); box-shadow: none; color: var(--ink); width: 36px; height: 36px; font-size: 18px; }
.site-footer__about { margin-top: 12px; font-size: 14.5px; line-height: 1.6; font-weight: 500; color: rgba(239, 234, 252, 0.75); max-width: 40ch; }
.site-footer h2 { font-size: 16px; color: var(--ana); margin-bottom: 10px; letter-spacing: 0; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.site-footer li { margin: 0; }
.site-footer a:not(.brand) { color: rgba(239, 234, 252, 0.85); font-weight: 600; font-size: 15px; text-decoration: none; }
.site-footer a:not(.brand):hover { color: var(--ana); }

.disclaimer {
    margin-top: 30px;
    padding-top: 18px;
    border-top: 2px solid rgba(239, 234, 252, 0.2);
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(239, 234, 252, 0.6);
}
.disclaimer p { max-width: none; }
.disclaimer strong { color: rgba(239, 234, 252, 0.85); }
.disclaimer__bar { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 12px; }

/* --- 13b. Takvim sayfaları ------------------------------------------------- */

.cal-nav { display: flex; gap: 10px; flex-wrap: wrap; margin-top: var(--space-m); }

.field-row--calc { align-items: end; }
.field-row--calc .field { margin-bottom: 0; }
@media (min-width: 760px) { .field-row--calc { grid-template-columns: 1.1fr 0.9fr 1.8fr auto; } }
@media (min-width: 540px) and (max-width: 759px) { .field-row--calc { grid-template-columns: 1fr 1fr; } }

.event-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.event {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--cream);
    border: var(--bw) solid var(--ink);
    border-radius: var(--r-m);
    padding: 10px 14px;
    margin: 0;
    max-width: none;
}
.event__icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: var(--bw) solid var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex: none;
}
.event__body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.event__title { font-family: var(--font-display); font-weight: 700; font-size: 17px; line-height: 1.2; }
.event__meta { font-size: 13.5px; font-weight: 700; color: var(--muted); }
.event__time { font-weight: 800; font-size: 14px; white-space: nowrap; color: var(--ink-2); }
@media (max-width: 539px) {
    .event { flex-wrap: wrap; }
    .event__time { flex-basis: 100%; padding-left: 52px; white-space: normal; }
}
.event-list--compact .event { padding: 7px 12px; }
.event-list--compact .event__icon { width: 34px; height: 34px; font-size: 16px; }
.event-list--compact .event__title { font-size: 15.5px; }

.data-table tr.is-today th, .data-table tr.is-today td { background: var(--soft-2); }
.data-table--calendar td.cell-events { white-space: normal; min-width: 16rem; }
.cell-events { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.flag--sari { background: var(--p-sari); }
.flag--mor { background: var(--p-mor); }
.flag--gok { background: var(--p-gok); }

/* --- 13c. Rehber ------------------------------------------------------------ */

.post-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr)); }
.post { padding: 0; overflow: hidden; border-radius: var(--r-l); display: flex; flex-direction: column; }
.post__hero {
    height: 108px;
    border-bottom: var(--bw) solid var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    color: var(--ink);
}
.post__body { padding: 14px 18px 18px; }
.post__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    align-items: center;
    font-weight: 700;
    font-size: 13px;
    color: var(--muted);
}
.post__title { margin: 8px 0 6px; font-size: 21px; line-height: 1.25; font-weight: 600; text-wrap: pretty; }
.post p { margin: 0; }


.article h2 { font-size: var(--step-2); margin-top: var(--space-l); }
.article h3 { font-size: var(--step-1); margin-top: var(--space-m); }
.article p, .article li { font-size: 17px; line-height: 1.7; font-weight: 500; color: var(--ink-2); }
.article p { max-width: none; }
.article strong { color: var(--ink); }
.article blockquote {
    margin: var(--space-m) 0;
    padding: 12px 18px;
    background: var(--cream);
    border: var(--bw) solid var(--ink);
    border-radius: var(--r-m);
    font-weight: 600;
}
.article blockquote p { margin: 0; }
.article table { width: 100%; border-collapse: collapse; margin: var(--space-m) 0; background: var(--cream); border: var(--bw) solid var(--ink); border-radius: var(--r-m); overflow: hidden; }
.article th, .article td { padding: 8px 12px; text-align: left; border-bottom: 2px solid var(--soft); font-size: 15px; }
.article th { background: var(--soft); font-family: var(--font-display); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.article img { border: var(--bw) solid var(--ink); border-radius: var(--r-m); }
.article hr { margin: var(--space-l) 0; }

/* --- 13e. Rehber editörü ve görseller ------------------------------------------ */

.textarea { height: auto; padding: 12px 16px; line-height: 1.5; resize: vertical; }

.editor { border: var(--bw) solid var(--ink); border-radius: var(--r-m); background: var(--white); overflow: hidden; }
.editor.is-dragging { outline: 3px dashed var(--mor); outline-offset: -6px; }
.editor__toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    background: var(--soft);
    border-bottom: var(--bw) solid var(--ink);
}
.editor__btn {
    padding: 4px 11px;
    border: 2px solid var(--ink);
    border-radius: var(--r-pill);
    background: var(--cream);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    color: var(--ink);
    cursor: pointer;
    line-height: 1.5;
}
.editor__btn:hover { background: var(--white); }
.editor__btn[aria-pressed="true"] { background: var(--ana); }
.editor__btn--accent { background: var(--p-nane); }
.editor__sep { width: 2px; height: 22px; background: var(--line-soft); border-radius: 2px; margin: 0 2px; }
.editor__grow { flex: 1; }

.editor__panes { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.editor--no-preview .editor__panes { grid-template-columns: 1fr; }
.editor--no-preview .editor__preview { display: none; }
.editor__pane { position: relative; min-width: 0; }
.editor__pane + .editor__pane { border-left: var(--bw) solid var(--ink); }
.editor__textarea {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
    border-radius: 0;
    padding: 16px 18px 40px;
    resize: vertical;
    font-family: ui-monospace, Consolas, monospace;
    font-size: 14.5px;
    line-height: 1.65;
    font-weight: 500;
    background: var(--white);
}
.editor__textarea:focus { box-shadow: none; background: var(--focus-bg); }
.editor__status {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    background: var(--soft);
    pointer-events: none;
}
.editor__status:empty { display: none; }
.editor__status.is-error { color: #C0392B; background: var(--p-somon); }
[data-cover] .editor__status { position: static; margin-top: 8px; border-radius: 10px; }
.editor__preview { padding: 16px 22px; overflow: auto; max-height: 70vh; background: var(--cream); }
.editor__preview > :first-child { margin-top: 0; }
.editor__preview img { max-width: 100%; }
@media (max-width: 959px) {
    .editor__panes { grid-template-columns: 1fr; }
    .editor__pane + .editor__pane { border-left: 0; border-top: var(--bw) solid var(--ink); }
    .editor__textarea, .editor__panes { min-height: 360px; }
}

.cover { border: var(--bw) solid var(--ink); border-radius: var(--r-m); overflow: hidden; background: var(--soft-2); }
.cover img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

.media-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 15rem), 1fr)); gap: 16px; }
.media-card { background: var(--cream); border: var(--bw) solid var(--ink); border-radius: var(--r-l); overflow: hidden; display: flex; flex-direction: column; }
.media-card__img { display: block; background: var(--soft-2); border-bottom: var(--bw) solid var(--ink); }
.media-card__img img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.media-card__body { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 8px; }
.media-card__name { font-weight: 700; font-size: 14px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.media-card__url { height: 36px; font-size: 12.5px; font-family: ui-monospace, Consolas, monospace; font-weight: 600; padding: 0 10px; }
.media-card__alt { display: flex; gap: 6px; }
.media-card__alt input { height: 36px; font-size: 13px; padding: 0 10px; }
.media-card__alt button { cursor: pointer; }

/* Rehber kartlarında ve yazı başında kapak görseli */
.post__hero img { display: block; width: 100%; height: 100%; object-fit: cover; }
.post__hero--img { height: 160px; }
.article-cover { border: var(--bw-l) solid var(--ink); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-3); margin-bottom: var(--space-l); background: var(--soft-2); }
.article-cover img { display: block; width: 100%; max-height: 440px; object-fit: cover; }

/* --- 13f. Danışmanlık ---------------------------------------------------------- */

.cta { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: clamp(1rem, 3vw, 2.5rem); align-items: center; }
.cta .section-label { background: var(--cream); }
.cta .lede { color: var(--ink); max-width: 62ch; }
.cta__actions { display: flex; flex-direction: column; gap: 12px; min-width: 220px; }
@media (max-width: 759px) { .cta { grid-template-columns: 1fr; } .cta__actions { flex-direction: row; flex-wrap: wrap; } }

.price-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); align-items: stretch; }
.price {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--cream);
    border: var(--bw-l) solid var(--ink);
    border-radius: var(--r-xl);
    padding: 22px 22px 20px;
}
.price--featured { background: var(--ana); box-shadow: var(--shadow-3); }
.price__ribbon {
    position: absolute;
    top: -14px; left: 20px;
    padding: 2px 12px;
    background: var(--coral);
    color: var(--cream);
    border: 2px solid var(--ink);
    border-radius: var(--r-pill);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
}
.price__name { font-size: 24px; margin: 4px 0 6px; }
.price__summary { font-size: 15px; font-weight: 600; color: var(--ink-2); margin-bottom: 14px; }
.price__amount {
    align-self: flex-start;
    padding: 6px 14px;
    background: var(--cream);
    border: var(--bw) solid var(--ink);
    border-radius: 18px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.1;
}
.price--featured .price__amount { background: var(--cream); }
.price__delivery { margin-top: 10px; font-weight: 700; font-size: 14px; color: var(--muted); }
.price__features { margin: 16px 0 20px; flex: 1; }
.price__features li { font-size: 15px; }
.price__features .checks__mark { width: 22px; height: 22px; font-size: 11px; }

/* --- 14. Yazdırma --------------------------------------------------------- */

@media print {
    .site-header, .site-footer, .btn, .skip-link { display: none !important; }
    body { background: #fff; }
    .panel, .card, .wheel-card, .table-scroll, .reading { box-shadow: none; }
}

/* --- 13d. Hesap ------------------------------------------------------------ */
.site-header__right .btn--ghost { box-shadow: none; }
.event form { margin: 0; }

/* --- 15. Duyuru şeridi ve tablo gövdeli sayfalar --------------------------- */
.announce {
    background: var(--p-sari);
    border-bottom: var(--bw) solid var(--ink);
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14.5px;
    text-align: center;
}
.announce .container { display: flex; justify-content: center; align-items: center; gap: 8px; padding-block: 8px; }
.announce a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.announce a:hover { background: var(--p-mor); }
/* Markdown alıntısı (>) tablo gövdeli sayfalarda .note görünümünde çizilir. */
.prose blockquote, .legal blockquote {
    margin: var(--space-m) 0;
    padding: 14px 18px;
    background: var(--cream);
    border: var(--bw) solid var(--ink);
    border-radius: var(--r-m);
    font-size: 15px;
    font-weight: 600;
    color: var(--ink-2);
}
.prose blockquote p, .legal blockquote p { margin: 0; max-width: none; }
.prose blockquote strong, .legal blockquote strong { color: var(--ink); }
/* --- 16. Hakkımızda ------------------------------------------------------- */

.about-story {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 20rem);
    gap: clamp(1.5rem, 3vw, 2.75rem);
    align-items: start;
}
.about-story__text h2 { margin-top: 0; padding-top: 0; }
.about-story__aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    background: var(--cream);
    border: var(--bw-l) solid var(--ink);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-2);
    padding: 20px;
    position: sticky;
    top: 16px;
}
.about-stats { display: flex; flex-direction: column; gap: 14px; margin: 0; }
@media (max-width: 899px) {
    .about-story { grid-template-columns: 1fr; }
    .about-story__aside { position: static; }
    .about-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 479px) { .about-stats { grid-template-columns: 1fr; } }

.team-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}
/* Üç kart yan yana; dar ekranda alt alta (2+1 görünümü olmaz). */
@media (max-width: 899px) { .team-grid { grid-template-columns: 1fr; max-width: 34rem; } }
.astrolog {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: var(--cream);
    border: var(--bw-l) solid var(--ink);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-1);
    padding: 20px;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.astrolog:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-3); }
.astrolog__head { display: flex; align-items: center; gap: 14px; }
.astrolog__avatar {
    width: 60px; height: 60px;
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: var(--bw) solid var(--ink);
    box-shadow: var(--shadow-1);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 21px;
    letter-spacing: 0.02em;
    color: var(--ink);
}
.astrolog__name { margin: 0; font-size: 21px; line-height: 1.15; }
.astrolog__role { margin: 3px 0 0; font-size: 13.5px; font-weight: 700; color: var(--muted); }
.astrolog__bio { margin: 0; font-size: 14.5px; line-height: 1.5; font-weight: 600; color: var(--ink-2); max-width: none; }
.astrolog__tags { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.astrolog__tags li { margin: 0; }
.astrolog__foot { margin-top: auto; padding-top: 4px; }
