/* ============================================================
   TurChat — Public site (2026, v3 "HubSpot-style")
   Parlak/temiz, dost premium, gerçek ürün görselleri, bol animasyon.
   Yeşil marka korunur. Hepsi .tc-site altında izole (admin etkilenmez).
   ============================================================ */

.tc-site {
  --bg:        #ffffff;
  --bg-soft:   #f5f8fa;   /* HubSpot tarzı serin gri-mavi bölüm zemini */
  --bg-soft2:  #eef3f7;
  --ink:       #1b2a3a;
  --ink-2:     #33475b;
  --ink-soft:  #5c7080;
  --ink-faint: #8aa0b2;
  --line:      #e2eaf0;
  --line-soft: #eef3f7;

  --accent:      #0f9d58;   /* canlı ama profesyonel yeşil */
  --accent-2:    #12b866;
  --accent-3:    #19d07f;
  --accent-ink:  #0a6b3d;
  --accent-wash: #e9f8f0;
  --grad: linear-gradient(120deg, #0c8f4f 0%, #13a95f 100%);
  --grad-bright: linear-gradient(120deg, #0f9d58 0%, #2bd07e 100%);

  /* spot renkler (özellik ikonları — canlılık) */
  --c-green: #0f9d58; --c-green-bg: #e9f8f0;
  --c-blue:  #2a7de1; --c-blue-bg:  #e8f1fd;
  --c-amber: #f5a623; --c-amber-bg: #fdf3e1;
  --c-teal:  #11b3a8; --c-teal-bg:  #e4f7f5;
  --c-purple:#7c5cdb; --c-purple-bg:#efeafb;
  --c-pink:  #e0568a; --c-pink-bg:  #fceaf2;

  --gold: #f5a623;

  --display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --sans:    'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --r-sm: 10px; --r: 16px; --r-lg: 20px; --r-xl: 28px; --r-pill: 999px;
  --sh-xs: 0 1px 2px rgba(27,42,58,.06);
  --sh-sm: 0 4px 16px rgba(27,42,58,.08);
  --sh-md: 0 12px 36px rgba(27,42,58,.10);
  --sh-lg: 0 30px 70px rgba(27,42,58,.14);
  --sh-accent: 0 14px 34px rgba(15,157,88,.30);

  --ease: cubic-bezier(.4, 0, .2, 1);
  --spring: cubic-bezier(.34, 1.56, .64, 1);
  --nav-h: 80px;

  font-family: var(--sans);
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.tc-site *, .tc-site *::before, .tc-site *::after { box-sizing: border-box; }
.tc-site h1, .tc-site h2, .tc-site h3, .tc-site h4, .tc-site p, .tc-site ul, .tc-site figure { margin: 0; }
.tc-site a { color: inherit; text-decoration: none; }
.tc-site img { max-width: 100%; display: block; }
.tc-site ul { list-style: none; padding: 0; }
body.tc-site { margin: 0; overflow-x: hidden; background: linear-gradient(180deg, #d6efe2 0%, #e9f6ef 20%, #f6fbf8 46%, #ebf7f0 78%, #cfebda 100%); background-attachment: fixed; }

.tc-container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.tc-section { padding: 88px 0; }
.tc-section--tight { padding: 60px 0; }
.tc-bg-2 { background: var(--bg-soft); }

/* ---- Type ---- */
.tc-site h1, .tc-site h2, .tc-site h3 { font-family: var(--display); font-weight: 700; line-height: 1.12; letter-spacing: -.02em; color: var(--ink); }
.tc-display { font-family: var(--display); font-weight: 800; font-size: clamp(2.6rem, 5.2vw, 4.3rem); line-height: 1.05; letter-spacing: -.03em; color: var(--ink); }
.tc-h2 { font-size: clamp(1.9rem, 3.4vw, 2.85rem); letter-spacing: -.025em; }
.tc-h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
.tc-lead { font-family: var(--sans); font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.62; color: var(--ink-soft); }
.tc-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: .8rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--accent-ink); background: var(--accent-wash); padding: 7px 15px; border-radius: var(--r-pill); }
.tc-grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---- Buttons ---- */
.tc-btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--sans); font-size: .98rem; font-weight: 600; padding: 14px 26px; border-radius: var(--r-pill); border: 1px solid transparent; cursor: pointer; transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .2s var(--ease); white-space: nowrap; }
.tc-btn i { transition: transform .25s var(--ease); }
.tc-btn:hover i.bi-arrow-right { transform: translateX(4px); }
.tc-btn-primary, .tc-btn-primary i { color: #fff !important; }
.tc-btn-primary { background: var(--grad); box-shadow: var(--sh-sm); }
.tc-btn-primary:hover { transform: translateY(-3px); box-shadow: var(--sh-accent); }
.tc-btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.tc-btn-ghost:hover { border-color: var(--ink-faint); transform: translateY(-3px); box-shadow: var(--sh-sm); }
.tc-btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.tc-btn-block { width: 100%; }

/* ============================================================ NAVBAR */
.tc-nav { position: sticky; top: 0; z-index: 1000; padding: 14px 16px 0; transition: padding-top .3s var(--ease); }
.tc-nav.scrolled { padding-top: 8px; }
.tc-nav .tc-container { position: relative; display: flex; align-items: center; gap: 24px; height: 62px; padding: 0 14px 0 26px; background: rgba(255,255,255,.5); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); border: 1px solid rgba(255,255,255,.6); border-radius: var(--r-pill); box-shadow: 0 8px 30px rgba(27,42,58,.09); transition: background .3s var(--ease), box-shadow .3s var(--ease); }
/* .tc-nav.scrolled .tc-container — kaydırınca beyaz arka plan/gölge kaldırıldı (mobilde tam genişlik band oluşturuyordu) */
.tc-brand { display: inline-flex; align-items: center; gap: 9px; font-family: var(--display); font-size: 1.55rem; font-weight: 700; color: var(--ink); letter-spacing: -.02em; text-decoration: none; }
.tc-site a.tc-brand, .tc-site a.tc-brand:hover { color: var(--ink); }
.tc-brand-text { line-height: 1; white-space: nowrap; }
.tc-brand-ico, .tc-brand-a { display: inline-block; fill: currentColor; overflow: visible; }
/* Sol ikon — her zaman orijinal yeşil */
.tc-brand-ico { width: 1.1em; height: 1.16em; flex-shrink: 0; color: #00ad77; transition: transform .4s var(--spring); }
.tc-brand:hover .tc-brand-ico { transform: scale(1.06) rotate(-6deg); }
/* 3D PNG marka ikonu (header/footer) — biraz daha büyük + hafif gölge */
.tc-brand-ico-3d { width: 1.55em; height: 1.55em; object-fit: contain; margin-right: -1px; filter: drop-shadow(0 2px 4px rgba(15,157,88,.30)); }
/* 'a' yerine inline ikon — yazıyla birebir aynı renk (currentColor), hover'da yeşil */
.tc-brand-a { width: .53em; height: .56em; vertical-align: -.06em; margin: 0 .02em; color: var(--ink); transition: color .25s ease, transform .4s var(--spring); }
.tc-brand:hover .tc-brand-a { color: #00ad77; transform: scale(1.06); }
.tc-nav-links { position: absolute; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 2px; }
.tc-nav-links a { position: relative; font-size: .95rem; font-weight: 500; color: var(--ink-2); padding: 8px 14px; border-radius: var(--r-pill); transition: color .2s var(--ease); }
.tc-nav-links a::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px; background: var(--accent); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .26s var(--ease); }
.tc-nav-links a:hover { color: var(--accent-ink); } .tc-nav-links a:hover::after { transform: scaleX(1); }
.tc-nav-links a.active { color: var(--accent-ink); } .tc-nav-links a.active::after { transform: scaleX(1); }
.tc-nav-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.tc-nav-login { font-weight: 600; color: var(--ink); padding: 10px 16px; border-radius: var(--r-pill); transition: background .2s var(--ease); }
.tc-nav-login:hover { background: var(--bg-soft); }
.tc-nav-search { width: 40px; height: 40px; border-radius: 50%; border: 0; background: transparent; color: var(--ink-2); display: inline-flex; align-items: center; justify-content: center; font-size: 1.12rem; cursor: pointer; transition: background .2s var(--ease); }
.tc-nav-search:hover { background: var(--bg-soft); color: var(--accent-ink); }
.tc-search { position: sticky; top: var(--nav-h); z-index: 999; max-height: 0; overflow: hidden; background: transparent; transition: max-height .3s var(--ease); }
.tc-search.open { max-height: 90px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--sh-sm); }
.tc-search form { display: flex; align-items: center; gap: 12px; padding: 16px 0; }
.tc-search .bi-search { color: var(--ink-faint); font-size: 1.15rem; }
.tc-search input { flex: 1; border: 0; outline: none; background: transparent; font-family: var(--sans); font-size: 1.1rem; color: var(--ink); }
.tc-search button { border: 0; background: transparent; color: var(--ink-faint); cursor: pointer; font-size: 1rem; padding: 6px; }
.tc-search button:hover { color: var(--ink); }
.tc-burger { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; align-items: center; justify-content: center; }
.tc-burger span, .tc-burger span::before, .tc-burger span::after { display: block; width: 20px; height: 2px; background: var(--ink); transition: transform .25s var(--ease), opacity .2s var(--ease); }
.tc-burger span { position: relative; }
.tc-burger span::before, .tc-burger span::after { content: ""; position: absolute; left: 0; }
.tc-burger span::before { top: -6px; } .tc-burger span::after { top: 6px; }
.tc-burger.open span { background: transparent; }
.tc-burger.open span::before { transform: translateY(6px) rotate(45deg); }
.tc-burger.open span::after { transform: translateY(-6px) rotate(-45deg); }
.tc-mobile-menu { display: none; position: fixed; inset: var(--nav-h) 0 0 0; z-index: 999; background: #fff; padding: 24px; flex-direction: column; gap: 6px; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .25s var(--ease), transform .25s var(--ease); overflow-y: auto; }
.tc-mobile-menu.open { opacity: 1; transform: none; pointer-events: auto; }
.tc-mobile-menu a { font-size: 1.15rem; font-weight: 500; padding: 14px 8px; border-bottom: 1px solid var(--line-soft); color: var(--ink); }
.tc-mobile-menu .tc-btn { margin-top: 14px; }

/* ============================================================ HERO */
.tc-hero { position: relative; padding: 64px 0 32px; background: radial-gradient(1100px 520px at 75% -5%, var(--accent-wash), transparent 60%); overflow: hidden; }
.tc-hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; }
.tc-hero-copy .tc-display { margin-top: 20px; }
.tc-hero-copy .tc-lead { margin-top: 20px; max-width: 520px; }
.tc-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.tc-hero-note { margin-top: 16px; font-size: .9rem; color: var(--ink-faint); display: flex; align-items: center; gap: 7px; }
.tc-hero-note i { color: var(--accent); }

/* ---- App window mockup (gerçek ürün hissi) ---- */
.tc-window { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--sh-lg); overflow: hidden; }
.tc-window-bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.tc-window-bar i { width: 11px; height: 11px; border-radius: 50%; background: #d6dee6; display: block; }
.tc-window-bar i:nth-child(1){background:#ff5f57;} .tc-window-bar i:nth-child(2){background:#febc2e;} .tc-window-bar i:nth-child(3){background:#28c840;}
.tc-window-url { margin-left: 10px; font-size: .76rem; color: var(--ink-faint); background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill); padding: 4px 12px; }

.tc-hero-visual { position: relative; }
.tc-hero-visual .tc-window { animation: tc-float 6s ease-in-out infinite; }
/* mini chat inside window */
.tc-chat { padding: 20px; background: var(--bg-soft); min-height: 300px; display: flex; flex-direction: column; gap: 11px; }
.tc-chat-row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.tc-chat-row .tc-ava { width: 34px; height: 34px; border-radius: 50%; background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center; }
.tc-chat-row b { font-family: var(--display); font-size: .92rem; color: var(--ink); }
.tc-chat-row small { font-size: .72rem; color: var(--accent); display: flex; align-items: center; gap: 5px; }
.tc-chat-row small::before { content:""; width:7px; height:7px; border-radius:50%; background: var(--accent-3); box-shadow:0 0 0 0 rgba(43,208,126,.6); animation: tc-pulse 2s infinite; }
.tc-msg { max-width: 82%; padding: 10px 14px; border-radius: 14px; font-size: .88rem; line-height: 1.45; opacity: 0; transform: translateY(8px); animation: tc-in .5s var(--ease) forwards; }
.tc-msg.bot { background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 4px; align-self: flex-start; color: var(--ink-2); }
.tc-msg.usr { background: var(--accent); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.tc-msg.m1{animation-delay:.4s;} .tc-msg.m2{animation-delay:1.2s;} .tc-msg.m3{animation-delay:2s;}
.tc-dots { align-self: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 14px; border-bottom-left-radius: 4px; padding: 12px 15px; display: inline-flex; gap: 5px; opacity: 0; animation: tc-in .4s ease 2.7s forwards; }
.tc-dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--ink-faint); animation: tc-typing 1.2s infinite; }
.tc-dots i:nth-child(2){animation-delay:.18s;} .tc-dots i:nth-child(3){animation-delay:.36s;}
/* floating stat chips */
.tc-chip { position: absolute; background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-md); border-radius: var(--r); padding: 12px 16px; display: flex; align-items: center; gap: 11px; }
.tc-chip .tc-ci { width: 38px; height: 38px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.tc-chip b { font-family: var(--display); font-size: 1.05rem; color: var(--ink); display: block; line-height: 1.1; }
.tc-chip small { font-size: .74rem; color: var(--ink-faint); }
.tc-chip { z-index: 2; }
.tc-chip.c2 { bottom: 10%; right: -28px; animation: tc-float 7s ease-in-out infinite .6s; }
.tc-chip.c3 { top: 13%; right: -30px; animation: tc-float 6.4s ease-in-out infinite .3s; }
.tc-hero-visual .tc-window { position: relative; z-index: 1; }

/* Vercel tarzı: mouse'la oynayan yeşil ışıma + merkezi 3D ikon */
.tc-hero-glow { position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(340px circle at var(--mx, 74%) var(--my, 42%), rgba(15,157,88,.24), rgba(15,157,88,.07) 40%, transparent 62%); }
.tc-hero > .tc-container { position: relative; z-index: 1; }
.tc-hero-3d { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; min-height: 460px; padding: 0 4%; overflow: visible; }
.tc-hero-3d img { width: min(86%, 400px); height: auto; filter: drop-shadow(0 0 36px rgba(15,157,88,.48)) drop-shadow(0 24px 52px rgba(15,157,88,.22)); animation: tc-float 6s ease-in-out infinite; }

/* ============================================================ LOGO BAR + MARQUEE */
.tc-logos { padding: 44px 0; background: #fff; }
.tc-logos-label { text-align: center; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-faint); margin-bottom: 26px; }
.tc-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.tc-marquee-track { display: flex; align-items: center; gap: 64px; width: max-content; animation: tc-scroll 30s linear infinite; }
.tc-marquee:hover .tc-marquee-track { animation-play-state: paused; }
.tc-marquee-track img { height: 38px; width: auto; max-width: 150px; object-fit: contain; opacity: .6; filter: grayscale(1); transition: opacity .3s var(--ease), filter .3s var(--ease); }
.tc-marquee-track img:hover { opacity: 1; filter: none; }
@keyframes tc-scroll { to { transform: translateX(-50%); } }

/* ============================================================ STATS */
.tc-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.tc-stat-num { font-family: var(--display); font-size: clamp(1.9rem, 3vw, 2.7rem); font-weight: 800; letter-spacing: -.03em; color: var(--accent); line-height: 1; }
.tc-stat-label { margin-top: 8px; font-size: .92rem; color: var(--ink-soft); }
@media (max-width: 600px) { .tc-stats { grid-template-columns: 1fr 1fr; gap: 26px 16px; } }

/* ============================================================ SECTION HEADER */
.tc-sec-head { max-width: 700px; margin: 0 auto 60px; text-align: center; }
.tc-sec-head .tc-lead { margin-top: 16px; }

/* ============================================================ ALTERNATING FEATURE ROWS */
.tc-frow { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.tc-frow + .tc-frow { margin-top: 110px; }
.tc-frow.reverse .tc-frow-media { order: -1; }
.tc-frow-copy .tc-eyebrow { margin-bottom: 18px; }
.tc-frow-copy h2 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); }
.tc-frow-copy p { margin: 18px 0; color: var(--ink-soft); font-size: 1.08rem; line-height: 1.65; }
.tc-frow-copy p + p { margin-top: 14px; }
.tc-flist { margin-top: 18px; display: flex; flex-direction: column; gap: 14px; }
.tc-flist li { display: flex; align-items: center; gap: 11px; font-size: 1rem; line-height: 1.5; color: var(--ink-2); }
.tc-flist i { color: var(--accent); font-size: 1.15rem; flex-shrink: 0; }
.tc-frow-link { margin-top: 22px; display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--accent-ink); }
.tc-frow-link:hover { gap: 11px; }
.tc-frow-media { position: relative; }

/* stats/analytics mockup */
.tc-statmock { padding: 22px; background: #fff; }
.tc-statmock-top { display: flex; gap: 12px; margin-bottom: 18px; }
.tc-statbox { flex: 1; background: var(--bg-soft); border-radius: var(--r); padding: 14px; }
.tc-statbox span { font-size: .72rem; color: var(--ink-faint); }
.tc-statbox b { font-family: var(--display); font-size: 1.4rem; color: var(--ink); display: block; margin-top: 3px; }
.tc-bars { display: flex; align-items: flex-end; gap: 10px; height: 130px; padding-top: 10px; }
.tc-bars div { flex: 1; background: var(--grad); border-radius: 7px 7px 0 0; transform-origin: bottom; animation: tc-grow 1s var(--ease) both; }
.tc-bars div:nth-child(2){animation-delay:.1s;} .tc-bars div:nth-child(3){animation-delay:.2s;} .tc-bars div:nth-child(4){animation-delay:.3s;} .tc-bars div:nth-child(5){animation-delay:.4s;} .tc-bars div:nth-child(6){animation-delay:.5s;}

/* inbox/leads mockup */
.tc-inbox { padding: 18px; background: #fff; }
.tc-lead-row { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: var(--r); transition: background .2s var(--ease); }
.tc-lead-row + .tc-lead-row { border-top: 1px solid var(--line-soft); }
.tc-lead-row:hover { background: var(--bg-soft); }
.tc-lead-ava { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.tc-lead-row b { font-size: .92rem; color: var(--ink); display: block; }
.tc-lead-row span { font-size: .8rem; color: var(--ink-faint); }
.tc-lead-row .tc-lead-ava, .tc-lead-row .tc-lead-ava i { color: #fff; font-size: 1rem; }
.tc-lead-tag { margin-left: auto; font-size: .72rem; font-weight: 600; padding: 4px 10px; border-radius: var(--r-pill); }

/* ============================================================ FEATURE GRID */
.tc-grid { display: grid; gap: 22px; }
.tc-grid-3 { grid-template-columns: repeat(3, 1fr); }
.tc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.tc-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.tc-card-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.45rem; margin-bottom: 18px; transition: transform .35s var(--spring); }
.tc-card:hover .tc-card-icon { transform: scale(1.12) rotate(-6deg); }
.tc-card h3 { font-size: 1.18rem; margin-bottom: 9px; }
.tc-card p { color: var(--ink-soft); font-size: .96rem; line-height: 1.58; }

/* ============================================================ TEAM */
.tc-team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 22px; }
.tc-team-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 22px; text-align: center; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); }
.tc-team-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: var(--accent-wash2); }
.tc-team-ava { position: relative; width: 104px; height: 104px; border-radius: 50%; margin: 0 auto 18px; background: var(--grad); display: flex; align-items: center; justify-content: center; overflow: hidden; box-shadow: 0 8px 22px rgba(15,157,88,.22); }
.tc-team-card .tc-team-ini { font-family: var(--display); font-weight: 700; font-size: 1.9rem; color: #fff; letter-spacing: .01em; }
.tc-team-ava img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tc-team-card b { display: block; font-family: var(--display); font-size: 1.08rem; color: var(--ink); }
.tc-team-role { display: block; font-size: .9rem; color: var(--ink-soft); margin-top: 4px; }
.tc-team-card.is-founder { border-color: var(--accent); box-shadow: 0 10px 30px rgba(15,157,88,.12); }
.tc-team-li { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; margin-top: 14px; border-radius: 50%; border: 1px solid var(--line); color: var(--ink-soft); font-size: 1rem; transition: all .25s var(--spring); }
.tc-team-li:hover { background: #0a66c2; color: #fff; border-color: #0a66c2; transform: translateY(-2px); }

/* ============================================================ TESTIMONIALS */
.tc-quote { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; display: flex; flex-direction: column; height: 100%; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.tc-quote:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.tc-quote-stars { color: var(--gold); font-size: .95rem; margin-bottom: 16px; letter-spacing: 2px; }
.tc-quote-text { font-size: 1.06rem; line-height: 1.6; color: var(--ink); flex: 1; }
.tc-quote-foot { display: flex; align-items: center; gap: 13px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line-soft); }
.tc-quote-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 700; font-size: 1.15rem; flex-shrink: 0; }
.tc-quote-who b { display: block; font-size: .96rem; } .tc-quote-who span { font-size: .84rem; color: var(--ink-faint); }
.tc-quote-tag { margin-left: auto; font-size: .74rem; font-weight: 600; color: var(--accent-ink); background: var(--accent-wash); padding: 4px 11px; border-radius: var(--r-pill); }
.tc-quote-link { margin-top: 13px; font-size: .87rem; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; }
.tc-quote-link:hover { gap: 10px; }

/* ============================================================ FAQ */
.tc-faq { max-width: 760px; margin: 0 auto; }
.tc-faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 12px; transition: box-shadow .25s var(--ease); }
.tc-faq-item.open { box-shadow: var(--sh-sm); }
.tc-faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-family: var(--display); font-size: 1.08rem; font-weight: 600; color: var(--ink); }
.tc-faq-q i { font-size: 1.1rem; color: var(--accent); transition: transform .3s var(--ease); flex-shrink: 0; }
.tc-faq-item.open .tc-faq-q i { transform: rotate(45deg); }
.tc-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.tc-faq-a p { padding: 0 22px 22px; color: var(--ink-soft); line-height: 1.65; }

/* ============================================================ CTA */
.tc-cta { background: var(--grad); border-radius: var(--r-xl); padding: 76px 40px; text-align: center; position: relative; overflow: hidden; }
.tc-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 240px at 20% 0%, rgba(255,255,255,.22), transparent 60%); }
.tc-cta h2, .tc-cta p, .tc-cta .tc-btn { position: relative; z-index: 1; color: #fff; }
.tc-cta p { margin-top: 14px; font-size: 1.12rem; color: rgba(255,255,255,.9); }
.tc-cta .tc-btn { margin-top: 30px; background: #fff; color: var(--accent-ink); }
.tc-cta .tc-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.18); color: var(--accent-ink); }

/* ============================================================ FOOTER (zipchat-stili: açık zemin, çok sütun, dev filigran) */
.tc-footer { position: relative; background: linear-gradient(180deg, #f0f9f4 0%, #ddf2e6 45%, #c7e8d6 100%); padding: 60px 16px 0; overflow: hidden; }
.tc-footer .tc-container { position: relative; overflow: hidden; background: rgba(255,255,255,.55); -webkit-backdrop-filter: saturate(180%) blur(22px); backdrop-filter: saturate(180%) blur(22px); border: 1px solid rgba(255,255,255,.7); border-radius: 28px; box-shadow: 0 18px 50px rgba(27,42,58,.10); padding: 56px 52px; }
.tc-footer .tc-container::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(440px circle at var(--mx, 50%) var(--my, 50%), rgba(15,157,88,.16), transparent 62%); opacity: 0; transition: opacity .4s var(--ease); }
.tc-footer .tc-container:hover::before { opacity: 1; }
.tc-footer-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 36px; }
.tc-footer-brand .tc-brand { margin-bottom: 16px; }
.tc-footer-desc { font-size: .92rem; line-height: 1.6; max-width: 280px; color: var(--ink-soft); }
.tc-footer-mini { margin: 18px 0; display: flex; flex-direction: column; gap: 8px; }
.tc-footer-mini a { color: var(--ink-soft); font-size: .88rem; transition: color .2s var(--ease); }
.tc-footer-mini a:hover { color: var(--accent); }
.tc-footer-addr { display: flex; align-items: flex-start; gap: 9px; color: var(--ink-soft); font-size: .86rem; line-height: 1.5; margin: 16px 0; }
.tc-footer-addr i { color: var(--accent); margin-top: 2px; }
.tc-foot-legal { display: flex; flex-direction: column; gap: 9px; margin: 18px 0; }
.tc-foot-legal a { color: var(--ink-soft); font-size: .9rem; transition: color .2s var(--ease); }
.tc-foot-legal a:hover { color: var(--accent); }
.tc-foot-copy { color: var(--ink-faint); font-size: .85rem; margin-top: 16px; line-height: 1.5; }
.tc-foot-ai { margin: 20px 0 4px; }
.tc-foot-ai-label { display: flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 11px; }
.tc-foot-ai-label i { color: var(--accent); }
.tc-foot-ai-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tc-foot-ai-row a { font-size: .82rem; font-weight: 600; color: var(--ink-2); background: #fff; border: 1px solid var(--line); padding: 6px 13px; border-radius: var(--r-pill); transition: border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease); }
.tc-foot-ai-row a:hover { border-color: var(--accent); color: var(--accent-ink); transform: translateY(-2px); }
.tc-social { display: flex; gap: 9px; }
.tc-social a { width: 38px; height: 38px; border-radius: 11px; border: 1px solid var(--line); background: #fff; display: flex; align-items: center; justify-content: center; color: var(--ink-soft); transition: all .25s var(--spring); }
.tc-social a:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-3px); }
.tc-footer-col h5 { font-family: var(--display); font-size: .82rem; letter-spacing: .02em; color: var(--ink-faint); margin-bottom: 16px; font-weight: 600; }
.tc-footer-col li { margin-bottom: 11px; }
.tc-footer-col a { color: var(--ink-2); font-size: .92rem; transition: color .2s var(--ease); }
.tc-footer-col a:hover { color: var(--accent); }
.tc-footer-bottom { margin-top: 44px; padding: 22px 0 24px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; color: var(--ink-faint); font-size: .88rem; }
.tc-footer-wordmark { display: flex; align-items: center; justify-content: center; gap: .1em; font-family: var(--display); font-weight: 800; font-size: clamp(5rem, 19vw, 17rem); line-height: .8; letter-spacing: -.05em; color: var(--accent); opacity: .17; user-select: none; pointer-events: none; margin-top: 28px; padding-bottom: 8px; }
.tc-footer-wordmark img { height: .8em; width: auto; }
@media (max-width: 980px) { .tc-footer-grid { grid-template-columns: 1fr 1fr 1fr; } .tc-footer-brand { grid-column: 1 / -1; } }
@media (max-width: 560px) { .tc-footer-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================ REVEAL + KEYFRAMES */
.tc-reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.tc-reveal.in { opacity: 1; transform: none; }
.tc-reveal[data-d="1"]{transition-delay:.1s;} .tc-reveal[data-d="2"]{transition-delay:.2s;} .tc-reveal[data-d="3"]{transition-delay:.3s;}
.tc-reveal-r { opacity: 0; transform: translateX(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.tc-reveal-r.in { opacity: 1; transform: none; }
.tc-reveal-l { opacity: 0; transform: translateX(-34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.tc-reveal-l.in { opacity: 1; transform: none; }

@keyframes tc-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes tc-pulse { 0% { box-shadow: 0 0 0 0 rgba(43,208,126,.6);} 70% { box-shadow: 0 0 0 7px rgba(43,208,126,0);} 100% { box-shadow: 0 0 0 0 rgba(43,208,126,0);} }
@keyframes tc-in { to { opacity: 1; transform: none; } }
@keyframes tc-typing { 0%,60%,100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-5px); opacity: 1; } }
@keyframes tc-grow { from { transform: scaleY(0); } }

@media (prefers-reduced-motion: reduce) {
  .tc-site * { animation: none !important; }
  .tc-reveal, .tc-reveal-l, .tc-reveal-r { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ============================================================ RESPONSIVE (mobile-first kontrolü) */
@media (max-width: 992px) {
  .tc-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .tc-hero-visual { max-width: 440px; margin: 8px auto 0; }
  .tc-frow, .tc-frow.reverse { grid-template-columns: 1fr; gap: 36px; }
  .tc-frow.reverse .tc-frow-media { order: 0; }
  .tc-frow + .tc-frow { margin-top: 72px; }
  .tc-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .tc-chip { display: none; }
  .tc-hero-3d { min-height: 300px; }
  /* Zipchat tarzı mobil: TEK cam bar yerine AYRI yüzen pill'ler — ortada sayfa zemini (boşluk) görünür */
  .tc-nav-links, .tc-nav-actions .tc-nav-login, .tc-nav-search { display: none; }
  .tc-nav .tc-container, .tc-nav.scrolled .tc-container { gap: 12px; padding: 0; background: transparent !important; border: none !important; box-shadow: none !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; border-radius: 0 !important; }
  /* Logo: buz gibi donuk cam pill (opak beyaz DEĞİL — arka plan içinden geçer) */
  .tc-nav .tc-brand { background: rgba(255,255,255,.28); -webkit-backdrop-filter: saturate(160%) blur(22px); backdrop-filter: saturate(160%) blur(22px); border: 1px solid rgba(255,255,255,.45); border-radius: var(--r-pill); padding: 9px 18px 9px 13px; box-shadow: 0 6px 22px rgba(27,42,58,.07); }
  /* Sağ grup: CTA pill + yuvarlak burger (her biri ayrı yüzen öğe) */
  .tc-nav-actions { margin-left: auto; gap: 8px; }
  .tc-nav-actions .tc-btn { padding: 12px 20px; font-size: .92rem; box-shadow: 0 8px 24px rgba(27,42,58,.14); }
  .tc-burger { display: inline-flex; margin-left: 0; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.45); background: rgba(255,255,255,.28); -webkit-backdrop-filter: saturate(160%) blur(22px); backdrop-filter: saturate(160%) blur(22px); box-shadow: 0 6px 22px rgba(27,42,58,.07); }
  .tc-mobile-menu { display: flex; }
}
@media (max-width: 600px) {
  .tc-container { padding: 0 18px; }
  .tc-section { padding: 60px 0; }
  .tc-grid-3 { grid-template-columns: 1fr; }
  .tc-footer-grid { grid-template-columns: 1fr; }
  .tc-footer .tc-container { padding: 36px 24px; }
  .tc-cta { padding: 48px 20px; }
  .tc-hero-cta .tc-btn { flex: 1; }
  .tc-logos-row { gap: 30px; }
  .tc-statmock-top { gap: 8px; }
  .tc-statbox { padding: 11px 9px; }
  .tc-statbox b { font-size: 1.15rem; }
  .tc-statbox span { font-size: .66rem; }
}
@media (max-width: 480px) {
  .tc-display { font-size: 2.15rem; line-height: 1.12; }
  .tc-h2 { font-size: 1.7rem; }
  .tc-hero { padding: 40px 0 28px; }
  .tc-hero-visual { max-width: 100%; }
  .tc-eyebrow { font-size: .74rem; }
  .tc-footer-wordmark { font-size: clamp(3.2rem, 26vw, 6rem); }
}

/* ============================================================ AUTH (login/register/verify/reset) */
.tc-auth { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; background: radial-gradient(900px 480px at 80% -10%, var(--accent-wash), transparent 60%), var(--bg-soft); position: relative; overflow: hidden; }
.tc-auth::before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(43,208,126,.18), transparent 70%); top: -140px; left: -120px; animation: tc-float 9s ease-in-out infinite; }
.tc-auth-card { position: relative; z-index: 1; width: 100%; max-width: 440px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--sh-lg); padding: 52px 46px; }
.tc-auth-card.wide { max-width: 560px; }
.tc-auth-logo { display: flex; align-items: center; justify-content: center; margin-bottom: 30px; }
.tc-auth-logo img { height: 34px; width: auto; }
.tc-auth-card .tc-auth-title { font-family: var(--display); font-weight: 700; font-size: 1.7rem; line-height: 1.25; text-align: center; color: var(--ink); margin: 0; }
.tc-auth-card .tc-auth-sub { text-align: center; color: var(--ink-soft); font-size: .96rem; line-height: 1.55; margin: 14px 0 32px; }
.tc-field { margin-bottom: 20px; }
.tc-field { margin-bottom: 18px; }
.tc-field > label { display: block; font-size: .9rem; font-weight: 600; color: var(--ink-2); margin-bottom: 7px; }
.tc-input { width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--r); font-size: 1rem; font-family: var(--sans); color: var(--ink); background: var(--bg); transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.tc-input:hover { border-color: var(--ink-faint); }
.tc-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(15,157,88,.12); }
.tc-input-wrap { position: relative; }
.tc-input-wrap .tc-eye { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--ink-faint); cursor: pointer; font-size: 1.1rem; }
.tc-row-between { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.tc-check { display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; line-height: 1.5; color: var(--ink-soft); cursor: pointer; }
.tc-check a { font-size: inherit; }
.tc-check input { width: 17px; height: 17px; accent-color: var(--accent); cursor: pointer; }
.tc-link { color: var(--accent-ink); font-weight: 600; font-size: .92rem; }
.tc-link:hover { color: var(--accent); }
.tc-auth-foot { text-align: center; margin-top: 22px; color: var(--ink-soft); font-size: .94rem; }
.tc-auth-back { display: inline-flex; align-items: center; gap: 6px; color: var(--ink-faint); font-size: .88rem; margin-top: 20px; }
.tc-auth-back:hover { color: var(--accent); }
.tc-alert { display: flex; align-items: center; gap: 9px; padding: 12px 15px; border-radius: var(--r); font-size: .92rem; margin-bottom: 18px; }
.tc-alert-error { background: #fdecec; color: #b3261e; }
.tc-alert-success { background: var(--accent-wash); color: var(--accent-ink); }
.tc-alert-info { background: var(--c-blue-bg); color: var(--c-blue); }
.tc-grid-2c { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .tc-auth-card { padding: 28px 22px; } .tc-grid-2c { grid-template-columns: 1fr; } }

/* ============================================================ PRICING */
.tc-pricing-toggle { display: inline-flex; align-items: center; gap: 4px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 5px; margin: 24px auto 0; }
.tc-pricing-toggle button { border: 0; background: transparent; font-family: var(--sans); font-size: .95rem; font-weight: 600; color: var(--ink-soft); padding: 9px 20px; border-radius: var(--r-pill); cursor: pointer; transition: all .2s var(--ease); }
.tc-pricing-toggle button.on { background: #fff; color: var(--accent-ink); box-shadow: var(--sh-xs); }
.tc-pricing-toggle .tc-save { font-size: .72rem; font-weight: 700; color: var(--accent); margin-left: 5px; }
.tc-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; margin-top: 16px; }
.tc-plan { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: 32px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.tc-plan:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.tc-plan.featured { border-color: var(--accent); box-shadow: var(--sh-md); }
.tc-plan-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-size: .76rem; font-weight: 700; padding: 5px 16px; border-radius: var(--r-pill); letter-spacing: .03em; }
.tc-plan-name { font-family: var(--display); font-size: 1.4rem; font-weight: 700; color: var(--ink); }
.tc-plan-desc { color: var(--ink-soft); font-size: .94rem; margin-top: 6px; min-height: 42px; }
.tc-plan-price { margin: 20px 0; display: flex; align-items: baseline; gap: 4px; }
.tc-plan-price .cur { font-size: 1.3rem; font-weight: 700; color: var(--ink); }
.tc-plan-price .amt { font-family: var(--display); font-size: 2.8rem; font-weight: 800; color: var(--ink); letter-spacing: -.03em; line-height: 1; }
.tc-plan-price .per { color: var(--ink-faint); font-size: .95rem; }
.tc-plan-note { font-size: .84rem; color: var(--ink-faint); margin-top: -8px; margin-bottom: 18px; min-height: 20px; }
.tc-plan-note s { opacity: .7; }
.tc-plan-custom { font-family: var(--display); font-size: 1.8rem; font-weight: 800; color: var(--ink); margin: 20px 0 4px; }
.tc-plan .tc-btn { width: 100%; }
.tc-site .tc-plan-feats { list-style: none; margin: 36px 0 0; padding: 0; }
.tc-plan-flabel { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-faint); font-weight: 600; margin-bottom: 14px; }
/* Asılı girinti: icon absolute, metin/kalın/alt-liste normal akışta -> "Agentic AI — ..." gibi uzun satırlar tek blok akar, sütunlara bölünmez */
.tc-plan-feats li { position: relative; padding-left: 26px; font-size: .94rem; color: var(--ink-2); margin-bottom: 13px; line-height: 1.45; }
.tc-plan-feats li i { position: absolute; left: 0; top: .22em; color: var(--accent); }
.tc-plan-feats li.off { color: var(--ink-faint); } .tc-plan-feats li.off i { color: var(--ink-faint); }
.tc-plan-feats-sub { list-style: none; margin: 8px 0 0 0; padding: 0; }
.tc-plan-feats-sub li { font-size: .86rem; color: var(--ink-soft); margin-bottom: 6px; }
.tc-plan-active { background: var(--accent-wash); color: var(--accent-ink); border: 1px solid var(--accent-wash2); display:flex; align-items:center; justify-content:center; gap:8px; padding:14px; border-radius: var(--r-pill); font-weight:600; }
.tc-plan-chip { background: var(--accent); color: #fff; font-size: .76rem; padding: 2px 9px; border-radius: var(--r-pill); }
.tc-plan-renote { font-size: .84rem; color: var(--ink-soft); text-align: center; margin-top: 10px; }
.tc-pricing-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; margin-top: 44px; color: var(--ink-soft); font-size: .92rem; }
.tc-pricing-meta span { display: inline-flex; align-items: center; gap: 7px; }
.tc-pricing-meta i { color: var(--accent); }
.tc-modal { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(27,42,58,.55); align-items: center; justify-content: center; padding: 20px; }
.tc-modal.open { display: flex; }
.tc-modal-card { width: 100%; max-width: 460px; background: #fff; border-radius: var(--r-xl); box-shadow: var(--sh-lg); padding: 28px; }
.tc-modal-card h3 { font-family: var(--display); font-size: 1.3rem; margin-bottom: 6px; }
.tc-modal-card select, .tc-modal-card input[type=text] { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--r); font-family: var(--sans); margin-top: 12px; }
.tc-modal-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 20px; }
@media (max-width: 920px) { .tc-plans { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } }

/* ============================================================ BLOG */
.tc-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tc-post { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease); display: flex; flex-direction: column; }
.tc-post:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.tc-post-cover { height: 168px; display: flex; align-items: center; justify-content: center; font-size: 2.4rem; color: #fff; }
.tc-post-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.tc-post-cat { font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--accent-ink); margin-bottom: 10px; }
.tc-post h3 { font-size: 1.16rem; line-height: 1.3; }
.tc-post p { color: var(--ink-soft); font-size: .94rem; line-height: 1.55; margin-top: 9px; flex: 1; }
.tc-post-meta { margin-top: 16px; font-size: .84rem; color: var(--ink-faint); display: flex; align-items: center; gap: 8px; }
.tc-newsletter { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 44px; text-align: center; }
.tc-newsletter form { display: flex; gap: 10px; max-width: 440px; margin: 20px auto 0; }
.tc-newsletter input { flex: 1; padding: 13px 16px; border: 1px solid var(--line); border-radius: var(--r-pill); font-family: var(--sans); font-size: 1rem; }
.tc-newsletter input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(15,157,88,.12); }

/* ============================================================ LEGAL / PROSE */
.tc-legal-hero { padding: 64px 0 28px; background: radial-gradient(800px 360px at 70% -10%, var(--accent-wash), transparent 60%); }
.tc-legal-hero .tc-eyebrow { margin-bottom: 16px; }
.tc-legal { max-width: 800px; margin: 0 auto; padding: 8px 0 20px; }
.tc-legal .tc-updated { color: var(--ink-faint); font-size: .9rem; margin-bottom: 32px; }
.tc-legal h2 { font-family: var(--display); font-size: 1.4rem; margin: 36px 0 12px; color: var(--ink); }
.tc-legal h3 { font-family: var(--display); font-size: 1.1rem; margin: 24px 0 8px; color: var(--ink); }
.tc-legal p { color: var(--ink-2); line-height: 1.75; margin-bottom: 14px; }
.tc-legal ul { margin: 0 0 16px; padding-left: 4px; }
.tc-legal ul li { position: relative; padding-left: 24px; margin-bottom: 9px; color: var(--ink-2); line-height: 1.6; }
.tc-legal ul li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.tc-legal a { color: var(--accent-ink); font-weight: 600; }
.tc-legal-toc { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px 26px; margin-bottom: 32px; }
.tc-legal-toc b { display: block; margin-bottom: 10px; font-family: var(--display); }
.tc-legal-toc a { display: block; padding: 5px 0; color: var(--ink-soft); font-weight: 500; }
.tc-legal-toc a:hover { color: var(--accent); }
@media (max-width: 760px) { .tc-blog-grid { grid-template-columns: 1fr; } .tc-newsletter form { flex-direction: column; } .tc-newsletter { padding: 32px 22px; } }
