/* ═══════════════════════════════════════════════════════════════
   EKINTERA — Bölüm ve Bileşen Stilleri
   Sıra, index.html içindeki bölüm sırasıyla birebir aynıdır.
   ═══════════════════════════════════════════════════════════════ */

/* ═══ 1. Sabit Navigasyon ═══════════════════════════════════ */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: var(--z-nav);
    height: var(--nav-h);
    display: flex;
    align-items: center;
    background: rgba(245, 241, 232, .82);
    border-bottom: 1px solid transparent;
    transition: background-color var(--dur) var(--ease),
                border-color var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease);
}
/* Hafif cam etkisi yalnızca burada — destekleyen tarayıcıda */
@supports (backdrop-filter: blur(12px)) {
    .site-header { backdrop-filter: blur(14px) saturate(1.4); }
}
.site-header.is-scrolled {
    background: rgba(245, 241, 232, .95);
    border-bottom-color: var(--border);
    box-shadow: var(--sh-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-6);
    width: 100%;
}

/* Yazı logosu */
.brand {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-3);
    flex-shrink: 0;
    font-weight: 800;
    font-size: 1.16rem;
    letter-spacing: -.01em;
    color: var(--brand-green-900);
}
.brand-mark {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: var(--r-sm);
    background: var(--brand-green-900);
    color: var(--brand-green-300);
}
.brand-mark svg { width: 19px; height: 19px; }
.brand-name { line-height: 1; }
.brand-name span { color: var(--accent); }

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(.2rem, -.4rem + 1.1vw, 1rem);
}
.nav-link {
    display: inline-block;
    padding: .5rem .6rem;
    border-radius: var(--r-sm);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--text-body);
    white-space: nowrap;
    transition: color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.nav-link:hover { color: var(--brand-green-900); background: rgba(23, 63, 53, .06); }
.nav-link.is-active { color: var(--brand-green-900); font-weight: 700; }

.nav-actions { display: flex; align-items: center; gap: var(--sp-3); }
.nav-cta { padding: .62rem 1.15rem; min-height: 42px; }

/* Hamburger — 44px dokunmatik hedef */
.nav-toggle {
    display: none;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: var(--r-sm);
    cursor: pointer;
    color: var(--brand-green-900);
}
.nav-toggle:hover { background: rgba(23, 63, 53, .07); }
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Mobil çekmece
   Kırılım 1100px'dir, 960 değil: yedi Türkçe menü bağlantısı +
   logo + CTA butonu yatayda yaklaşık 970px yer kaplıyor. Daha dar
   ekranlarda menü sıkışıp taşmaya yol açıyordu. */
@media (max-width: 1100px) {
    .nav-toggle { display: grid; }
    .nav-cta { display: none; }

    .nav-links {
        position: fixed;
        inset: var(--nav-h) 0 auto 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: var(--sp-4) var(--gutter) var(--sp-8);
        background: var(--surface);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--sh-lg);
        max-height: calc(100dvh - var(--nav-h));
        overflow-y: auto;
        /* Kapalıyken tamamen erişim dışı: görünmez + odaklanılamaz */
        visibility: hidden;
        opacity: 0;
        transform: translateY(-8px);
        transition: opacity var(--dur) var(--ease),
                    transform var(--dur) var(--ease),
                    visibility 0s linear var(--dur);
    }
    .nav-links.is-open {
        visibility: visible;
        opacity: 1;
        transform: none;
        transition-delay: 0s;
    }
    .nav-link {
        padding: .95rem .5rem;
        font-size: 1.02rem;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
    }
    .nav-links .nav-cta-mobile { display: block; margin-top: var(--sp-5); }
    /* Çekmece açıkken arka plan kaymasın */
    body.menu-open { overflow: hidden; }
}
@media (min-width: 1101px) {
    .nav-links .nav-cta-mobile { display: none; }
}

/* ═══ 2. Hero ═══════════════════════════════════════════════ */
.hero {
    position: relative;
    padding-top: calc(var(--nav-h) + clamp(2.5rem, 1.5rem + 4vw, 5rem));
    padding-bottom: clamp(3rem, 2rem + 4vw, 5.5rem);
    overflow: hidden;
    background:
        radial-gradient(120% 90% at 88% 8%, var(--green-50) 0%, transparent 58%),
        var(--surface);
}
/* Çok hafif ölçüm ızgarası — metnin okunmasını bozmayacak kadar silik */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 76px 76px;
    opacity: .32;
    mask-image: radial-gradient(80% 70% at 60% 30%, #000 0%, transparent 78%);
    pointer-events: none;
}
.hero > * { position: relative; }

.hero-grid {
    display: grid;
    gap: clamp(2.5rem, 1.5rem + 4vw, 4rem);
    align-items: center;
}
@media (min-width: 1000px) {
    .hero-grid { grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); }
}

.hero h1 {
    font-size: var(--fs-display);
    margin-bottom: var(--sp-5);
}
.hero h1 .accent { color: var(--accent); }

.hero-lead {
    max-width: 52ch;
    font-size: var(--fs-lead);
    line-height: var(--lh-relaxed);
    color: var(--text-muted);
    margin-bottom: var(--sp-8);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    margin-bottom: var(--sp-6);
    padding: .42rem .95rem .42rem .55rem;
    border-radius: var(--r-pill);
    background: var(--surface-raised);
    border: 1px solid var(--border);
    box-shadow: var(--sh-xs);
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--text-body);
}
.hero-tag .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--brand-earth);
    margin-left: var(--sp-2);
}

/* — Hero görsel kompozisyonu — */
.hero-visual { position: relative; }

/* Tarla fotoğrafı taşıyıcısı.
   aspect-ratio kutunun yüksekliğini görsel yüklenmeden BELİRLER;
   bu sayede geç yüklenen fotoğraf sayfayı zıplatmaz (CLS = 0). */
.field-scene {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--sh-lg);
    background: var(--green-100);
    aspect-ratio: 4 / 3.6;
}
.field-scene img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 62%;
}
/* Fotoğrafın alt yarısını hafifçe koyultan katman; üzerine binen
   ölçüm kartlarının kontrastını garantiler. */
.field-scene::after {
    content: "";
    position: absolute;
    inset: 40% 0 0 0;
    background: linear-gradient(180deg, transparent 0%, rgba(23, 33, 29, .38) 100%);
    pointer-events: none;
}

/* Fotoğraf üzerindeki sensör noktası işareti */
.probe-marker {
    position: absolute;
    left: 21%;
    top: 46%;
    width: 18px;
    height: 18px;
    margin: -9px 0 0 -9px;
    border-radius: 50%;
    background: var(--brand-green-900);
    border: 3px solid var(--brand-white);
    box-shadow: var(--sh-md);
    z-index: 2;
}
/* Veri yayılım halkası — yalnızca transform + opacity animasyonu */
.probe-marker .pulse {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid var(--brand-white);
    opacity: 0;
    animation: probePulse 3.4s var(--ease-out) infinite;
}
.probe-marker .pulse.p2 { animation-delay: 1.15s; }
.probe-marker .pulse.p3 { animation-delay: 2.3s; }
@keyframes probePulse {
    0%   { transform: scale(.7); opacity: .8; }
    70%  { opacity: .14; }
    100% { transform: scale(3.6); opacity: 0; }
}
.probe-tag {
    position: absolute;
    left: calc(21% + 18px);
    top: calc(46% - 15px);
    z-index: 2;
    padding: .3rem .6rem;
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--border);
    box-shadow: var(--sh-sm);
    font-size: var(--fs-2xs);
    font-weight: 700;
    color: var(--brand-green-900);
    white-space: nowrap;
}

/* — Örnek arayüz kartları —
   .field-scene DIŞINDA, onu saran konumlandırılmış bir kutuda
   durur. İçinde olsaydı overflow:hidden yüzünden mobilde
   kırpılırdı ve role="img" altında kaldığı için ekran
   okuyucudan da gizlenirdi. */
.scene-wrap { position: relative; }

/* 2×2 ızgara. Etiket ve değer ALT ALTA durur: "Sulama önerisi /
   Bugün gerekli değil" gibi uzun çiftler yan yana dizildiğinde
   birbirinin üstüne biniyordu. */
.hero-readouts {
    position: absolute;
    left: clamp(.6rem, -1rem + 4vw, 1.15rem);
    right: clamp(.6rem, -1rem + 4vw, 1.15rem);
    bottom: clamp(.6rem, -1rem + 4vw, 1.15rem);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--sp-2);
    margin: 0;
}
.readout {
    display: grid;
    gap: 1px;
    padding: .5rem .7rem;
    border-radius: var(--r-sm);
    background: rgba(255, 255, 255, .93);
    border: 1px solid var(--border);
    box-shadow: var(--sh-sm);
    min-width: 0;
}
@supports (backdrop-filter: blur(8px)) {
    .readout { background: rgba(255, 255, 255, .84); backdrop-filter: blur(9px); }
}
.readout dt {
    font-size: var(--fs-2xs);
    line-height: 1.35;
    color: var(--text-muted);
    font-weight: 500;
}
.readout dd {
    margin: 0;
    font-size: var(--fs-xs);
    line-height: 1.3;
    font-weight: 700;
    color: var(--text-strong);
    overflow-wrap: break-word;
}
.readout dd.ok { color: var(--state-ok); }

/* "Örnek veri" uyarısı — yanlış algıyı önlemek için zorunlu */
.sample-note {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    margin-top: var(--sp-3);
    font-size: var(--fs-2xs);
    color: var(--text-muted);
}
.sample-note svg { width: 14px; height: 14px; color: var(--earth-ink); }

/* Dar ekranda kartlar fotoğrafın üstünden iner, altına dizilir;
   üst üste binip okunmaz hâle gelmezler. */
@media (max-width: 620px) {
    .hero-readouts { position: static; margin-top: var(--sp-3); }
    .field-scene { aspect-ratio: 4 / 3.2; }
    .field-scene::after { display: none; }
}

/* ═══ 3. Güven / Proje Durumu Şeridi ════════════════════════ */
.trust-strip {
    border-block: 1px solid var(--border);
    background: var(--surface-sunken);
    padding-block: var(--sp-6);
}
.trust-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-3) clamp(1rem, .4rem + 2vw, 2.5rem);
}
.trust-list li {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--text-body);
}
.trust-list svg { width: 17px; height: 17px; color: var(--accent); }

/* ═══ 4. Problem ════════════════════════════════════════════ */
.problem-card .icon-box { background: var(--earth-soft); border-color: #DCCBB6; color: var(--earth-ink); }

/* ═══ 5. Nasıl Çalışır ══════════════════════════════════════ */
.flow {
    display: grid;
    gap: var(--sp-5);
    counter-reset: step;
}
@media (min-width: 860px) {
    .flow { grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }
}
.flow-step {
    position: relative;
    padding: var(--sp-6);
    border-radius: var(--r-lg);
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--border-on-dark);
}
.flow-step .num {
    display: grid;
    place-items: center;
    width: 34px; height: 34px;
    margin-bottom: var(--sp-4);
    border-radius: var(--r-sm);
    background: var(--brand-green-300);
    color: var(--brand-green-900);
    font-weight: 800;
    font-size: var(--fs-sm);
}
.flow-step h3 { font-size: var(--fs-h4); margin-bottom: var(--sp-2); }
.flow-step p { font-size: var(--fs-sm); color: var(--green-200); line-height: var(--lh-relaxed); }

/* Adımlar arası bağlayıcı çizgi — yalnızca geniş ekranda */
@media (min-width: 860px) {
    .flow-step:not(:last-child)::after {
        content: "";
        position: absolute;
        top: calc(var(--sp-6) + 17px);
        right: calc(var(--sp-4) * -1);
        width: var(--sp-4);
        height: 1px;
        background: var(--border-on-dark);
    }
}

/* Örnek bildirimler */
.notif-samples {
    display: grid;
    gap: var(--sp-3);
    margin-top: clamp(2rem, 1.5rem + 2vw, 3rem);
}
@media (min-width: 780px) { .notif-samples { grid-template-columns: repeat(3, 1fr); } }

.notif {
    display: flex;
    gap: var(--sp-3);
    padding: var(--sp-4) var(--sp-5);
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, .06);
    border-left: 3px solid var(--brand-green-300);
    font-size: var(--fs-sm);
    line-height: var(--lh-snug);
    color: var(--text-on-dark);
}
.notif svg { width: 18px; height: 18px; color: var(--brand-green-300); margin-top: 2px; }
.notif.warn { border-left-color: var(--brand-earth); }
.notif.warn svg { color: #D8A879; }

/* ═══ 6. Sistem Mimarisi ════════════════════════════════════ */
.arch-grid {
    display: grid;
    gap: clamp(2rem, 1.4rem + 2.5vw, 3.5rem);
    align-items: start;
}
@media (min-width: 940px) {
    .arch-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); }
}

/* Kesit diyagramı */
.cross-section {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface-raised);
    box-shadow: var(--sh-sm);
}
.cs-above,
.cs-below { padding: var(--sp-5) var(--sp-5) var(--sp-6); }

.cs-above { background: linear-gradient(180deg, #EDF3F6 0%, #E9F0E7 100%); }
.cs-ground {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding: .45rem var(--sp-5);
    background: var(--earth-soft);
    border-block: 1px dashed var(--border-strong);
    font-size: var(--fs-2xs);
    font-weight: 700;
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    color: var(--earth-ink);
}
.cs-ground::after {
    content: "";
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--earth-ink) 0 5px, transparent 5px 10px);
    opacity: .45;
}
.cs-below {
    background: linear-gradient(180deg, #C6A480 0%, #A6825E 100%);
    color: #FFF;
}
.cs-label {
    display: block;
    margin-bottom: var(--sp-4);
    font-size: var(--fs-2xs);
    font-weight: 700;
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    color: var(--text-muted);
}
.cs-below .cs-label { color: rgba(255,255,255,.82); }

.cs-unit {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding: var(--sp-3) var(--sp-4);
    border-radius: var(--r-sm);
    background: rgba(255, 255, 255, .9);
    border: 1px solid var(--border);
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--text-strong);
}
.cs-unit + .cs-unit { margin-top: var(--sp-2); }
.cs-unit svg { width: 17px; height: 17px; color: var(--accent); }
.cs-below .cs-unit {
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .26);
    color: #FFF;
}
.cs-below .cs-unit svg { color: var(--brand-green-300); }

/* Kutuları birleştiren dikey kablo */
.cs-cable {
    width: 2px;
    height: 26px;
    margin-inline: auto;
    background: repeating-linear-gradient(180deg, var(--border-strong) 0 4px, transparent 4px 8px);
}

.arch-lists { display: grid; gap: var(--sp-8); }
.spec-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    padding-block: .6rem;
    border-bottom: 1px solid var(--border);
    font-size: var(--fs-sm);
}
.spec-list li:last-child { border-bottom: 0; }
.spec-list svg { width: 17px; height: 17px; color: var(--accent); margin-top: 3px; }

/* ═══ 7. Özellikler ═════════════════════════════════════════ */
.feature-card {
    display: flex;
    gap: var(--sp-4);
    align-items: flex-start;
    padding: var(--sp-5);
}
.feature-card .icon-box { margin-bottom: 0; width: 40px; height: 40px; }
.feature-card .icon-box svg { width: 19px; height: 19px; }
.feature-body { min-width: 0; }
.feature-head {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--sp-2);
    margin-bottom: var(--sp-1);
}
.feature-head h3 { font-size: var(--fs-h4); margin: 0; }
.feature-card p { font-size: var(--fs-xs); margin: 0; }

/* ═══ 8. Mobil Uygulama Ön İzlemesi ═════════════════════════ */
.app-grid {
    display: grid;
    gap: clamp(2.5rem, 1.5rem + 4vw, 4.5rem);
    align-items: center;
}
@media (min-width: 940px) {
    .app-grid { grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); }
}

.phone {
    width: min(304px, 100%);
    margin-inline: auto;
    padding: 11px;
    border-radius: 40px;
    background: linear-gradient(160deg, #2A3833 0%, #17211D 100%);
    box-shadow: var(--sh-lg), 0 0 0 1px rgba(255,255,255,.06) inset;
}
.phone-screen {
    border-radius: 30px;
    overflow: hidden;
    background: var(--surface);
    /* Sabit oran → içerik yüksekliğinden bağımsız, layout shift olmaz.
       Oran, içeriğin ekranı doldurmasına göre seçildi; daha uzun bir
       telefonda alt kısımda boşluk kalıyordu. */
    aspect-ratio: 9 / 16;
    display: flex;
    flex-direction: column;
}
.phone-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .55rem .95rem .3rem;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
}
.phone-status .signal { display: inline-flex; gap: 3px; align-items: flex-end; }
.phone-status .signal i {
    display: block; width: 3px; border-radius: 1px; background: currentColor;
}
.phone-status .signal i:nth-child(1) { height: 4px; }
.phone-status .signal i:nth-child(2) { height: 6px; }
.phone-status .signal i:nth-child(3) { height: 8px; }

.phone-body {
    flex: 1;
    overflow: hidden;
    padding: .35rem .8rem .8rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.app-greet { font-size: 11px; color: var(--text-muted); font-weight: 600; }
.app-parcel {
    display: flex; align-items: center; justify-content: space-between; gap: .4rem;
    font-size: 15px; font-weight: 800; color: var(--text-strong);
    letter-spacing: var(--ls-snug);
}
.pill {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 2px 8px; border-radius: var(--r-pill);
    font-size: 9.5px; font-weight: 800;
    background: var(--state-ok-bg); color: var(--state-ok);
}
.pill .dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }

/* Öne çıkan öneri — ham sayıdan önce gelir, bilinçli hiyerarşi */
.app-advice {
    padding: .65rem .75rem;
    border-radius: var(--r-sm);
    background: var(--brand-green-900);
    color: #FFF;
}
.app-advice .t { font-size: 9px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--brand-green-300); }
.app-advice .v { font-size: 12.5px; font-weight: 700; line-height: 1.35; margin-top: 2px; }

.app-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem; }
.metric {
    padding: .5rem .6rem;
    border-radius: var(--r-xs);
    background: var(--surface-raised);
    border: 1px solid var(--border);
}
.metric .k { font-size: 9px; color: var(--text-muted); font-weight: 600; }
.metric .v { font-size: 15px; font-weight: 800; color: var(--text-strong); line-height: 1.2; }

/* Haftalık nem grafiği — saf CSS sütunlar */
.app-chart {
    padding: .55rem .6rem .45rem;
    border-radius: var(--r-xs);
    background: var(--surface-raised);
    border: 1px solid var(--border);
}
.app-chart .k { font-size: 9px; color: var(--text-muted); font-weight: 600; margin-bottom: .35rem; }
.bars { display: flex; align-items: flex-end; gap: 4px; height: 42px; }
.bars span {
    flex: 1;
    border-radius: 2px 2px 0 0;
    background: linear-gradient(180deg, var(--green-400), var(--brand-green-600));
}
/* Sütun yükseklikleri sınıfla verilir; satır içi style kullanılmaz
   (CSP'de style-src 'unsafe-inline' açmak zorunda kalmamak için). */
.bars .h42 { height: 42%; }
.bars .h47 { height: 47%; }
.bars .h55 { height: 55%; }
.bars .h58 { height: 58%; }
.bars .h62 { height: 62%; }
.bars .h68 { height: 68%; }
.bars .h74 { height: 74%; }
.bar-days { display: flex; gap: 4px; margin-top: 3px; }
.bar-days span { flex: 1; text-align: center; font-size: 7.5px; color: var(--text-muted); font-weight: 600; }

/* margin-top:auto → uyarı listesi ekranın altına yaslanır, telefon
   gövdesinin alt kısmında boşluk kalmaz. */
.app-alerts { display: grid; gap: .3rem; margin-top: auto; }
.app-alerts .k { font-size: 9px; color: var(--text-muted); font-weight: 600; }
.app-alert {
    display: flex; gap: .4rem; align-items: flex-start;
    padding: .4rem .5rem;
    border-radius: var(--r-xs);
    background: var(--surface-raised);
    border: 1px solid var(--border);
    font-size: 9.5px;
    line-height: 1.35;
    color: var(--text-body);
}
.app-alert .mark { width: 4px; align-self: stretch; border-radius: 2px; background: var(--brand-earth); flex-shrink: 0; }
.app-alert.ok .mark { background: var(--state-ok); }

/* ═══ 9. Yol Haritası ═══════════════════════════════════════ */
.timeline {
    position: relative;
    display: grid;
    gap: var(--sp-5);
}
@media (min-width: 900px) {
    .timeline { grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); }
    /* Bağlayıcı çizgi her aşamanın KENDİ üzerinde durur; son
       aşamadan sonra devam etmez. Tek bir uçtan uca çizgi
       kullanıldığında son noktanın sağında boşta kalıyordu. */
    .tl-item:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 21px;
        left: 52px;
        right: calc(var(--sp-5) * -1 + 6px);
        height: 2px;
        background: var(--border);
    }
}
.tl-item { position: relative; }
.tl-dot {
    display: grid;
    place-items: center;
    width: 44px; height: 44px;
    margin-bottom: var(--sp-4);
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--border-strong);
    font-weight: 800;
    font-size: var(--fs-sm);
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}
.tl-item[data-status="progress"] .tl-dot {
    border-color: var(--brand-green-600);
    background: var(--brand-green-600);
    color: #FFF;
}
.tl-item[data-status="done"] .tl-dot {
    border-color: var(--state-ok);
    background: var(--state-ok);
    color: #FFF;
}
.tl-item h3 { font-size: var(--fs-h4); margin-bottom: var(--sp-2); }
.tl-item p { font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: var(--sp-3); }

/* ═══ 10. Neden EKINTERA ════════════════════════════════════ */
.why-grid {
    display: grid;
    gap: clamp(2rem, 1.4rem + 2.5vw, 3.5rem);
    align-items: center;
}
@media (min-width: 940px) { .why-grid { grid-template-columns: .9fr 1.1fr; } }

.why-list { display: grid; gap: var(--sp-2); }
.why-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    padding: var(--sp-4);
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--border-on-dark);
    font-size: var(--fs-sm);
    line-height: var(--lh-snug);
}
.why-list svg { width: 18px; height: 18px; color: var(--brand-green-300); margin-top: 1px; }

/* ═══ 11. Çiftçi Araştırması Formu ══════════════════════════ */
.survey-shell {
    max-width: 820px;
    margin-inline: auto;
    background: var(--surface-raised);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-lg);
    overflow: hidden;
}
.survey-top {
    padding: clamp(1.5rem, 1.2rem + 1.4vw, 2.25rem) clamp(1.25rem, 1rem + 1.6vw, 2.5rem);
    border-bottom: 1px solid var(--border);
    background: var(--green-50);
}
.survey-top h3 { font-size: var(--fs-h3); margin-bottom: var(--sp-2); }
.survey-top p { font-size: var(--fs-sm); color: var(--text-muted); margin: 0; }

/* Adım göstergesi */
.steps {
    display: flex;
    gap: var(--sp-2);
    margin-top: var(--sp-5);
}
.steps li {
    flex: 1;
    display: grid;
    gap: 6px;
}
.steps .track {
    height: 4px;
    border-radius: 2px;
    background: var(--border);
    overflow: hidden;
}
.steps .track::after {
    content: "";
    display: block;
    height: 100%;
    width: 0;
    background: var(--brand-green-600);
    transition: width var(--dur-slow) var(--ease-out);
}
.steps li[data-state="done"] .track::after,
.steps li[data-state="current"] .track::after { width: 100%; }
.steps li[data-state="done"] .track::after { background: var(--state-ok); }
.steps .lbl {
    font-size: var(--fs-2xs);
    font-weight: 700;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.steps li[data-state="current"] .lbl { color: var(--brand-green-900); }
@media (max-width: 620px) { .steps .lbl { display: none; } }

.survey-body { padding: clamp(1.5rem, 1.2rem + 1.6vw, 2.5rem); }

.fieldset { border: 0; padding: 0; margin: 0; }
.fieldset[hidden] { display: none; }
.fieldset legend {
    /* Tarayıcı varsayılanı legend'a yatay dolgu verir; başlık
       alanların soluna hizalanmıyordu. */
    padding: 0;
    font-size: var(--fs-h4);
    font-weight: 800;
    color: var(--text-strong);
    margin-bottom: var(--sp-5);
    letter-spacing: var(--ls-snug);
}

.field { margin-bottom: var(--sp-5); }
.field > label,
.field .field-label {
    display: block;
    margin-bottom: var(--sp-2);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--text-strong);
}
.req { color: var(--state-error); margin-left: 2px; }
.hint {
    display: block;
    margin-top: var(--sp-1);
    margin-bottom: var(--sp-2);
    font-size: var(--fs-xs);
    font-weight: 500;
    color: var(--text-muted);
}

.control {
    width: 100%;
    min-height: 50px;
    padding: .75rem .95rem;
    border-radius: var(--r-sm);
    border: 1.5px solid var(--border-strong);
    background: var(--surface-raised);
    color: var(--text-strong);
    font-size: var(--fs-body);
    transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.control::placeholder { color: #97A19B; }
.control:hover { border-color: var(--green-400); }
.control:focus {
    outline: none;
    border-color: var(--brand-green-600);
    box-shadow: 0 0 0 3px rgba(63, 115, 92, .18);
}
textarea.control { min-height: 118px; resize: vertical; line-height: var(--lh-normal); }

select.control {
    appearance: none;
    padding-right: 2.6rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2335423C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .9rem center;
    background-size: 18px;
    cursor: pointer;
}

.control.is-invalid { border-color: var(--state-error); background: var(--state-error-bg); }
.control.is-invalid:focus { box-shadow: 0 0 0 3px rgba(163, 58, 42, .16); }

.err {
    display: none;
    margin-top: var(--sp-2);
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--state-error);
}
.err.show { display: block; }

/* Çoklu seçim ızgarası */
.choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 168px), 1fr));
    gap: var(--sp-2);
}
.choice {
    /* Gizlenen input mutlak konumlanır; kapsayıcı olmazsa
       sayfanın başka bir yerine kaçar. */
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding: .7rem .85rem;
    border-radius: var(--r-sm);
    border: 1.5px solid var(--border);
    background: var(--surface-raised);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--text-body);
    cursor: pointer;
    transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
    min-height: 48px;
}
.choice:hover { border-color: var(--green-400); background: var(--green-50); }
.choice input { position: absolute; opacity: 0; width: 0; height: 0; }
.choice .box {
    display: grid;
    place-items: center;
    width: 20px; height: 20px;
    flex-shrink: 0;
    border-radius: 5px;
    border: 1.5px solid var(--border-strong);
    background: var(--surface-raised);
    transition: background-color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.choice .box svg { width: 13px; height: 13px; color: #FFF; opacity: 0; transition: opacity var(--dur-fast) var(--ease); }
.choice input:checked ~ .box { background: var(--brand-green-600); border-color: var(--brand-green-600); }
.choice input:checked ~ .box svg { opacity: 1; }
.choice:has(input:checked) { border-color: var(--brand-green-600); background: var(--green-50); }
.choice:has(input:focus-visible) { outline: 3px solid var(--focus-ring); outline-offset: 2px; }
.choice-group.is-invalid .choice { border-color: var(--state-error); }

/* Onay kutuları */
.consent {
    position: relative;
    display: flex;
    gap: var(--sp-3);
    align-items: flex-start;
    padding: var(--sp-4);
    border-radius: var(--r-md);
    border: 1px solid var(--border);
    background: var(--green-50);
    font-size: var(--fs-sm);
    line-height: var(--lh-snug);
    cursor: pointer;
}
.consent + .consent { margin-top: var(--sp-3); }
.consent input { position: absolute; opacity: 0; width: 0; height: 0; }
.consent .box {
    display: grid; place-items: center;
    width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px;
    border-radius: 6px;
    border: 1.5px solid var(--border-strong);
    background: var(--surface-raised);
}
.consent .box svg { width: 14px; height: 14px; color: #FFF; opacity: 0; }
.consent input:checked ~ .box { background: var(--brand-green-600); border-color: var(--brand-green-600); }
.consent input:checked ~ .box svg { opacity: 1; }
.consent:has(input:focus-visible) { outline: 3px solid var(--focus-ring); outline-offset: 2px; }
.consent a { color: var(--accent); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.consent-box.is-invalid .consent { border-color: var(--state-error); background: var(--state-error-bg); }

/* Gezinme butonları */
.survey-nav {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    margin-top: var(--sp-8);
    padding-top: var(--sp-6);
    border-top: 1px solid var(--border);
}
.survey-nav .spacer { flex: 1; }
@media (max-width: 520px) {
    .survey-nav { flex-direction: column-reverse; align-items: stretch; }
    .survey-nav .spacer { display: none; }
}

/* Yükleniyor durumu */
.btn .spinner {
    width: 17px; height: 17px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin .7s linear infinite;
    display: none;
}
.btn.is-loading .spinner { display: block; }
.btn.is-loading .btn-label { opacity: .75; }
.btn.is-loading svg:not(.spinner) { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Bal küpü — gerçek kullanıcı göremez, ekran okuyucu da atlar */
.hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px; height: 1px;
    overflow: hidden;
}

/* Sonuç mesajları */
.form-result { display: none; text-align: center; padding: var(--sp-6) var(--sp-4); }
.form-result.show { display: block; }

/* "Yakında açılıyor" paneli — görünürlüğü hidden özniteliğiyle
   yönetilir, .show sınıfıyla değil. */
.form-soon { display: block; }
/* Yeşil "tamam" halkası burada yanıltıcı olurdu; bekleme durumu
   toprak tonuyla gösterilir. Sıra bağımsız kazansın diye üç sınıflı. */
.form-result.form-soon .icon-ring { background: var(--earth-soft); color: var(--earth-ink); }
.form-result .icon-ring {
    display: grid; place-items: center;
    width: 62px; height: 62px;
    margin: 0 auto var(--sp-5);
    border-radius: 50%;
    background: var(--state-ok-bg);
    color: var(--state-ok);
}
.form-result .icon-ring svg { width: 30px; height: 30px; }
.form-result h3 { margin-bottom: var(--sp-3); }
.form-result p { margin-inline: auto; color: var(--text-muted); }
.form-result .ref {
    display: inline-block;
    margin-top: var(--sp-5);
    padding: .5rem 1rem;
    border-radius: var(--r-sm);
    background: var(--surface-sunken);
    border: 1px dashed var(--border-strong);
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--text-body);
}

/* Genel form hatası */
.form-alert {
    display: none;
    align-items: flex-start;
    gap: var(--sp-3);
    margin-bottom: var(--sp-5);
    padding: var(--sp-4);
    border-radius: var(--r-sm);
    background: var(--state-error-bg);
    border: 1px solid #E8C4BC;
    color: #7E2C1F;
    font-size: var(--fs-sm);
    line-height: var(--lh-snug);
}
.form-alert.show { display: flex; }
.form-alert svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 1px; }

/* ═══ 12. TEKNOFEST Şeridi ══════════════════════════════════ */
.teknofest-band {
    display: grid;
    gap: var(--sp-6);
    align-items: center;
    padding: clamp(1.75rem, 1.4rem + 1.8vw, 2.75rem);
    border-radius: var(--r-xl);
    background: var(--surface-raised);
    border: 1px solid var(--border);
    box-shadow: var(--sh-sm);
}
@media (min-width: 800px) { .teknofest-band { grid-template-columns: auto 1fr; gap: var(--sp-8); } }
.teknofest-band .mark {
    display: grid; place-items: center;
    width: 68px; height: 68px;
    border-radius: var(--r-lg);
    background: var(--brand-green-900);
    color: var(--brand-green-300);
}
.teknofest-band .mark svg { width: 32px; height: 32px; }
.teknofest-band p { font-size: var(--fs-lead); line-height: var(--lh-relaxed); color: var(--text-body); }

/* ═══ 13. Ekip ══════════════════════════════════════════════ */
.team-card { text-align: center; }
.avatar {
    display: grid;
    place-items: center;
    width: 72px; height: 72px;
    margin: 0 auto var(--sp-4);
    border-radius: 50%;
    background: var(--brand-green-900);
    color: var(--brand-green-300);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: .02em;
}
/* Fotoğraf eklenirse aynı çember içinde kırpılır — kart yüksekliği
   değişmez, dolayısıyla ızgara kaymaz. */
.avatar--photo { object-fit: cover; }
.team-card h3 { font-size: var(--fs-h4); margin-bottom: var(--sp-1); }
/* İsim henüz girilmediğinde başlık görevin kendisi olur */
.team-card .team-role-title { margin-bottom: var(--sp-3); }
.team-role {
    display: block;
    margin-bottom: var(--sp-3);
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--accent);
}
.team-card p { font-size: var(--fs-xs); margin-inline: auto; }

/* ═══ 14. S.S.S. ════════════════════════════════════════════ */
.faq { max-width: 780px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-4);
    width: 100%;
    padding: var(--sp-5) 0;
    text-align: left;
    font-size: var(--fs-h4);
    font-weight: 700;
    color: var(--text-strong);
    cursor: pointer;
}
.faq-q:hover { color: var(--accent); }
.faq-q .chev {
    width: 22px; height: 22px;
    flex-shrink: 0;
    color: var(--accent);
    transition: transform var(--dur) var(--ease);
}
.faq-q[aria-expanded="true"] .chev { transform: rotate(180deg); }
.faq-a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--dur) var(--ease);
}
.faq-a > div { overflow: hidden; }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a p {
    padding-bottom: var(--sp-5);
    font-size: var(--fs-sm);
    line-height: var(--lh-relaxed);
    color: var(--text-muted);
}

/* ═══ 15. İletişim + Footer ═════════════════════════════════ */
.contact-grid {
    display: grid;
    gap: clamp(2rem, 1.4rem + 2.5vw, 3.5rem);
    align-items: center;
}
@media (min-width: 860px) { .contact-grid { grid-template-columns: 1.05fr .95fr; } }

.contact-list { display: grid; gap: var(--sp-4); }
.contact-item {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    padding: var(--sp-4) var(--sp-5);
    border-radius: var(--r-md);
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border-on-dark);
}
.contact-item svg { width: 20px; height: 20px; color: var(--brand-green-300); }
/* Etiket ile değer ALT ALTA. İkisi de <span> olduğu için satır içi
   akışta yan yana yapışıyordu. */
.contact-item > span {
    display: grid;
    gap: 2px;
    min-width: 0;
}
.contact-item .k { font-size: var(--fs-2xs); color: var(--green-200); font-weight: 600; }
.contact-item .v { font-size: var(--fs-sm); font-weight: 700; color: #FFF; overflow-wrap: break-word; }
a.contact-item:hover { border-color: var(--brand-green-300); background: rgba(255,255,255,.09); }

.social-row { display: flex; gap: var(--sp-3); margin-top: var(--sp-6); }
.social-btn {
    display: grid; place-items: center;
    width: 44px; height: 44px;
    border-radius: var(--r-sm);
    border: 1px solid var(--border-on-dark);
    color: var(--brand-green-300);
    transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.social-btn:hover { background: rgba(255,255,255,.1); border-color: var(--brand-green-300); }
.social-btn svg { width: 19px; height: 19px; }

.site-footer {
    background: var(--surface-inverse-2);
    color: var(--green-200);
    padding-block: var(--sp-10) var(--sp-8);
    border-top: 1px solid var(--border-on-dark);
}
.footer-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-5);
    padding-bottom: var(--sp-6);
    border-bottom: 1px solid var(--border-on-dark);
}
.site-footer .brand { color: #FFF; }
.footer-nav { display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-5); }
.footer-nav a {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--green-200);
    transition: color var(--dur) var(--ease);
}
.footer-nav a:hover { color: #FFF; }
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--sp-3);
    padding-top: var(--sp-6);
    font-size: var(--fs-xs);
}
.footer-bottom p { color: var(--green-200); opacity: .85; margin: 0; }

/* Yasal sayfa bağlantıları — ana menüyü kalabalıklaştırmadan
   her sayfadan erişilebilir kalsın diye ayrı satırda durur. */
.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2) var(--sp-5);
    margin-top: var(--sp-5);
    padding-top: var(--sp-5);
    border-top: 1px solid var(--border-on-dark);
}
.footer-legal a {
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--green-200);
    opacity: .85;
    transition: opacity var(--dur) var(--ease), color var(--dur) var(--ease);
}
.footer-legal a:hover { opacity: 1; color: #FFF; }

/* ═══ 16. Form — ek yerleşim parçaları ══════════════════════
   Anket 20 soruluk mevcut şemayı kullandığı için bazı alanlar
   ikili/üçlü satırlarda gruplanır. Sütun sayısı auto-fit ile
   belirlenir; ayrı kırılım noktası gerekmez. */
.field-row {
    display: grid;
    gap: var(--sp-4);
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
    margin-bottom: var(--sp-5);
}
.field-row .field { margin-bottom: 0; }

/* Karakter sayacı — textarea'nın sağ altında, sessiz */
.counter {
    display: block;
    margin-top: var(--sp-1);
    font-size: var(--fs-2xs);
    font-weight: 600;
    color: var(--text-muted);
    text-align: right;
    font-variant-numeric: tabular-nums;
}
.counter.is-near { color: var(--earth-ink); }

/* "İsteğe bağlı" işareti — zorunlu yıldızın sessiz karşılığı */
.opt {
    margin-left: var(--sp-2);
    font-size: var(--fs-2xs);
    font-weight: 600;
    color: var(--text-muted);
}

/* Sayı alanındaki tarayıcı okları gizlenir; mobilde inputmode
   zaten sayısal klavye açar, oklar hizayı bozuyordu. */
input[type="number"].control { appearance: textfield; }
input[type="number"].control::-webkit-outer-spin-button,
input[type="number"].control::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* JavaScript kapalıysa gösterilen bilgi kutusu */
.noscript-note {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    padding: var(--sp-4) var(--sp-5);
    border-radius: var(--r-md);
    background: var(--earth-soft);
    border: 1px solid #DCCBB6;
    color: var(--earth-ink);
    font-size: var(--fs-sm);
    line-height: var(--lh-snug);
}
.noscript-note a { color: inherit; font-weight: 700; text-decoration: underline; }

/* ═══ 17. Yasal / metin sayfaları ═══════════════════════════
   Gizlilik, KVKK, çerez ve kullanım koşulları sayfaları bu
   kabuğu paylaşır. Ana sayfayla aynı tasarım sistemini kullanır;
   ayrı bir stil dosyası veya ikon kütüphanesi gerekmez. */
.legal-hero {
    padding-top: calc(var(--nav-h) + clamp(2.25rem, 1.5rem + 3vw, 4rem));
    padding-bottom: clamp(1.75rem, 1.25rem + 2vw, 2.75rem);
    background: var(--surface-sunken);
    border-bottom: 1px solid var(--border);
}
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--sp-2);
    margin-bottom: var(--sp-4);
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--text-muted);
}
.breadcrumb a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal-hero h1 { font-size: var(--fs-h2); }
.legal-hero .updated {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    margin-top: var(--sp-4);
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--text-muted);
}
.legal-hero .updated svg { width: 15px; height: 15px; }

.legal {
    padding-block: clamp(2.25rem, 1.6rem + 2.5vw, 3.75rem) var(--section-y);
}
.legal-body { max-width: 74ch; }
.legal-body h2 {
    font-size: var(--fs-h3);
    margin: var(--sp-10) 0 var(--sp-3);
    padding-top: var(--sp-6);
    border-top: 1px solid var(--border);
}
.legal-body > h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.legal-body h3 { font-size: var(--fs-h4); margin: var(--sp-6) 0 var(--sp-2); }
.legal-body p,
.legal-body li {
    font-size: var(--fs-sm);
    line-height: var(--lh-relaxed);
    color: var(--text-body);
}
.legal-body p { margin-bottom: var(--sp-4); }
.legal-body ul,
.legal-body ol {
    list-style: disc;
    padding-left: 1.35rem;
    display: grid;
    gap: var(--sp-2);
    margin-bottom: var(--sp-5);
}
.legal-body ol { list-style: decimal; }
.legal-body a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.legal-body .callout {
    padding: var(--sp-5);
    margin-bottom: var(--sp-6);
    border-radius: var(--r-md);
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-left: 3px solid var(--brand-green-600);
}
.legal-body .callout p:last-child { margin-bottom: 0; }

/* Tablolar mobilde sayfayı yatayda itmesin; kendi içinde kaysın */
.table-scroll { overflow-x: auto; margin-bottom: var(--sp-6); }
.legal-body table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    font-size: var(--fs-xs);
}
.legal-body th,
.legal-body td {
    padding: var(--sp-3) var(--sp-4);
    text-align: left;
    border: 1px solid var(--border);
    vertical-align: top;
}
.legal-body th { background: var(--surface-sunken); font-weight: 700; color: var(--text-strong); }

/* ═══ 18. 404 sayfası ═══════════════════════════════════════ */
.notfound {
    display: grid;
    place-items: center;
    min-height: 70vh;
    padding-top: var(--nav-h);
    text-align: center;
}
.notfound .code {
    font-size: clamp(3.5rem, 2rem + 7vw, 6rem);
    font-weight: 800;
    line-height: 1;
    color: var(--accent-soft);
    letter-spacing: var(--ls-tight);
}
.notfound h1 { margin: var(--sp-5) 0 var(--sp-3); }
.notfound p { margin-inline: auto; color: var(--text-muted); }
.notfound .btn-row { justify-content: center; margin-top: var(--sp-8); }
