*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #071012;
  --panel: #0d171a;
  --line: rgba(218, 239, 229, 0.12);
  --text: #e8f4ef;
  --muted: #8aa19a;
  --soft: #516761;
  --amber: #f3b44b;
  --red: #ff6b6b;
  --cyan: #47d5d0;
  --green: #74d99f;
}
body {
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(9, 18, 21, 0.82), rgba(7, 16, 18, 0.96)),
    url("hormuz-hero.png") center top / cover fixed;
  color: var(--text);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
.shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 16, 18, 0.86);
  backdrop-filter: blur(16px);
}
.topbar-inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  min-width: max-content;
}
.brand-mark {
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(243, 180, 75, 0.16);
}
.navlinks { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.navlinks a {
  color: var(--muted);
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 700;
}
.navlinks a:hover { border-color: var(--line); color: var(--text); background: rgba(255,255,255,0.04); }
.navlinks .coffee {
  color: var(--amber);
  background: rgba(243, 180, 75, 0.08);
  border-color: rgba(243, 180, 75, 0.24);
  font-weight: 900;
}
.language-control {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 5px 7px 5px 10px;
  font-size: 0.74rem;
  font-weight: 800;
}
.language-control select {
  color: var(--text);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 4px 6px;
  font: inherit;
}
.hero {
  min-height: 74vh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: end;
  gap: 34px;
  padding: 66px 0 34px;
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--amber);
  background: rgba(243, 180, 75, 0.09);
  border: 1px solid rgba(243, 180, 75, 0.28);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.pulse { width: 8px; height: 8px; border-radius: 99px; background: var(--amber); box-shadow: 0 0 0 7px rgba(243, 180, 75, 0.12); }
h1 {
  font-size: clamp(2.5rem, 8vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0;
  max-width: 850px;
  margin-bottom: 20px;
  text-wrap: balance;
}
.lead {
  color: #b7c9c3;
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 700px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.meta-chip {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 9px 11px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}
.ops-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 430px;
  background: linear-gradient(160deg, rgba(13, 23, 26, 0.92), rgba(18, 28, 32, 0.84));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
}
.ops-title {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.signal {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.signal strong { display: block; font-size: 0.98rem; margin-bottom: 4px; }
.signal span { display: block; color: var(--muted); font-size: 0.82rem; }
.signal code {
  height: 28px;
  min-width: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: 6px;
  color: var(--amber);
  background: rgba(243, 180, 75, 0.1);
  border: 1px solid rgba(243, 180, 75, 0.26);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 900;
}
.coffee-panel {
  margin-top: 18px;
  border: 1px solid rgba(243, 180, 75, 0.26);
  background: rgba(243, 180, 75, 0.055);
  border-radius: 8px;
  padding: 16px;
}
.coffee-panel p { color: #d8c9a8; font-size: 0.86rem; margin: 8px 0 14px; }
.coffee-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  border-radius: 8px;
  background: rgba(243, 180, 75, 0.12);
  border: 1px solid rgba(243, 180, 75, 0.26);
  color: var(--amber);
  font-weight: 900;
}
.revenue-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.revenue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.revenue-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 214px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 23, 26, 0.68);
}
.revenue-card.featured {
  border-color: rgba(243, 180, 75, 0.26);
  background:
    linear-gradient(150deg, rgba(243, 180, 75, 0.07), transparent 52%),
    rgba(13, 23, 26, 0.76);
}
.revenue-kicker {
  width: fit-content;
  border: 1px solid rgba(71, 213, 208, 0.26);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(71, 213, 208, 0.08);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 9px;
}
.revenue-card h3 {
  font-size: 1.12rem;
  line-height: 1.2;
}
.revenue-card p {
  color: var(--muted);
  font-size: 0.88rem;
  flex: 1;
}
.revenue-card strong {
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 800;
}
.revenue-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 36px;
  border-radius: 8px;
  color: var(--amber);
  background: transparent;
  border: 1px solid rgba(243, 180, 75, 0.28);
  font-weight: 900;
  font-size: 0.78rem;
  padding: 0 12px;
}
.section { padding: 34px 0; }
.live-board {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.live-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 16px;
}
.live-clock {
  min-width: 170px;
  background: rgba(13, 23, 26, 0.88);
  border: 1px solid rgba(71, 213, 208, 0.18);
  border-radius: 8px;
  padding: 12px 14px;
  text-align: right;
}
.live-clock span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.live-clock strong {
  color: var(--cyan);
  font-size: 1.42rem;
  font-variant-numeric: tabular-nums;
}
.radar-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 12px;
}
.radar-screen {
  min-height: 440px;
  background: radial-gradient(circle at center, rgba(71, 213, 208, 0.12), rgba(13, 23, 26, 0.92) 52%, rgba(6, 14, 16, 0.98));
  border: 1px solid rgba(71, 213, 208, 0.18);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.radar-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.025), rgba(255,255,255,0.025) 1px, transparent 1px, transparent 7px);
  pointer-events: none;
  mix-blend-mode: screen;
}
.radar-topline {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(71, 213, 208, 0.16);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.radar-topline b { color: var(--amber); }
.radar-map {
  position: relative;
  height: 338px;
  overflow: hidden;
}
.coast {
  position: absolute;
  width: 46%;
  height: 46%;
  display: grid;
  place-items: center;
  color: rgba(232, 244, 239, 0.28);
  font-weight: 900;
  letter-spacing: 0.2em;
  border: 1px solid rgba(232, 244, 239, 0.08);
  background: rgba(232, 244, 239, 0.06);
}
.coast-iran {
  top: -18%;
  left: -8%;
  transform: rotate(-11deg);
  border-radius: 0 0 42% 0;
}
.coast-oman {
  bottom: -20%;
  right: -9%;
  transform: rotate(-10deg);
  border-radius: 42% 0 0 0;
}
.lane {
  position: absolute;
  left: 14%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(71, 213, 208, 0.6), transparent);
  transform: rotate(-12deg);
}
.lane-a { top: 43%; }
.lane-b { top: 56%; }
.range-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(71, 213, 208, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.ring-1 { width: 170px; height: 170px; }
.ring-2 { width: 310px; height: 310px; }
.ring-3 { width: 470px; height: 470px; }
.vessel {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #dffbf9;
  background: rgba(5, 14, 16, 0.75);
  border: 1px solid rgba(71, 213, 208, 0.28);
  border-radius: 999px;
  padding: 5px 8px;
  font-size: 0.66rem;
  font-weight: 900;
}
.vessel i,
.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(71, 213, 208, 0.1);
}
.vessel.dark i,
.dot.dark { background: var(--red); box-shadow: 0 0 0 5px rgba(255, 107, 107, 0.1); }
.vessel.lng i,
.dot.warn { background: var(--amber); box-shadow: 0 0 0 5px rgba(243, 180, 75, 0.1); }
.v1 { left: 37%; top: 40%; animation: driftA 11s linear infinite; }
.v2 { left: 56%; top: 55%; animation: driftB 13s linear infinite; }
.v3 { left: 62%; top: 34%; }
.v4 { left: 24%; top: 61%; animation: driftC 16s linear infinite; }
@keyframes driftA { 0%,100% { transform: translate(0,0); } 50% { transform: translate(42px,-9px); } }
@keyframes driftB { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-38px,10px); } }
@keyframes driftC { 0%,100% { transform: translate(0,0); } 50% { transform: translate(50px,-4px); } }
.radar-legend {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 16px;
  border-top: 1px solid rgba(71, 213, 208, 0.16);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}
.radar-legend span { display: inline-flex; align-items: center; gap: 7px; }
.live-stack {
  display: grid;
  gap: 12px;
}
.status-tile {
  background: rgba(13, 23, 26, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}
.status-tile.status-red { border-color: rgba(255, 107, 107, 0.28); }
.status-tile span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 9px;
}
.status-tile strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
  margin-bottom: 10px;
}
.status-tile p { color: var(--muted); font-size: 0.88rem; }
.intel-tape {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}
.intel-tape article {
  min-width: 0;
  background: rgba(13, 23, 26, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}
.intel-tape time {
  color: var(--amber);
  font-size: 0.68rem;
  font-weight: 900;
}
.intel-tape strong {
  display: block;
  margin: 5px 0;
  font-size: 0.9rem;
}
.intel-tape span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}
.briefing-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  align-items: stretch;
}
.briefing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.briefing-card,
.audience-panel,
.watch-card,
.market-card,
.method-card {
  background: rgba(13, 23, 26, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.briefing-card {
  padding: 18px;
  min-height: 210px;
}
.briefing-card.urgent { border-color: rgba(243, 180, 75, 0.34); background: rgba(34, 27, 16, 0.78); }
.card-kicker {
  display: inline-block;
  color: var(--amber);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.briefing-card h3,
.audience-panel h3,
.watch-card h3 {
  font-size: 1.08rem;
  line-height: 1.2;
  margin-bottom: 10px;
}
.briefing-card p,
.watch-card p,
.method-card p {
  color: var(--muted);
  font-size: 0.88rem;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 16px;
}
.eyebrow {
  color: var(--cyan);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
  margin-bottom: 8px;
}
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); line-height: 1.08; text-wrap: balance; }
.section-note { color: var(--muted); max-width: 460px; font-size: 0.9rem; }
.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.metric, .bluf-card, .news-card, .source-card {
  background: rgba(13, 23, 26, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 0;
}
.metric { padding: 18px; }
.metric-value {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.9;
  font-weight: 900;
  margin-bottom: 12px;
}
.metric-label { color: var(--muted); font-size: 0.82rem; }
.tone-amber { color: var(--amber); }
.tone-red { color: var(--red); }
.tone-cyan { color: var(--cyan); }
.tone-green { color: var(--green); }
.bluf-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.bluf-card { padding: 20px; }
.bluf-card small { color: var(--amber); font-weight: 900; letter-spacing: 0.12em; }
.bluf-card h3 { margin: 14px 0 10px; font-size: 1.1rem; line-height: 1.2; }
.bluf-card p { color: var(--muted); font-size: 0.9rem; }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.audience-panel { padding: 22px; }
.checklist {
  list-style: none;
  display: grid;
  gap: 11px;
  color: var(--muted);
  font-size: 0.9rem;
}
.checklist li {
  position: relative;
  padding-left: 20px;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
}
.watch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.watch-card { padding: 18px; }
.watch-card span {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.watch-card.high { border-color: rgba(255, 107, 107, 0.3); }
.watch-card.high span { color: var(--red); }
.watch-card.medium { border-color: rgba(243, 180, 75, 0.3); }
.watch-card.medium span { color: var(--amber); }
.watch-card.low { border-color: rgba(116, 217, 159, 0.3); }
.watch-card.low span { color: var(--green); }
.market-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.market-card {
  padding: 16px;
  display: grid;
  gap: 7px;
}
.market-card strong { font-size: 0.98rem; }
.market-card span { color: var(--muted); font-size: 0.86rem; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.news-card {
  padding: 18px;
  display: flex;
  flex-direction: column;
  min-height: 270px;
}
.news-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}
.tag {
  color: var(--cyan);
  background: rgba(71, 213, 208, 0.09);
  border: 1px solid rgba(71, 213, 208, 0.2);
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.news-date { color: var(--soft); font-size: 0.75rem; font-weight: 700; white-space: nowrap; }
.news-card h3 { font-size: 1.02rem; line-height: 1.25; margin-bottom: 10px; }
.news-card p { color: var(--muted); font-size: 0.86rem; flex: 1; }
.news-foot {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 800;
}
.read-link { color: var(--amber); }
.source-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.source-card { padding: 14px; color: var(--muted); font-size: 0.84rem; font-weight: 800; }
.source-card:hover { color: var(--text); border-color: rgba(243, 180, 75, 0.32); }
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.method-card { padding: 16px; }
.method-card b { display: block; margin-bottom: 7px; color: var(--text); }
.creator-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: rgba(9, 20, 20, 0.58);
  border-radius: 8px;
  box-shadow: none;
}
.creator-card h2 {
  font-size: 1.08rem;
  line-height: 1.15;
}
.creator-card p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}
.creator-card a {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: var(--amber);
  border: 1px solid rgba(243, 180, 75, 0.26);
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.78rem;
  padding: 0 12px;
}
.disclaimer {
  color: var(--soft);
  border-top: 1px solid var(--line);
  padding: 28px 0 46px;
  font-size: 0.82rem;
}
.offline-page {
  min-height: 100vh;
  display: grid;
  align-content: center;
  padding: 48px 0;
}
.offline-link {
  width: fit-content;
  min-width: 190px;
  margin-top: 24px;
  padding: 0 22px;
}
@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 44px; }
  .ops-card { min-height: auto; }
  .radar-layout { grid-template-columns: 1fr; }
  .intel-tape { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .briefing-strip { grid-template-columns: 1fr; }
  .briefing-grid, .metrics, .bluf-grid, .news-grid, .source-row, .watch-grid, .market-grid, .method-grid, .revenue-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .audience-grid { grid-template-columns: 1fr; }
  .creator-card { grid-template-columns: 1fr; align-items: start; }
}
@media (max-width: 620px) {
  .shell { width: min(100% - 24px, 1180px); }
  .topbar-inner { align-items: flex-start; flex-direction: column; padding: 12px 0; }
  .navlinks { justify-content: flex-start; }
  .hero { padding-top: 34px; }
  .live-header { display: block; }
  .live-clock { margin-top: 12px; text-align: left; }
  .intel-tape { grid-template-columns: 1fr; }
  .radar-screen { min-height: 380px; }
  .radar-map { height: 286px; }
  .briefing-grid, .metrics, .bluf-grid, .news-grid, .source-row, .watch-grid, .market-grid, .method-grid, .revenue-grid { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .section-note { margin-top: 10px; }
}
