:root {
  --bg-primary: #070066;
  --bg-secondary: #000000;
  --accent-gold: #c48c51;
  --accent-red: #9a1107;
  --text-main: #f5f4ff;
  --text-soft: rgba(245, 244, 255, 0.78);
  --line-soft: rgba(196, 140, 81, 0.26);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 8% -10%, rgba(196, 140, 81, 0.2), transparent 40%),
    radial-gradient(circle at 82% 12%, rgba(154, 17, 7, 0.14), transparent 38%),
    linear-gradient(180deg, var(--bg-primary), var(--bg-secondary) 48%, var(--bg-secondary));
  overflow-x: hidden;
  line-height: 1.6;
}

body.circle-popup-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% -10%, rgba(196, 140, 81, 0.11), transparent 45%),
    radial-gradient(circle at 12% 52%, rgba(196, 140, 81, 0.06), transparent 35%),
    radial-gradient(circle at 86% 58%, rgba(154, 17, 7, 0.07), transparent 35%);
  z-index: 0;
}

main,
.site-header {
  position: relative;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: 74px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(7, 0, 102, 0.62);
  backdrop-filter: blur(10px);
  z-index: 50;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.home-nav {
  display: flex;
  gap: 18px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(196, 140, 81, 0.34);
  background: rgba(0, 0, 0, 0.36);
  color: var(--text-main);
  font-size: 1rem;
  cursor: pointer;
}

.nav-toggle:hover {
  border-color: rgba(196, 140, 81, 0.62);
}

.home-nav a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 240ms ease, text-shadow 240ms ease;
}

.home-nav a:hover {
  color: var(--accent-gold);
  text-shadow: 0 0 16px rgba(196, 140, 81, 0.5);
}

.home-nav .creator-circle-link {
  color: var(--text-main);
  border: 1px solid rgba(196, 140, 81, 0.58);
  border-radius: 999px;
  padding: 8px 14px;
  background: linear-gradient(92deg, rgba(154, 17, 7, 0.9), rgba(196, 140, 81, 0.86));
}

.home-nav .creator-circle-link:hover {
  color: var(--text-main);
  text-shadow: none;
  box-shadow: 0 0 22px rgba(154, 17, 7, 0.42);
}

section {
  padding: 120px clamp(20px, 4vw, 64px);
}

.section-head {
  max-width: 1080px;
  margin: 0 auto 24px;
}

.kicker {
  margin: 0 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 42px;
  color: var(--text-soft);
  font-size: 1.02rem;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  text-align: center;
  padding-top: 120px;
  background:
    linear-gradient(120deg, rgba(7, 0, 102, 0.85), rgba(0, 0, 0, 0.82)),
    url("img/Banner.JPG") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 22%, rgba(196, 140, 81, 0.23), transparent 40%),
    radial-gradient(circle at 78% 68%, rgba(154, 17, 7, 0.2), transparent 40%);
}

.hero-spotlight {
  position: absolute;
  inset: -18%;
  background: radial-gradient(circle at 50% 40%, rgba(196, 140, 81, 0.19), transparent 45%);
  filter: blur(26px);
  animation: drift 9s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-content {
  max-width: 940px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.2rem, 7vw, 5.8rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(22px);
  animation: heroRise 1000ms ease forwards;
}

.hero-sub {
  margin: 20px auto 30px;
  max-width: 560px;
  font-size: clamp(1.03rem, 2.4vw, 1.36rem);
  color: var(--text-soft);
  opacity: 0;
  transform: translateY(18px);
  animation: heroRise 1200ms ease 160ms forwards;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: heroRise 1200ms ease 280ms forwards;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 12px 26px;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease, color 240ms ease;
}

.primary-btn {
  color: var(--text-main);
  background: linear-gradient(90deg, #8f150d, #b3402b);
  border-color: rgba(196, 140, 81, 0.42);
}

.secondary-btn {
  color: var(--text-main);
  background: rgba(0, 0, 0, 0.42);
  border-color: rgba(196, 140, 81, 0.56);
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-3px) scale(1.01);
}

.primary-btn:hover {
  box-shadow: 0 0 26px rgba(154, 17, 7, 0.55);
}

.secondary-btn:hover {
  box-shadow: 0 0 26px rgba(196, 140, 81, 0.48);
}

.manifesto {
  text-align: center;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.82)),
    url("img/MultBries.JPG") center/cover no-repeat;
}

.manifesto h2 {
  max-width: 980px;
  margin: 0 auto;
}

.artistry {
  background: rgba(2, 0, 32, 0.72);
}

.art-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.art-grid img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(196, 140, 81, 0.22);
  filter: brightness(0.78) saturate(0.88);
  transition: transform 360ms ease, filter 360ms ease, box-shadow 360ms ease;
}

.art-grid img:nth-child(1),
.art-grid img:nth-child(2) {
  grid-column: span 6;
}

.art-grid img:nth-child(n + 3) {
  grid-column: span 4;
}

.art-grid img:hover {
  transform: scale(1.03);
  filter: brightness(1) saturate(1.03);
  box-shadow: 0 0 25px rgba(196, 140, 81, 0.26);
}

.blueprint,
.roles,
.vision,
.creators-circle {
  background: rgba(0, 0, 0, 0.42);
}

.circle-platform {
  background:
    linear-gradient(140deg, rgba(7, 0, 102, 0.5), rgba(0, 0, 0, 0.74)),
    url("img/MultBries.JPG") center/cover no-repeat;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.circle-platform .section-intro {
  margin-bottom: 24px;
}

.platform-actions {
  display: flex;
  justify-content: center;
}

.blueprint-grid,
.vision-grid,
.role-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.blueprint-item,
.vision-item,
.role-card {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(196, 140, 81, 0.24);
  background:
    linear-gradient(150deg, rgba(7, 0, 102, 0.34), rgba(0, 0, 0, 0.7));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.blueprint-item:hover,
.vision-item:hover,
.role-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 140, 81, 0.64);
  box-shadow: 0 0 26px rgba(196, 140, 81, 0.22);
}

.blueprint-item h3,
.vision-item h3,
.role-card h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  color: var(--accent-gold);
}

.blueprint-item p,
.vision-item p,
.role-card p {
  margin: 0;
  color: var(--text-soft);
}

.role-card .secondary-btn {
  margin-top: 16px;
}

.creators-circle {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.circle-form {
  max-width: 920px;
  margin: 0 auto;
  padding: 28px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.62);
  border: 1px solid rgba(196, 140, 81, 0.34);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.circle-form label,
.circle-form legend {
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.circle-form input,
.circle-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(196, 140, 81, 0.24);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  font: inherit;
}

.circle-form textarea {
  resize: vertical;
}

.circle-form input:focus,
.circle-form textarea:focus {
  outline: none;
  border-color: rgba(196, 140, 81, 0.75);
  box-shadow: 0 0 0 3px rgba(196, 140, 81, 0.2);
}

.circle-form fieldset {
  margin: 14px 0 0;
  border: 1px solid rgba(196, 140, 81, 0.24);
  border-radius: 14px;
  padding: 14px;
}

.circle-form fieldset label {
  display: block;
  margin-top: 10px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.94rem;
}

.circle-form fieldset input {
  width: auto;
  margin-right: 8px;
}

.checkbox-row {
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.92rem;
}

.checkbox-row input {
  width: auto;
  margin-top: 3px;
}

.circle-form .primary-btn {
  margin-top: 18px;
  cursor: pointer;
}

.final-cta {
  position: relative;
  text-align: center;
  background:
    linear-gradient(130deg, rgba(7, 0, 102, 0.76), rgba(0, 0, 0, 0.8)),
    url("img/BusinessCardPic.JPG") center/cover no-repeat;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(196, 140, 81, 0.2), transparent 56%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
}

.final-cta h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms ease, transform 800ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.circle-popup {
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 320ms ease, visibility 320ms ease;
}

.circle-popup.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.circle-popup-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 14%, rgba(196, 140, 81, 0.14), transparent 46%),
    rgba(3, 3, 12, 0.74);
  backdrop-filter: blur(2px);
}

.circle-popup-card {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 16px;
  border-radius: 18px;
  border: 1px solid rgba(196, 140, 81, 0.4);
  padding: 20px 18px 18px;
  background:
    linear-gradient(156deg, rgba(11, 7, 36, 0.96), rgba(4, 4, 14, 0.98)),
    radial-gradient(circle at 78% 20%, rgba(136, 160, 255, 0.12), transparent 44%);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.5),
    0 0 28px rgba(196, 140, 81, 0.16);
  transform: translateY(16px) scale(0.985);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.circle-popup-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(118deg, rgba(196, 140, 81, 0.68), rgba(136, 160, 255, 0.22), rgba(196, 140, 81, 0.54));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.circle-popup.is-visible .circle-popup-card {
  transform: translateY(0) scale(1);
}

.circle-popup-card h3 {
  margin-top: 4px;
  font-size: 1.34rem;
  letter-spacing: 0.02em;
}

.circle-popup-card p {
  margin: 8px 0 0;
  color: var(--text-soft);
}

.circle-popup-card .kicker {
  margin-right: 28px;
}

.circle-popup-actions {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.circle-popup-actions .primary-btn,
.circle-popup-actions .secondary-btn {
  min-width: 0;
}

.circle-popup-actions .primary-btn {
  background: linear-gradient(94deg, rgba(154, 17, 7, 0.92), rgba(196, 140, 81, 0.88));
  border-color: rgba(196, 140, 81, 0.58);
}

.circle-popup-actions .secondary-btn {
  border-color: rgba(196, 140, 81, 0.44);
  background: rgba(3, 3, 12, 0.52);
}

.circle-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(196, 140, 81, 0.34);
  color: var(--text-main);
  background: rgba(2, 2, 12, 0.58);
  transition: border-color 220ms ease, color 220ms ease;
}

.circle-popup-close:hover {
  border-color: rgba(196, 140, 81, 0.74);
  color: var(--accent-gold);
}

.circle-float-btn {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  text-decoration: none;
  color: var(--text-main);
  border-radius: 999px;
  padding: 10px 15px;
  border: 1px solid rgba(196, 140, 81, 0.56);
  background:
    linear-gradient(96deg, rgba(154, 17, 7, 0.9), rgba(196, 140, 81, 0.82)),
    rgba(6, 6, 20, 0.88);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.34),
    0 0 16px rgba(196, 140, 81, 0.28);
  animation: circleFloat 4.8s ease-in-out infinite;
}

.circle-float-btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 1px solid rgba(196, 140, 81, 0.42);
  opacity: 0.4;
  animation: circlePulse 3.6s ease-in-out infinite;
  pointer-events: none;
}

.circle-float-btn:hover {
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.42),
    0 0 22px rgba(196, 140, 81, 0.38);
}

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

@keyframes drift {
  0% {
    transform: translate(-3%, -1%);
  }
  100% {
    transform: translate(5%, 4%);
  }
}

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

@keyframes circlePulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(1);
  }
  50% {
    opacity: 0.1;
    transform: scale(1.05);
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .home-nav {
    position: fixed;
    top: 74px;
    left: 14px;
    right: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(196, 140, 81, 0.42);
    border-radius: 14px;
    background: rgba(7, 0, 102, 0.95);
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .home-nav a {
    border: 1px solid rgba(196, 140, 81, 0.24);
    border-radius: 10px;
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.32);
  }

  .home-nav .creator-circle-link {
    border-color: rgba(196, 140, 81, 0.62);
  }

  .site-header.nav-open .home-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  section {
    padding: 96px 18px;
  }

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

  .art-grid img:nth-child(n) {
    grid-column: span 6;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 66px;
    padding: 0 14px;
  }

  .brand span {
    display: none;
  }

  .hero {
    padding-top: 90px;
  }

  .home-nav {
    top: 66px;
  }

  .art-grid img:nth-child(n) {
    grid-column: span 12;
  }

  .circle-form {
    padding: 20px;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    min-width: 0;
  }

  .circle-popup-actions {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 981px) {
  .circle-popup,
  .circle-float-btn {
    display: none !important;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.section-anchor {
  padding: 0;
  margin: 0;
  height: 0;
  min-height: 0;
}
