
  :root {
    --paper:      #F3F1EC;
    --paper-2:    #E9E6DF;
    --card:       #FBFAF7;
    --ink:        #191C1A;
    --ink-2:      #3D423E;
    --muted:      #6F736D;
    --line:       #D6D2C9;
    --accent:     #1B3FC4;
    --accent-ink: #FFFFFF;
    --artist:     #B8912B;
    --metak:      #C26A55;
    --farbe:      #4A5058;

    --font-display: "Helvetica Neue", Helvetica, Arial, "Segoe UI", sans-serif;
    --font-body: Georgia, "Times New Roman", Times, serif;
    --font-mono: ui-monospace, "SF Mono", "Cascadia Mono", Menlo, Consolas, monospace;

    --wrap: 1080px;
    --pad: clamp(20px, 5vw, 56px);
  }

  @media (prefers-color-scheme: dark) {
    :root {
      --paper:   #151816;
      --paper-2: #1D211E;
      --card:    #1E2220;
      --ink:     #EDEAE3;
      --ink-2:   #C3C0B8;
      --muted:   #8C918A;
      --line:    #333833;
      --accent:  #7A96F5;
      --accent-ink: #10130F;
      --artist:  #D9B451;
      --metak:   #DD8A74;
    }
  }

  :root[data-theme="dark"] {
    --paper:   #151816;
    --paper-2: #1D211E;
    --card:    #1E2220;
    --ink:     #EDEAE3;
    --ink-2:   #C3C0B8;
    --muted:   #8C918A;
    --line:    #333833;
    --accent:  #7A96F5;
    --accent-ink: #10130F;
    --artist:  #D9B451;
    --metak:   #DD8A74;
    --farbe:   #8A9199;
  }

  :root[data-theme="light"] {
    --paper:      #F3F1EC;
    --paper-2:    #E9E6DF;
    --card:       #FBFAF7;
    --ink:        #191C1A;
    --ink-2:      #3D423E;
    --muted:      #6F736D;
    --line:       #D6D2C9;
    --accent:     #1B3FC4;
    --accent-ink: #FFFFFF;
    --artist:     #B8912B;
    --metak:      #C26A55;
    --farbe:      #4A5058;
  }

  * { box-sizing: border-box; }

  body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
  }

  .wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding-left: var(--pad);
    padding-right: var(--pad);
  }

  h1, h2, h3, .eyebrow, .btn, .tier-price, .model-price {
    font-family: var(--font-display);
  }

  .eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 14px;
  }

  /* ---------- masthead ---------- */
  .masthead {
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
  }
  .masthead .wrap {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }
  .mark {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: .14em;
    text-transform: uppercase;
  }
  .masthead .meta {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--muted);
  }

  /* ---------- hero ---------- */
  .hero { padding: clamp(48px, 9vw, 96px) 0 0; }

  .hero h1 {
    font-size: clamp(32px, 6vw, 58px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.025em;
    margin: 0 0 26px;
    max-width: 18ch;
    text-wrap: balance;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--accent);
  }

  .lede {
    font-size: clamp(18px, 2.1vw, 21px);
    line-height: 1.6;
    color: var(--ink-2);
    max-width: 60ch;
    margin: 0 0 34px;
  }

  .hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: clamp(44px, 7vw, 72px);
  }

  .btn {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 24px;
    border: 1px solid var(--accent);
    background: var(--accent);
    color: var(--accent-ink);
    transition: opacity .18s ease;
  }
  .btn:hover { opacity: .86; }
  .btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
  }
  .btn--ghost:hover { border-color: var(--ink); opacity: 1; }
  a:focus-visible, .btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
  }

  /* ---------- sections ---------- */
  section { padding: clamp(56px, 9vw, 100px) 0; }
  section + section { border-top: 1px solid var(--line); }

  h2 {
    font-size: clamp(24px, 3.4vw, 34px);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.15;
    margin: 0 0 18px;
    max-width: 24ch;
    text-wrap: balance;
  }

  .section-intro {
    color: var(--ink-2);
    max-width: 60ch;
    margin: 0 0 40px;
  }

  /* ---------- story ---------- */
  .story { background: var(--paper-2); }
  .story .prose {
    max-width: 62ch;
    font-size: clamp(17px, 1.9vw, 19px);
    line-height: 1.72;
  }
  .story .prose p { margin: 0 0 20px; }
  .story .prose p:last-child { margin-bottom: 0; }
  .story .prose strong { font-weight: 700; }
  .credentials {
    margin: 40px 0 0;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    font-family: var(--font-mono);
    font-size: 12.5px;
    line-height: 1.9;
    letter-spacing: .02em;
    color: var(--muted);
    max-width: 74ch;
  }
  .pull {
    border-left: 3px solid var(--accent);
    padding: 4px 0 4px 22px;
    margin: 30px 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(19px, 2.4vw, 24px);
    line-height: 1.35;
    letter-spacing: -.015em;
    max-width: 30ch;
  }

  /* ---------- case studies ---------- */
  .cases { display: grid; gap: 28px; }

  .case {
    background: var(--card);
    border: 1px solid var(--line);
    display: grid;
    grid-template-columns: 10px 1fr;
  }
  .case-rail { background: var(--c); }
  .case-inner { padding: clamp(24px, 4vw, 40px); }

  .case-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 6px;
  }
  .case h3 {
    font-size: clamp(20px, 2.6vw, 26px);
    font-weight: 800;
    letter-spacing: -.01em;
    margin: 0;
  }
  .case-url {
    font-family: var(--font-mono);
    font-size: 12.5px;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
  }
  .case-url:hover { border-bottom-color: currentColor; }

  .case-role {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin: 0 0 18px;
  }
  .case p.sum { margin: 0 0 22px; color: var(--ink-2); max-width: 64ch; }

  .facts { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
  .facts li {
    position: relative;
    padding-left: 20px;
    font-size: 15.5px;
    color: var(--ink-2);
  }
  .facts li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .62em;
    width: 9px;
    height: 2px;
    background: var(--c);
  }

  /* devam eden marka */
  .case--wip { background: transparent; border-style: dashed; }
  .case--wip .case-rail { opacity: .5; }
  .wip-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    border: 1px solid var(--line);
    padding: 3px 9px;
    margin-left: 2px;
  }

  /* ---------- services ---------- */
  .grid-3 {
    display: grid;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  .svc { background: var(--card); padding: 26px 24px 28px; }
  .svc h3 { font-size: 15px; font-weight: 800; letter-spacing: .04em; margin: 0 0 8px; }
  .svc p { margin: 0; font-size: 15.5px; color: var(--ink-2); }

  /* ---------- working models ---------- */
  .models { display: grid; gap: 20px; margin-bottom: 46px; }
  .model {
    border: 1px solid var(--line);
    background: var(--card);
    padding: clamp(24px, 3.2vw, 32px);
  }
  .model h3 {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 6px;
    letter-spacing: -.01em;
  }
  .model-price {
    font-family: var(--font-mono);
    font-size: 12.5px;
    letter-spacing: .04em;
    color: var(--accent);
    text-transform: uppercase;
    margin: 0 0 14px;
  }
  .model p { margin: 0 0 12px; color: var(--ink-2); font-size: 15.5px; max-width: 56ch; }
  .model p:last-child { margin-bottom: 0; }
  .model .small { font-size: 14px; color: var(--muted); }

  /* ---------- pricing ---------- */
  .tiers { display: grid; gap: 22px; }

  .tier {
    background: var(--card);
    border: 1px solid var(--line);
    padding: clamp(24px, 3.4vw, 34px);
    display: flex;
    flex-direction: column;
  }
  .tier--feature { border-color: var(--accent); position: relative; z-index: 1; }
  .tier-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 10px;
  }
  .tier h3 { font-size: 19px; font-weight: 800; margin: 0 0 4px; letter-spacing: -.01em; }
  .tier-for { font-size: 14.5px; color: var(--muted); margin: 0 0 20px; }
  .tier-price {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -.02em;
    font-variant-numeric: tabular-nums;
    margin: 0 0 2px;
  }
  .tier-price span { font-size: 14px; font-weight: 600; color: var(--muted); letter-spacing: 0; }
  .tier-time { font-family: var(--font-mono); font-size: 12px; color: var(--muted); margin: 0 0 22px; }
  .tier ul { list-style: none; margin: 0 0 8px; padding: 0; display: grid; gap: 8px; flex: 1; }
  .tier li { font-size: 15px; color: var(--ink-2); padding-left: 18px; position: relative; }
  .tier li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .58em;
    width: 8px;
    height: 8px;
    border: 1.5px solid var(--accent);
  }

  .care {
    margin-top: 26px;
    border: 1px dashed var(--line);
    padding: 22px 24px;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    background: var(--paper-2);
  }
  .care h3 { font-size: 16px; font-weight: 800; margin: 0 0 4px; }
  .care p { margin: 0; font-size: 15px; color: var(--ink-2); max-width: 54ch; }
  .care .price {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
  }

  .note { font-size: 14px; color: var(--muted); margin: 22px 0 0; max-width: 66ch; }

  /* ---------- process ---------- */
  .steps {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: step;
    border-top: 1px solid var(--line);
  }
  .steps li {
    counter-increment: step;
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 8px;
    align-items: start;
  }
  .steps li::before {
    content: counter(step, decimal-leading-zero);
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--accent);
    padding-top: 3px;
  }
  .steps h3 { font-size: 16px; font-weight: 800; margin: 0 0 4px; }
  .steps p { margin: 0; color: var(--ink-2); font-size: 15.5px; max-width: 60ch; }

  /* ---------- contact ---------- */
  .contact-box {
    background: var(--card);
    border: 1px solid var(--line);
    padding: clamp(28px, 5vw, 48px);
  }
  .contact-lines {
    display: grid;
    gap: 10px;
    margin: 24px 0 0;
    font-family: var(--font-mono);
    font-size: 15px;
  }
  .contact-lines a { color: var(--accent); text-decoration: none; }
  .contact-lines a:hover { text-decoration: underline; }
  .contact-lines .label {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    display: block;
  }

  /* ---------- iletişim formu ---------- */
  .form { margin: 30px 0 0; }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .fld { display: flex; flex-direction: column; gap: 6px; }
  .fld.tam { grid-column: 1 / -1; }
  .fld label {
    font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em;
    text-transform: uppercase; color: var(--muted);
  }
  .fld input, .fld select, .fld textarea {
    font: inherit; font-size: 15.5px; color: var(--ink);
    background: var(--paper); border: 1px solid var(--line);
    padding: 11px 13px; border-radius: 0; width: 100%;
    transition: border-color .18s ease, box-shadow .18s ease;
  }
  .fld textarea { resize: vertical; min-height: 96px; }
  .fld input:focus, .fld select:focus, .fld textarea:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(27,63,196,.13);
  }
  .fld .ipucu { font-size: 12.5px; color: var(--muted); }
  .bal { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
  .form-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 20px; }
  .form-actions .btn { margin: 0; }
  .wa {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--ink); text-decoration: none; font-weight: 600; font-size: 15px;
    border-bottom: 1px solid var(--line); padding-bottom: 2px;
  }
  .wa:hover { border-color: var(--accent); color: var(--accent); }
  .wa svg { width: 17px; height: 17px; flex: none; }
  .form-durum {
    margin-top: 16px; padding: 13px 16px; font-size: 15px; display: none;
    border-left: 3px solid var(--accent); background: rgba(27,63,196,.06);
  }
  .form-durum.gorunur { display: block; }
  .form-durum.hata { border-color: #C26A55; background: rgba(194,106,85,.08); }
  .form-tesekkur { display: none; }
  .form-tesekkur.gorunur { display: block; }
  .form-tesekkur h3 { font-family: var(--font-display); font-size: 24px; margin: 0 0 8px; }
  @media (max-width: 620px) {
    .form-grid { grid-template-columns: 1fr; }
  }

  footer {
    border-top: 1px solid var(--line);
    padding: 28px 0 44px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--muted);
  }

  /* ---------- responsive ---------- */
  @media (min-width: 720px) {
    .cases { gap: 32px; }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .models { grid-template-columns: repeat(2, 1fr); }
    .tiers { grid-template-columns: repeat(3, 1fr); gap: 0; align-items: stretch; }
    .tier + .tier { margin-left: -1px; }
  }
  @media (max-width: 719px) {
    .kartela { grid-template-columns: 1fr; }
  }

  /* ================= EFEKT PAKETİ ================= */

  html { scroll-behavior: smooth; }

  /* -- 1. Başlıkta ıslak boya dolgusu -- */
  @keyframes fx-paintfill { to { background-size: 100% 100%; } }
  .fx-on .hero h1 em {
    color: transparent;
    background-image: linear-gradient(104deg, var(--accent) 0%, var(--accent) 100%);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: fx-paintfill 1.05s .45s cubic-bezier(.65,0,.2,1) forwards;
  }

  /* -- 2. Hero'da süzülen boya lekeleri (arka plan) -- */
  .hero { position: relative; }
  .fx-on .hero::before,
  .fx-on .hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 46vmin; height: 46vmin;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .10;
    pointer-events: none;
  }
  .fx-on .hero::before {
    background: radial-gradient(circle, var(--accent), transparent 65%);
    top: -10%; right: 4%;
    animation: fx-drift1 26s ease-in-out infinite alternate;
  }
  .fx-on .hero::after {
    background: radial-gradient(circle, var(--metak), transparent 65%);
    bottom: -20%; left: -6%;
    animation: fx-drift2 32s ease-in-out infinite alternate;
  }
  @keyframes fx-drift1 { from { transform: translate(0,0) scale(1); } to { transform: translate(-9vmin,7vmin) scale(1.18); } }
  @keyframes fx-drift2 { from { transform: translate(0,0) scale(1.1); } to { transform: translate(8vmin,-6vmin) scale(.94); } }

  /* -- 3. Kaydırma ile belirme -- */
  .fx-on .fx-r {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s cubic-bezier(.2,.6,.2,1) var(--fxd, 0ms),
                transform .7s cubic-bezier(.2,.6,.2,1) var(--fxd, 0ms);
    will-change: opacity, transform;
  }
  .fx-on .fx-r.fx-in { opacity: 1; transform: none; }

  /* -- 4. Renk şeritlerinde akan boya -- */
  .fx-on .case-rail {
    background-image: linear-gradient(180deg,
      var(--c) 0%,
      color-mix(in srgb, var(--c) 78%, #000) 42%,
      var(--c) 60%,
      color-mix(in srgb, var(--c) 86%, #fff) 82%,
      var(--c) 100%);
    background-size: 100% 320%;
    animation: fx-railflow 7s linear infinite;
  }
  @keyframes fx-railflow { from { background-position: 0 0; } to { background-position: 0 320%; } }
  .case { transition: transform .35s ease, box-shadow .35s ease; }
  .fx-on .case:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -22px rgba(0,0,0,.35); }

  /* -- 5. Düğmelerde fırça süpürmesi -- */
  .btn { position: relative; overflow: hidden; }
  .fx-on .btn::before {
    content: "";
    position: absolute;
    top: 0; bottom: 0; left: 0;
    width: 55%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
    transform: translateX(-160%) skewX(-16deg);
    transition: transform .55s ease;
    pointer-events: none;
  }
  .fx-on .btn:hover::before { transform: translateX(320%) skewX(-16deg); }

  /* -- 6. Alıntı çizgisi çizilerek gelir, madde işaretleri boyanır -- */
  .fx-on .pull { border-left-color: transparent; position: relative; }
  .fx-on .pull::before {
    content: "";
    position: absolute;
    left: -3px; top: 0;
    width: 3px; height: 100%;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .8s cubic-bezier(.65,0,.2,1) .15s;
  }
  .fx-on .fx-in .pull::before, .fx-on .pull.fx-in::before { transform: scaleY(1); }
  .fx-on .facts li::before {
    width: 0;
    transition: width .5s ease var(--fxd, 0ms);
  }
  .fx-on .fx-in .facts li::before { width: 9px; }

  /* -- 7. Kart hover'ları -- */
  .svc, .model, .tier { transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
  .fx-on .svc:hover { transform: translateY(-3px); }
  .fx-on .model:hover, .fx-on .tier:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -24px rgba(0,0,0,.3); }
  @keyframes fx-featpulse {
    0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 26%, transparent); }
    50%      { box-shadow: 0 0 0 7px color-mix(in srgb, var(--accent) 0%, transparent); }
  }
  .fx-on .tier--feature { animation: fx-featpulse 3.6s ease-in-out infinite; }

  /* -- 8. "Şu an kuruluyor" etiketi nefes alır -- */
  @keyframes fx-breathe { 0%,100% { opacity: 1; } 50% { opacity: .55; } }
  .fx-on .wip-tag { animation: fx-breathe 2.8s ease-in-out infinite; }

  /* -- 9. Süreç numaraları sırayla boyanır -- */
  .fx-on .steps li::before { color: var(--muted); transition: color .45s ease var(--fxd, 0ms); }
  .fx-on .steps li.fx-in::before { color: var(--accent); }

  /* -- Sinematik süreç sahnesi (Nacho Macho deseni) -- */
  #surec-fx { display: none; }
  .sfx-on #surec-fx {
    display: block;
    height: 520vh;
    position: relative;
  }
  /* Statik süreç listesi sahne açıkken görsel olarak gizlenir (ekran okuyucular için kalır) */
  .sfx-on .surec-static {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .sfx-stick {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    background: var(--paper-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .sfx-bigword {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(72px, 19vw, 260px);
    letter-spacing: -.03em;
    color: var(--ink);
    opacity: .06;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    will-change: transform, opacity;
  }
  .sfx-chips span {
    position: absolute;
    width: clamp(13px, 1.8vw, 20px);
    aspect-ratio: 1;
    border-radius: 4px;
    background: var(--cc);
    opacity: .55;
    will-change: transform;
  }
  .sfx-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 3.5vh, 34px);
    text-align: center;
    padding: 0 22px;
  }
  .sfx-drop {
    width: clamp(108px, 15vw, 168px);
    aspect-ratio: 1;
    border-radius: 46% 54% 52% 48% / 52% 46% 54% 48%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset -12px -16px 34px rgba(0,0,0,.20);
    transition: background-color .55s ease;
    animation: sfx-blob 7s ease-in-out infinite alternate;
  }
  @keyframes sfx-blob {
    from { border-radius: 46% 54% 52% 48% / 52% 46% 54% 48%; }
    to   { border-radius: 55% 45% 47% 53% / 45% 55% 47% 53%; }
  }
  .sfx-drop span {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(32px, 4.4vw, 52px);
    color: #fff;
    letter-spacing: -.02em;
  }
  .sfx-card { max-width: 52ch; will-change: transform, opacity; }
  .sfx-badge {
    display: inline-block;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 4px 11px;
    margin-bottom: 13px;
  }
  .sfx-card h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(22px, 3.2vw, 33px);
    letter-spacing: -.015em;
    margin: 0 0 10px;
  }
  .sfx-card p {
    margin: 0;
    color: var(--ink-2);
    font-family: var(--font-body);
    font-size: clamp(15px, 1.8vw, 17.5px);
    line-height: 1.6;
  }
  .sfx-foot {
    position: absolute;
    left: 0; right: 0;
    bottom: 24px;
    display: flex;
    justify-content: space-between;
    padding: 0 clamp(20px, 5vw, 56px);
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .08em;
    color: var(--muted);
  }

  /* -- Fare boya izi tuvali -- */
  #fx-paint {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
  }

  /* -- Hareket azaltma: her şey kapanır -- */
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .fx-on .hero h1 em { animation: none; color: var(--accent); background: none; }
    .fx-on .hero::before, .fx-on .hero::after,
    .fx-on .case-rail, .fx-on .tier--feature, .fx-on .wip-tag { animation: none; }
    .fx-on .fx-r { opacity: 1; transform: none; transition: none; }
    .fx-on .facts li::before { width: 9px; }
    .fx-on .pull::before { transform: scaleY(1); }
    #fx-paint { display: none; }
    .sfx-on #surec-fx { display: none; }
    .sfx-on .surec-static {
      position: static; width: auto; height: auto;
      clip: auto; clip-path: none; white-space: normal; overflow: visible;
    }
  }

/* =========================================================
   VAKA SAYFALARI
   ========================================================= */
.vaka-nav {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: saturate(160%) blur(8px);
}
.vaka-nav .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-top: 14px; padding-bottom: 14px;
}
.vaka-nav a { color: var(--ink); text-decoration: none; font-size: 14.5px; }
.vaka-nav a:hover { color: var(--accent); }
.vaka-nav .geri { font-family: var(--font-mono); font-size: 13px; letter-spacing: .04em; }
.vaka-nav .canli {
  font-family: var(--font-mono); font-size: 12.5px; color: var(--accent);
  border: 1px solid var(--line); padding: 6px 12px;
}
.vaka-nav .canli:hover { border-color: var(--accent); }

.vaka-hero { padding: clamp(52px, 9vw, 104px) 0 clamp(30px, 5vw, 54px); }
.vaka-hero .rol {
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--c, var(--accent)); margin: 0 0 18px;
}
.vaka-hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(32px, 5.6vw, 62px); line-height: 1.04;
  letter-spacing: -.035em; margin: 0 0 22px; max-width: 20ch;
}
.vaka-hero .lede {
  font-family: var(--font-body); font-size: clamp(17px, 2vw, 21px);
  line-height: 1.62; color: var(--ink-2); max-width: 62ch; margin: 0;
}

.meta-bar {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  margin: clamp(30px, 5vw, 48px) 0 0;
}
.meta-bar div { background: var(--paper); padding: 16px 18px; }
.meta-bar .k {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 5px;
}
.meta-bar .v { font-size: 15.5px; font-weight: 600; letter-spacing: -.01em; }

.blok { padding: clamp(38px, 6vw, 70px) 0; border-top: 1px solid var(--line); }
.blok h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(22px, 3.4vw, 34px); letter-spacing: -.025em; margin: 0 0 20px;
}
.blok .prose p {
  font-family: var(--font-body); font-size: 17.5px; line-height: 1.68;
  color: var(--ink-2); max-width: 66ch; margin: 0 0 18px;
}
.blok .prose p strong { color: var(--ink); font-weight: 700; }
.blok .prose p:last-child { margin-bottom: 0; }

.kararlar { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 8px; }
.karar { background: var(--card); padding: clamp(20px, 3vw, 30px); display: grid; grid-template-columns: 46px 1fr; gap: 18px; }
.karar .no {
  font-family: var(--font-mono); font-size: 13px; color: var(--c, var(--accent));
  border-top: 2px solid var(--c, var(--accent)); padding-top: 8px;
}
.karar h3 { font-size: 18.5px; font-weight: 800; letter-spacing: -.015em; margin: 0 0 8px; }
.karar p { margin: 0; color: var(--ink-2); font-size: 16px; line-height: 1.62; max-width: 60ch; }
.karar p + p { margin-top: 10px; }
.karar .neden {
  font-family: var(--font-mono); font-size: 13px; color: var(--muted);
  margin-top: 12px; padding-left: 12px; border-left: 2px solid var(--line);
}

.shot { margin: clamp(26px, 4vw, 44px) 0 0; }
.shot img {
  display: block; width: 100%; height: auto;
  border: 1px solid var(--line); background: var(--paper-2);
}
.shot figcaption {
  font-family: var(--font-mono); font-size: 12.5px; color: var(--muted);
  margin-top: 10px; line-height: 1.5;
}
.shot-ikili { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.rakamlar {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 26px;
}
.rakam { background: var(--card); padding: 22px 20px; }
.rakam b {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 4vw, 40px); letter-spacing: -.03em;
  color: var(--c, var(--accent)); line-height: 1;
}
.rakam span { display: block; margin-top: 8px; font-size: 14.5px; color: var(--ink-2); line-height: 1.45; }

.liste-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 34px; margin: 6px 0 0; padding: 0; list-style: none; }
.liste-2 li {
  padding-left: 20px; position: relative; font-size: 16px;
  line-height: 1.55; color: var(--ink-2);
}
.liste-2 li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 7px; height: 7px; background: var(--c, var(--accent));
}

.ders {
  background: var(--card); border: 1px solid var(--line);
  border-left: 3px solid var(--c, var(--accent));
  padding: clamp(22px, 3.5vw, 34px); margin-top: clamp(26px, 4vw, 42px);
}
.ders .baslik {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin: 0 0 12px;
}
.ders p { margin: 0; font-family: var(--font-body); font-size: 18px; line-height: 1.62; max-width: 62ch; }
.ders p + p { margin-top: 14px; }

.vaka-son { padding: clamp(44px, 7vw, 84px) 0; border-top: 1px solid var(--line); }
.vaka-son h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(24px, 3.6vw, 36px); letter-spacing: -.028em; margin: 0 0 14px; }
.vaka-son p { color: var(--ink-2); font-size: 17.5px; line-height: 1.62; max-width: 58ch; margin: 0 0 24px; }
.vaka-diger { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.vaka-diger a {
  font-family: var(--font-mono); font-size: 13px; color: var(--ink);
  text-decoration: none; border: 1px solid var(--line); padding: 10px 15px;
}
.vaka-diger a:hover { border-color: var(--accent); color: var(--accent); }

@media (max-width: 720px) {
  .liste-2, .shot-ikili { grid-template-columns: 1fr; }
  .karar { grid-template-columns: 1fr; gap: 10px; }
  .karar .no { border-top: none; padding-top: 0; }
}

/* =========================================================
   YAZILAR
   ========================================================= */
.yazi-basi { padding: clamp(48px, 8vw, 92px) 0 clamp(24px, 4vw, 40px); }
.yazi-basi h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(30px, 5vw, 54px); line-height: 1.06;
  letter-spacing: -.035em; margin: 0 0 20px; max-width: 22ch;
}
.yazi-basi .rol {
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent); margin: 0 0 18px;
}
.yazi-basi .lede {
  font-family: var(--font-body); font-size: clamp(17px, 2vw, 20px);
  line-height: 1.62; color: var(--ink-2); max-width: 60ch; margin: 0;
}

.yazi-govde {
  max-width: 66ch; padding-bottom: clamp(30px, 5vw, 56px);
  border-top: 1px solid var(--line); padding-top: clamp(30px, 5vw, 52px);
}
.yazi-govde p {
  font-family: var(--font-body); font-size: 17.5px; line-height: 1.72;
  color: var(--ink-2); margin: 0 0 20px;
}
.yazi-govde p.giris { font-size: 19px; color: var(--ink); }
.yazi-govde p.vurgu {
  background: var(--card); border-left: 3px solid var(--accent);
  padding: 18px 22px; font-size: 17px; color: var(--ink);
}
.yazi-govde strong { color: var(--ink); font-weight: 700; }
.yazi-govde em { font-style: italic; }
.yazi-govde h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(21px, 3vw, 28px); letter-spacing: -.025em;
  margin: 44px 0 16px; color: var(--ink);
}
.yazi-govde h2:first-child { margin-top: 0; }
.yazi-govde ul, .yazi-govde ol { margin: 0 0 22px; padding-left: 0; list-style: none; counter-reset: n; }
.yazi-govde li {
  position: relative; padding-left: 26px; margin-bottom: 12px;
  font-family: var(--font-body); font-size: 17.5px; line-height: 1.65; color: var(--ink-2);
}
.yazi-govde ul > li::before {
  content: ''; position: absolute; left: 2px; top: 11px;
  width: 7px; height: 7px; background: var(--accent);
}
.yazi-govde ol > li { counter-increment: n; }
.yazi-govde ol > li::before {
  content: counter(n); position: absolute; left: 0; top: 2px;
  font-family: var(--font-mono); font-size: 13px; color: var(--accent); font-weight: 700;
}

.yazi-liste { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.yazi-kart {
  background: var(--card); padding: clamp(22px, 3.5vw, 34px);
  text-decoration: none; color: inherit; display: block;
  transition: background .2s ease;
}
.yazi-kart:hover { background: var(--paper-2); }
.yazi-kart .ust {
  display: block; font-family: var(--font-mono); font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px;
}
.yazi-kart h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(19px, 2.6vw, 25px); letter-spacing: -.025em;
  margin: 0 0 10px; line-height: 1.24; max-width: 28ch;
}
.yazi-kart:hover h3 { color: var(--accent); }
.yazi-kart p {
  margin: 0 0 14px; font-family: var(--font-body); font-size: 16.5px;
  line-height: 1.6; color: var(--ink-2); max-width: 62ch;
}
.yazi-kart .oku { font-family: var(--font-mono); font-size: 13px; color: var(--accent); }
