:root {
  --bg: #07070A;
  --bg-elev: #0E0E12;
  --bg-card: rgba(255, 255, 255, 0.035);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #F5F5F7;
  --text-dim: rgba(245, 245, 247, 0.62);
  --text-faint: rgba(245, 245, 247, 0.38);
  --accent: #FFFFFF;
  --app-anlik: #FF7A59;
  --app-render: #5AC8FA;
  --app-photocabin: #AF52DE;
  --status-live: #34C759;
  --grain: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  color-scheme: dark;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root[data-theme="light"] {
  --bg: #FAFAFC;
  --bg-elev: #FFFFFF;
  --bg-card: rgba(0, 0, 0, 0.025);
  --bg-card-hover: rgba(0, 0, 0, 0.05);
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.15);
  --text: #0A0A0C;
  --text-dim: rgba(10, 10, 12, 0.62);
  --text-faint: rgba(10, 10, 12, 0.38);
  --accent: #000000;
  color-scheme: light;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.015em;
  overflow-x: hidden;
  min-height: 100vh;
}

body.palette-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: var(--grain);
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

body::after {
  content: "";
  position: fixed;
  inset: -20vh -10vw auto auto;
  width: 80vw;
  height: 60vh;
  background: radial-gradient(ellipse at center, rgba(90, 200, 250, 0.12), transparent 60%);
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ——————————————————————————  Menu Bar  —————————————————————————— */

.menubar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 44px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  background: rgba(7, 7, 10, 0.55);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 0.5px solid var(--border);
  font-size: 13px;
}

:root[data-theme="light"] .menubar {
  background: rgba(250, 250, 252, 0.7);
}

.menubar-left,
.menubar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mb-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.mb-brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--status-live);
  box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.55);
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(52, 199, 89, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 199, 89, 0); }
}

.mb-link { color: var(--text-dim); transition: color 0.2s; }
.mb-link:hover { color: var(--text); }

.mb-status {
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
}

.mb-key {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  color: var(--text-dim);
  font-size: 12px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  transition: background 0.2s, color 0.2s;
}
.mb-key:hover { background: var(--bg-card-hover); color: var(--text); }

.mb-clock {
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
  font-size: 13px;
}

.mb-theme {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: var(--text-dim);
  transition: background 0.2s, color 0.2s;
}
.mb-theme:hover { background: var(--bg-card); color: var(--text); }
.mb-theme svg { width: 16px; height: 16px; fill: currentColor; }

.mb-lang {
  min-width: 32px;
  height: 28px;
  padding: 0 10px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.mb-lang:hover {
  background: var(--bg-card-hover);
  color: var(--text);
  border-color: var(--border-strong);
}

.mb-lang[aria-current="page"] {
  color: var(--text);
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  pointer-events: none;
}

@media (max-width: 640px) {
  .menubar { padding: 0 12px; }
  .mb-hide-mobile { display: none; }
}

/* ——————————————————————————  Layout  —————————————————————————— */

main {
  position: relative;
  z-index: 2;
  padding-top: 44px;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ——————————————————————————  Hero  —————————————————————————— */

.hero {
  padding: 140px 0 100px;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 32px;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--status-live);
}

.hero h1 {
  font-size: clamp(48px, 8vw, 104px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.045em;
  margin-bottom: 28px;
  max-width: 14ch;
}

.hero h1 em {
  font-style: normal;
  color: var(--text-dim);
}

.hero-sub {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text-dim);
  max-width: 52ch;
  line-height: 1.45;
  margin-bottom: 44px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
  border: 0.5px solid transparent;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--text);
  color: var(--bg);
}
.btn-primary:hover { opacity: 0.9; }

.btn-secondary {
  background: var(--bg-card);
  color: var(--text);
  border-color: var(--border);
  backdrop-filter: blur(12px);
}
.btn-secondary:hover { background: var(--bg-card-hover); border-color: var(--border-strong); }

.btn svg { width: 14px; height: 14px; fill: currentColor; }

/* ——————————————————————————  Section primitives  —————————————————————————— */

.section {
  padding: 96px 0;
  position: relative;
}

.section-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 500;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: "";
  width: 20px; height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 20px;
  max-width: 20ch;
}

.section-lede {
  color: var(--text-dim);
  font-size: 18px;
  max-width: 58ch;
  margin-bottom: 56px;
  line-height: 1.55;
}

/* ——————————————————————————  Apps  —————————————————————————— */

.apps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 880px) {
  .apps { grid-template-columns: 1.4fr 1fr; grid-auto-rows: minmax(320px, auto); }
  .app-card:nth-child(1) { grid-column: 1 / -1; }
}

.app-card {
  position: relative;
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  isolation: isolate;
}

.app-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at var(--mx, 50%) var(--my, 0%), var(--glow, rgba(255,255,255,0.08)), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}

.app-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.app-card:hover::before { opacity: 1; }

.app-card[data-app="anlik"]       { --glow: rgba(255, 122, 89, 0.22); }
.app-card[data-app="renderfocus"] { --glow: rgba(90, 200, 250, 0.22); }
.app-card[data-app="photocabin"]  { --glow: rgba(175, 82, 222, 0.22); }

.app-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.app-icon {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  overflow: hidden;
  flex-shrink: 0;
  background: #1C1C1E;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), inset 0 0 0 0.5px rgba(255, 255, 255, 0.08);
}
.app-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* anlık. — direct wordmark, no icon box (matches anlik.com hero style) */
.anlik-wordmark {
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.045em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.app-meta { display: flex; flex-direction: column; gap: 2px; }
.app-name { font-size: 22px; font-weight: 600; letter-spacing: -0.025em; }
.app-platform { font-size: 13px; color: var(--text-faint); letter-spacing: 0.02em; }

.app-pitch {
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 24px;
  max-width: 42ch;
}

.app-pitch em {
  font-style: normal;
  color: var(--text-dim);
}

.app-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.app-stat-num {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.app-stat-label {
  font-size: 12px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.app-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-dim);
  transition: color 0.2s, gap 0.2s;
  margin-top: auto;
  align-self: flex-start;
}
.app-card:hover .app-cta { color: var(--text); gap: 10px; }
.app-cta svg { width: 12px; height: 12px; fill: currentColor; }

/* ——————————————————————————  Craft section  —————————————————————————— */

.craft-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.craft-item {
  padding: 32px 28px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 180px;
}

.craft-icon {
  width: 28px; height: 28px;
  color: var(--text-dim);
}
.craft-icon svg { width: 100%; height: 100%; fill: currentColor; }

.craft-title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.craft-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ——————————————————————————  Stack marquee  —————————————————————————— */

.marquee {
  overflow: hidden;
  padding: 40px 0;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee 40s linear infinite;
  width: max-content;
  color: var(--text-faint);
  font-size: 18px;
  letter-spacing: -0.01em;
}

.marquee-track span {
  display: flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
}
.marquee-track span::after { content: "•"; color: var(--text-faint); opacity: 0.4; }

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .mb-brand-dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* ——————————————————————————  Contact  —————————————————————————— */

.contact {
  text-align: center;
  padding: 140px 0 100px;
  position: relative;
}

.contact h2 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 24px;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.contact p {
  color: var(--text-dim);
  font-size: 18px;
  max-width: 46ch;
  margin: 0 auto 40px;
  line-height: 1.55;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 14px;
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  font-size: 16px;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
}
.contact-email:hover { background: var(--bg-card-hover); border-color: var(--border-strong); }
.contact-email svg { width: 14px; height: 14px; fill: currentColor; opacity: 0.6; }

.contact-actions {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-whatsapp svg { opacity: 0.9; color: #25D366; }
.contact-whatsapp:hover { border-color: rgba(37, 211, 102, 0.4); }

@media (max-width: 520px) {
  .contact-actions { flex-direction: column; align-items: stretch; }
  .contact-actions .contact-email { justify-content: center; }
}

/* ——————————————————————————  Footer  —————————————————————————— */

footer {
  border-top: 0.5px solid var(--border);
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-faint);
  font-size: 13px;
}

footer a { color: var(--text-dim); transition: color 0.2s; }
footer a:hover { color: var(--text); }

.footer-links { display: flex; gap: 20px; }

/* ——————————————————————————  Command palette (⌘K)  —————————————————————————— */

.palette-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: grid;
  place-items: start center;
  padding-top: 15vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
}
.palette-overlay[data-open="true"] { opacity: 1; pointer-events: auto; }

.palette {
  width: min(560px, 92vw);
  background: var(--bg-elev);
  border: 0.5px solid var(--border-strong);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: translateY(-8px) scale(0.98);
  transition: transform 0.2s;
}
.palette-overlay[data-open="true"] .palette { transform: translateY(0) scale(1); }

.palette-input {
  width: 100%;
  padding: 18px 20px;
  font-size: 16px;
  background: transparent;
  border: none;
  border-bottom: 0.5px solid var(--border);
  color: var(--text);
  outline: none;
}
.palette-input::placeholder { color: var(--text-faint); }

.palette-list {
  max-height: 360px;
  overflow-y: auto;
  padding: 6px;
  overscroll-behavior: contain;
}

.palette-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-dim);
  transition: background 0.1s, color 0.1s;
}
.palette-item[aria-selected="true"],
.palette-item:hover { background: var(--bg-card-hover); color: var(--text); }

.palette-item-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: var(--bg-card);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.palette-item-icon svg { width: 14px; height: 14px; fill: currentColor; }

.palette-item-sub {
  margin-left: auto;
  font-size: 12px;
  color: var(--text-faint);
}

.palette-empty {
  padding: 24px;
  text-align: center;
  color: var(--text-faint);
  font-size: 14px;
}

/* ——————————————————————————  Reveal on scroll  —————————————————————————— */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ——————————————————————————  Em style (orijinal pattern, italic değil) —————————————————————————— */

.section-title em,
.manifesto-copy em,
.app-pitch em,
.contact h2 em,
.testimonial blockquote em {
  font-style: normal;
  color: var(--text-dim);
}

/* ——————————————————————————  Hero numbers  —————————————————————————— */

.hero-numbers {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 28px;
  margin-top: 8px;
  border-top: 0.5px solid var(--border);
  max-width: 640px;
}
.hero-num { display: flex; flex-direction: column; gap: 4px; }
.hero-num strong {
  font-size: 28px; font-weight: 600;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.hero-num span {
  font-size: 13px; color: var(--text-faint);
  letter-spacing: 0.02em;
}

/* ——————————————————————————  Manifesto  —————————————————————————— */

.manifesto .section-body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.manifesto-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  position: sticky;
  top: 80px;
}

.manifesto-copy {
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 28ch;
}
.manifesto-copy p { margin-bottom: 1.2em; }

@media (max-width: 820px) {
  .manifesto .section-body { grid-template-columns: 1fr; gap: 20px; }
  .manifesto-label { position: static; }
}

/* ——————————————————————————  Testimonials  —————————————————————————— */

.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 760px) { .testimonials { grid-template-columns: 1fr; } }

.testimonial {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial blockquote {
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--text);
}
.testimonial blockquote::before {
  content: "“";
  font-size: 36px;
  line-height: 0;
  color: var(--text-faint);
  vertical-align: -0.25em;
  margin-right: 4px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 0.5px solid var(--border);
}
.testimonial-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-card-hover);
  display: grid; place-items: center;
  color: var(--text-dim);
  font-size: 13px; font-weight: 600;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}
.testimonial-name { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; }
.testimonial-role { font-size: 13px; color: var(--text-faint); margin-top: 1px; }

/* ——————————————————————————  Press  —————————————————————————— */

.press {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  padding: 28px 0;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  color: var(--text-faint);
  font-size: 14px;
  letter-spacing: -0.005em;
}
.press-label {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-right: 12px;
}
.press-name {
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.2s;
}
.press-name:hover { color: var(--text); }

/* ——————————————————————————  Timeline  —————————————————————————— */

.timeline { border-top: 0.5px solid var(--border); }

.tl-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 0.5px solid var(--border);
  align-items: baseline;
}
.tl-year {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 14px;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}
.tl-title {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.tl-desc {
  display: block;
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 4px;
  font-weight: 400;
  max-width: 60ch;
}
.tl-tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  padding: 4px 8px;
  border: 0.5px solid var(--border);
  border-radius: 4px;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .tl-row { grid-template-columns: 80px 1fr; }
  .tl-tag { grid-column: 2 / -1; justify-self: start; }
}

/* ——————————————————————————  Writing  —————————————————————————— */

.writing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 720px) { .writing { grid-template-columns: 1fr; } }

.writing-item {
  background: var(--bg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 160px;
  transition: background 0.3s;
  cursor: pointer;
}
.writing-item:hover { background: var(--bg-card); }

.writing-date {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.writing-title {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.writing-excerpt {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
  margin-top: auto;
}
.writing-soon {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 6px;
}

/* ——————————————————————————  FAQ  —————————————————————————— */

.faq { border-top: 0.5px solid var(--border); }
.faq-item { border-bottom: 0.5px solid var(--border); }

.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.015em;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--text-dim); }
.faq-q-icon {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--text-dim);
}
.faq-item[data-open="true"] .faq-q-icon { transform: rotate(45deg); color: var(--text); }
.faq-q-icon svg { width: 14px; height: 14px; fill: currentColor; }

.faq-a {
  padding: 0;
}
.faq-a[hidden] { display: none; }
.faq-a-inner {
  padding: 0 0 24px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
  max-width: 60ch;
}

/* ——————————————————————————  Also · Client websites  —————————————————————————— */

.also-block {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 0.5px solid var(--border);
}

.also-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.also-label::before {
  content: "";
  width: 20px; height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.also-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.also-row {
  display: grid;
  grid-template-columns: minmax(200px, auto) 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 22px 22px;
  background: var(--bg-card);
  transition: background 0.2s;
  color: var(--text);
}
.also-row:hover { background: var(--bg-card-hover); }

/* Alagöz logo — typographic reconstruction of alagozinsaat.com header */
.alagoz-logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  color: var(--text);
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
  white-space: nowrap;
}
.alagoz-bold {
  font-weight: 800;
  letter-spacing: -0.06em;
  font-size: clamp(20px, 2.4vw, 26px);
}
.alagoz-div {
  display: inline-block;
  width: 1px;
  height: 1.3em;
  background: currentColor;
  opacity: 0.28;
  margin: 0 14px;
}
.alagoz-light {
  font-weight: 400;
  letter-spacing: 0.035em;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--text-dim);
}

/* Elif Alemdaroğlu logo — lowercase "elif." wordmark (matches elifalemdaroglu.com) */
.elif-logo {
  display: inline-block;
  line-height: 1;
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 26px);
  letter-spacing: -0.02em;
  color: var(--text);
}
.elif-dot {
  color: #D41E33;
}

.also-desc {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: -0.005em;
}

.also-url {
  font-size: 13px;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  transition: color 0.2s;
}
.also-url svg {
  width: 11px; height: 11px;
  fill: currentColor;
  opacity: 0.7;
}
.also-row:hover .also-url { color: var(--text); }

.also-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-faint);
  line-height: 1.55;
  max-width: 52ch;
}

@media (max-width: 640px) {
  .also-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 18px;
  }
  .also-url { font-size: 12px; }
  .alagoz-div { margin: 0 10px; }
}
