/* ===========================================================
   KEYONA TV — Design tokens
   Derived from brand mark: chrome ring, blue→orange K, charcoal ground
   =========================================================== */
:root {
  --ink-black: #0e0e10;
  --charcoal: #17171a;
  --charcoal-raised: #1f2023;
  --chrome: #e9eaec;
  --chrome-dim: #9a9ba1;
  --line: rgba(233, 234, 236, 0.09);

  --blue: #1e5fd9;
  --blue-bright: #3f8cf0;
  --cyan: #4fb8e8;
  --orange: #f5941f;
  --orange-bright: #ffab3d;

  --grad-signature: linear-gradient(115deg, var(--blue) 0%, var(--cyan) 48%, var(--orange) 100%);

  --font-display: 'Archivo Expanded', 'Archivo', sans-serif;
  --font-body: 'Archivo', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container: 1240px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  background: var(--ink-black);
  color: var(--chrome);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
.mono { font-family: var(--font-mono); letter-spacing: 0.04em; }

/* ---------- Boot screen ---------- */
.boot-screen {
  position: fixed; inset: 0; z-index: 999;
  background: var(--ink-black);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px;
  animation: bootFadeOut 0.6s var(--ease) 1.5s forwards;
}
.boot-mark { width: 96px; height: 96px; }
.boot-ring { fill: none; stroke: var(--chrome); stroke-width: 2; opacity: 0; transform-origin: center; }
.boot-ring--outer { animation: ringIn 0.7s var(--ease) 0.1s forwards; }
.boot-ring--inner { animation: ringIn 0.7s var(--ease) 0.28s forwards; }
.boot-k { opacity: 0; transform: translateY(6px); }
.boot-k--blue { fill: var(--blue); animation: kIn 0.5s var(--ease) 0.55s forwards; }
.boot-k--cyan { fill: var(--cyan); animation: kIn 0.5s var(--ease) 0.68s forwards; }
.boot-k--orange { fill: var(--orange); animation: kIn 0.5s var(--ease) 0.8s forwards; }
.boot-label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.35em;
  color: var(--chrome-dim); opacity: 0;
  animation: fadeIn 0.5s var(--ease) 1s forwards;
}
.boot-scan {
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.7; top: 0;
  animation: scanSweep 1.4s ease-in-out 0.2s infinite;
}
@keyframes scanSweep {
  0% { top: 8%; opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.8; }
  100% { top: 92%; opacity: 0; }
}
@keyframes ringIn { from { opacity: 0; transform: scale(0.85); } to { opacity: 1; transform: scale(1); } }
@keyframes kIn { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes bootFadeOut { to { opacity: 0; visibility: hidden; pointer-events: none; } }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 32px;
  display: flex; justify-content: center;
  transition: background 0.3s var(--ease), padding 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(14, 14, 16, 0.85);
  backdrop-filter: blur(16px);
  padding: 12px 32px;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  width: 100%; max-width: var(--container);
  display: flex; align-items: center; justify-content: space-between;
}
.scroll-progress {
  position: absolute; bottom: -1px; left: 0; height: 2px; width: 0%;
  background: var(--grad-signature);
  transition: width 0.1s linear;
}
.brand-mark, .btn--primary {
  transition: transform 0.15s ease-out, box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { width: 34px; height: 34px; display: block; }
.brand-mark svg { width: 100%; height: 100%; }
.ring-outer, .ring-inner { fill: none; stroke: var(--chrome); stroke-width: 5; }
.ring-inner { stroke-width: 4; opacity: 0.85; }
.brand-mark svg { transition: transform 0.6s var(--ease); }
.brand:hover .brand-mark svg { transform: rotate(90deg); }
.k-blue { fill: var(--blue); }
.k-cyan { fill: var(--cyan); }
.k-orange { fill: var(--orange); }
.brand-word {
  font-family: var(--font-display); font-weight: 800; font-size: 19px;
  letter-spacing: 0.01em; color: var(--chrome);
}
.brand-tv {
  display: inline-block; font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  background: var(--orange); color: var(--ink-black); border-radius: 50%;
  width: 16px; height: 16px; line-height: 16px; text-align: center; margin-left: 2px;
  vertical-align: middle;
}
.main-nav { display: flex; gap: 32px; }
.main-nav a {
  font-size: 14px; font-weight: 500; color: var(--chrome-dim);
  transition: color 0.2s var(--ease);
  position: relative;
}
.main-nav a:hover { color: var(--chrome); }
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 1.5px;
  background: var(--grad-signature); transition: width 0.25s var(--ease);
}
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 16px; }
.onair-chip {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); border-radius: 100px;
  padding: 6px 14px; font-size: 12px; font-weight: 600; color: var(--chrome);
}
.onair-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--orange);
  box-shadow: 0 0 0 0 rgba(245,148,31,0.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(245,148,31,0.55); }
  70% { box-shadow: 0 0 0 7px rgba(245,148,31,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,148,31,0); }
}
.nav-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 20px; height: 1.5px; background: var(--chrome); }

.mobile-menu {
  position: fixed; top: 0; right: 0; height: 100vh; width: 78%; max-width: 340px; z-index: 99;
  background: var(--charcoal); border-left: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px; padding: 100px 28px 28px;
  transform: translateX(100%); transition: transform 0.35s var(--ease);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu a { padding: 14px 0; font-size: 17px; font-weight: 600; border-bottom: 1px solid var(--line); }

@media (max-width: 860px) {
  .main-nav { display: none; }
  .onair-chip .onair-text { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- Marquee ticker ---------- */
.ticker {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  height: 30px; background: var(--grad-signature); overflow: hidden;
  display: flex; align-items: center;
}
.ticker-track {
  display: flex; white-space: nowrap; gap: 48px;
  animation: tickerScroll 26s linear infinite;
  padding-left: 100%;
}
.ticker-item {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  color: var(--ink-black); letter-spacing: 0.05em; display: flex; align-items: center; gap: 8px;
}
.ticker-item .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-black); opacity: 0.5; }
@keyframes tickerScroll { to { transform: translateX(-100%); } }
.site-header { top: 30px; }
@media (max-width: 640px) { .ticker-item { font-size: 10px; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: 170px 32px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: 50% 30%;
  opacity: 0.32;
  animation: kenBurns 24s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, var(--ink-black) 20%, rgba(14,14,16,0.75) 55%, rgba(14,14,16,0.4) 100%),
              linear-gradient(0deg, var(--ink-black) 0%, transparent 30%, transparent 80%, var(--ink-black) 100%);
}
@keyframes kenBurns {
  from { transform: scale(1) translateY(0); }
  to { transform: scale(1.12) translateY(-2%); }
}
.hero-noise {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.035) 1px, transparent 0);
  background-size: 3px 3px;
  pointer-events: none;
}
.hero-glow {
  position: absolute; top: -20%; right: -10%; width: 60%; height: 90%;
  background: radial-gradient(circle, rgba(30,95,217,0.22) 0%, rgba(245,148,31,0.12) 45%, transparent 72%);
  filter: blur(60px); pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.08); }
}
.hero-inner { position: relative; z-index: 3; max-width: 720px; margin: 0 auto 0 0; }
.hero-glow { z-index: 1; }
.hero-noise { z-index: 1; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px; font-size: 11px; color: var(--chrome-dim);
  margin-bottom: 28px; opacity: 0; animation: riseIn 0.7s var(--ease) 0.15s forwards;
}
.hero-eyebrow .divider { opacity: 0.4; }
.hero-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.02; letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-title .line { display: block; opacity: 0; transform: translateY(24px); animation: riseIn 0.8s var(--ease) forwards; }
.hero-title .line:nth-child(1) { animation-delay: 0.28s; }
.hero-title .line:nth-child(2) { animation-delay: 0.42s; }
.hero-gradient-text {
  background: var(--grad-signature);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub {
  font-size: 17px; color: var(--chrome-dim); max-width: 540px; margin-bottom: 36px;
  opacity: 0; animation: riseIn 0.7s var(--ease) 0.56s forwards;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px;
  opacity: 0; animation: riseIn 0.7s var(--ease) 0.68s forwards;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px; border-radius: 100px; font-size: 14px; font-weight: 600;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  position: relative; overflow: hidden;
}
.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--primary {
  background: var(--chrome); color: var(--ink-black);
}
.btn--primary::before {
  content: ''; position: absolute; inset: 0; background: var(--grad-signature);
  opacity: 0; transition: opacity 0.35s var(--ease);
}
.btn--primary span, .btn--primary svg { position: relative; z-index: 1; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -8px rgba(245,148,31,0.4); color: var(--ink-black); }
.btn--primary:hover::before { opacity: 1; }
.btn--ghost {
  border: 1px solid var(--line); color: var(--chrome);
}
.btn--ghost:hover { background: rgba(255,255,255,0.04); transform: translateY(-2px); border-color: rgba(233,234,236,0.35); }

.hero-schedule {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid var(--line);
  opacity: 0; animation: riseIn 0.7s var(--ease) 0.8s forwards;
}
.schedule-now, .schedule-next { display: flex; flex-direction: column; gap: 6px; position: relative; }
.schedule-now .label { color: var(--orange); font-size: 10px; display: flex; align-items: center; gap: 6px; }
.schedule-now .label::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
  animation: pulse 1.8s infinite;
}
.schedule-next .label { color: var(--chrome-dim); font-size: 10px; }
.show-name { font-weight: 600; font-size: 14px; }

.hero-frame { position: absolute; right: -180px; top: 50%; transform: translateY(-50%); z-index: 1; pointer-events: none; }
.ring-decor { border-radius: 50%; border: 1px solid var(--line); position: absolute; }
.ring-decor--1 { width: 560px; height: 560px; top: -280px; left: -280px; animation: slowSpin 90s linear infinite; }
.ring-decor--2 { width: 420px; height: 420px; top: -210px; left: -210px; border-style: dashed; opacity: 0.5; animation: slowSpin 70s linear infinite reverse; }
@keyframes slowSpin { to { transform: rotate(360deg); } }

@keyframes riseIn { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 860px) {
  .hero { padding-top: 120px; }
  .hero-frame { display: none; }
}

/* ---------- Section scaffolding ---------- */
main section { padding: 100px 32px; max-width: var(--container); margin: 0 auto; }
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px;
  flex-wrap: wrap; margin-bottom: 44px;
}
.eyebrow { display: block; color: var(--orange); font-size: 11px; margin-bottom: 10px; }
.section-head h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -0.01em; }
.section-note { max-width: 340px; color: var(--chrome-dim); font-size: 14px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Feed / rail ---------- */
.feed-tabs { display: flex; gap: 8px; margin-bottom: 28px; }
.feed-tab {
  background: none; border: 1px solid var(--line); color: var(--chrome-dim);
  padding: 8px 18px; border-radius: 100px; font-size: 13px; font-weight: 600; cursor: pointer;
  transition: all 0.2s var(--ease);
}
.feed-tab:hover { color: var(--chrome); }
.feed-tab.is-active { background: var(--chrome); color: var(--ink-black); border-color: var(--chrome); }

.feed-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px;
}
.feed-card {
  background: var(--charcoal); border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden; cursor: pointer;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.feed-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(233,234,236,0.3);
  box-shadow: 0 24px 48px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(233,234,236,0.06);
}
.feed-thumb {
  aspect-ratio: 16/9; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--charcoal-raised), var(--ink-black));
}
.feed-thumb img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
  filter: saturate(0.92) brightness(0.88);
}
.feed-card:hover .feed-thumb img { transform: scale(1.09); filter: saturate(1.05) brightness(0.95); }
.feed-thumb-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,14,16,0) 40%, rgba(14,14,16,0.85) 100%);
  transition: opacity 0.4s var(--ease);
}
.feed-play {
  position: absolute; inset: 0; margin: auto; width: 48px; height: 48px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(14,14,16,0.55); backdrop-filter: blur(6px);
  border: 1.5px solid rgba(233,234,236,0.55);
  opacity: 0; transform: scale(0.8);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.feed-card:hover .feed-play {
  opacity: 1; transform: scale(1);
  border-color: var(--chrome); background: rgba(14,14,16,0.75);
}
.feed-thumb-icon { width: 16px; height: 16px; z-index: 1; }
.feed-source-badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-size: 10px; font-weight: 700; padding: 4px 9px; border-radius: 100px;
  font-family: var(--font-mono);
  transform: translateY(0); transition: transform 0.35s var(--ease);
}
.feed-card:hover .feed-source-badge { transform: translateY(-2px); }
.feed-source-badge--youtube { background: #ff3d3d; color: #fff; }
.feed-source-badge--facebook { background: #3f8cf0; color: #fff; }
.feed-body { padding: 16px; }
.feed-title {
  font-weight: 600; font-size: 14.5px; margin-bottom: 6px; line-height: 1.35;
  transition: color 0.3s var(--ease);
}
.feed-card:hover .feed-title { color: var(--orange-bright); }
.feed-meta { font-size: 11px; color: var(--chrome-dim); }

.feed-actions { display: flex; gap: 24px; margin-top: 32px; flex-wrap: wrap; }
.text-link { font-size: 13px; font-weight: 600; color: var(--chrome-dim); transition: color 0.2s; }
.text-link:hover { color: var(--chrome); }

/* ---------- Shows ---------- */
.shows-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.show-card--wide { grid-column: span 2; }
.show-card {
  background: var(--charcoal); border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.show-card:hover {
  transform: translateY(-8px);
  border-color: rgba(233,234,236,0.25);
  box-shadow: 0 28px 50px -22px rgba(0,0,0,0.55);
}
.show-card-media {
  aspect-ratio: 16/10; position: relative; overflow: hidden;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  isolation: isolate;
  transition: transform 0.6s var(--ease);
}
.show-card-media > * { position: relative; z-index: 1; }
.show-card--wide .show-card-media { aspect-ratio: 21/9; }
.show-card-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(14,14,16,0.15) 0%, rgba(14,14,16,0.78) 100%);
}
.show-card-ring {
  width: 56px; height: 56px; border-radius: 50%; border: 1.5px solid rgba(233,234,236,0.5); position: relative; z-index: 2;
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease);
}
.show-card:hover .show-card-ring { transform: scale(1.15) rotate(20deg); border-color: var(--chrome); }
.show-card-ring::before {
  content: ''; position: absolute; inset: 8px; border-radius: 50%; background: var(--grad-signature); opacity: 0.65;
  transition: opacity 0.4s var(--ease);
}
.show-card:hover .show-card-ring::before { opacity: 1; }
.show-card-media { background-color: var(--charcoal-raised); }
.show-card:hover .show-card-media { transform: scale(1.04); }
.show-card-body { padding: 20px; }
.show-tag { color: var(--orange); font-size: 10.5px; }
.show-card-body h3 { font-family: var(--font-display); font-size: 18px; margin: 8px 0 8px; font-weight: 700; transition: color 0.3s var(--ease); }
.show-card:hover .show-card-body h3 { color: var(--orange-bright); }
.show-card-body p { font-size: 13.5px; color: var(--chrome-dim); line-height: 1.5; }

@media (max-width: 900px) {
  .shows-strip { grid-template-columns: repeat(2, 1fr); }
  .show-card--wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .shows-strip { grid-template-columns: 1fr; }
  .show-card--wide { grid-column: span 1; }
}

/* ---------- WhatsApp ---------- */
.whatsapp-section { background: var(--charcoal); border-radius: 28px; margin: 0 32px; max-width: calc(var(--container) - 0px); padding: 0; }
.whatsapp-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.whatsapp-copy { padding: 72px 56px; display: flex; flex-direction: column; justify-content: center; }
.whatsapp-copy h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 700; margin: 12px 0 16px; }
.whatsapp-copy p { color: var(--chrome-dim); font-size: 14.5px; margin-bottom: 28px; max-width: 400px; }
.whatsapp-feed { background: var(--ink-black); padding: 40px 44px; border-left: 1px solid var(--line); display: flex; flex-direction: column; gap: 18px; }
.wa-feed-header { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.wa-dot { width: 7px; height: 7px; border-radius: 50%; background: #25D366; }
.wa-feed-header .mono { font-size: 11px; color: var(--chrome-dim); }
.wa-item { padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.wa-item:last-child { border: none; padding-bottom: 0; }
.wa-time { color: var(--chrome-dim); font-size: 10.5px; display: block; margin-bottom: 6px; }
.wa-item p { font-size: 13.5px; line-height: 1.5; }

@media (max-width: 860px) {
  .whatsapp-section { margin: 0 16px; border-radius: 20px; }
  .whatsapp-inner { grid-template-columns: 1fr; }
  .whatsapp-copy, .whatsapp-feed { padding: 40px 28px; }
  .whatsapp-feed { border-left: none; border-top: 1px solid var(--line); }
}

/* ---------- News ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.news-card { border: 1px solid var(--line); border-radius: 14px; padding: 24px; transition: border-color 0.3s var(--ease), transform 0.3s var(--ease); }
.news-card:hover { border-color: rgba(233,234,236,0.22); transform: translateY(-3px); }
.news-date { font-size: 11px; color: var(--orange); margin-bottom: 12px; display: block; }
.news-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; line-height: 1.4; }
@media (max-width: 860px) { .news-grid { grid-template-columns: 1fr; } }

/* ---------- Azam ---------- */
.azam-section { padding-bottom: 140px; }
.azam-inner {
  display: grid; grid-template-columns: 240px 1fr; gap: 56px; align-items: center;
  border: 1px solid var(--line); border-radius: 24px; padding: 56px;
  position: relative; overflow: hidden;
}
.azam-inner::before {
  content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 0% 0%, rgba(30,95,217,0.14), transparent 60%);
  pointer-events: none;
}
.azam-badge-wrap { display: flex; justify-content: center; }
.azam-badge {
  width: 180px; height: 180px; border-radius: 50%;
  border: 2px solid var(--chrome); position: relative;
  display: flex; align-items: center; justify-content: center;
  background: var(--charcoal);
}
.azam-badge::before {
  content: ''; position: absolute; inset: 12px; border-radius: 50%;
  border: 1px dashed rgba(233,234,236,0.3);
  animation: slowSpin 40s linear infinite;
}
.azam-badge::after {
  content: ''; position: absolute; inset: -10px; border-radius: 50%;
  background: var(--grad-signature); opacity: 0.15; filter: blur(18px); z-index: -1;
  animation: glowPulse 5s ease-in-out infinite;
}
.azam-ch { font-size: 30px; font-weight: 700; color: var(--chrome); }
.azam-copy h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 2.8vw, 2.1rem); font-weight: 700; margin: 12px 0 16px; }
.azam-copy p { color: var(--chrome-dim); font-size: 15px; max-width: 520px; margin-bottom: 28px; }
.azam-steps { display: flex; flex-direction: column; gap: 14px; }
.azam-step { display: flex; align-items: center; gap: 14px; font-size: 14px; }
.step-no { color: var(--orange); font-size: 12px; width: 22px; }

@media (max-width: 760px) {
  .azam-inner { grid-template-columns: 1fr; padding: 40px 28px; text-align: center; }
  .azam-step { justify-content: center; }
}

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 64px 32px 28px; }
.footer-inner { max-width: var(--container); margin: 0 auto; display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand .brand-mark { width: 40px; height: 40px; }
.footer-tag { font-family: var(--font-display); font-weight: 700; color: var(--chrome-dim); font-size: 14px; }
.footer-links { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-links > div { display: flex; flex-direction: column; gap: 12px; }
.footer-head { font-size: 11px; color: var(--chrome-dim); margin-bottom: 4px; }
.footer-links a { font-size: 14px; color: var(--chrome); opacity: 0.85; }
.footer-links a:hover { opacity: 1; }
.footer-bottom {
  max-width: var(--container); margin: 48px auto 0; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; font-size: 12px; color: var(--chrome-dim); flex-wrap: wrap; gap: 8px;
}

@media (max-width: 640px) {
  main section { padding: 72px 20px; }
  .site-header { padding: 14px 20px; }
  .hero { padding-left: 20px; padding-right: 20px; }
}
