:root {
  color-scheme: light;
  --ink: #0b1a2b;
  --mist: #f5f7f9;
  --fog: #d6dee5;
  --slate: #8c9aaa;
  --deep: #0c3b66;
  --pulse: #2b7dbf;
  --glass: rgba(255, 255, 255, 0.7);
  --shadow: 0 24px 60px rgba(11, 26, 43, 0.18);
  --ring: rgba(43, 125, 191, 0.28);
  font-family: "Source Serif 4", serif;
}

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

body {
  min-height: 100vh;
  color: var(--ink);
  background:
    url("POD.JPG");
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.6) 0%, rgba(230, 236, 243, 0.5) 55%, rgba(214, 226, 238, 0.45) 100%),
    radial-gradient(circle at 15% 15%, rgba(43, 125, 191, 0.28), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(12, 59, 102, 0.2), transparent 55%),
    url("POD.JPG");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  background-blend-mode: screen, screen, screen, normal;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: 0;
}

.glow {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 125, 191, 0.28), transparent 70%);
  top: -160px;
  right: -100px;
  filter: blur(8px);
  opacity: 0.8;
  z-index: 0;
}

.site-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 7vw 16px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  font-family: "Space Mono", monospace;
}

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

.brand-mark {
  font-size: 18px;
  color: var(--pulse);
}

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

.nav a {
  text-decoration: none;
  color: var(--ink);
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.nav a:hover {
  opacity: 1;
}

main {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 32px 7vw 64px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.hero-image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(11, 26, 43, 0.2);
}

.hero-image--full {
  border-radius: 0;
  box-shadow: none;
  margin: 0 -7vw;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(12, 59, 102, 0.18), rgba(255, 255, 255, 0.4));
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-image img {
  display: block;
  width: 100%;
  height: clamp(220px, 35vw, 360px);
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.hero-image:hover img {
  transform: scale(1.03);
}

.hero-contract {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(12, 22, 34, 0.6);
  backdrop-filter: blur(8px);
  color: white;
}

.hero-contract .contract-copy {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.65rem;
  max-width: 70vw;
  overflow-wrap: anywhere;
}

.hero-contract .contract-copy:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
  animation: rise 0.9s ease-out both;
}

.eyebrow {
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.45em;
  font-size: 11px;
  color: var(--slate);
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3.4rem, 7vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: var(--deep);
}

.hero-sub {
  font-family: "Playfair Display", serif;
  display: block;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-top: 12px;
  text-transform: uppercase;
}

.hero-body {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ink);
}

.cta {
  align-self: flex-start;
  border: none;
  background: linear-gradient(120deg, var(--deep), var(--pulse));
  color: white;
  font-family: "Space Mono", monospace;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 70px rgba(11, 26, 43, 0.25);
}

.cta-active {
  background: linear-gradient(120deg, #1b4d7a, #49a3dc);
}

.cta-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.cta-icon svg {
  width: 14px;
  height: 14px;
}

.contract-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.contract-icon img {
  width: 20px;
  height: 20px;
  display: block;
}

.contract {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-family: "Space Mono", monospace;
}

.contract-label {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  color: var(--slate);
}

.contract-copy {
  border: 1px solid rgba(12, 59, 102, 0.2);
  background: rgba(255, 255, 255, 0.6);
  padding: 10px 14px;
  border-radius: 999px;
  font-family: "Space Mono", monospace;
  font-size: 0.7rem;
  color: var(--deep);
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.contract-copy:hover {
  border-color: rgba(12, 59, 102, 0.45);
  transform: translateY(-1px);
}

.contract-copy--active {
  background: rgba(12, 59, 102, 0.12);
  border-color: rgba(12, 59, 102, 0.45);
}

.join {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(140, 154, 170, 0.2);
  border-radius: 0;
  padding: 32px;
  box-shadow: none;
  margin: 0 -7vw;
}

.join-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.join-copy h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  color: var(--deep);
}

.join-eyebrow {
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  color: var(--slate);
  margin-bottom: 8px;
}

.join-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--deep), var(--pulse));
  color: white;
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(11, 26, 43, 0.18);
}

.micro {
  display: flex;
  gap: 18px;
  font-family: "Space Mono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--slate);
}

.oath {
  font-family: "Space Mono", monospace;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--deep);
}

.hero-orbit {
  position: relative;
  width: min(380px, 70vw);
  aspect-ratio: 1;
  margin: 0 auto;
}

.lore {
  display: flex;
  justify-content: center;
}

.lore-card {
  max-width: 720px;
  padding: 32px 36px;
  border-radius: 28px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(214, 222, 229, 0.7));
  border: 1px solid rgba(140, 154, 170, 0.25);
  box-shadow: 0 20px 45px rgba(11, 26, 43, 0.1);
  text-align: center;
}

.lore-eyebrow {
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.7rem;
  color: var(--slate);
  margin-bottom: 12px;
}

.lore-card h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  color: var(--deep);
  margin-bottom: 12px;
}

.lore-card p {
  line-height: 1.7;
  color: var(--ink);
}

.shadow {
  display: grid;
  gap: 16px;
  justify-items: center;
  margin: 0 -7vw;
}

.shadow-frame {
  width: min(760px, 100%);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(11, 26, 43, 0.22);
  position: relative;
}

.shadow-frame--full {
  width: 100%;
  border-radius: 0;
  box-shadow: none;
}

.shadow-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(12, 59, 102, 0.35), rgba(0, 0, 0, 0.15));
}

.shadow-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.shadow-caption {
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  color: var(--deep);
}

.ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--ring);
  animation: drift 10s linear infinite;
}

.ring-mid {
  inset: 10%;
  animation-duration: 14s;
}

.ring-inner {
  inset: 22%;
  animation-duration: 18s;
}

.orb {
  position: absolute;
  inset: 36%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 125, 191, 0.9), rgba(12, 59, 102, 0.9));
  box-shadow: 0 0 40px rgba(43, 125, 191, 0.5);
  animation: pulse 4s ease-in-out infinite;
}

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

.grid article {
  background: var(--glass);
  border: 1px solid rgba(140, 154, 170, 0.25);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(11, 26, 43, 0.08);
  backdrop-filter: blur(8px);
  animation: rise 1s ease-out both;
  animation-delay: 0.1s;
}

.grid h2 {
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: var(--deep);
}

.grid p {
  line-height: 1.6;
  color: var(--ink);
}

.footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 7vw 36px;
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--slate);
}

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

@keyframes drift {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.98);
  }
  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 960px) {
  body {
    background-attachment: scroll;
  }

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

  .hero-orbit {
    order: -1;
  }

  .site-header {
    flex-direction: column;
    gap: 16px;
  }

  .nav {
    gap: 12px;
  }

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

  .footer {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .site-header,
  main,
  .footer {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .micro {
    flex-direction: column;
    gap: 8px;
  }

  .cta {
    width: 100%;
    text-align: center;
  }

  .join {
    padding: 24px;
  }
}
