:root {
  --ink: #0a1018;
  --ink-2: #121a26;
  --ink-3: #1a2535;
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(10, 16, 24, 0.1);
  --text: #e8eef6;
  --muted: #93a4b8;
  --paper: #f3f6fa;
  --paper-2: #e7edf5;
  --ink-text: #122033;
  --ink-muted: #5b6b7e;
  --signal: #f07a1a;
  --signal-2: #ffb347;
  --teal: #2bb8a7;
  --danger: #d64545;
  --radius: 14px;
  --shadow: 0 24px 60px rgba(8, 14, 24, 0.28);
  --font: "Outfit", system-ui, sans-serif;
  --serif: "Source Serif 4", Georgia, serif;
  --max: 1160px;
  --header-h: 72px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink-text);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 0.6em; font-weight: 700; letter-spacing: -0.02em; }
p { margin: 0 0 1em; }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--signal);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  backdrop-filter: blur(16px);
  background: rgba(10, 16, 24, 0.82);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(10, 16, 24, 0.94);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
}
.brand-logo {
  display: block;
  height: 34px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, transparent 0 28%, var(--signal) 29% 32%, transparent 33% 48%, rgba(240,122,26,0.55) 49% 52%, transparent 53%),
    conic-gradient(from 210deg, var(--signal), transparent 40%, var(--teal), transparent 75%, var(--signal));
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.12);
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 42%;
  border-radius: 50%;
  background: #fff;
}
.brand-text { font-size: 1.15rem; letter-spacing: -0.03em; }
.brand-text strong { font-weight: 800; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.site-nav ul {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.site-nav a {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}
.site-nav a:hover,
.site-nav a.is-active {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 12px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 6px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--signal), #ff9a3c);
  color: #1a0f05;
}
.btn-ghost {
  border-color: rgba(255,255,255,0.28);
  color: #fff;
  background: rgba(255,255,255,0.04);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.08); }
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-outline {
  border-color: rgba(18, 32, 51, 0.18);
  color: var(--ink-text);
  background: #fff;
}
.btn-sm { min-height: 40px; padding: 0.55rem 1rem; font-size: 0.88rem; }

/* Hero home */
.home-hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  color: var(--text);
  overflow: hidden;
  background: var(--ink);
}
.home-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(240,122,26,0.28), transparent 55%),
    radial-gradient(ellipse 50% 50% at 15% 80%, rgba(43,184,167,0.18), transparent 50%),
    linear-gradient(160deg, #070b12 0%, #121c2b 45%, #0a1018 100%);
}
.home-hero-bg::before {
  content: "";
  position: absolute;
  width: min(720px, 90vw);
  height: min(720px, 90vw);
  right: -8%;
  top: 8%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    repeating-radial-gradient(circle at center, transparent 0 38px, rgba(255,255,255,0.035) 38px 39px);
  animation: radar-pulse 8s ease-in-out infinite;
}
.home-hero-bg::after {
  content: "";
  position: absolute;
  width: min(720px, 90vw);
  height: min(720px, 90vw);
  right: -8%;
  top: 8%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 70%, rgba(240,122,26,0.22) 85%, transparent 100%);
  animation: radar-sweep 7s linear infinite;
  mask: radial-gradient(circle, #000 0 68%, transparent 70%);
}
@keyframes radar-sweep { to { transform: rotate(360deg); } }
@keyframes radar-pulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.04); opacity: 1; }
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  padding: 5rem 0 4.5rem;
  max-width: 760px;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal-2);
  margin-bottom: 1rem;
}
.home-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  margin-bottom: 0.4em;
  color: #fff;
}
.home-hero h1 span {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 0.42em;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.72);
  margin-top: 0.35em;
}
.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 36rem;
  margin-bottom: 1.75rem;
}
.hero-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.7rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  font-weight: 500;
}
.hero-cats span:not(:last-child)::after {
  content: "·";
  margin-left: 0.7rem;
  opacity: 0.45;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-in { opacity: 1; transform: none; }

/* Stats strip */
.stats-strip {
  background: var(--ink-2);
  color: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.75rem 0;
}
.stat-item strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--signal-2);
}
.stat-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Sections */
.section { padding: 5rem 0; }
.section-dark {
  background: var(--ink);
  color: var(--text);
}
.section-muted { background: var(--paper-2); }
.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}
.section-head p { color: var(--ink-muted); font-size: 1.05rem; }
.section-dark .section-head p { color: var(--muted); }

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(18,32,51,0.06);
  border: 1px solid rgba(18,32,51,0.08);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-text);
}
.section-dark .chip {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
  color: #fff;
}

/* Network grid */
.network-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.network-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 1.4rem 1.35rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(18,32,51,0.08);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.network-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(240,122,26,0.35);
  box-shadow: var(--shadow);
}
.network-tile.highlight {
  background: linear-gradient(160deg, #171f2c, #101722);
  color: #fff;
  border-color: rgba(240,122,26,0.35);
}
.network-tile.highlight p,
.network-tile.highlight .tile-brands { color: rgba(255,255,255,0.72); }
.tile-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: rgba(240,122,26,0.12);
  color: var(--signal);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.network-tile.highlight .tile-icon {
  background: rgba(240,122,26,0.2);
  color: var(--signal-2);
}
.network-tile h3 { font-size: 1.25rem; margin-bottom: 0.35em; }
.network-tile p { color: var(--ink-muted); font-size: 0.95rem; flex: 1; }
.tile-brands {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-text);
}
.tile-link {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--signal);
}

/* Ecosystem map */
.eco-map-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 12% 40%, rgba(240, 122, 26, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 88% 70%, rgba(43, 184, 167, 0.08), transparent 50%),
    var(--ink);
}
.eco-map {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.35fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}
.eco-core {
  position: relative;
  aspect-ratio: 1;
  width: min(100%, 400px);
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  isolation: isolate;
}
.eco-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.eco-orbit-1 {
  inset: 6%;
  border-color: rgba(240, 122, 26, 0.22);
  animation: eco-spin 28s linear infinite;
}
.eco-orbit-2 {
  inset: 18%;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.1);
  animation: eco-spin 42s linear infinite reverse;
}
.eco-orbit-3 {
  inset: 30%;
  border-color: rgba(43, 184, 167, 0.18);
}
.eco-orbit-1::before,
.eco-orbit-2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 12px rgba(240, 122, 26, 0.65);
}
.eco-orbit-2::before {
  left: auto;
  right: 0;
  margin-left: 0;
  margin-right: -4px;
  background: var(--teal);
  box-shadow: 0 0 12px rgba(43, 184, 167, 0.55);
}
.eco-pulse {
  position: absolute;
  inset: 34%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 122, 26, 0.28), transparent 70%);
  animation: eco-pulse 3.2s ease-in-out infinite;
  z-index: 0;
}
.eco-core-inner {
  position: relative;
  z-index: 1;
  width: min(78%, 240px);
  padding: 1.5rem 1rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, rgba(240, 122, 26, 0.18), transparent 55%),
    linear-gradient(165deg, #1a2535 0%, #0d141e 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 10px rgba(10, 16, 24, 0.35),
    0 24px 50px rgba(0, 0, 0, 0.35);
}
.eco-core-eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal-2);
}
.eco-core-inner strong {
  display: block;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}
.eco-core-inner > span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}
.eco-core-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}
.eco-list {
  display: grid;
  gap: 0.65rem;
}
.eco-item {
  --eco-delay: 0s;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem 1rem;
  padding: 0.95rem 1.05rem;
  border-radius: 14px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}
.eco-item.reveal {
  transition:
    opacity 0.7s ease var(--eco-delay),
    transform 0.7s ease var(--eco-delay),
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}
.eco-item.reveal.is-in {
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}
.eco-item:hover {
  transform: translateX(4px);
  border-color: rgba(240, 122, 26, 0.45);
  background: linear-gradient(120deg, rgba(240, 122, 26, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}
.eco-item-index {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.28);
  font-variant-numeric: tabular-nums;
}
.eco-item:hover .eco-item-index { color: var(--signal-2); }
.eco-item-body { min-width: 0; }
.eco-item-top {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.45rem;
}
.eco-item-top b {
  color: var(--signal-2);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eco-item-count {
  display: inline-grid;
  place-items: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  font-weight: 700;
}
.eco-item-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.eco-item-brands span {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.2;
}
.eco-item-brands span.is-soon {
  background: rgba(240, 122, 26, 0.1);
  border-color: rgba(240, 122, 26, 0.28);
  color: rgba(255, 179, 71, 0.95);
}
.eco-item-go {
  color: var(--signal);
  font-size: 1.15rem;
  font-weight: 700;
  opacity: 0.55;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.eco-item:hover .eco-item-go {
  opacity: 1;
  transform: translateX(3px);
}
@keyframes eco-spin {
  to { transform: rotate(360deg); }
}
@keyframes eco-pulse {
  0%, 100% { opacity: 0.45; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1.05); }
}
@media (prefers-reduced-motion: reduce) {
  .eco-orbit-1,
  .eco-orbit-2,
  .eco-pulse { animation: none; }
}

/* Corporate strip */
.corp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.corp-grid-5 {
  grid-template-columns: repeat(3, 1fr);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.status-aktif {
  background: rgba(43, 184, 167, 0.14);
  color: #0f7468;
}
.status-proje {
  background: rgba(240, 122, 26, 0.14);
  color: #9a4b0a;
}
.status-pasif {
  background: rgba(91, 107, 126, 0.14);
  color: #4a5a6b;
}

.domain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.domain-card {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(18, 32, 51, 0.08);
}
.domain-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}
.domain-card h3 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.domain-class {
  color: var(--ink-muted);
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}

.domain-list {
  display: grid;
  gap: 0.65rem;
  max-width: 720px;
  width: 100%;
  margin-inline: auto;
}
.domain-row {
  padding: 0.95rem 1.1rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(18, 32, 51, 0.08);
  cursor: default;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.domain-row:hover {
  background: #fff8f1;
  border-color: rgba(240, 122, 26, 0.35);
  box-shadow: 0 8px 24px rgba(18, 32, 51, 0.08);
}
.domain-row-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.domain-row-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}
.tpe-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #0f7468;
  background: rgba(15, 116, 104, 0.12);
  border: 1px solid rgba(15, 116, 104, 0.22);
}
.domain-host-text {
  font-weight: 600;
  color: var(--ink-text);
}
.domain-row-sale {
  background: linear-gradient(90deg, rgba(240, 122, 26, 0.035), transparent 50%);
}
.domain-note-tpe {
  color: #0f7468;
  font-weight: 600;
}
.domain-row-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem 0.85rem;
}
.domain-row-title strong {
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--ink-text);
}
.domain-row-name-link {
  color: inherit;
  text-decoration: none;
}
.domain-row-name-link:hover {
  color: var(--signal);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.domain-row-cat {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--ink-muted);
}
.domain-hosts {
  list-style: none;
  margin: 0.55rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.2rem;
}
.domain-hosts li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}
.domain-hosts a {
  color: var(--signal);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.domain-hosts a:hover {
  color: #c45e10;
}
.domain-note {
  margin: 0.55rem 0 0;
  color: var(--ink-muted);
  font-size: 0.85rem;
}

.portfolio-stats {
  max-width: 920px;
  width: 100%;
  margin: 0 auto 1.1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}
.portfolio-stat {
  text-align: center;
  padding: 1.1rem 0.65rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
  border: 1px solid rgba(18, 32, 51, 0.08);
  min-width: 0;
}
.portfolio-stat strong {
  display: block;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  letter-spacing: -0.03em;
  color: var(--signal);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}
.portfolio-stat span {
  display: block;
  color: var(--ink-muted);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.25;
}

.portfolio-toolbar {
  max-width: 720px;
  width: 100%;
  margin: 0 auto 1.75rem;
}
.portfolio-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}
.meta-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-text);
  border-bottom: 1px solid rgba(18, 32, 51, 0.18);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.meta-link:hover {
  color: var(--signal);
  border-color: rgba(240, 122, 26, 0.45);
}
.meta-link::after {
  content: " →";
  color: var(--ink-muted);
  font-weight: 500;
}
.meta-stats {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  color: var(--ink-muted);
  font-size: 0.86rem;
}
.meta-stats strong {
  color: var(--ink-text);
  font-weight: 700;
  margin-right: 0.2rem;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  padding: 0.55rem;
  border-radius: 14px;
  background: rgba(18, 32, 51, 0.03);
  border: 1px solid rgba(18, 32, 51, 0.06);
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink-muted);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.filter-chip .filter-count {
  display: inline-grid;
  place-items: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: rgba(18, 32, 51, 0.08);
  color: var(--ink-muted);
  font-size: 0.72rem;
  font-weight: 700;
}
.filter-chip:hover {
  color: var(--ink-text);
  background: #fff;
  border-color: rgba(18, 32, 51, 0.08);
}
.filter-chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  box-shadow: 0 6px 16px rgba(10, 16, 24, 0.16);
}
.filter-chip.is-active .filter-count {
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.85);
}
.cat-tag {
  display: inline-block;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.cat-sub {
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: var(--ink-muted);
}

/* Markalar — özgün dizin / marka defteri */
.brand-page {
  max-width: 980px;
}
.brand-ledger-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(18, 32, 51, 0.1);
}
.brand-kicker {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
}
.brand-ledger-intro h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}
.brand-ledger-intro p:last-child {
  margin: 0;
  color: var(--ink-muted);
  max-width: 34rem;
}
.brand-ledger-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1rem;
}
.brand-ledger-stats div {
  padding: 0.75rem 0;
  border-top: 1px solid rgba(18, 32, 51, 0.1);
}
.brand-ledger-stats strong {
  display: block;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  color: var(--ink-text);
  line-height: 1.1;
}
.brand-ledger-stats span {
  color: var(--ink-muted);
  font-size: 0.82rem;
}
.brand-controls {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
}
.brand-view-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  align-items: center;
}
.brand-switch {
  align-self: flex-start;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-muted);
  border-bottom: 1px solid rgba(18, 32, 51, 0.16);
}
.brand-switch:hover {
  color: var(--signal);
  border-color: rgba(240, 122, 26, 0.4);
}
.brand-switch.is-active {
  color: var(--ink-text);
  border-color: var(--signal);
}
.brand-empty {
  padding: 1.5rem 0 0.5rem;
  color: var(--ink-muted);
}
.brand-empty p { margin: 0 0 1rem; max-width: 36rem; }
.brand-entry-proje {
  opacity: 0.96;
  background: linear-gradient(90deg, rgba(240, 122, 26, 0.04), transparent 55%);
}
.brand-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(18, 32, 51, 0.08);
}
.brand-filter {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0.35rem 0;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-muted);
  cursor: pointer;
  position: relative;
}
.brand-filter:hover {
  color: var(--ink-text);
}
.brand-filter.is-active {
  color: var(--ink-text);
}
.brand-filter.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.3rem;
  height: 2px;
  background: var(--signal);
}
.brand-index {
  display: grid;
  gap: 2rem;
}
.brand-letter-block {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  align-items: start;
}
.brand-letter {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  color: rgba(18, 32, 51, 0.18);
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.brand-entries {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(18, 32, 51, 0.1);
}
.brand-entry {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(18, 32, 51, 0.08);
  transition: background 0.2s ease, padding 0.2s ease;
}
.brand-entry:hover {
  background: rgba(240, 122, 26, 0.04);
  padding-left: 0.65rem;
  padding-right: 0.65rem;
  border-radius: 8px;
}
.brand-entry h3 {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}
.brand-meta {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}
.brand-dot { opacity: 0.45; }
.brand-status-aktif { color: #0f7468; font-weight: 600; }
.brand-status-proje { color: #9a4b0a; font-weight: 600; }
.brand-status-pasif { color: #5b6b7e; font-weight: 600; }
.brand-note {
  margin: 0.4rem 0 0;
  font-size: 0.84rem;
  color: var(--ink-muted);
}
.brand-domains {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.25rem;
  text-align: right;
}
.brand-domains a {
  color: var(--signal);
  font-weight: 600;
  font-size: 0.9rem;
}
.brand-domains a:hover { color: #c45e10; }
.brand-domains-empty {
  color: rgba(18, 32, 51, 0.35);
  font-size: 0.85rem;
  font-style: italic;
}

.brand-name-link {
  color: inherit;
}
.brand-name-link:hover {
  color: var(--signal);
}
.brand-kit-link {
  color: var(--signal);
  font-weight: 600;
}
.brand-kit-link:hover {
  color: #c45e10;
}

/* Tek marka mediakit sayfası */
.brand-hero {
  position: relative;
  color: #fff;
  padding: 4rem 0 2.5rem;
  overflow: hidden;
  background: var(--ink);
  text-align: left;
}
.brand-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(240,122,26,0.22), transparent 50%),
    linear-gradient(135deg, #0a1018, #152033);
}
.brand-hero-inner {
  position: relative;
  z-index: 1;
}
.brand-hero .eyebrow {
  display: block;
  margin-bottom: 0.85rem;
}
.brand-hero h1 {
  margin: 0 0 0.55rem;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: #fff;
  letter-spacing: -0.035em;
}
.brand-hero .lead {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 40rem;
}
.brand-hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.brand-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 600;
}
.brand-detail .brand-detail-tags {
  color: var(--ink-muted);
}
.brand-detail-tags a {
  color: var(--signal-2);
}
.brand-detail .brand-detail-tags a {
  color: var(--signal);
}
.brand-detail-actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}
.brand-hero .brand-status-aktif { color: #7ddecf; }
.brand-hero .brand-status-proje { color: var(--signal-2); }
.brand-hero .brand-status-pasif { color: rgba(255,255,255,0.55); }
.brand-detail-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 2rem;
  align-items: start;
}
.brand-detail h2 {
  font-size: 1.35rem;
  margin: 1.75rem 0 0.85rem;
}
.brand-detail h2:first-child {
  margin-top: 0;
}
.brand-detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.brand-detail-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(18, 32, 51, 0.07);
  color: var(--ink-muted);
}
.brand-side-card {
  padding: 1.25rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(18, 32, 51, 0.08);
  margin-bottom: 1rem;
}
.brand-side-card h3 {
  font-size: 1rem;
  margin-bottom: 0.85rem;
}
.brand-side-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.brand-side-card li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(18, 32, 51, 0.06);
  font-size: 0.9rem;
}
.brand-side-card li span {
  color: var(--ink-muted);
}
.brand-side-card li strong {
  text-align: right;
  color: var(--ink-text);
  font-weight: 700;
}
.metric-pending {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
  font-style: italic;
}
.brand-url-code {
  display: block;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  background: var(--paper-2);
  font-size: 0.82rem;
  word-break: break-all;
  color: var(--ink-text);
}
.brand-more {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.brand-more a {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 32, 51, 0.1);
  background: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-text);
}
.brand-more a:hover {
  border-color: rgba(240, 122, 26, 0.35);
  color: var(--signal);
}

@media (max-width: 820px) {
  .brand-ledger-top {
    grid-template-columns: 1fr;
  }
  .brand-letter-block {
    grid-template-columns: 36px 1fr;
    gap: 0.85rem;
  }
  .brand-letter { font-size: 1.8rem; }
  .brand-entry {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
  .brand-domains {
    align-items: flex-start;
    text-align: left;
  }
  .brand-detail-grid {
    grid-template-columns: 1fr;
  }
}
.corp-tile {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(18,32,51,0.08);
  min-height: 180px;
  display: flex;
  flex-direction: column;
}
.corp-tile h3 { font-size: 1.1rem; }
.corp-tile p { color: var(--ink-muted); font-size: 0.92rem; flex: 1; }
.badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(43,184,167,0.12);
  color: #0f7468;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Page hero */
.page-hero {
  position: relative;
  color: #fff;
  padding: 4.5rem 0 3.5rem;
  overflow: hidden;
  background: var(--ink);
  text-align: left;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(240,122,26,0.22), transparent 50%),
    linear-gradient(135deg, #0a1018, #152033);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  text-align: left;
}
.page-hero .eyebrow {
  display: block;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: #fff;
}
.page-hero .lead {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 40rem;
  margin: 0;
}

/* Content blocks */
.content-block { margin-bottom: 2.5rem; }
.prose { max-width: 720px; }
.prose p { color: var(--ink-muted); font-size: 1.05rem; }
.section-dark .prose p { color: var(--muted); }

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.metric {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(18,32,51,0.08);
}
.metric strong {
  display: block;
  font-size: 2rem;
  letter-spacing: -0.03em;
  color: var(--signal);
  margin-bottom: 0.25rem;
}
.metric span { color: var(--ink-muted); font-size: 0.92rem; }
.metric small { display: block; margin-top: 0.45rem; color: #8a98a8; font-size: 0.78rem; }

.brand-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.brand-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(18,32,51,0.08);
}
.brand-card h3 { margin-bottom: 0.2em; font-size: 1.35rem; }
.brand-card .role {
  color: var(--signal);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}
.brand-card p { color: var(--ink-muted); }

/* Network site cards + site medya kiti */
.net-site-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.net-site-card {
  padding: 1.25rem 1.35rem 1.1rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(18,32,51,0.08);
  display: grid;
  gap: 0.85rem;
}
.net-site-card-main {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.9rem;
  align-items: start;
  color: inherit;
}
.net-site-card-main:hover h3 { color: var(--signal); }
.net-site-logo,
.net-site-logo-fallback,
.site-kit-logo,
.site-kit-logo-fallback,
.brand-hero-logo,
.brand-entry-logo {
  object-fit: contain;
  background: #fff;
}
.net-site-logo,
.net-site-logo-fallback {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  border: 1px solid rgba(18,32,51,0.08);
}
.net-site-logo-fallback,
.site-kit-logo-fallback {
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--signal);
  background: rgba(240,122,26,0.08);
}
.net-site-card h3 {
  margin: 0 0 0.2rem;
  font-size: 1.25rem;
}
.net-site-card .role {
  color: var(--signal);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.45rem;
}
.net-site-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}
.net-site-card-foot {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(18,32,51,0.06);
}
.net-site-ext {
  color: var(--ink-muted);
  font-size: 0.85rem;
  font-weight: 600;
}
.net-site-ext:hover { color: var(--signal); }

.site-kit {
  padding: 2.5rem 0 1rem;
}
.site-kit-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
  font-weight: 600;
}
.site-kit-crumb a:hover { color: var(--signal); }
.site-kit-eyebrow {
  margin: 0 0 0.85rem;
}
.site-kit-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem 1.25rem;
  align-items: center;
  margin-bottom: 1rem;
}
.site-kit-logo,
.site-kit-logo-fallback {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  border: 1px solid rgba(18,32,51,0.1);
}
.site-kit-logo-fallback { font-size: 1.65rem; }
.site-kit-identity h1 {
  margin: 0;
  font-size: clamp(1.85rem, 3.5vw, 2.55rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.site-kit-role {
  margin: 0.35rem 0 0;
  color: var(--signal);
  font-weight: 700;
  font-size: 1rem;
}
.site-kit-lead {
  margin: 0 0 1rem;
  max-width: 42rem;
}
.site-kit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.site-kit-authority {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.75rem;
  align-items: center;
  justify-content: flex-end;
}
.auth-score {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.auth-score-label {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 0.9rem;
}
.auth-score-box {
  min-width: 2.75rem;
  min-height: 2.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: #fff;
}
.auth-da .auth-score-box { background: #0f7468; }
.auth-pa .auth-score-box { background: #d97706; }
.auth-da .auth-score-label { color: #0f7468; }
.auth-pa .auth-score-label { color: #b45309; }
.info-tip-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.info-tip-btn {
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 999px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  padding: 0;
  display: inline-grid;
  place-items: center;
  opacity: 0.8;
  cursor: help;
}
.info-tip-bubble {
  position: absolute;
  bottom: calc(100% + 0.55rem);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: min(16.5rem, 70vw);
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  background: #122033;
  color: rgba(255,255,255,0.88);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.4;
  box-shadow: 0 10px 28px rgba(10, 16, 24, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  z-index: 20;
  text-align: left;
}
.info-tip-bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border: 5px solid transparent;
  border-top-color: #122033;
}
.info-tip-bubble strong {
  display: block;
  color: #fff;
  margin-bottom: 0.2rem;
  font-size: 0.8rem;
}
.info-tip-wrap:hover .info-tip-bubble,
.info-tip-wrap:focus-within .info-tip-bubble {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.site-kit-list li.is-offer {
  color: var(--ink-text);
  font-weight: 700;
}
.site-kit-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.site-kit-metrics div {
  padding: 0.9rem 1rem;
  border-top: 2px solid rgba(240,122,26,0.55);
  background: rgba(18,32,51,0.03);
}
.site-kit-metrics strong {
  display: block;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.site-kit-metrics span {
  color: var(--ink-muted);
  font-size: 0.8rem;
}
.site-kit-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 1.75rem;
}
.site-kit h2 {
  font-size: 1.25rem;
  margin: 1.5rem 0 0.55rem;
}
.site-kit h2:first-child { margin-top: 0; }
.site-kit-note {
  margin: 0 0 0.75rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
}
.site-kit-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-kit-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(18,32,51,0.07);
  color: var(--ink-muted);
}
.site-kit-side { display: grid; gap: 0.85rem; align-content: start; }
.site-kit-panel {
  padding: 1.1rem 1.15rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(18,32,51,0.08);
}
.site-kit-panel h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}
.brand-hero-title {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.25rem;
}
.brand-hero-logo {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.2);
  background: #fff;
  flex-shrink: 0;
  object-fit: contain;
}
.brand-hero-logo-fallback {
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--signal);
  background: rgba(255,255,255,0.96);
}
.brand-hero-identity h1 {
  margin-bottom: 0.35rem;
}
.brand-hero-identity .lead {
  margin-bottom: 0;
}
.brand-entry-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.brand-entry-logo {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  border: 1px solid rgba(18,32,51,0.08);
  flex-shrink: 0;
}
.topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}
.topic-list span {
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--paper-2);
  font-size: 0.8rem;
  font-weight: 500;
}
.status-soon {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: rgba(43,184,167,0.14);
  color: #0f7468;
  font-size: 0.7rem;
  font-weight: 700;
  vertical-align: middle;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}
.panel {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(18,32,51,0.08);
}
.panel h3 { font-size: 1.15rem; }
.panel li {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(18,32,51,0.06);
  color: var(--ink-muted);
}
.panel li:last-child { border-bottom: 0; }

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.package {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(18,32,51,0.08);
  min-height: 240px;
}
.package h3 { font-size: 1.2rem; }
.package ul { margin-top: 1rem; }
.package li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
}
.package li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
}
.package.tone-premium {
  background: linear-gradient(160deg, #171f2c, #101722);
  color: #fff;
  border-color: rgba(240,122,26,0.3);
}
.package.tone-premium li { color: rgba(255,255,255,0.75); }

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(18,32,51,0.08);
  background: #fff;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
th, td {
  text-align: left;
  padding: 0.95rem 1.1rem;
  border-bottom: 1px solid rgba(18,32,51,0.06);
}
th {
  background: var(--paper-2);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
tr:last-child td { border-bottom: 0; }

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background: linear-gradient(135deg, #101822, #1b2838 55%, #14202e);
  color: #fff;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,122,26,0.28), transparent 65%);
}
.cta-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.4em;
  color: #fff;
}
.cta-band p { color: var(--muted); max-width: 34rem; margin: 0; }

.form-grid {
  display: grid;
  gap: 1rem;
  max-width: 640px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
}
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(18,32,51,0.14);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font: inherit;
  background: #fff;
  color: var(--ink-text);
}
textarea { min-height: 140px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(240,122,26,0.35);
  border-color: var(--signal);
}

.note {
  padding: 1rem 1.15rem;
  border-radius: 12px;
  background: rgba(240,122,26,0.08);
  border: 1px solid rgba(240,122,26,0.18);
  color: #7a3d08;
  font-size: 0.92rem;
}

.logo-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.logo-pill {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.88rem;
}

/* Footer */
.site-footer {
  background: #070b12;
  color: rgba(255,255,255,0.72);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand p { color: var(--muted); max-width: 28rem; }
.footer-meta { color: rgba(255,255,255,0.4); font-size: 0.88rem; }
.site-footer h3 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-links li,
.footer-contact li { margin-bottom: 0.55rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
}
.footer-cats { max-width: 40rem; text-align: right; }

@media (max-width: 980px) {
  .stats-grid,
  .network-grid,
  .corp-grid,
  .corp-grid-5,
  .package-grid,
  .metric-grid,
  .domain-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .eco-map,
  .two-col { grid-template-columns: 1fr; }
  .eco-core { width: min(100%, 320px); }
  .eco-item { gap: 0.7rem; padding: 0.85rem 0.9rem; }
  .brand-cards,
  .net-site-cards,
  .site-kit-metrics,
  .site-kit-grid { grid-template-columns: 1fr; }
  .site-kit-head {
    grid-template-columns: 64px 1fr;
  }
  .site-kit-authority {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
  .site-kit-logo,
  .site-kit-logo-fallback { width: 64px; height: 64px; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 1rem 1.25rem 1.25rem;
    background: rgba(10,16,24,0.97);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.is-open { display: flex; }
  .site-nav ul { flex-direction: column; align-items: stretch; }
  .header-cta { width: 100%; }
  .home-hero-inner { padding-top: 3.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-cats { text-align: left; }
}

@media (max-width: 720px) {
  .portfolio-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .stats-grid,
  .network-grid,
  .corp-grid,
  .corp-grid-5,
  .package-grid,
  .metric-grid,
  .domain-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions { width: 100%; }
  .hero-actions .btn { width: 100%; }
}
