
  :root {
    --bg: #F7F6F3;
    --bg-white: #FFFFFF;
    --bg-dark: #0C0C0C;
    --bg-hero: #111111;
    --text: #1A1A1A;
    --text-2: #4A4A4A;
    --text-3: #8C8C8C;
    --text-inv: #F0EDE8;
    --accent: #C0392B;
    --accent-dark: #962D23;
    --accent-glow: rgba(192, 57, 43, 0.12);
    --gold: #B8860B;
    --border: #E5E2DC;
    --border-2: #D6D2CA;
    --glass: rgba(255,255,255,0.65);
    --glass-border: rgba(255,255,255,0.25);
    --shadow-1: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.02);
    --shadow-2: 0 8px 30px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.03);
    --shadow-3: 0 20px 60px rgba(0,0,0,0.1), 0 4px 16px rgba(0,0,0,0.04);
    --shadow-accent: 0 8px 32px rgba(192,57,43,0.15);
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 20px;
    --serif: 'Bricolage Grotesque', -apple-system, sans-serif;
    --sans: 'Source Sans 3', -apple-system, sans-serif;
    --mono: 'IBM Plex Mono', monospace;
  }

  * { margin:0; padding:0; box-sizing:border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  ::selection {
    background: var(--accent);
    color: white;
  }

  /* ═══════════════════ NOISE OVERLAY ═══════════════════ */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
  }

  /* ═══════════════════ SCROLL REVEAL ═══════════════════ */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
  }

  .stagger-1 { transition-delay: 0.1s; }
  .stagger-2 { transition-delay: 0.2s; }
  .stagger-3 { transition-delay: 0.3s; }
  .stagger-4 { transition-delay: 0.4s; }
  .stagger-5 { transition-delay: 0.5s; }
  .stagger-6 { transition-delay: 0.6s; }

  /* ═══════════════════ NAVIGATION ═══════════════════ */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav.scrolled {
    background: #FFFFFF;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 12px rgba(0,0,0,0.06);
  }

  .nav-dark {
    background: var(--bg-dark) !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-dark .nav-brand { color: white !important; }
  .nav-dark .nav-link { color: rgba(255,255,255,0.6) !important; }
  .nav-dark .nav-link:hover { color: white !important; background: rgba(255,255,255,0.08); }
  .nav-dark .nav-link.active { color: white !important; background: rgba(255,255,255,0.1); }
  .nav-dark .nav-social-link { color: rgba(255,255,255,0.45) !important; }
  .nav-dark .nav-social-link:hover { color: white !important; background: rgba(255,255,255,0.08); }
  .nav-dark .nav-menu-btn { color: white; }

  .nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: white;
    transition: color 0.4s;
  }

  .nav.scrolled .nav-brand { color: var(--text) !important; }

  .nav-logo {
    width: 42px;
    height: 42px;
    border: 2px solid currentColor;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 800;
    font-style: normal;
    transition: all 0.3s;
  }

  .nav-brand:hover .nav-logo {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: scale(1.05);
  }

  .nav-brand-text {
    display: flex;
    flex-direction: column;
  }

  .nav-name {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .nav-tagline {
    font-size: 10.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.5;
    margin-top: 1px;
  }

  .nav-center {
    display: flex;
    gap: 6px;
    list-style: none;
  }

  .nav-link {
    text-decoration: none;
    color: rgba(255,255,255,0.6);
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 8px 18px;
    border-radius: 100px;
    transition: all 0.3s;
    position: relative;
  }

  .nav.scrolled .nav-link { color: var(--text-2) !important; }

  .nav-link:hover {
    color: white;
    background: rgba(255,255,255,0.08);
  }

  .nav.scrolled .nav-link:hover {
    color: var(--text) !important;
    background: rgba(0,0,0,0.04);
  }

  .nav-link.active {
    color: white;
    background: rgba(255,255,255,0.1);
  }

  .nav.scrolled .nav-link.active {
    color: var(--accent) !important;
    background: var(--accent-glow);
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .nav-social-link {
    color: rgba(255,255,255,0.45);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    padding: 6px;
    border-radius: 8px;
  }

  .nav.scrolled .nav-social-link { color: var(--text-3) !important; }

  .nav-social-link:hover {
    color: white;
    background: rgba(255,255,255,0.08);
    transform: translateY(-1px);
  }

  .nav.scrolled .nav-social-link:hover {
    color: var(--accent) !important;
    background: var(--accent-glow);
  }

  /* ═══════════════════ HERO ═══════════════════ */
  .hero {
    position: relative;
    min-height: 92vh;
    background: var(--bg-hero);
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 20% 80%, rgba(192,57,43,0.08) 0%, transparent 60%),
      radial-gradient(ellipse 60% 50% at 80% 20%, rgba(184,134,11,0.05) 0%, transparent 50%),
      linear-gradient(180deg, #0C0C0C 0%, #141414 50%, #0C0C0C 100%);
  }

  .hero-grid-lines {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
      linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
    background-size: 80px 80px;
  }

  .hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 50% 50%, transparent 30%, rgba(0,0,0,0.5) 100%);
  }

  /* Animated floating orbs */
  .hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 8s ease-in-out infinite;
  }

  .hero-orb-1 {
    width: 400px; height: 400px;
    background: rgba(192,57,43,0.07);
    top: 20%; left: -5%;
    animation-delay: 0s;
  }

  .hero-orb-2 {
    width: 300px; height: 300px;
    background: rgba(184,134,11,0.05);
    top: 50%; right: -5%;
    animation-delay: -3s;
  }

  .hero-orb-3 {
    width: 200px; height: 200px;
    background: rgba(192,57,43,0.04);
    bottom: 10%; left: 40%;
    animation-delay: -5s;
  }

  @keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 48px 80px;
    width: 100%;
  }

  .hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 32px;
    opacity: 0;
    animation: heroFade 0.8s 0.2s forwards;
  }

  .hero-label-line {
    width: 40px;
    height: 1.5px;
    background: var(--accent);
    border-radius: 1px;
  }

  .hero-title {
    font-family: var(--serif);
    font-size: clamp(48px, 6.5vw, 82px);
    font-weight: 800;
    line-height: 1.0;
    color: var(--text-inv);
    letter-spacing: -0.03em;
    max-width: 900px;
    margin-bottom: 28px;
    opacity: 0;
    animation: heroFade 1s 0.4s forwards;
  }

  .hero-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--accent) 0%, #e74c3c 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-desc {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(240,237,232,0.55);
    max-width: 560px;
    margin-bottom: 48px;
    opacity: 0;
    animation: heroFade 1s 0.6s forwards;
  }

  .hero-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    opacity: 0;
    animation: heroFade 1s 0.8s forwards;
  }

  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: white;
    color: var(--bg-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
  }

  .hero-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 100px;
  }

  .hero-cta:hover::before { transform: translateX(0); }
  .hero-cta:hover { color: white; box-shadow: var(--shadow-accent); transform: translateY(-2px); }
  .hero-cta span, .hero-cta svg { position: relative; z-index: 1; }

  .hero-cta svg {
    transition: transform 0.3s;
  }
  .hero-cta:hover svg { transform: translateX(4px); }

  .hero-stats {
    display: flex;
    gap: 48px;
  }

  .hero-stat {
    text-align: right;
  }

  .hero-stat-num {
    font-family: var(--mono);
    font-size: 32px;
    font-weight: 500;
    color: rgba(240,237,232,0.85);
    letter-spacing: -0.02em;
    line-height: 1;
  }

  .hero-stat-label {
    font-size: 11px;
    font-weight: 500;
    color: rgba(240,237,232,0.3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 6px;
  }

  /* Scroll indicator */
  .hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.2);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: scrollBounce 2s infinite;
  }

  .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
    animation: scrollLine 2s infinite;
  }

  @keyframes heroFade {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
  }

  @keyframes scrollLine {
    0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
  }

  /* ═══════════════════ MARQUEE ═══════════════════ */
  .marquee-wrap {
    background: white;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 14px 0;
  }

  .marquee {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
  }

  .marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 32px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-3);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .marquee-dot {
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
  }

  @keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ═══════════════════ CATEGORIES ═══════════════════ */
  .filter-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 48px 8px;
  }

  .filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
  }

  .filter-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-right: 12px;
  }

  .filter-btn {
    position: relative;
    padding: 10px 22px;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    background: white;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-2);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
  }

  .filter-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--text);
    border-radius: 100px;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .filter-btn:hover {
    border-color: var(--text-2);
    transform: translateY(-1px);
    box-shadow: var(--shadow-1);
  }

  .filter-btn.active::before { transform: scale(1); }

  .filter-btn.active {
    color: white;
    border-color: var(--text);
  }

  .filter-btn span {
    position: relative;
    z-index: 1;
  }

  .filter-count {
    font-family: var(--mono);
    font-size: 10.5px;
    opacity: 0.5;
    margin-left: 5px;
  }

  /* ═══════════════════ FEATURED POST ═══════════════════ */
  .featured-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 36px 48px 0;
  }

  .featured {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    position: relative;
  }

  .featured::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: border-color 0.5s;
    pointer-events: none;
  }

  .featured:hover {
    box-shadow: var(--shadow-3);
    transform: translateY(-4px);
  }

  .featured:hover::after {
    border-color: var(--accent);
  }

  .featured-visual {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0C0C0C 0%, #1a1210 40%, #0C0C0C 100%);
    min-height: 420px;
  }

  .featured-visual-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image:
      linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.5) 49%, rgba(255,255,255,0.5) 51%, transparent 52%);
    background-size: 30px 30px;
  }

  .featured-visual-orb {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192,57,43,0.2) 0%, transparent 70%);
    bottom: -20%;
    right: -10%;
    filter: blur(40px);
  }

  .featured-visual-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--serif);
    font-size: 180px;
    font-style: normal;
    font-weight: 800;
    color: rgba(255,255,255,0.03);
    line-height: 1;
  }

  .featured-badge-wrap {
    position: absolute;
    top: 24px;
    left: 24px;
    display: flex;
    gap: 8px;
  }

  .featured-badge {
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
  }

  .badge-new {
    background: var(--accent);
    color: white;
  }

  .badge-cat {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.12);
  }

  .featured-body {
    padding: 48px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .featured-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
  }

  .featured-cat {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .featured-date {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--text-3);
  }

  .featured-title {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    transition: color 0.3s;
  }

  .featured:hover .featured-title {
    color: var(--accent);
  }

  .featured-excerpt {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.04em;
    transition: gap 0.3s;
  }

  .featured:hover .featured-cta { gap: 16px; }

  .featured-cta-line {
    width: 32px;
    height: 1.5px;
    background: var(--accent);
    border-radius: 1px;
    transition: width 0.3s;
  }

  .featured:hover .featured-cta-line { width: 48px; }

  /* ═══════════════════ ARTICLES GRID ═══════════════════ */
  .section-head {
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 48px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .section-label {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-3);
  }

  .section-label-icon {
    width: 28px;
    height: 28px;
    background: var(--accent-glow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .section-label-icon svg {
    color: var(--accent);
  }

  .section-all {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-3);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: white;
    transition: all 0.3s;
  }

  .section-all:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: var(--accent-glow);
    transform: translateY(-1px);
  }

  .articles-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px 56px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .article-card {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
  }

  .article-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    transition: border-color 0.4s;
    pointer-events: none;
  }

  .article-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-3);
  }

  .article-card:hover::after {
    border-color: var(--accent);
  }

  .article-img {
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0C0C0C, #1a1210);
  }

  .article-img-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: repeating-linear-gradient(
      0deg, transparent, transparent 20px, rgba(255,255,255,0.3) 20px, rgba(255,255,255,0.3) 21px
    );
  }

  .article-img-letter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--serif);
    font-size: 80px;
    font-style: normal;
    font-weight: 800;
    color: rgba(255,255,255,0.04);
  }

  .article-cat-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 100px;
    color: white;
    backdrop-filter: blur(8px);
  }

  .cat-vaka { background: rgba(192,57,43,0.85); }
  .cat-aml { background: rgba(41,98,168,0.85); }
  .cat-yapt { background: rgba(142,68,173,0.85); }
  .cat-duz { background: rgba(39,130,80,0.85); }
  .cat-fraud { background: rgba(192,100,43,0.85); }

  .article-body {
    padding: 24px 26px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .article-date {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-3);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .article-reading {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-3);
    opacity: 0.6;
  }

  .article-title {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
  }

  .article-card:hover .article-title {
    color: var(--accent);
  }

  .article-excerpt {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-2);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
  }

  .article-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .article-read-more {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .article-arrow {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
  }

  .article-card:hover .article-arrow {
    background: var(--accent);
    transform: translateX(4px);
  }

  .article-card:hover .article-arrow svg {
    color: white;
  }

  /* ═══════════════════ NEWSLETTER ═══════════════════ */
  .newsletter-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px 64px;
  }

  .newsletter {
    position: relative;
    background: var(--bg-dark);
    border-radius: var(--radius-lg);
    padding: 72px 64px;
    overflow: hidden;
  }

  .newsletter-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 50% 80% at 80% 30%, rgba(192,57,43,0.12) 0%, transparent 60%),
      radial-gradient(ellipse 40% 60% at 10% 80%, rgba(184,134,11,0.06) 0%, transparent 50%);
  }

  .newsletter-grid-lines {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
      linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
    background-size: 60px 60px;
  }

  .newsletter-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
  }

  .newsletter-text h3 {
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1.15;
    letter-spacing: -0.02em;
  }

  .newsletter-text h3 em {
    font-style: normal;
    color: var(--accent);
  }

  .newsletter-text p {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255,255,255,0.4);
    max-width: 400px;
    line-height: 1.65;
  }

  .newsletter-form {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
  }

  .nl-input {
    width: 300px;
    padding: 16px 24px;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: white;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 400;
    outline: none;
    transition: all 0.3s;
  }

  .nl-input::placeholder { color: rgba(255,255,255,0.25); }
  .nl-input:focus { border-color: var(--accent); background: rgba(255,255,255,0.08); }

  .nl-btn {
    padding: 16px 32px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    letter-spacing: 0.02em;
  }

  .nl-btn:hover {
    background: var(--accent-dark);
    box-shadow: var(--shadow-accent);
    transform: translateY(-2px);
  }

  /* ═══════════════════ FOOTER ═══════════════════ */
  .site-footer {
    background: white;
    border-top: 1px solid var(--border);
  }

  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 48px 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 56px;
  }

  .footer-brand-section h4 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
  }

  .footer-brand-section p {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-2);
    line-height: 1.65;
    max-width: 300px;
  }

  .footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 24px;
  }

  .footer-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1.5px solid var(--border);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-2);
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
  }

  .footer-social-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
  }

  .footer-col h5 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-3);
    margin-bottom: 20px;
  }

  .footer-col ul { list-style: none; }

  .footer-col li { margin-bottom: 12px; }

  .footer-col a {
    text-decoration: none;
    color: var(--text-2);
    font-size: 14px;
    font-weight: 400;
    transition: all 0.2s;
    display: inline-block;
  }

  .footer-col a:hover {
    color: var(--accent);
    transform: translateX(4px);
  }

  .footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 48px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-copy {
    font-size: 12px;
    color: var(--text-3);
    font-weight: 400;
  }

  .footer-made {
    font-size: 12px;
    color: var(--text-3);
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .footer-made .heart {
    color: var(--accent);
    animation: heartbeat 2s infinite;
  }

  @keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.2); }
    30% { transform: scale(1); }
  }

  /* ═══════════════════ RESPONSIVE ═══════════════════ */
  @media (max-width: 1024px) {
    .nav-inner { padding: 0 28px; }
    .nav-center { display: none; }
    .hero-content { padding: 100px 28px 60px; }
    .hero-bottom { flex-direction: column; align-items: flex-start; gap: 32px; }
    .hero-stats { align-self: flex-start; }
    .featured { grid-template-columns: 1fr; }
    .featured-visual { min-height: 280px; }
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .filter-section, .featured-section, .section-head, .articles-grid, .newsletter-section { padding-left: 28px; padding-right: 28px; }
  }

  @media (max-width: 640px) {
    .articles-grid { grid-template-columns: 1fr; }
    .newsletter-content { flex-direction: column; text-align: center; }
    .newsletter-text p { max-width: 100%; }
    .newsletter-form { flex-direction: column; width: 100%; }
    .nl-input { width: 100%; }
    .hero-title { font-size: 40px; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .newsletter { padding: 48px 28px; }
  }

  /* ═══════════════════ MOCKUP BADGE ═══════════════════ */
  .mockup-pill {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--accent);
    color: white;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 10000;
    box-shadow: var(--shadow-accent);
    animation: pulseBadge 3s infinite;
  }

  @keyframes pulseBadge {
    0%, 100% { box-shadow: var(--shadow-accent); }
    50% { box-shadow: 0 8px 40px rgba(192,57,43,0.3); }
  }

  /* ═══════════════════ SINGLE POST ═══════════════════ */
  .post-header {
    margin-top: 72px;
    padding: 64px 0 40px;
    background: white;
    border-bottom: 1px solid var(--border);
  }

  .post-header-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 48px;
  }

  .post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
  }

  .post-category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    text-decoration: none;
    padding: 5px 14px;
    background: var(--accent-glow);
    border-radius: 100px;
    transition: all 0.3s;
  }

  .post-category:hover {
    background: var(--accent);
    color: white;
  }

  .post-date, .post-reading {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--text-3);
  }

  .post-title {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text);
  }

  .post-subtitle {
    font-size: 17px;
    color: var(--text-2);
    margin-top: 16px;
    line-height: 1.6;
  }

  .post-hero-img {
    max-width: 1000px;
    margin: 0 auto;
    padding: 32px 48px 0;
  }

  .post-hero-img img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-2);
  }

  .post-content-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 48px 64px;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 56px;
  }

  .post-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
  }

  .post-content h2 {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 16px;
    letter-spacing: -0.02em;
  }

  .post-content h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 700;
    margin: 32px 0 12px;
    letter-spacing: -0.01em;
  }

  .post-content p {
    margin-bottom: 20px;
  }

  .post-content blockquote {
    border-left: 3px solid var(--accent);
    padding: 16px 24px;
    margin: 28px 0;
    background: white;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text-2);
  }

  .post-content ul, .post-content ol {
    padding-left: 24px;
    margin-bottom: 20px;
  }

  .post-content li {
    margin-bottom: 8px;
  }

  .post-content strong {
    font-weight: 600;
    color: var(--text);
  }

  .post-content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .post-content img {
    max-width: 100%;
    border-radius: var(--radius-sm);
    margin: 24px 0;
    box-shadow: var(--shadow-1);
  }

  /* Sidebar */
  .post-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .sidebar-author, .sidebar-tags, .sidebar-share {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
  }

  .sidebar-author-name {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
  }

  .sidebar-author-title {
    font-size: 13px;
    color: var(--text-3);
    margin-bottom: 12px;
  }

  .sidebar-author-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
  }

  .sidebar-tags h4, .sidebar-share h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-3);
    margin-bottom: 12px;
  }

  .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .tag {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-2);
    background: var(--bg);
    padding: 5px 12px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid var(--border);
  }

  .tag:hover {
    color: var(--accent);
    border-color: var(--accent);
  }

  .share-buttons {
    display: flex;
    gap: 8px;
  }

  .share-btn {
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-2);
    text-decoration: none;
    transition: all 0.2s;
  }

  .share-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-glow);
  }

  /* Post Nav */
  .post-nav {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 48px 64px;
    display: flex;
    gap: 24px;
  }

  .post-nav-item {
    flex: 1;
    padding: 24px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
  }

  .post-nav-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-2);
    transform: translateY(-2px);
  }

  .post-nav-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 8px;
  }

  .post-nav-title {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
  }

  .post-nav-next { text-align: right; }

  /* ═══════════════════ LIST / BLOG PAGE ═══════════════════ */
  .list-header {
    margin-top: 72px;
    padding: 56px 0 40px;
    background: white;
    border-bottom: 1px solid var(--border);
  }

  .list-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
  }

  .list-title {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.03em;
  }

  .list-desc {
    font-size: 16px;
    color: var(--text-2);
    margin-top: 8px;
  }

  /* ═══════════════════ PAGINATION ═══════════════════ */
  .pagination {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }

  .page-btn {
    padding: 10px 24px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-2);
    text-decoration: none;
    background: white;
    transition: all 0.3s;
  }

  .page-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
  }

  .page-info {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--text-3);
  }

  /* ═══════════════════ SIMPLE PAGE (HAKKIMDA) ═══════════════════ */
  .page-wrap {
    margin-top: 72px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 64px 48px 80px;
  }

  .page-title {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
  }

  .page-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-2);
  }

  .page-content p { margin-bottom: 20px; }

  /* ═══════════════════ MOBILE NAV ═══════════════════ */
  .nav-menu-btn {
    display: none;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 4px;
  }

  /* ═══════════════════ FEATURED IMAGE ═══════════════════ */
  .featured-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
  }

  .article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
  }

  /* ═══════════════════ RESPONSIVE ADDITIONS ═══════════════════ */
  @media (max-width: 1024px) {
    .post-content-wrap { grid-template-columns: 1fr; }
    .post-sidebar { position: static; }
    .nav-menu-btn { display: block; }
    .nav-center {
      display: none;
      position: absolute;
      top: 72px;
      left: 0;
      right: 0;
      background: var(--bg-dark);
      flex-direction: column;
      padding: 16px 24px 24px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }
    .nav-center.mobile-open {
      display: flex;
    }
    .nav-center .nav-link {
      color: rgba(255,255,255,0.7) !important;
      padding: 12px 16px;
      border-radius: 8px;
      font-size: 15px;
    }
    .nav-center .nav-link:hover,
    .nav-center .nav-link.active {
      color: white !important;
      background: rgba(255,255,255,0.08);
    }
  }

  @media (max-width: 640px) {
    .post-header-inner, .post-content-wrap, .post-nav { padding-left: 20px; padding-right: 20px; }
    .page-wrap { padding: 40px 20px 60px; }
    .list-header-inner { padding: 0 20px; }
    .post-nav { flex-direction: column; }
  }
