* {
  box-sizing: border-box;
}

:root {
  --bg: #08111f;
  --bg-alt: #101d34;
  --ink: #08101b;
  --panel: rgba(255, 255, 255, 0.9);
  --panel-soft: rgba(201, 223, 255, 0.14);
  --line: #0f1830;
  --primary: #3d7cff;
  --primary-2: #7d5cff;
  --accent: #73e3ff;
  --text: #f5f8ff;
  --muted: #bfd2ff;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(115, 227, 255, 0.18), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(125, 92, 255, 0.22), transparent 24%),
    linear-gradient(145deg, #050a14 0%, #091527 42%, #13254a 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 15%, rgba(255, 255, 255, 0.14) 30%, transparent 45%),
    linear-gradient(transparent 0%, rgba(255, 255, 255, 0.02) 100%);
  background-size: 280px 280px, 100% 100%;
  mix-blend-mode: screen;
  opacity: 0.4;
  animation: sheen 12s linear infinite;
}

.shine-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(24px);
  pointer-events: none;
  opacity: 0.55;
}

.shine-orb-a {
  top: 10%;
  left: -40px;
  width: 220px;
  height: 220px;
  background: rgba(115, 227, 255, 0.28);
}

.shine-orb-b {
  right: -40px;
  bottom: 12%;
  width: 260px;
  height: 260px;
  background: rgba(125, 92, 255, 0.24);
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.panel {
  position: relative;
  margin-bottom: 28px;
  border: 3px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(17, 30, 58, 0.92), rgba(9, 18, 35, 0.94));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 42%);
}

.panel-hero {
  padding: 28px;
  transform: perspective(1400px) rotateX(2deg);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.brand-tag,
.speech-card,
.pow-card,
.chip {
  font-family: "Bangers", cursive;
  letter-spacing: 0.08em;
}

.brand-tag {
  color: #111827;
  background: linear-gradient(135deg, #fef08a, #f9fafb);
  border: 3px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.28);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links a,
.cta,
.copy-button {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.social-links a {
  color: var(--text);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.social-links a:hover,
.cta:hover,
.copy-button:hover {
  transform: translateY(-2px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
}

h1,
h2,
h3,
.stat-value {
  margin: 0;
}

h1 {
  font-family: "Bangers", cursive;
  font-size: clamp(3.5rem, 10vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
  color: #fff8d6;
  text-shadow:
    4px 4px 0 #0a0f18,
    8px 8px 18px rgba(0, 0, 0, 0.4);
}

.subhead {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: 1.04rem;
  line-height: 1.8;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 800;
  border: 3px solid var(--line);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.24);
}

.cta.primary {
  background: linear-gradient(135deg, #fef08a, #f97316);
  color: #111827;
}

.cta.secondary {
  background: linear-gradient(135deg, #73e3ff, #3d7cff);
  color: white;
}

.stat-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.stat-card,
.info-card,
.story-card,
.gallery-card {
  border: 3px solid var(--line);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.18);
}

.stat-card {
  min-width: 180px;
  padding: 16px 18px;
  color: var(--ink);
  background: linear-gradient(180deg, #f8fbff, #dce9ff);
}

.slant-card {
  transform: rotate(-2deg);
}

.burst-card {
  background: linear-gradient(135deg, #fef08a, #86efac);
  clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
}

.stat-label,
.info-title {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.hero-visual {
  perspective: 1400px;
}

.visual-stage {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    linear-gradient(160deg, #153169, #0c1830);
  border: 3px solid rgba(255, 255, 255, 0.14);
  transform: rotateY(-10deg) rotateX(5deg);
}

.main-shot {
  display: block;
  width: min(100%, 390px);
  margin: 0 auto;
  border-radius: 24px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.28);
}

.speech-card,
.pow-card {
  position: absolute;
  color: #111827;
  border: 3px solid var(--line);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.24);
}

.speech-card {
  top: 18px;
  left: 12px;
  padding: 12px 18px;
  font-size: 1.65rem;
  background: #fff8d6;
  border-radius: 18px 18px 18px 0;
}

.pow-card {
  right: 14px;
  bottom: 18px;
  padding: 14px 18px;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #f9a8d4, #fef08a);
  transform: rotate(8deg);
  clip-path: polygon(50% 0%, 62% 26%, 91% 8%, 74% 38%, 100% 50%, 74% 62%, 91% 92%, 62% 74%, 50% 100%, 38% 74%, 9% 92%, 26% 62%, 0% 50%, 26% 38%, 9% 8%, 38% 26%);
}

.info-strip,
.showcase,
.storyline {
  padding: 26px;
}

.info-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.info-card {
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(220, 233, 255, 0.94));
  color: var(--ink);
}

.contract-card {
  transform: rotate(-1.5deg);
}

.tilt-card {
  transform: skewY(-2deg);
}

.tilt-card-alt {
  transform: skewY(2deg);
}

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

code {
  flex: 1;
  display: block;
  overflow-wrap: anywhere;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(8, 17, 31, 0.08);
  border: 2px solid rgba(8, 17, 31, 0.1);
  font-weight: 700;
}

.copy-button {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border: 3px solid var(--line);
  border-radius: 16px;
  font-size: 1.2rem;
  cursor: pointer;
  background: linear-gradient(135deg, #73e3ff, #7d5cff);
  color: white;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
}

.copy-button.copied {
  background: linear-gradient(135deg, #34d399, #10b981);
}

.hint {
  margin: 12px 0 0;
  color: rgba(8, 17, 31, 0.72);
  font-size: 0.94rem;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-family: "Bangers", cursive;
  letter-spacing: 0.05em;
  color: #edf4ff;
}

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

.gallery-description {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.gallery-card {
  margin: 0;
  padding: 12px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 20px;
}

.gallery-card figcaption {
  display: grid;
  gap: 8px;
  padding: 16px 10px 8px;
  color: #edf4ff;
}

.gallery-card figcaption strong {
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.gallery-card figcaption span {
  color: var(--muted);
  line-height: 1.65;
}

.large-angle {
  transform: rotate(-1.5deg);
}

.gallery-angle-a {
  transform: rotate(-2deg) translateY(6px);
}

.gallery-angle-b {
  transform: rotate(1.8deg) translateY(0);
}

.gallery-angle-c {
  transform: rotate(-0.8deg) translateY(12px);
}

.gallery-angle-d {
  transform: rotate(2.2deg) translateY(8px);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.story-card {
  padding: 22px;
  border-radius: 24px;
  color: var(--ink);
  background: linear-gradient(180deg, #fff8d6, #f4f8ff);
}

.story-left {
  transform: translateY(12px) rotate(-2deg);
}

.story-center {
  background: linear-gradient(180deg, #dcfce7, #e0f2fe);
}

.story-right {
  transform: translateY(18px) rotate(2deg);
  background: linear-gradient(180deg, #ede9fe, #fce7f3);
}

.chip {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 12px;
  color: white;
  background: #111827;
  border-radius: 999px;
}

.footer {
  text-align: center;
  color: var(--muted);
  padding: 10px 8px 0;
}

@keyframes sheen {
  0% {
    transform: translateX(-12%);
  }
  100% {
    transform: translateX(12%);
  }
}

@media (max-width: 920px) {
  .hero-grid,
  .info-strip,
  .gallery-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .panel-hero,
  .showcase,
  .storyline,
  .info-strip {
    transform: none;
  }

  .visual-stage {
    transform: none;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 18px, 100%);
  }

  .panel-hero,
  .info-strip,
  .showcase,
  .storyline {
    padding: 18px;
  }

  .topbar,
  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .cta,
  .social-links a {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.6rem);
  }
}
