*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    /* Sıcak koyu palet — design-lab #076-#079 Cursor serisi token seti */
    --bg: #14120b;
    --bg-2: #1b180f;
    --surface: rgba(237,236,236,0.04);
    --surface-hi: rgba(237,236,236,0.07);
    --surface-hover: rgba(237,236,236,0.07);
    --border: rgba(237,236,236,0.09);
    --border-hi: rgba(237,236,236,0.16);
    --t1: #ededec;
    --t2: rgba(237,236,236,0.72);
    --t3: rgba(237,236,236,0.55);
    --t4: rgba(237,236,236,0.36);
    --accent: #e8a854;
    --accent-hi: #f0bc78;
    --ok: #6fce8a;
    --bad: #d97878;
    --wa: #25d366;
  }

  html { scroll-behavior: smooth; }
  body { background: var(--bg); color: var(--t1); font-family: 'Inter', sans-serif; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
  h1, h2, h3, .hero-h1, .sec-h2 { font-family: 'Syne', 'Outfit', sans-serif; letter-spacing: -0.025em; }
  ::selection { background: rgba(232,168,84,0.28); }
  :focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
  .mono { font-family: 'JetBrains Mono', monospace; }

  #pg { position: fixed; inset: 0; background-image: radial-gradient(circle, rgba(237,236,236,0.05) 1px, transparent 1px); background-size: 26px 26px; mask-image: radial-gradient(ellipse 80% 60% at 50% 15%, black 15%, transparent 72%); -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 15%, black 15%, transparent 72%); pointer-events: none; z-index: 0; }

  /* ================= NAV ================= */
  #nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 56px; border-bottom: 1px solid transparent; transition: background 0.25s, border-color 0.25s, height 0.25s; }
  #nav.scrolled { background: rgba(20,18,11,0.86); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-color: var(--border); height: 52px; }
  .nav-inner { max-width: 1180px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 32px); height: 100%; display: flex; align-items: center; }

  .nav-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; flex-shrink: 0; margin-right: 32px; font-weight: 500; font-size: 14px; letter-spacing: -0.01em; color: var(--t1); }
  .nav-logo .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(232,168,84,0.15); flex-shrink: 0; }
  .nav-logo .logo-tail { display: inline-block; max-width: 140px; overflow: hidden; white-space: nowrap; transition: max-width 0.3s ease, opacity 0.3s ease; }
  #nav.scrolled .logo-tail { max-width: 0; opacity: 0; }

  .nav-links { display: flex; align-items: center; gap: 2px; flex: 1; list-style: none; }
  .nav-link { display: flex; align-items: center; gap: 5px; padding: 7px 12px; font-size: 13.5px; font-weight: 400; color: var(--t3); text-decoration: none; border-radius: 6px; border: none; background: transparent; cursor: pointer; white-space: nowrap; transition: color 0.15s, background 0.15s; }
  .nav-link:hover, .nav-link:focus-visible { color: var(--t1); background: var(--surface-hover); }

  .nav-right { display: flex; align-items: center; gap: 8px; margin-left: auto; }
  .nb-solid { padding: 6px 14px; font-size: 13.5px; font-weight: 500; color: var(--bg); background: var(--t1); border: none; border-radius: 999px; cursor: pointer; text-decoration: none; transition: opacity 0.15s, transform 0.15s, background 0.15s; }
  .nb-solid:hover { transform: translateY(-1px); background: #fff; }

  #burger { display: none; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 8px; border: 1px solid var(--border); background: transparent; cursor: pointer; margin-left: 8px; flex-direction: column; gap: 5px; transition: background 0.15s, border-color 0.15s; }
  #burger:hover { background: var(--surface-hover); border-color: var(--border-hi); }
  #burger span { display: block; width: 15px; height: 1.5px; background: var(--t2); border-radius: 2px; transition: transform 0.25s cubic-bezier(.22,1,.36,1), opacity 0.2s; transform-origin: center; }
  #burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  #burger.open span:nth-child(2) { opacity: 0; }
  #burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  #drawer { position: fixed; top: 56px; left: 0; right: 0; background: rgba(20,18,11,0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 16px clamp(20px, 5vw, 32px) 24px; z-index: 99; transform: translateY(-8px); opacity: 0; visibility: hidden; pointer-events: none; transition: transform 0.25s cubic-bezier(.22,1,.36,1), opacity 0.2s, visibility 0.2s; }
  #drawer.open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: all; }
  .drawer-link { display: block; padding: 12px 0; font-size: 15px; color: var(--t2); text-decoration: none; border-bottom: 1px solid rgba(237,236,236,0.05); transition: color 0.12s; }
  .drawer-link:hover { color: var(--t1); }
  .drawer-cta { display: block; margin-top: 14px; padding: 12px; font-size: 14px; font-weight: 500; color: var(--bg); background: var(--wa); border: none; border-radius: 999px; cursor: pointer; text-decoration: none; text-align: center; }

  @media (max-width: 768px) { .nav-links, .nav-right { display: none; } #burger { display: flex; } }

  /* ================= HERO ================= */
  .hero-wrap { padding: 132px clamp(20px, 5vw, 44px) 0; position: relative; z-index: 1; }
  .hero-inner { max-width: 960px; margin: 0 auto; text-align: center; }

  .eyebrow { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; color: var(--t3); border: 1px solid var(--border); border-radius: 999px; padding: 5px 12px 5px 8px; margin-bottom: 22px; }
  .eyebrow .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); animation: pulse-dot 2.2s ease infinite; }
  @keyframes pulse-dot { 0%,100% { box-shadow: 0 0 0 0 rgba(232,168,84,0.5); } 50% { box-shadow: 0 0 0 4px rgba(232,168,84,0); } }

  .hero-h1 { font-size: clamp(30px, 4.4vw, 46px); font-weight: 600; line-height: 1.14; letter-spacing: -0.02em; color: var(--t1); max-width: 720px; margin: 0 auto 16px; }
  .hero-h1 .hl { color: var(--accent); }
  .hero-sub { font-size: 15.5px; color: var(--t3); font-weight: 400; max-width: 520px; margin: 0 auto 30px; line-height: 1.6; }
  .hero-ctas { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
  .hero-note { font-size: 12px; color: var(--t4); margin-bottom: 18px; }
  .future-proof { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin: 0 auto 54px; max-width: 720px; }
  .proof-chip { display: inline-flex; align-items: center; gap: 6px; min-height: 30px; padding: 7px 10px; border: 1px solid var(--border); border-radius: 999px; background: rgba(237,236,236,0.035); color: var(--t2); font-size: 11.5px; line-height: 1.2; }
  .proof-chip b { color: var(--accent); font-weight: 600; }
  @media (max-width: 560px) { .future-proof { justify-content: flex-start; margin-bottom: 42px; } .proof-chip { width: 100%; justify-content: center; } }

  .pill { display: inline-flex; align-items: center; gap: 7px; padding: 10px 20px; border-radius: 999px; font-size: 14px; font-weight: 500; line-height: 1.3; text-decoration: none; transition: transform .15s ease, background .15s ease, border-color .15s ease; white-space: nowrap; cursor: pointer; }
  .pill-wa { background: var(--wa); color: #06250f; }
  .pill-wa:hover { transform: translateY(-1px); background: #3ae07c; }
  .pill-ghost { background: transparent; color: var(--t2); border: 1px solid var(--border); }
  .pill-ghost:hover { border-color: var(--border-hi); color: var(--t1); }

  /* Process panel */
  .panel { max-width: 860px; margin: 0 auto; border: 1px solid var(--border); border-radius: 14px; background: linear-gradient(180deg, var(--bg-2), var(--bg)); box-shadow: 0 40px 100px -30px rgba(0,0,0,0.65), 0 0 0 1px rgba(237,236,236,0.02); overflow: hidden; text-align: left; opacity: 0; transform: translateY(18px) scale(.98); transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1); }
  .panel.in { opacity: 1; transform: translateY(0) scale(1); }

  .panel-bar { display: flex; align-items: center; gap: 14px; padding: 9px 14px; border-bottom: 1px solid var(--border); background: rgba(237,236,236,0.02); }
  .traffic { display: flex; gap: 6px; }
  .traffic span { width: 9px; height: 9px; border-radius: 50%; background: rgba(237,236,236,0.12); }
  .panel-tabs { display: flex; gap: 2px; margin-left: 6px; }
  .ptab { font-size: 12px; color: var(--t4); background: transparent; border: none; padding: 5px 10px; border-radius: 6px; cursor: pointer; font-family: inherit; transition: color .15s, background .15s; }
  .ptab:hover { color: var(--t2); }
  .ptab.active { color: var(--t1); background: var(--surface-hi); }
  .panel-status { margin-left: auto; font-size: 11px; color: var(--t4); display: flex; align-items: center; gap: 6px; }
  .panel-status .ld { width: 5px; height: 5px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 6px rgba(111,206,138,0.6); }

  .panel-content { padding: 20px 22px; min-height: 240px; }
  .step-list { display: flex; flex-direction: column; gap: 14px; }
  .step { display: flex; gap: 12px; align-items: flex-start; }
  .step-num { width: 24px; height: 24px; border-radius: 7px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; background: rgba(232,168,84,0.16); color: var(--accent); font-family: 'JetBrains Mono', monospace; }
  .step-title { font-size: 13.5px; font-weight: 500; color: var(--t1); margin-bottom: 3px; }
  .step-desc { font-size: 12.5px; color: var(--t3); line-height: 1.55; }
  .step-time { font-size: 11px; color: var(--accent); font-family: 'JetBrains Mono', monospace; margin-top: 4px; }
  .view { display: none; }
  .view.active { display: block; }
  .panel { display: none; }

  /* 2027 signature hero: agent-readiness console */
  .agent-console { max-width: 980px; margin: 0 auto; text-align: left; border: 1px solid rgba(237,236,236,0.12); border-radius: 18px; background: linear-gradient(135deg, rgba(237,236,236,0.075), rgba(20,18,11,0.78) 42%, rgba(6,182,212,0.06)); box-shadow: 0 44px 120px -34px rgba(0,0,0,0.78), 0 0 0 1px rgba(232,168,84,0.06); overflow: hidden; opacity: 0; transform: translateY(18px) scale(.985); transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1); }
  .agent-console * { min-width: 0; }
  .agent-console.in { opacity: 1; transform: translateY(0) scale(1); }
  .agent-top { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-bottom: 1px solid var(--border); background: rgba(0,0,0,0.18); }
  .agent-title { font-size: 12px; color: var(--t3); font-family: 'JetBrains Mono', monospace; white-space: nowrap; }
  .agent-live { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; font-size: 11px; color: var(--ok); font-family: 'JetBrains Mono', monospace; }
  .agent-live::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 12px rgba(111,206,138,0.75); }
  .agent-grid { display: grid; grid-template-columns: 1.06fr .94fr; min-height: 330px; }
  .agent-left { padding: clamp(18px, 3vw, 30px); border-right: 1px solid var(--border); position: relative; overflow: hidden; }
  .agent-left::after { content: ''; position: absolute; right: -80px; top: -80px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(6,182,212,0.12), transparent 68%); pointer-events: none; }
  .agent-kicker { font-size: 11px; color: var(--accent); font-family: 'JetBrains Mono', monospace; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
  .agent-query { font-size: clamp(20px, 2.8vw, 30px); line-height: 1.18; letter-spacing: -0.015em; font-family: 'Syne', 'Outfit', sans-serif; color: var(--t1); max-width: 520px; margin-bottom: 18px; }
  .agent-title, .agent-query, .agent-line, .readiness-score { overflow-wrap: anywhere; }
  .agent-query span { color: var(--accent); }
  .agent-output { display: grid; gap: 10px; }
  .agent-line { display: flex; align-items: center; gap: 10px; min-height: 38px; padding: 9px 10px; border: 1px solid rgba(237,236,236,0.08); border-radius: 10px; background: rgba(0,0,0,0.16); color: var(--t2); font-size: 12.5px; }
  .agent-line strong { color: var(--t1); font-weight: 600; }
  .agent-check { width: 18px; height: 18px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(111,206,138,0.14); color: var(--ok); font-size: 11px; flex-shrink: 0; }
  .agent-right { padding: clamp(18px, 3vw, 30px); display: flex; flex-direction: column; gap: 14px; justify-content: space-between; background: rgba(0,0,0,0.12); }
  .readiness-card { border: 1px solid rgba(232,168,84,0.25); border-radius: 14px; padding: 16px; background: linear-gradient(180deg, rgba(232,168,84,0.09), rgba(237,236,236,0.025)); }
  .readiness-label { font-size: 11px; color: var(--t4); font-family: 'JetBrains Mono', monospace; margin-bottom: 8px; }
  .readiness-score { display: flex; align-items: baseline; gap: 8px; color: var(--accent); font-family: 'JetBrains Mono', monospace; margin-bottom: 10px; }
  .readiness-score b { font-size: 38px; line-height: 1; }
  .readiness-score span { font-size: 12px; color: var(--t3); }
  .readiness-bar { height: 7px; border-radius: 999px; background: rgba(237,236,236,0.08); overflow: hidden; }
  .readiness-bar span { display: block; width: 94%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--accent), #06b6d4); }
  .agent-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .agent-action { min-height: 74px; border: 1px solid var(--border); border-radius: 12px; padding: 12px; background: rgba(237,236,236,0.035); }
  .agent-action b { display: block; color: var(--t1); font-size: 12.5px; margin-bottom: 5px; }
  .agent-action span { color: var(--t3); font-size: 11.5px; line-height: 1.45; }
  .agent-cta-row { display: flex; gap: 10px; flex-wrap: wrap; }
  .agent-mini { display: inline-flex; align-items: center; justify-content: center; min-height: 38px; padding: 9px 13px; border-radius: 999px; border: 1px solid var(--border-hi); color: var(--t2); text-decoration: none; font-size: 12.5px; }
  .agent-mini.primary { border-color: var(--wa); background: var(--wa); color: #06250f; font-weight: 600; }
  @media (max-width: 820px) { .agent-grid { grid-template-columns: 1fr; } .agent-left { border-right: 0; border-bottom: 1px solid var(--border); } }
  @media (max-width: 560px) { .agent-top { align-items: flex-start; } .agent-live { display: none; } .agent-actions { grid-template-columns: 1fr; } .agent-cta-row .agent-mini { width: 100%; } }

  .visibility-os { max-width: 1120px; margin: 0 auto; padding: 72px clamp(20px, 5vw, 44px) 24px; position: relative; z-index: 1; }
  .visibility-shell { border: 1px solid var(--border-hi); background: linear-gradient(180deg, rgba(237,236,236,0.055), rgba(237,236,236,0.025)); border-radius: 18px; overflow: hidden; box-shadow: 0 28px 90px rgba(0,0,0,0.32); }
  .visibility-head { display: grid; grid-template-columns: 1.05fr .95fr; gap: 1px; background: var(--border); }
  .visibility-title, .visibility-map { background: rgba(20,18,11,0.92); padding: 28px; }
  .visibility-title .sec-label { margin-bottom: 12px; }
  .visibility-title h2 { font-size: clamp(26px, 3.4vw, 40px); line-height: 1.08; max-width: 560px; margin-bottom: 14px; }
  .visibility-title p { color: var(--t3); font-size: 14.5px; line-height: 1.65; max-width: 560px; }
  .visibility-map { display: grid; gap: 10px; align-content: center; }
  .map-row { display: grid; grid-template-columns: 122px 1fr; gap: 10px; align-items: stretch; }
  .map-source { border: 1px solid var(--border); border-radius: 10px; padding: 10px; color: var(--accent); font-family: 'JetBrains Mono', monospace; font-size: 10.5px; text-transform: uppercase; background: rgba(232,168,84,0.07); }
  .map-result { border: 1px solid var(--border); border-radius: 10px; padding: 10px 12px; color: var(--t2); font-size: 12.5px; line-height: 1.45; background: rgba(0,0,0,0.18); }
  .visibility-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); }
  .visibility-card { background: rgba(20,18,11,0.92); min-height: 210px; padding: 22px; }
  .visibility-num { color: var(--accent); font-family: 'JetBrains Mono', monospace; font-size: 11px; margin-bottom: 18px; }
  .visibility-card h3 { font-family: 'Inter', sans-serif; font-size: 15px; line-height: 1.25; margin-bottom: 10px; letter-spacing: 0; }
  .visibility-card p { color: var(--t3); font-size: 12.5px; line-height: 1.55; margin-bottom: 14px; }
  .visibility-card span { display: inline-flex; border: 1px solid var(--border-hi); border-radius: 999px; padding: 5px 8px; color: var(--t2); font-size: 10.5px; }
  .sector-strip { display: flex; flex-wrap: wrap; gap: 8px; padding: 18px 22px; background: rgba(20,18,11,0.92); border-top: 1px solid var(--border); }
  .sector-strip a, .sector-strip span { border: 1px solid var(--border); border-radius: 999px; padding: 7px 10px; color: var(--t2); font-size: 11.5px; background: rgba(237,236,236,0.035); text-decoration: none; transition: border-color .18s ease, color .18s ease, background .18s ease; }
  .sector-strip a:hover { color: var(--accent); border-color: rgba(232,168,84,0.55); background: rgba(232,168,84,0.08); }
  .sector-strip .new-sector { color: var(--accent); border-color: rgba(232,168,84,0.45); background: rgba(232,168,84,0.08); }
  @media (max-width: 920px) { .visibility-head, .visibility-grid { grid-template-columns: 1fr; } .visibility-card { min-height: auto; } }
  @media (max-width: 560px) { .visibility-title, .visibility-map { padding: 22px; } .map-row { grid-template-columns: 1fr; } }

  /* Growth OS */
  #growth-os { position: relative; z-index: 1; padding: 96px clamp(20px, 5vw, 44px); }
  .growth-shell { max-width: 1180px; margin: 0 auto; border: 1px solid var(--border-hi); border-radius: 16px; overflow: hidden; background: linear-gradient(180deg, rgba(237,236,236,0.055), rgba(0,0,0,0.12)); box-shadow: 0 32px 90px -44px rgba(0,0,0,0.72); }
  .growth-head { display: grid; grid-template-columns: 1.05fr .95fr; gap: 24px; padding: 34px; border-bottom: 1px solid var(--border); background: rgba(20,18,11,0.68); }
  .growth-title h2 { font-size: clamp(25px, 3.4vw, 38px); font-weight: 700; line-height: 1.12; color: var(--t1); max-width: 720px; }
  .growth-title p { margin-top: 14px; color: var(--t3); font-size: 14.5px; line-height: 1.65; max-width: 700px; }
  .growth-proof { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; align-self: stretch; }
  .growth-proof div { border: 1px solid var(--border); border-radius: 10px; padding: 14px; background: rgba(237,236,236,0.035); }
  .growth-proof b { display: block; color: var(--accent); font-family: 'JetBrains Mono', monospace; font-size: 20px; margin-bottom: 5px; }
  .growth-proof span { display: block; color: var(--t3); font-size: 11.5px; line-height: 1.35; }
  .growth-lanes { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1px; background: var(--border); }
  .lane-main, .lane-side { background: rgba(20,18,11,0.9); padding: 28px; }
  .lane-label { color: var(--accent); font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
  .pipeline { display: grid; gap: 10px; }
  .pipe-row { display: grid; grid-template-columns: 112px 1fr auto; gap: 12px; align-items: center; border: 1px solid var(--border); border-radius: 10px; padding: 12px; background: rgba(237,236,236,0.03); }
  .pipe-stage { color: var(--t4); font-family: 'JetBrains Mono', monospace; font-size: 10.5px; text-transform: uppercase; }
  .pipe-copy b { display: block; color: var(--t1); font-size: 13px; margin-bottom: 3px; }
  .pipe-copy span { display: block; color: var(--t3); font-size: 12px; line-height: 1.45; }
  .pipe-status { min-width: 74px; text-align: center; color: var(--bg); background: var(--ok); border-radius: 999px; padding: 5px 8px; font-family: 'JetBrains Mono', monospace; font-size: 10.5px; }
  .pipe-status.next { color: var(--t1); background: rgba(125,183,255,0.16); border: 1px solid rgba(125,183,255,0.32); }
  .sector-board { display: grid; gap: 10px; }
  .sector-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; border: 1px solid var(--border); border-radius: 10px; padding: 12px; background: rgba(237,236,236,0.03); color: var(--t2); text-decoration: none; transition: border-color .18s ease, transform .18s ease, background .18s ease; }
  .sector-row:hover { transform: translateY(-1px); border-color: rgba(232,168,84,0.45); background: rgba(232,168,84,0.055); }
  .sector-row b { display: block; color: var(--t1); font-size: 13px; margin-bottom: 3px; }
  .sector-row span { display: block; color: var(--t4); font-size: 11.5px; }
  .sector-row em { font-style: normal; color: var(--accent); font-family: 'JetBrains Mono', monospace; font-size: 10.5px; }
  .radar-panel { margin-top: 16px; border: 1px solid rgba(232,168,84,0.22); border-radius: 12px; padding: 14px; background: rgba(232,168,84,0.045); }
  .radar-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
  .radar-top b { color: var(--t1); font-size: 13px; }
  .radar-top button { border: 1px solid rgba(232,168,84,0.42); background: rgba(232,168,84,0.12); color: var(--accent); border-radius: 999px; padding: 7px 10px; font: inherit; font-size: 11.5px; cursor: pointer; white-space: nowrap; }
  .radar-output { color: var(--t3); font-size: 11.8px; line-height: 1.55; display: grid; gap: 8px; }
  .radar-output strong { color: var(--t1); }
  .radar-output code { color: var(--accent); font-family: 'JetBrains Mono', monospace; font-size: 10.5px; }
  .radar-list { display: flex; flex-wrap: wrap; gap: 6px; }
  .radar-list span { border: 1px solid var(--border); border-radius: 999px; padding: 5px 7px; background: rgba(0,0,0,0.16); color: var(--t2); font-size: 10.5px; }
  .growth-footer { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: space-between; padding: 18px 28px; background: rgba(11,28,18,0.24); border-top: 1px solid rgba(111,206,138,0.18); }
  .growth-footer p { color: var(--t3); font-size: 12.5px; line-height: 1.5; max-width: 720px; }
  .growth-footer a { color: var(--bg); background: var(--accent); text-decoration: none; border-radius: 999px; padding: 10px 16px; font-weight: 600; font-size: 13px; white-space: nowrap; }
  @media (max-width: 920px) { .growth-head, .growth-lanes { grid-template-columns: 1fr; } .growth-proof { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 620px) { #growth-os { padding: 70px 16px; } .growth-head, .lane-main, .lane-side { padding: 22px; } .growth-proof, .pipe-row { grid-template-columns: 1fr; } .pipe-status { width: fit-content; } .growth-footer { align-items: stretch; } .growth-footer a { text-align: center; width: 100%; } }

  #demo-builder * { min-width: 0; }
  #demoMockupUrl { overflow-wrap: anywhere; white-space: normal; }
  .brief-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
  .brief-field label { display: block; font-size: 10.5px; color: var(--accent); font-family: 'JetBrains Mono', monospace; text-transform: uppercase; margin-bottom: 6px; font-weight: 600; }
  .brief-input { width: 100%; background: var(--bg-2); border: 1px solid var(--border-hi); border-radius: 8px; padding: 10px 12px; color: var(--t1); font-size: 12.5px; outline: none; font-family: inherit; }
  .brief-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,168,84,0.1); }
  .lead-gate { display: none; border: 1px solid rgba(37,211,102,0.28); background: linear-gradient(135deg, rgba(37,211,102,0.09), rgba(232,168,84,0.06)); border-radius: 10px; padding: 12px; margin: 0 0 14px; }
  .lead-gate.open { display: block; }
  .lead-gate-title { color: var(--t1); font-size: 12.5px; font-weight: 700; margin-bottom: 5px; }
  .lead-gate-copy { color: var(--t3); font-size: 11.5px; line-height: 1.45; margin-bottom: 10px; }
  .lead-gate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 8px; }
  .lead-gate small { display: block; color: var(--t4); font-size: 10.5px; line-height: 1.35; }
  .attempt-meter { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--t4); font-size: 10.5px; font-family: 'JetBrains Mono', monospace; margin: -4px 0 12px; }
  .attempt-meter b { color: var(--accent); font-weight: 700; }
  @media (max-width: 620px) { .brief-grid { grid-template-columns: 1fr; } }
  @media (max-width: 620px) { .lead-gate-grid { grid-template-columns: 1fr; } }
  @media (max-width: 760px) {
    #demo-builder [style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
    #demoDynamicContent [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
    #demo-builder [style*="justify-content: space-between"] { justify-content: flex-start !important; gap: 10px !important; flex-wrap: wrap !important; }
  }

  /* Real work strip */
  #work .wrap { max-width: 1080px; margin: 0 auto; padding: 8px clamp(20px, 5vw, 44px) 96px; position: relative; z-index: 1; }
  #work .sec-head { margin-bottom: 40px; }
  .trust { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; perspective: 1000px; }
  .t-card.flagship { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); align-items: stretch; }
  .t-card.flagship .t-shot-wrap { border-bottom: 0; border-right: 1px solid var(--border); }
  .t-card.flagship .t-body { display: flex; flex-direction: column; justify-content: center; min-height: 360px; padding: clamp(24px, 4vw, 44px); }
  .t-card.flagship .t-kind { font-size: 12px; }
  .t-card.flagship .t-quote { font-size: clamp(20px, 3vw, 34px); line-height: 1.14; color: var(--t1); font-family: 'Syne', 'Outfit', sans-serif; letter-spacing: -0.02em; }
  .t-card.flagship .t-who { margin-top: 22px; }
  @media (max-width: 900px) { .t-card.flagship { grid-template-columns: 1fr; } .t-card.flagship .t-shot-wrap { border-right: 0; border-bottom: 1px solid var(--border); } .t-card.flagship .t-body { min-height: auto; } }
  @media (max-width: 620px) { .trust { grid-template-columns: 1fr; } }
  .t-card { position: relative; background: var(--bg); opacity: 0; transform: translateY(12px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .2s ease-out, background .2s, box-shadow .2s; transform-style: preserve-3d; }
  .t-card.in { opacity: 1; transform: translateY(0); }
  .t-card:hover { background: var(--bg-2); z-index: 2; box-shadow: 0 12px 32px rgba(0,0,0,0.5); }
  .t-shot-wrap { overflow: hidden; border-bottom: 1px solid var(--border); position: relative; }
  .t-shot { display: block; width: 100%; aspect-ratio: 8 / 5; object-fit: cover; object-position: top; transition: transform .5s cubic-bezier(.22,1,.36,1); }
  .t-card:hover .t-shot { transform: scale(1.04); }
  .t-preview-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); backdrop-filter: blur(2px); opacity: 0; display: flex; align-items: center; justify-content: center; transition: opacity .25s ease; z-index: 3; }
  .t-card:hover .t-preview-overlay { opacity: 1; }
  .t-preview-btn { background: rgba(234, 179, 8, 0.9); color: #000; font-size: 11px; font-weight: 600; padding: 7px 14px; border-radius: 20px; text-transform: uppercase; letter-spacing: .05em; border: none; cursor: pointer; transform: translateY(6px); transition: transform .25s ease, background .2s; }
  .t-card:hover .t-preview-btn { transform: translateY(0); }
  .t-preview-btn:hover { background: #fff; }
  .t-body { padding: 22px 20px; }
  .t-kind { font-size: 11px; color: var(--accent); font-family: 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
  .t-quote { font-size: 13px; color: var(--t2); line-height: 1.6; margin-bottom: 12px; }
  .t-who { font-size: 12px; color: var(--t3); }
  .t-who a { color: var(--t2); text-decoration: none; border-bottom: 1px solid var(--border-hi); position: relative; z-index: 4; }
  .t-who a:hover { color: var(--t1); }
  .experience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-top: 16px; }
  .experience-card { background: rgba(20,18,11,0.96); padding: 20px; min-height: 188px; }
  .experience-card b { display: block; color: var(--t1); font-size: 14px; line-height: 1.25; margin-bottom: 8px; }
  .experience-card p { color: var(--t3); font-size: 12.5px; line-height: 1.55; margin-bottom: 14px; }
  .experience-card span { display: inline-flex; border: 1px solid var(--border-hi); border-radius: 999px; padding: 5px 8px; color: var(--accent); font-family: 'JetBrains Mono', monospace; font-size: 10.5px; }
  @media (max-width: 920px) { .experience-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px) { .experience-grid { grid-template-columns: 1fr; } .experience-card { min-height: auto; } }

  /* C2 & C3: View Transitions & Scroll-driven Animations */
  @view-transition { navigation: auto; }
  @supports (animation-timeline: scroll()) {
    .trust .t-card, .faq-item {
      animation: scrollFadeUp linear both;
      animation-timeline: view();
      animation-range: entry 5% cover 25%;
    }
    @keyframes scrollFadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
  }

  .hero-bottom-space { height: 80px; }

  /* ================= SECTIONS ================= */
  .sec-head { max-width: 620px; margin: 0 auto; text-align: center; }
  .sec-label { font-size: 12px; color: var(--accent); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 12px; font-weight: 500; }
  .sec-h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 500; letter-spacing: -0.02em; line-height: 1.25; color: var(--t1); margin-bottom: 12px; }
  .sec-sub { font-size: 14.5px; color: var(--t3); line-height: 1.6; }

  /* NOT: bu section'lar .wrap class'ini KENDILERI tasiyor (<section id="pricing" class="wrap">),
     bu yuzden selector bitisik yazilmali — descendant (#pricing .wrap) hicbir seyle eslesmiyordu. */
  #included.wrap, #pricing.wrap { margin: 0 auto; padding: 96px clamp(20px, 5vw, 44px); position: relative; z-index: 1; }
  #included.wrap { max-width: 1180px; }
  #pricing.wrap { max-width: 1080px; }
  #included .sec-head { margin-bottom: 56px; }
  #pricing .sec-head { margin-bottom: 48px; }

  /* Included bento */
  .bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
  .card { grid-column: span 2; background: linear-gradient(180deg, var(--bg-2), var(--bg)); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; position: relative; opacity: 0; transform: translateY(16px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1), border-color .2s; }
  .card.in { opacity: 1; transform: translateY(0); }
  .card:hover { border-color: var(--border-hi); }
  .c-wide { grid-column: span 3; }
  @media (max-width: 900px) { .bento { grid-template-columns: 1fr; } .card, .c-wide { grid-column: span 1; } }

  .card-head { padding: 16px 18px; }
  .card-icn { width: 26px; height: 26px; border-radius: 7px; background: var(--surface-hi); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--accent); margin-bottom: 12px; }
  .card-title { font-size: 14.5px; font-weight: 500; color: var(--t1); margin-bottom: 5px; }
  .card-desc { font-size: 12.5px; color: var(--t3); line-height: 1.55; }

  /* Estimator card */
  .est-body { padding: 0 18px 18px; }
  .est-num { font-size: 26px; font-weight: 500; letter-spacing: -0.01em; color: var(--t1); margin-bottom: 2px; font-variant-numeric: tabular-nums; }
  .est-num span { font-size: 13px; color: var(--t4); font-weight: 400; }
  .est-cost { font-size: 12px; color: var(--t3); margin-bottom: 8px; font-variant-numeric: tabular-nums; }
  .est-cost b { color: var(--accent); font-weight: 500; }
  .est-time { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; color: var(--accent); font-family: 'JetBrains Mono', monospace; margin-bottom: 14px; }
  input[type="range"].est-slider { -webkit-appearance: none; width: 100%; height: 3px; border-radius: 2px; background: var(--border); outline: none; }
  input[type="range"].est-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 13px; height: 13px; border-radius: 50%; background: var(--accent); cursor: pointer; box-shadow: 0 0 0 3px rgba(232,168,84,0.18); }
  input[type="range"].est-slider::-moz-range-thumb { width: 13px; height: 13px; border-radius: 50%; background: var(--accent); border: none; cursor: pointer; }

  /* Timeline card */
  .tl-cmds { display: flex; gap: 6px; padding: 0 18px; margin-bottom: 12px; }
  .tcmd { font-size: 11.5px; font-family: 'JetBrains Mono', monospace; color: var(--t3); background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 5px 9px; cursor: pointer; transition: background .15s, color .15s, border-color .15s; }
  .tcmd:hover { color: var(--t2); }
  .tcmd.active { color: var(--bg); background: var(--t1); border-color: var(--t1); }
  .tl-out { margin: 0 18px 18px; background: rgba(0,0,0,0.22); border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; font-family: 'JetBrains Mono', monospace; font-size: 11.5px; line-height: 1.85; color: var(--t3); min-height: 92px; }
  .tl-out .ok { color: var(--ok); }
  .tl-out .pr { color: var(--accent); }

  /* ================= PRICING ================= */
  .grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start; }
  @media (max-width: 860px) { .grid3 { grid-template-columns: 1fr; } }

  .pcard { background: linear-gradient(180deg, var(--bg-2), var(--bg)); border: 1px solid var(--border); border-radius: 16px; padding: 26px 24px 24px; position: relative; opacity: 0; transform: translateY(16px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1), border-color .2s; }
  .pcard.in { opacity: 1; transform: translateY(0); }
  .pcard.featured { border-color: rgba(232,168,84,0.42); background: linear-gradient(180deg, rgba(232,168,84,0.06), var(--bg)); }
  @media (min-width: 861px) { .pcard.featured.in { transform: translateY(-10px); } }

  .pop-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); font-size: 11px; font-weight: 500; color: var(--bg); background: var(--accent); border-radius: 999px; padding: 4px 12px; letter-spacing: .01em; white-space: nowrap; }

  .pname { font-size: 14.5px; font-weight: 500; color: var(--t1); margin-bottom: 4px; }
  .pdesc { font-size: 12.5px; color: var(--t3); line-height: 1.5; margin-bottom: 20px; min-height: 32px; }
  .pprice-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
  .pprice { font-size: 34px; font-weight: 500; letter-spacing: -0.01em; color: var(--t1); font-variant-numeric: tabular-nums; }
  .pprice .from { font-size: 13px; color: var(--t4); font-weight: 400; }
  .pperiod { font-size: 13px; color: var(--t4); }
  .pnote { font-size: 11.5px; color: var(--t4); margin-bottom: 22px; min-height: 16px; }

  .pcta { display: inline-flex; align-items: center; justify-content: center; gap: 7px; width: 100%; padding: 10px 14px; border-radius: 999px; font-size: 13.5px; font-weight: 500; cursor: pointer; border: 1px solid var(--border-hi); background: var(--surface-hi); color: var(--t1); transition: background .15s, border-color .15s, transform .1s; margin-bottom: 22px; font-family: inherit; text-decoration: none; }
  .pcta:hover { border-color: var(--t3); }
  .pcta:active { transform: scale(0.98); }
  .pcta.primary { background: var(--wa); border-color: var(--wa); color: #06250f; }
  .pcta.primary:hover { background: #3ae07c; border-color: #3ae07c; }

  .pfeat { display: flex; flex-direction: column; gap: 9px; }
  .pfeat li { list-style: none; display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; color: var(--t2); line-height: 1.5; }
  .pfeat li .fi { flex-shrink: 0; width: 14px; height: 14px; margin-top: 1px; display: flex; align-items: center; justify-content: center; font-size: 9.5px; color: var(--ok); }

  .guarantee { max-width: 620px; margin: 40px auto 0; text-align: center; font-size: 13px; color: var(--t3); line-height: 1.7; border: 1px solid var(--border); border-radius: 12px; padding: 18px 22px; background: var(--surface); }
  .guarantee b { color: var(--t1); font-weight: 500; }

  /* Kurucu blogu — anonimligi kirar, 48 saatin NEDENINI acikliyor */
  .founder { max-width: 620px; margin: 14px auto 0; display: flex; gap: 16px; align-items: flex-start; text-align: left; border: 1px solid var(--border); border-radius: 12px; padding: 18px 22px; background: var(--surface); }
  .founder-mark { flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'JetBrains Mono', monospace; font-size: 14px; font-weight: 500; color: var(--accent); background: rgba(232,168,84,0.14); border: 1px solid rgba(232,168,84,0.3); }
  .founder-name { font-size: 13.5px; font-weight: 500; color: var(--t1); margin-bottom: 6px; }
  .founder-p { font-size: 13px; color: var(--t3); line-height: 1.65; }
  .founder-loc { font-size: 12px; color: var(--t4); margin-top: 8px; }
  @media (max-width: 520px) { .founder { flex-direction: column; gap: 12px; } }

  /* ================= FINAL CTA ================= */
  #contact { position: relative; z-index: 1; }
  #contact .wrap { max-width: 720px; margin: 0 auto; padding: 40px clamp(20px, 5vw, 44px) 110px; text-align: center; }
  .cta-h2 { font-size: clamp(24px, 3.4vw, 36px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 14px; }
  .cta-sub { font-size: 14.5px; color: var(--t3); margin-bottom: 28px; line-height: 1.6; }
  .cta-row { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
  .cta-mail { font-size: 13px; color: var(--t3); margin-top: 18px; }
  .cta-mail a { color: var(--t2); text-decoration: none; border-bottom: 1px solid var(--border-hi); }
  .cta-mail a:hover { color: var(--t1); }

  /* ================= FOOTER ================= */
  footer { position: relative; z-index: 1; border-top: 1px solid var(--border); }
  footer::before { content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(237,236,236,0.18), transparent); }
  .foot-wrap { max-width: 1180px; margin: 0 auto; padding: 32px clamp(20px, 5vw, 44px); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
  .foot-brand { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 400; color: var(--t2); }
  .foot-brand .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
  .foot-copy { font-size: 12px; color: var(--t4); }
  .foot-links { max-width: 1180px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 44px) 28px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 18px; font-size: 12.5px; color: var(--t4); border-top: 1px solid var(--border); padding-top: 22px; }
  .foot-links strong { color: var(--t3); font-weight: 500; letter-spacing: .02em; }
  .foot-links a { color: var(--t2); text-decoration: none; border-bottom: 1px solid transparent; transition: color .18s ease, border-color .18s ease; }
  .foot-links a:hover { color: var(--accent); border-bottom-color: var(--accent); }

  /* ================= FAQ ================= */
  #faq.wrap { max-width: 760px; margin: 0 auto; padding: 96px clamp(20px, 5vw, 44px); position: relative; z-index: 1; }
  #faq .sec-head { margin-bottom: 40px; }
  .faq-list { display: flex; flex-direction: column; gap: 10px; }
  .faq-item { border: 1px solid var(--border); border-radius: 12px; background: var(--surface); overflow: hidden; opacity: 0; transform: translateY(12px); transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1), border-color .2s; }
  .faq-item.in { opacity: 1; transform: translateY(0); }
  .faq-item:hover { border-color: var(--border-hi); }
  .faq-item summary { list-style: none; cursor: pointer; padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 14.5px; font-weight: 500; color: var(--t1); transition: background .15s; }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary .faq-ic { font-size: 18px; font-weight: 400; color: var(--t3); flex-shrink: 0; transition: transform 0.2s ease; }
  .faq-item[open] summary .faq-ic { transform: rotate(45deg); }
  .faq-item summary:hover { background: var(--surface-hi); }
  .faq-a { padding: 0 20px 18px; font-size: 13.5px; color: var(--t3); line-height: 1.6; }

  /* ================= AEO SCANNER ================= */
  #aeo-scan.wrap { max-width: 1080px; margin: 0 auto; padding: 96px clamp(20px, 5vw, 44px); position: relative; z-index: 1; }
  .aeo-box { padding: 0; }
  .aeo-grid { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 12px; margin-top: 24px; align-items: end; }
  .aeo-url-field { grid-column:1/-1; }
  .review-areas { margin:18px 0; color:var(--t2); font-size:13px; }
  .review-areas summary { cursor:pointer; }
  @media (max-width: 860px) { .aeo-grid { grid-template-columns: 1fr; } }
  .aeo-input-group label { display: block; font-size: 12px; color: var(--t3); margin-bottom: 6px; font-weight: 500; }
  .aeo-input { width: 100%; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 10px 14px; color: var(--t1); font-size: 13.5px; font-family: inherit; transition: border-color 0.15s, background 0.15s; }
  .aeo-input:focus { border-color: var(--accent); outline: none; background: var(--surface-hi); }
  .aeo-btn { padding: 10px 20px; font-size: 13.5px; font-weight: 500; color: var(--bg); background: var(--accent); border: none; border-radius: 8px; cursor: pointer; transition: transform 0.15s, background 0.15s; white-space: nowrap; height: 42px; display: inline-flex; align-items: center; justify-content: center; gap: 6px; }
  .aeo-btn:hover { background: var(--accent-hi); transform: translateY(-1px); }
  .agent-bench { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 22px; }
  .bench-agent { min-height: 132px; border: 1px solid var(--border); border-radius: 10px; background: rgba(237,236,236,0.035); padding: 13px; display: flex; flex-direction: column; justify-content: space-between; }
  .bench-agent .agent-role { color: var(--t1); font-size: 12.5px; font-weight: 700; line-height: 1.25; }
  .bench-agent p { color: var(--t3); font-size: 11.5px; line-height: 1.45; margin-top: 7px; }
  .bench-agent span { color: var(--accent); font-size: 10.5px; font-family: 'JetBrains Mono', monospace; margin-top: 10px; }
  .bench-scope { display: grid; gap: 4px; margin-top: 9px; color: var(--t4); font-size: 10.5px; line-height: 1.35; }
  .bench-scope b { color: var(--t2); font-weight: 600; }
  @media (max-width: 960px) { .agent-bench { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px) { .agent-bench { grid-template-columns: 1fr; } }
  
  .aeo-results { margin-top: 28px; display: none; }
  .aeo-results.show { display: block; }
  .aeo-summary-card { background: var(--surface); border: 1px solid var(--border-hi); border-radius: 12px; padding: 20px; margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
  .aeo-score-badge { font-size: 28px; font-weight: 600; color: var(--accent); font-family: 'JetBrains Mono', monospace; }
  .mentor-panel { display: grid; grid-template-columns: 1.2fr .8fr; gap: 12px; margin-bottom: 20px; }
  .mentor-card { border: 1px solid var(--border); border-radius: 12px; background: rgba(237,236,236,0.035); padding: 16px; }
  .mentor-kicker { color: var(--accent); font-family: 'JetBrains Mono', monospace; font-size: 10.5px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
  .mentor-card p { color: var(--t3); font-size: 12.5px; line-height: 1.55; }
  .mentor-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .mentor-metric { border: 1px solid var(--border); border-radius: 9px; padding: 10px; background: rgba(0,0,0,0.12); }
  .mentor-metric b { display: block; color: var(--t1); font-size: 13px; margin-bottom: 4px; }
  .mentor-metric span { color: var(--t4); font-size: 10.5px; line-height: 1.35; }
  @media (max-width: 760px) { .mentor-panel { grid-template-columns: 1fr; } .mentor-metrics { grid-template-columns: 1fr; } }
  .aeo-models-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-bottom: 20px; }
  @media (max-width: 1120px) { .aeo-models-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 768px) { .aeo-models-grid { grid-template-columns: 1fr; } }
  .m-card { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 14px; font-size: 12.5px; min-height: 230px; display: flex; flex-direction: column; }
  .m-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
  .m-name { font-weight: 500; color: var(--t1); }
  .m-role { color: var(--t4); font-size: 11px; line-height: 1.4; margin-bottom: 8px; }
  .m-chain { color: var(--accent); font-size: 10.5px; font-family: 'JetBrains Mono', monospace; line-height: 1.45; margin-bottom: 8px; }
  .m-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 8px; }
  .m-mini { border: 1px solid var(--border); border-radius: 7px; padding: 6px; color: var(--t4); font-size: 10.5px; line-height: 1.3; }
  .m-mini b { display: block; color: var(--t2); font-weight: 600; margin-bottom: 2px; }
  .m-badge { font-size: 11px; padding: 2px 8px; border-radius: 999px; font-weight: 500; font-family: 'JetBrains Mono', monospace; }
  .m-badge.vis { background: rgba(111,206,138,0.15); color: var(--ok); border: 1px solid rgba(111,206,138,0.3); }
  .m-badge.hid { background: rgba(217,120,120,0.15); color: var(--bad); border: 1px solid rgba(217,120,120,0.3); }
  .m-snippet { font-size: 11.5px; color: var(--t3); line-height: 1.5; font-family: 'JetBrains Mono', monospace; max-height: 122px; overflow-y: auto; background: rgba(0,0,0,0.2); padding: 8px; border-radius: 6px; border: 1px solid var(--border); margin-top: auto; }
  
  .disclaimer-box { background: rgba(232,168,84,0.06); border: 1px solid rgba(232,168,84,0.25); border-radius: 10px; padding: 14px 18px; font-size: 12.5px; color: var(--t3); line-height: 1.6; margin-top: 18px; }
  .disclaimer-box b { color: var(--accent); }

  /* AI SEARCH MODAL */
  #navSearchBtn { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; font-size: 12.5px; color: var(--t3); background: var(--surface); border: 1px solid var(--border); border-radius: 999px; cursor: pointer; transition: color 0.15s, border-color 0.15s; }
  #navSearchBtn:hover { color: var(--t1); border-color: var(--border-hi); }
  
  .search-modal { position: fixed; inset: 0; z-index: 105; background: rgba(20,18,11,0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); display: flex; align-items: flex-start; justify-content: center; padding-top: 10vh; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.2s ease, visibility 0.2s ease; }
  .search-modal.open { opacity: 1; visibility: visible; pointer-events: all; }
  .search-box { width: 90%; max-width: 600px; background: var(--bg-2); border: 1px solid var(--border-hi); border-radius: 16px; padding: 20px; box-shadow: 0 30px 90px rgba(0,0,0,0.7); }
  .s-input-wrap { display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--border); padding-bottom: 12px; margin-bottom: 16px; }
  .s-input { flex: 1; background: transparent; border: none; font-size: 15px; color: var(--t1); font-family: inherit; }
  .s-input:focus { outline: none; }
  .s-res-list { display: flex; flex-direction: column; gap: 10px; max-height: 350px; overflow-y: auto; }
  .s-item { padding: 12px 14px; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; text-decoration: none; display: block; transition: background 0.15s, border-color 0.15s; }
  .s-item:hover { background: var(--surface-hi); border-color: var(--border-hi); }
  .s-item-title { font-size: 14px; font-weight: 500; color: var(--t1); margin-bottom: 3px; display: flex; align-items: center; justify-content: space-between; }
  .s-item-desc { font-size: 12.5px; color: var(--t3); line-height: 1.5; }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .panel, .t-card, .card, .pcard, .faq-item { opacity: 1 !important; transform: none !important; }
  }

  /* ================= FLOATING WHATSAPP CTA ================= */
  .wa-float { position: fixed; right: clamp(16px, 4vw, 28px); bottom: clamp(16px, 4vw, 28px); z-index: 90; display: flex; align-items: center; gap: 9px; padding: 13px; border-radius: 999px; background: var(--wa); color: #06250f; text-decoration: none; box-shadow: 0 12px 30px -8px rgba(0,0,0,0.55), 0 0 0 1px rgba(0,0,0,0.08); opacity: 0; transform: translateY(14px) scale(.94); pointer-events: none; transition: opacity .35s cubic-bezier(.22,1,.36,1), transform .35s cubic-bezier(.22,1,.36,1), background .15s; }
  .wa-float.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
  .wa-float:hover { background: #3ae07c; }
  .wa-float svg { width: 22px; height: 22px; flex-shrink: 0; display: block; }
  .wa-float .wa-label { font-size: 13px; font-weight: 600; max-width: 0; overflow: hidden; white-space: nowrap; transition: max-width .3s ease; }
  .wa-float:hover .wa-label, .wa-float:focus-visible .wa-label { max-width: 130px; }
  @media (max-width: 640px) { .wa-float .wa-label { display: none; } }
  @media (prefers-reduced-motion: reduce) { .wa-float { transition: opacity .01ms; transform: none !important; } }
