:root {
  --navy: #060b18;
  --navy-2: #0d1a36;
  --navy-3: #122447;
  --gold: #d4af37;
  --gold-2: #f0d78c;
  --text: #f3f4f7;
  --muted: #9aa6bd;
  --card: rgba(13, 26, 54, 0.72);
  --line: rgba(212, 175, 55, 0.22);
}

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

html, body {
  background: var(--navy);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
}

body {
  line-height: 1.55;
  overflow-x: hidden;
  min-height: 100vh;
}

#bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 500px at 15% -10%, rgba(212, 175, 55, 0.16), transparent 55%),
    radial-gradient(700px 480px at 110% 20%, rgba(80, 140, 255, 0.12), transparent 50%),
    radial-gradient(600px 400px at 50% 110%, rgba(212, 175, 55, 0.08), transparent 50%),
    var(--navy);
  animation: wash 18s ease-in-out infinite alternate;
}

@keyframes wash {
  0% { filter: hue-rotate(0deg) saturate(1); }
  100% { filter: hue-rotate(12deg) saturate(1.15); }
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  opacity: 0.4;
}

.orb.a {
  width: 280px;
  height: 280px;
  background: #d4af37;
  top: 8%;
  left: -80px;
  animation: driftA 16s ease-in-out infinite;
}

.orb.b {
  width: 340px;
  height: 340px;
  background: #2a5cff;
  top: 40%;
  right: -120px;
  animation: driftB 22s ease-in-out infinite;
}

.orb.c {
  width: 220px;
  height: 220px;
  background: #f0d78c;
  bottom: 4%;
  left: 30%;
  animation: driftC 19s ease-in-out infinite;
}

@keyframes driftA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, 40px) scale(1.15); }
}

@keyframes driftB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-70px, -50px) scale(1.2); }
}

@keyframes driftC {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -60px) scale(1.1); }
}

canvas#net {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.wrap {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 28px 22px 80px;
}

.site-header {
  text-align: center;
  padding: 40px 0 28px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  animation: rise 0.9s ease both;
}

.eyebrow {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--gold);
  font-family: system-ui, sans-serif;
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(28px, 7vw, 44px);
  font-weight: 400;
  line-height: 1.15;
}

.sub {
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
}

nav.main {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 26px;
  font-family: system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav.main a {
  color: var(--gold);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color 0.2s, text-shadow 0.2s, border-color 0.2s, background 0.2s;
}

nav.main a:hover,
nav.main a.active {
  color: var(--gold-2);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.45);
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.08);
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s;
}

a:hover {
  color: var(--gold-2);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.45);
}

main section,
.page-section {
  padding: 40px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  animation: rise 0.8s ease both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

h2 {
  font-size: 26px;
  font-weight: 400;
  color: var(--gold-2);
  margin-bottom: 16px;
}

h3 {
  font-size: 18px;
  font-weight: 400;
  color: var(--gold);
  margin: 22px 0 10px;
  font-family: system-ui, sans-serif;
  letter-spacing: 0.04em;
}

p {
  margin-bottom: 14px;
  color: #d8deea;
}

ul.clean {
  list-style: none;
  margin: 12px 0 18px;
}

ul.clean li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  color: #d8deea;
}

ul.clean li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.lead {
  font-size: 1.08em;
  color: #e6ebf5;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  display: inline-block;
  font-family: system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  background: radial-gradient(circle at 30% 20%, rgba(240, 215, 140, 0.22), rgba(13, 26, 54, 0.95));
  color: var(--gold-2);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.12);
}

.btn:hover {
  color: #fff8e0;
  border-color: var(--gold-2);
}

.btn.ghost {
  background: transparent;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.06), inset 0 0 18px rgba(212, 175, 55, 0.04);
  backdrop-filter: blur(6px);
}

.card .label {
  font-family: system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 17px;
}

.card p {
  margin-bottom: 0;
  font-size: 0.95em;
}

/* Hierarchy bubbles */
.tree {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  width: 100%;
}

.stem {
  width: 2px;
  height: 22px;
  background: linear-gradient(to bottom, rgba(212, 175, 55, 0.7), rgba(212, 175, 55, 0.15));
}

.stem.wide {
  width: min(70%, 280px);
  height: 2px;
  background: rgba(212, 175, 55, 0.35);
  margin: 0 auto;
}

.bubble {
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: system-ui, sans-serif;
  border: 1px solid rgba(212, 175, 55, 0.55);
  background: radial-gradient(circle at 32% 28%, rgba(240, 215, 140, 0.28), rgba(13, 26, 54, 0.92) 58%);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.18), inset 0 0 18px rgba(212, 175, 55, 0.08);
  animation: float 5.5s ease-in-out infinite;
  padding: 10px;
}

.bubble .role {
  color: var(--gold-2);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bubble .job {
  color: #c9d3e4;
  font-size: 11px;
  margin-top: 4px;
  line-height: 1.25;
  max-width: 90%;
}

.ceo { width: 168px; height: 168px; }
.cfo, .csuite { width: 132px; height: 132px; }
.cfo { animation-delay: 0.4s; }
.csuite { animation-delay: 0.7s; }
.svp { width: 124px; height: 124px; animation-delay: 1s; }
.mgr { width: 118px; height: 118px; animation-delay: 1.3s; }
.clk { width: 110px; height: 110px; animation-delay: 1.6s; }
.ceo .role { font-size: 16px; }
.cfo .role,
.csuite .role,
.svp .role,
.mgr .role,
.clk .role { font-size: 13px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.role-list {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.role-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(13, 26, 54, 0.55);
}

.role-item .role-name {
  font-family: system-ui, sans-serif;
  color: var(--gold-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 13px;
}

.role-item p {
  margin: 0;
  font-size: 0.95em;
}

@media (max-width: 560px) {
  .role-item {
    grid-template-columns: 1fr;
  }
}

/* Day cards / The Show */
.day-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.day-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(13, 26, 54, 0.65);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.05);
}

.day-badge {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: system-ui, sans-serif;
  border: 1px solid rgba(212, 175, 55, 0.55);
  background: radial-gradient(circle at 32% 28%, rgba(240, 215, 140, 0.28), rgba(13, 26, 54, 0.92) 58%);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.16);
}

.day-badge .num {
  color: var(--gold-2);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
}

.day-badge .status {
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c9d3e4;
}

.day-card.upcoming {
  opacity: 0.72;
  border-style: dashed;
}

.day-card.upcoming .day-badge {
  opacity: 0.85;
}

.day-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.day-card p {
  margin: 0;
  font-size: 0.95em;
}

.meta {
  font-family: system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.chip {
  font-family: system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-2);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(212, 175, 55, 0.06);
}

.contact-block {
  margin-top: 8px;
  padding: 22px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 20% 0%, rgba(212, 175, 55, 0.12), rgba(13, 26, 54, 0.8) 55%);
}

.contact-block .company {
  font-size: 20px;
  color: var(--gold-2);
  margin-bottom: 6px;
}

.contact-block .place {
  color: var(--muted);
  font-family: system-ui, sans-serif;
  font-size: 14px;
  margin-bottom: 16px;
}

footer {
  text-align: center;
  padding-top: 36px;
  color: var(--muted);
  font-size: 13px;
  font-family: system-ui, sans-serif;
}

footer .fine {
  margin-top: 8px;
  font-size: 11px;
  opacity: 0.85;
}

@media (max-width: 560px) {
  .day-card {
    grid-template-columns: 72px 1fr;
  }
  .day-badge {
    width: 72px;
    height: 72px;
  }
  .day-badge .num { font-size: 13px; }
}

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