:root {
  --navy: #0d1b2e;
  --navy-mid: #152035;
  --accent: #AFD136;
  --accent-dim: rgba(175,209,54,0.12);
  --muted: #6b7a8d;
  --border: #1e2d42;
  --text: #d8e3ef;
  --text-strong: #f0f6ff;
}

* { box-sizing: border-box; }

body {
  background: var(--navy);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  margin: 0;
}

/* ── HERO ── */
.article-hero {
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 40px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 40px;
}
.brand-lockup__logo { height: 28px; }
.brand-lockup__studio {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 4px;
  padding: 2px 7px;
}

.article-hero nav {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}
.article-hero nav a { color: var(--muted); text-decoration: none; }
.article-hero nav a:hover { color: var(--accent); }
.article-hero nav span { margin: 0 6px; }

.article-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 20px;
}

.article-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-strong);
  max-width: 700px;
  margin: 0 0 20px;
}

.article-hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.article-meta {
  font-size: 13px;
  color: var(--muted);
}

/* ── BODY ── */
.article-body {
  padding: 56px 0 80px;
}

.article-body .container {
  max-width: 680px;
}

.article-body p {
  margin-bottom: 1.5rem;
  color: var(--text);
}

.article-body p strong {
  color: var(--text-strong);
  font-weight: 600;
}

.article-body h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--text-strong);
  margin: 3rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.article-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-strong);
  margin: 2rem 0 0.6rem;
}

.article-body ul, .article-body ol {
  padding-left: 1.4rem;
  margin-bottom: 1.5rem;
}
.article-body li {
  margin-bottom: 0.5rem;
  color: var(--text);
}
.article-body li strong { color: var(--text-strong); }

/* ── BLOCKQUOTE ── */
.article-body blockquote {
  border-left: 3px solid var(--border);
  margin: 2rem 0;
  padding: 14px 20px;
  background: var(--navy-mid);
  border-radius: 0 8px 8px 0;
  font-size: 15px;
}
.article-body blockquote p { color: var(--muted); margin-bottom: 0; font-style: italic; }
.article-body blockquote em { color: var(--text); font-style: normal; font-weight: 500; }
.article-body blockquote a { color: var(--accent); }

/* ── FIGURE ── */
.article-body figure {
  margin: 2.5rem 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.article-body figure img {
  width: 100%;
  display: block;
}
.article-body figcaption {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--muted);
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  line-height: 1.6;
}
.article-body figcaption em { color: var(--text); font-style: italic; }

/* ── PULLQUOTE ── */
.pullquote {
  border-left: 3px solid var(--accent);
  margin: 2.5rem 0;
  padding: 4px 0 4px 24px;
  font-size: 19px;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: var(--text-strong);
  line-height: 1.5;
}

/* ── SCENE LABEL ── */
.scene-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 2rem 0 0.25rem;
}

/* ── COMPARE TABLE ── */
.table-wrap {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 10px;
  border: 1px solid var(--border);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table th {
  padding: 12px 16px;
  background: rgba(175,209,54,0.07);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table th.corner { color: transparent; background: var(--navy-mid); }
.compare-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  background: var(--navy);
  vertical-align: top;
}
.compare-table td:first-child {
  color: var(--text-strong);
  font-weight: 500;
  background: var(--navy-mid);
  white-space: nowrap;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table--summary td:first-child {
  color: var(--muted);
  font-weight: 400;
  white-space: normal;
}
.compare-table--summary td:last-child {
  color: var(--text-strong);
  font-weight: 600;
  background: var(--navy);
}

/* ── FEATURE LIST ── */
.feature-list {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 28px;
  margin: 2.5rem 0;
  list-style: none;
  padding-left: 28px;
}
.feature-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  font-size: 15px;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ── BEFORE/AFTER MOCK (marka-gorunurlugu post) ── */
.before-after {
  margin: 2.5rem 0;
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 8px;
}
.ba-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ba-label.before { color: var(--muted); }
.ba-label.after { color: var(--accent); }
.ba-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.zoom-mock {
  background: #1f1f1f;
  border-radius: 8px;
  padding: 12px;
  border: 1px solid #333;
}
.zoom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 10px;
}
.zoom-tile {
  background: #2a2a2a;
  border-radius: 6px;
  min-height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 8px;
  position: relative;
}
.zoom-avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #555;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
}
.zoom-name {
  font-size: 9px;
  color: #aaa;
  font-weight: 500;
}
.zoom-bar {
  display: flex;
  gap: 6px;
  justify-content: center;
}
.zoom-btn {
  width: 28px; height: 22px;
  background: #333;
  border-radius: 4px;
}
.studio-mock {
  background: #0a1628;
  padding: 20px 16px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.studio-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.studio-logo-pill {
  background: rgba(175,209,54,0.15);
  border: 1px solid rgba(175,209,54,0.3);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 9px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
}
.studio-live {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  color: #ff4444;
  font-weight: 700;
}
.studio-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ff4444;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  flex: 1;
}
.studio-tile {
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8px;
  min-height: 70px;
  position: relative;
  overflow: hidden;
}
.studio-tile:first-child {
  background: linear-gradient(135deg, #1a2a4a 0%, #0d1b2e 100%);
  border: 1px solid rgba(175,209,54,0.2);
}
.studio-tile:last-child {
  background: linear-gradient(135deg, #1a2a4a 0%, #0e1e30 100%);
  border: 1px solid #1e3040;
}
.studio-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #AFD136, #7a9a20);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
}
.studio-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 8px;
  font-weight: 600;
  color: #0a0a0a;
  background: var(--accent);
  border-radius: 3px;
  padding: 2px 6px;
  width: fit-content;
}
.studio-ticker {
  background: rgba(175,209,54,0.9);
  border-radius: 3px;
  padding: 3px 8px;
  font-size: 8px;
  font-weight: 700;
  color: #0a0a0a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.studio-logo-watermark {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 32px;
  height: 14px;
  background: rgba(175,209,54,0.2);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── LEGAL ── */
.legal-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-style: italic;
  line-height: 1.6;
}

/* ── CTA BLOCK ── */
.cta-block {
  background: linear-gradient(135deg, #0f2318 0%, #0d1b2e 100%);
  border: 1px solid rgba(175,209,54,0.25);
  border-radius: 14px;
  padding: 40px 36px;
  margin-top: 3rem;
  text-align: center;
}
.cta-block .eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.cta-block h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--text-strong);
  line-height: 1.25;
  margin-bottom: 12px;
}
.cta-block h3 em {
  font-style: italic;
  color: var(--accent);
}
.cta-block p {
  color: var(--muted);
  font-size: 15px;
  max-width: 400px;
  margin: 0 auto 28px;
}
.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: opacity 0.15s;
}
.cta-btn:hover { opacity: 0.88; color: #0a0a0a; text-decoration: none; }
.cta-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}

/* ── FOOTER ── */
.article-footer {
  background: #080f1a;
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.article-footer a { color: var(--muted); text-decoration: none; font-size: 14px; }
.article-footer a:hover { color: var(--accent); }
