@font-face {
  font-family: 'Bebas Neue';
  src: url('/fonts/BebasNeue-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-deep: #1a1d21;
  --border: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(255, 184, 46, 0.28);
  --text: #f5f2eb;
  --gold: #ffb82e;
  --gold-bright: #ffc857;
  --orange: #ff661f;
  --green: #5fd68a;
  --font-display: 'Bebas Neue', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
  --font-accent: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --opacity-body: 0.74;
  --opacity-muted: 0.48;
  --opacity-dim: 0.34;
  --opacity-medium: 0.62;
  --opacity-strong: 0.88;
  --max-width: 920px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg-deep);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.011em;
}

a {
  color: var(--gold-bright);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  position: relative;
  isolation: isolate;
  overflow: clip;
  min-height: 100svh;
}

.page__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 42% at 88% 6%, rgba(255, 184, 46, 0.18), transparent 70%),
    radial-gradient(ellipse 40% 30% at 8% 0%, rgba(203, 166, 89, 0.08), transparent 70%),
    radial-gradient(ellipse 50% 40% at 70% 55%, rgba(255, 102, 31, 0.05), transparent 70%);
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 24px 64px;
}

/* —— Nav —— */
.topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.topnav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}

.topnav__brand:hover {
  text-decoration: none;
}

.topnav__brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 184, 46, 0.32);
}

.topnav__brand span {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.8vw, 2.2rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
}

.topnav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(26, 29, 33, 0.78);
  backdrop-filter: blur(18px);
}

.topnav__links a {
  padding: 8px 13px;
  border-radius: 999px;
  font-family: var(--font-mono);
  color: var(--text);
  opacity: var(--opacity-medium);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.topnav__links a:hover,
.topnav__links a[aria-current='page'] {
  opacity: 1;
  background: rgba(255, 184, 46, 0.12);
  text-decoration: none;
}

/* —— Stage: one composition —— */
.stage {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(42, 46, 52, 0.92) 0%, rgba(30, 33, 38, 0.94) 55%, rgba(26, 29, 33, 0.96) 100%);
  backdrop-filter: blur(20px);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.stage__aura {
  position: absolute;
  width: 280px;
  height: 280px;
  right: -40px;
  top: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 184, 46, 0.22) 0%, rgba(255, 102, 31, 0.08) 45%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.stage__head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px 28px;
  align-items: center;
  padding: clamp(24px, 3.5vw, 36px) clamp(22px, 3.2vw, 36px) 0;
}

.stage__copy {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.stage__eyebrow {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  opacity: var(--opacity-strong);
}

.stage__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 3.4rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--text);
}

.stage__tagline {
  margin: 2px 0 0;
}

.stage__tagline-primary,
.stage__tagline-accent {
  display: block;
}

.stage__tagline-primary {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--text);
  opacity: 0.92;
}

.stage__tagline-accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  width: fit-content;
  background: linear-gradient(118deg, var(--gold-bright) 8%, #ffe08a 42%, var(--orange) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold-bright);
  padding: 0.04em 0.06em 0.06em 0;
}

.stage__mark {
  position: relative;
  width: 132px;
  height: 132px;
  flex-shrink: 0;
}

.stage__mark::before {
  content: '';
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 200, 87, 0.4), transparent 68%);
  filter: blur(14px);
  z-index: 0;
}

.stage__mark img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.stage__rule {
  margin: 22px clamp(22px, 3.2vw, 36px) 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.stage__body {
  padding: 22px clamp(22px, 3.2vw, 36px) clamp(26px, 3.5vw, 40px);
}

.stage__lede {
  margin: 0 0 18px;
  max-width: 42rem;
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.62;
  color: var(--text);
  opacity: var(--opacity-body);
}

/* —— Contact —— */
.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-gold);
  background: linear-gradient(135deg, rgba(255, 184, 46, 0.14), rgba(255, 102, 31, 0.08));
  color: var(--gold-bright);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(255, 184, 46, 0.08);
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-pill:hover {
  text-decoration: none;
  background: linear-gradient(135deg, rgba(255, 184, 46, 0.2), rgba(255, 102, 31, 0.12));
  transform: translateY(-1px);
}

/* —— Topic tiles (support) —— */
.topics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 28px;
}

.topic {
  margin: 0;
  padding: 16px 16px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}

.topic__label {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  opacity: 0.9;
}

.topic__body {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text);
  opacity: var(--opacity-body);
}

/* —— Sections —— */
.section {
  margin-top: 8px;
}

.section + .section {
  margin-top: 26px;
}

.section h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--gold-bright);
}

.section p,
.section li {
  color: var(--text);
  opacity: var(--opacity-body);
}

.section p {
  margin: 0 0 12px;
}

.section ul {
  margin: 0;
  padding-left: 1.15rem;
}

.section li {
  margin-bottom: 8px;
}

.section li strong {
  color: var(--text);
  opacity: 1;
  font-weight: 600;
}

.section a {
  font-weight: 500;
}

.stage__foot {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.stage__foot p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text);
  opacity: var(--opacity-dim);
}

/* Privacy reading rhythm */
.policy .section h2 {
  margin-top: 4px;
}

.policy .section + .section {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 720px) {
  .stage__head {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .stage__mark {
    width: 96px;
    height: 96px;
    order: -1;
  }

  .stage__mark img {
    border-radius: 22px;
  }

  .topics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topnav {
    flex-direction: column;
    align-items: flex-start;
  }

  .wrap {
    padding: 22px 16px 48px;
  }

  .stage {
    border-radius: 22px;
  }
}
