:root{
  --bg: #0B1622;
  --bg-alt: #101F30;
  --surface: #16283C;
  --accent: #E7B24B;
  --accent-soft: rgba(231,178,75,0.14);
  --teal: #4FD1C5;
  --text: #F5F1E8;
  --text-muted: #93A5BB;
  --rule: rgba(245,241,232,0.12);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(79,209,197,0.08), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(231,178,75,0.10), transparent 60%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  position: relative;
}

/* ---------- Watermark "24" ---------- */
.ghost-number{
  position: fixed;
  right: -4vw;
  bottom: -12vh;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: min(60vw, 620px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245,241,232,0.06);
  user-select: none;
  pointer-events: none;
  z-index: 0;
  animation: breathe 9s ease-in-out infinite;
}

@keyframes breathe{
  0%, 100%{ transform: scale(1); opacity: 0.9; }
  50%{ transform: scale(1.03); opacity: 1; }
}

/* ---------- Masthead ---------- */
.masthead{
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 28px clamp(20px, 6vw, 64px) 22px;
  border-bottom: 1px solid var(--rule);
  animation: fadeDown 0.7s ease both;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--surface);
  border: 1px solid var(--rule);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}

.brand-name{
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.22em;
  color: var(--text);
}

.live{
  display: flex;
  align-items: center;
  gap: 8px;
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.live-dot{
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(231,178,75,0.6);
  animation: pulseDot 2.2s ease-in-out infinite;
}

@keyframes pulseDot{
  0%{ box-shadow: 0 0 0 0 rgba(231,178,75,0.55); }
  70%{ box-shadow: 0 0 0 8px rgba(231,178,75,0); }
  100%{ box-shadow: 0 0 0 0 rgba(231,178,75,0); }
}

/* ---------- Hero ---------- */
.hero{
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px clamp(20px, 6vw, 64px);
  max-width: 980px;
  margin: 0 auto;
}

.eyebrow{
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  animation: fadeUp 0.7s ease 0.1s both;
}

.headline{
  margin: 0 0 34px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  animation: fadeUp 0.8s ease 0.2s both;
}

.headline .accent{
  font-style: italic;
  font-weight: 900;
  color: var(--accent);
}

.topics{
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  animation: fadeUp 0.8s ease 0.35s both;
}

.topics li{
  padding: 9px 18px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--surface);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.topics li:hover{
  color: var(--text);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ---------- Footer ---------- */
.site-footer{
  position: relative;
  z-index: 2;
  padding: 0 clamp(20px, 6vw, 64px) 30px;
  animation: fadeUp 0.8s ease 0.5s both;
}

.footer-rule{
  height: 1px;
  background: var(--rule);
  margin-bottom: 22px;
}

.footer-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.copyright{
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.mail{
  font-size: 13px;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.mail:hover{
  color: var(--accent);
  border-color: var(--accent);
}

.socials{
  display: flex;
  justify-content: center;
  gap: 14px;
}

.socials a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  border: 1px solid var(--rule);
  background: var(--surface);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.socials a:hover{
  border-color: var(--accent);
  transform: translateY(-2px);
}

.socials svg{
  width: 16px;
  height: 16px;
  fill: var(--text-muted);
}

.socials a:hover svg{
  fill: var(--accent);
}

/* ---------- Animations ---------- */
@keyframes fadeDown{
  from{ opacity: 0; transform: translateY(-10px); }
  to{ opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp{
  from{ opacity: 0; transform: translateY(14px); }
  to{ opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 560px){
  .masthead{ padding: 22px 20px 18px; }
  .brand-name{ letter-spacing: 0.14em; font-size: 12px; }
}
