:root {
  --ink: #070713;
  --ink-soft: #0d0d20;
  --cream: #fff0cf;
  --muted: #aaa8b8;
  --orange: #ff742d;
  --pink: #ff3f76;
  --violet: #8757ff;
  --cyan: #36d9ff;
  --border: rgba(255, 255, 255, 0.11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: #fff;
  font-family: "Outfit", system-ui, sans-serif;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--cream);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  padding: 0 clamp(24px, 5vw, 84px);
  transition: background .25s, border-color .25s, height .25s;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(7, 7, 19, .82);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .03em;
}

.brand img { border-radius: 11px; box-shadow: 0 0 30px rgba(255, 94, 78, .22); }
.brand > span > span { color: var(--orange); }

.site-nav { display: flex; align-items: center; gap: 40px; font-weight: 600; color: #c5c1c8; }
.site-nav a { transition: color .2s, transform .2s; }
.site-nav a:hover { color: #fff; transform: translateY(-1px); }
.site-nav .nav-cta {
  padding: 12px 21px;
  color: #fff;
  background: linear-gradient(110deg, var(--orange), var(--pink));
  border-radius: 10px;
  box-shadow: 0 10px 34px rgba(255, 63, 118, .25);
}

.menu-button { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 840px;
  height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 100px 24px 155px;
  background:
    radial-gradient(circle at 50% 39%, rgba(255, 197, 96, .16) 0 2%, transparent 22%),
    radial-gradient(ellipse at 50% 77%, rgba(255, 42, 103, .38), transparent 45%),
    linear-gradient(180deg, #080817 0%, #0a0920 42%, #2a123d 69%, #df304d 91%, #ff782c 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .4;
  background-image:
    radial-gradient(circle, #fff 0 1px, transparent 1.5px),
    radial-gradient(circle, #9adfff 0 1px, transparent 1.5px);
  background-position: 0 0, 70px 110px;
  background-size: 180px 180px, 260px 260px;
  mask-image: linear-gradient(to bottom, #000 0 72%, transparent 95%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 720px;
  height: 720px;
  left: 50%;
  top: 48%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,.05);
  box-shadow: inset 0 0 80px rgba(255, 117, 74, .07);
}

.nova-glow {
  position: absolute;
  z-index: -1;
  top: 28%;
  left: 50%;
  width: 180px;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff5d1;
  opacity: .1;
  filter: blur(2px);
  box-shadow: 0 0 35px #fff, 0 0 120px 60px rgba(255, 88, 49, .5), 0 0 280px 150px rgba(172, 63, 255, .23);
  animation: pulse 5s ease-in-out infinite;
}

.orbit { position: absolute; z-index: -1; left: 50%; top: 43%; border: 1px solid rgba(255, 207, 161, .09); border-radius: 50%; transform: translate(-50%, -50%) rotate(-10deg); }
.orbit-one { width: min(88vw, 1050px); height: 330px; }
.orbit-two { width: min(70vw, 790px); height: 230px; transform: translate(-50%, -50%) rotate(14deg); }

@keyframes pulse { 50% { transform: translate(-50%, -50%) scale(1.12); opacity: .16; } }

.hero-content { position: relative; z-index: 3; width: min(100%, 1100px); text-align: center; margin-top: -10px; }
.eyebrow, .kicker {
  margin: 0 0 30px;
  color: #ff9d57;
  font-family: "Space Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .42em;
}
.eyebrow { display: flex; align-items: center; justify-content: center; gap: 22px; }
.eyebrow span { width: 54px; height: 1px; background: linear-gradient(90deg, transparent, var(--orange)); }
.eyebrow span:last-child { transform: rotate(180deg); }

.hero h1 { margin: 0; line-height: .78; }
.hero h1 > span {
  display: block;
  color: var(--cream);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(70px, 13.7vw, 210px);
  font-weight: 900;
  letter-spacing: -.035em;
  transform: scaleX(1.04);
  background: linear-gradient(180deg, #fff0c6 7%, #ffd28b 38%, #ff862e 62%, #ff3f68 88%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 18px 28px rgba(255, 74, 65, .25));
}
.hero h1 small {
  display: block;
  margin-top: 32px;
  color: rgba(255,255,255,.55);
  font-family: "Space Mono", monospace;
  font-size: 11px;
  letter-spacing: .62em;
}

.hero-copy { max-width: 680px; margin: 28px auto 36px; color: #d2ccd3; font-size: clamp(17px, 1.5vw, 21px); line-height: 1.65; }
.server-wrap { width: min(100%, 560px); margin: 0 auto; }
.server-label { margin: 0 0 10px; color: rgba(255,255,255,.4); font-family: "Space Mono", monospace; font-size: 10px; letter-spacing: .34em; }

.server-address {
  width: 100%;
  min-height: 76px;
  padding: 0 0 0 27px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 15px;
  color: var(--cream);
  background: rgba(7,7,24,.58);
  box-shadow: 0 18px 60px rgba(10,0,23,.28);
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-size: clamp(16px, 2.2vw, 22px);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: border-color .2s, transform .2s;
}
.server-address:hover { border-color: rgba(255,145,91,.65); transform: translateY(-2px); }
.copy-action {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 25px;
  color: #fff;
  background: linear-gradient(110deg, var(--orange), var(--pink));
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.copy-action svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.quick-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.quick-link {
  min-width: 145px;
  padding: 14px 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: rgba(10,10,33,.48);
  color: #e7e4ec;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  backdrop-filter: blur(10px);
  transition: transform .2s, background .2s, border-color .2s;
}
.quick-link:hover { transform: translateY(-3px); background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); }
.quick-link svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.world-edge { position: absolute; z-index: 2; left: 0; right: 0; bottom: -2px; height: 120px; pointer-events: none; }
.terrain { position: absolute; inset: 0; }
.terrain-back { background: #13132b; clip-path: polygon(0 78%, 6% 43%, 10% 62%, 15% 18%, 21% 55%, 27% 9%, 33% 55%, 39% 22%, 45% 60%, 51% 12%, 58% 51%, 65% 25%, 72% 60%, 79% 14%, 86% 57%, 93% 30%, 100% 53%, 100% 100%, 0 100%); opacity: .72; }
.terrain-front { background: var(--ink); clip-path: polygon(0 67%, 5% 85%, 11% 41%, 17% 73%, 24% 30%, 30% 75%, 36% 46%, 42% 82%, 49% 40%, 55% 76%, 62% 33%, 69% 74%, 76% 46%, 83% 82%, 90% 39%, 96% 72%, 100% 56%, 100% 100%, 0 100%); }
.scroll-cue { position: absolute; z-index: 4; bottom: 22px; left: clamp(24px, 5vw, 84px); display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.48); font-family: "Space Mono", monospace; font-size: 9px; letter-spacing: .3em; }
.scroll-cue span { font-size: 17px; animation: bounce 1.8s infinite; }
@keyframes bounce { 50% { transform: translateY(5px); } }

.section { padding: 130px clamp(24px, 7vw, 120px); }
.feature-section { background: var(--ink); }
.section-heading { max-width: 760px; margin-bottom: 65px; }
.kicker { margin-bottom: 20px; }
.section h2 { margin: 0; font-size: clamp(45px, 6vw, 82px); letter-spacing: -.045em; line-height: .98; }
.section h2 em { color: var(--orange); font-style: normal; }
.section-heading > p:last-child, .join-content > p { color: var(--muted); font-size: 18px; line-height: 1.7; }
.section-heading > p:last-child { max-width: 630px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card {
  position: relative;
  min-height: 365px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
}
.feature-card::after { content: ""; position: absolute; width: 180px; height: 180px; right: -70px; top: -70px; border-radius: 50%; background: rgba(255,100,53,.12); filter: blur(35px); }
.feature-card.featured { background: linear-gradient(145deg, #261747, #121225); border-color: rgba(146,91,255,.3); transform: translateY(-22px); }
.feature-number { color: rgba(255,255,255,.28); font-family: "Space Mono", monospace; font-size: 11px; letter-spacing: .18em; }
.pixel-icon { width: 82px; height: 82px; margin: 52px 0 34px; position: relative; }
.pixel-icon::before, .pixel-icon::after { content: ""; position: absolute; }
.diamond::before { inset: 10px; background: linear-gradient(135deg, var(--cyan), #2678ff 55%, #714dff); clip-path: polygon(50% 0, 100% 40%, 50% 100%, 0 40%); filter: drop-shadow(0 12px 20px rgba(54,217,255,.28)); }
.diamond::after { inset: 19px 25px 32px; border-left: 2px solid rgba(255,255,255,.6); transform: skew(-23deg); }
.planet::before { width: 58px; height: 58px; left: 12px; top: 12px; border-radius: 50%; background: linear-gradient(145deg, #ffe08d, var(--orange) 60%, var(--pink)); box-shadow: inset -10px -10px 0 rgba(111,31,97,.27), 0 0 30px rgba(255,86,61,.25); }
.planet::after { width: 80px; height: 24px; top: 29px; left: 1px; border: 3px solid #d78aff; border-radius: 50%; transform: rotate(-13deg); }
.shield::before { inset: 6px 12px; background: linear-gradient(145deg, #ffbd55, var(--pink)); clip-path: polygon(50% 0, 88% 15%, 82% 70%, 50% 100%, 18% 70%, 12% 15%); filter: drop-shadow(0 10px 18px rgba(255,63,118,.25)); }
.shield::after { width: 13px; height: 24px; border-right: 4px solid #fff3d6; border-bottom: 4px solid #fff3d6; transform: rotate(45deg); left: 34px; top: 22px; }
.feature-card h3 { margin: 0 0 12px; font-size: 25px; }
.feature-card p { margin: 0; color: var(--muted); line-height: 1.65; }

.join-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  min-height: 650px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 88, 45, .18), transparent 32%),
    linear-gradient(135deg, #0c0b20, #11102b);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.join-section::before { content: ""; position: absolute; z-index: -2; inset: 0; background-image: linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px); background-size: 38px 38px; mask-image: linear-gradient(90deg, #000, transparent 75%); }
.join-orb { position: absolute; z-index: -1; width: 420px; height: 420px; left: -155px; top: 50%; transform: translateY(-50%); border-radius: 50%; background: radial-gradient(circle at 65% 35%, #ffe1a4 0 3%, #ff7a2f 17%, #e92c63 48%, #6d2d98 70%, transparent 71%); box-shadow: 0 0 100px rgba(255,53,81,.17); opacity: .55; }
.join-content { max-width: 670px; }
.join-content > p { max-width: 550px; }
.large-copy { display: flex; align-items: center; gap: 28px; margin-top: 28px; padding: 17px 21px 17px 24px; border: 1px solid rgba(255,255,255,.15); border-radius: 13px; background: rgba(7,7,19,.62); color: var(--cream); font-family: "Space Mono", monospace; font-size: 16px; font-weight: 700; cursor: pointer; }
.large-copy span:last-child { padding: 8px 11px; border-radius: 7px; color: #fff; background: linear-gradient(110deg, var(--orange), var(--pink)); font-family: "Outfit", sans-serif; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.text-link { display: inline-block; margin-top: 26px; color: #d9baff; font-weight: 700; }
.text-link span { margin-left: 5px; }
.join-steps { list-style: none; display: grid; gap: 17px; margin: 0; padding: 0; }
.join-steps li { display: flex; align-items: center; gap: 20px; padding: 21px; border: 1px solid var(--border); border-radius: 15px; background: rgba(255,255,255,.035); }
.join-steps li > span { flex: 0 0 48px; display: grid; place-items: center; aspect-ratio: 1; border-radius: 11px; color: var(--cream); background: linear-gradient(145deg, rgba(255,125,56,.3), rgba(255,63,118,.12)); font-family: "Space Mono", monospace; font-weight: 700; }
.join-steps strong, .join-steps small { display: block; }
.join-steps strong { margin-bottom: 4px; font-size: 17px; }
.join-steps small { color: var(--muted); font-size: 14px; }

.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 38px clamp(24px, 5vw, 84px); background: #060610; color: #716f7c; font-size: 12px; }
.footer-brand { color: #fff; font-size: 13px; }

.toast { position: fixed; z-index: 200; left: 50%; bottom: 28px; padding: 13px 19px; border: 1px solid rgba(255,255,255,.16); border-radius: 10px; background: #18172a; color: #fff; font-weight: 600; box-shadow: 0 16px 50px rgba(0,0,0,.4); transform: translate(-50%, 120px); opacity: 0; transition: transform .3s, opacity .3s; }
.toast.show { transform: translate(-50%, 0); opacity: 1; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .site-header { height: 76px; padding-inline: 22px; }
  .menu-button { position: relative; z-index: 2; display: block; width: 42px; height: 42px; border: 1px solid var(--border); border-radius: 9px; background: rgba(255,255,255,.04); }
  .menu-button span { position: absolute; left: 11px; width: 18px; height: 2px; background: #fff; transition: transform .2s, top .2s; }
  .menu-button span:first-child { top: 15px; }
  .menu-button span:last-child { top: 24px; }
  .menu-button[aria-expanded="true"] span:first-child { top: 20px; transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { top: 20px; transform: rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; display: grid; place-content: center; gap: 28px; background: rgba(7,7,19,.97); font-size: 25px; text-align: center; transform: translateY(-100%); opacity: 0; transition: transform .3s, opacity .3s; }
  .site-nav.open { transform: translateY(0); opacity: 1; }
  .site-nav .nav-cta { font-size: 17px; }
  .hero { min-height: 790px; padding-bottom: 145px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 310px; }
  .feature-card.featured { transform: none; }
  .pixel-icon { margin: 38px 0 25px; }
  .join-section { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .brand { font-size: 14px; gap: 9px; }
  .brand img { width: 39px; height: 39px; }
  .hero { min-height: 760px; padding-inline: 17px; }
  .eyebrow { gap: 11px; font-size: 9px; letter-spacing: .28em; }
  .eyebrow span { width: 24px; }
  .hero h1 > span { font-size: clamp(52px, 18vw, 90px); }
  .hero h1 small { margin-top: 25px; font-size: 8px; letter-spacing: .45em; }
  .hero-copy { margin-top: 24px; font-size: 16px; }
  .server-address { min-height: 66px; padding-left: 15px; font-size: 14px; }
  .copy-action { padding: 0 15px; }
  .copy-action > span { display: none; }
  .quick-link { min-width: 0; flex: 1 1 30%; padding-inline: 10px; font-size: 11px; }
  .quick-link svg { width: 16px; }
  .scroll-cue { display: none; }
  .section { padding: 90px 20px; }
  .section-heading { margin-bottom: 40px; }
  .feature-card { padding: 27px; }
  .join-orb { opacity: .28; }
  .large-copy { width: 100%; justify-content: space-between; gap: 12px; font-size: 13px; padding-left: 15px; }
  .large-copy span:last-child { font-size: 9px; }
  .site-footer { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ─────────────────────────────────────────────
   SUMMER SEASON THEME
   These overrides turn the base layout into a
   bright, blocky Minecraft beach getaway.
   ───────────────────────────────────────────── */
:root {
  --ink: #07283b;
  --ink-soft: #0b3b54;
  --cream: #fff9d8;
  --muted: #628394;
  --orange: #ff8b3d;
  --pink: #ff5f6d;
  --violet: #178ed0;
  --cyan: #25cfe8;
  --border: rgba(7, 64, 88, .13);
  --sand: #f8dea3;
}

body { background: #fffaf0; color: #082a3d; }
.site-header { color: #07304a; }
.site-header.scrolled {
  background: rgba(245, 252, 249, .88);
  border-color: rgba(7, 64, 88, .1);
  box-shadow: 0 8px 30px rgba(3, 79, 106, .08);
}
.brand img {
  object-fit: cover;
  border-radius: 50%;
  mix-blend-mode: normal;
  box-shadow: none;
}
.brand > span > span { color: #0d8fc5; }
.site-nav { gap: 28px; color: #174e65; }
.site-nav a:hover { color: #052f46; }
.site-nav .nav-cta {
  color: #fff;
  background: linear-gradient(110deg, #ff9a3f, #ff5c6c);
  box-shadow: 0 10px 28px rgba(255, 102, 82, .24);
}
.language-picker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgba(7, 64, 88, .13);
  border-radius: 9px;
  background: rgba(255,255,255,.28);
}
.language-picker svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.language-picker select {
  max-width: 104px;
  border: 0;
  outline: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.language-picker option { color: #082d42; background: #fff; }
.eyebrow b, .scroll-cue b, .text-link b { font: inherit; }

.hero {
  min-height: 900px;
  padding-top: 92px;
  padding-bottom: 175px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.18), transparent 28%),
    linear-gradient(180deg, #45b9ed 0%, #79d9f3 37%, #c7eff1 59%, #ffd092 80%, #ff9d67 100%);
}
.hero::before {
  opacity: .22;
  background-image:
    radial-gradient(circle, #fff 0 2px, transparent 2.5px),
    radial-gradient(circle, #fff 0 1px, transparent 1.5px);
  background-position: 30px 40px, 80px 130px;
  background-size: 210px 210px, 150px 150px;
  mask-image: linear-gradient(to bottom, #000, transparent 66%);
}
.hero::after {
  width: 620px;
  height: 620px;
  top: 38%;
  border-color: rgba(255,255,255,.17);
  box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.018);
}
.hero-content { margin-top: 2px; width: min(100%, 920px); }
.eyebrow { margin-bottom: 12px; color: #075a7c; text-shadow: 0 1px rgba(255,255,255,.3); }
.eyebrow span { background: linear-gradient(90deg, transparent, #137ca0); }
.hero-logo {
  display: block;
  width: clamp(310px, 41vw, 475px);
  max-height: 48vh;
  object-fit: contain;
  margin: -14px auto -18px;
  mix-blend-mode: normal;
  filter: drop-shadow(0 23px 28px rgba(4, 76, 105, .19));
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.hero-copy {
  max-width: 650px;
  margin-top: 10px;
  margin-bottom: 24px;
  color: #174f65;
  font-weight: 600;
  text-shadow: 0 1px rgba(255,255,255,.35);
}
.server-label { color: rgba(7, 48, 73, .56); }
.server-address {
  color: #0a3b54;
  background: rgba(255,255,255,.7);
  border-color: rgba(7, 84, 112, .16);
  box-shadow: 0 18px 55px rgba(7, 99, 128, .12);
}
.server-address:hover { border-color: rgba(8, 139, 176, .5); }
.copy-action { background: linear-gradient(110deg, #ff9b3d, #ff5f6d); }
.quick-link {
  color: #0b4b66;
  background: rgba(255,255,255,.6);
  border-color: rgba(7, 86, 113, .12);
  box-shadow: 0 8px 20px rgba(0, 106, 137, .07);
}
.quick-link:hover { background: rgba(255,255,255,.85); border-color: rgba(7, 86, 113, .25); }

.sun {
  position: absolute;
  z-index: -1;
  top: 18%;
  right: 12%;
  width: 118px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff6b1;
  box-shadow: 0 0 0 18px rgba(255,246,177,.1), 0 0 65px 32px rgba(255,232,119,.38);
  animation: pulse 5s ease-in-out infinite;
}
.cloud {
  position: absolute;
  z-index: -1;
  width: 155px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.55);
  box-shadow: 36px -25px 0 4px rgba(255,255,255,.55), 77px -10px 0 1px rgba(255,255,255,.55);
}
.cloud::after { content: ""; position: absolute; right: -36px; bottom: 0; width: 42px; height: 20px; border-radius: 5px; background: rgba(255,255,255,.55); }
.cloud-one { left: 8%; top: 24%; transform: scale(.75); }
.cloud-two { right: 17%; top: 39%; transform: scale(.48); opacity: .65; }
.cloud-three { left: 20%; top: 50%; transform: scale(.32); opacity: .42; }
.palm {
  position: absolute;
  z-index: 1;
  bottom: 75px;
  width: 230px;
  height: 340px;
  opacity: .34;
  transform-origin: bottom;
}
.palm::before {
  content: "";
  position: absolute;
  width: 34px;
  height: 265px;
  left: 105px;
  bottom: 0;
  background: #764326;
  clip-path: polygon(20% 0, 100% 0, 65% 100%, 38% 100%);
}
.palm::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 145px;
  left: 20px;
  top: 0;
  background: #187c57;
  clip-path: polygon(50% 43%, 2% 15%, 39% 47%, 7% 70%, 44% 55%, 27% 100%, 52% 59%, 72% 100%, 61% 53%, 100% 75%, 66% 45%, 98% 14%);
}
.palm-left { left: -42px; transform: rotate(-8deg); }
.palm-right { right: -32px; transform: scaleX(-1) rotate(-7deg); }

.world-edge { height: 155px; }
.island { position: absolute; z-index: 1; bottom: 68px; height: 48px; background: #a8c871; opacity: .55; }
.island-left { left: -2%; width: 25%; clip-path: polygon(0 60%, 15% 37%, 27% 44%, 43% 9%, 58% 40%, 71% 22%, 86% 58%, 100% 70%, 100% 100%, 0 100%); }
.island-right { right: -2%; width: 28%; clip-path: polygon(0 69%, 18% 44%, 38% 54%, 50% 12%, 64% 42%, 81% 27%, 100% 56%, 100% 100%, 0 100%); }
.wave { position: absolute; left: -3%; width: 106%; height: 80px; border-radius: 50% 50% 0 0; }
.wave-one { z-index: 2; bottom: 34px; background: rgba(21, 181, 207, .68); clip-path: polygon(0 47%, 6% 33%, 13% 47%, 21% 28%, 31% 48%, 42% 23%, 52% 50%, 64% 31%, 75% 52%, 86% 28%, 94% 44%, 100% 31%, 100% 100%, 0 100%); }
.wave-two { z-index: 3; bottom: 9px; background: #28bdd1; clip-path: polygon(0 39%, 7% 50%, 15% 31%, 25% 48%, 36% 28%, 48% 47%, 59% 26%, 70% 45%, 81% 30%, 91% 49%, 100% 35%, 100% 100%, 0 100%); }
.wave-two::before { content: ""; position: absolute; inset: 20px 0 auto; height: 5px; background: repeating-linear-gradient(90deg, transparent 0 5%, rgba(255,255,255,.55) 5% 9%, transparent 9% 15%); }
.sand-edge { position: absolute; z-index: 4; left: -2%; right: -2%; bottom: -32px; height: 72px; border-radius: 50% 50% 0 0; background: #fff7df; }
.scroll-cue { color: rgba(7, 65, 89, .55); }

.feature-section { background: #fff7df; }
.kicker { color: #0e93b4; }
.section h2 { color: #082d42; }
.section h2 em { color: #ff7d43; }
.section-heading > p:last-child, .join-content > p { color: var(--muted); }
.feature-card {
  border-color: rgba(7, 74, 96, .1);
  background: rgba(255,255,255,.7);
  box-shadow: 0 24px 65px rgba(26, 106, 119, .08);
}
.feature-card::after { background: rgba(51, 201, 218, .15); }
.feature-card.featured {
  color: #07344b;
  background: linear-gradient(145deg, #d5f6ed, #e6fbff);
  border-color: rgba(19, 174, 190, .22);
}
.feature-number { color: rgba(7, 67, 91, .34); }
.feature-card p { color: #668695; }
.planet::before { background: linear-gradient(145deg, #fff6a0, #ffad46 60%, #ff6d62); }
.planet::after { border-color: #16aac1; }

.join-section {
  background:
    radial-gradient(circle at 15% 48%, rgba(255, 194, 76, .38), transparent 31%),
    linear-gradient(135deg, #d8f7ee, #d4f2fa);
  border-color: rgba(7, 69, 93, .1);
}
.join-section::before { background-image: linear-gradient(rgba(7,81,101,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(7,81,101,.035) 1px, transparent 1px); }
.join-orb { background: radial-gradient(circle at 65% 35%, #fff9c2 0 4%, #ffd34e 28%, #ff984b 64%, transparent 65%); box-shadow: 0 0 100px rgba(255, 178, 53, .25); opacity: .75; }
.large-copy { color: #073a52; background: rgba(255,255,255,.7); border-color: rgba(7, 69, 93, .13); }
.text-link { color: #087c9f; }
.join-steps li { color: #092f43; background: rgba(255,255,255,.62); border-color: rgba(7, 69, 93, .1); }
.join-steps li > span { color: #07415c; background: linear-gradient(145deg, rgba(255,191,73,.55), rgba(255,111,84,.22)); }
.join-steps small { color: #6e8b96; }
.site-footer { background: #062638; color: #86a8b4; }
.footer-brand { color: #fff; }
.footer-brand img { mix-blend-mode: normal; }
.toast { background: #07364e; }

@media (max-width: 900px) {
  .site-nav { color: #fff; background: rgba(5, 44, 64, .97); }
  .site-nav a:hover { color: #fff; }
  .menu-button { background: rgba(255,255,255,.32); border-color: rgba(7, 64, 88, .15); }
  .menu-button span { background: #07334a; }
  .site-header:has(.site-nav.open) .menu-button span { background: #fff; }
  .language-picker { justify-self: center; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); }
  .language-picker select { max-width: 130px; }
  .hero { min-height: 830px; }
  .palm { opacity: .2; }
}

@media (max-width: 560px) {
  .hero { min-height: 800px; padding-top: 82px; padding-bottom: 145px; }
  .hero-logo { width: min(90vw, 350px); margin-top: -10px; margin-bottom: -12px; }
  .hero-copy { margin-top: 7px; }
  .sun { width: 78px; top: 16%; right: 7%; }
  .cloud-one { left: -11%; top: 28%; transform: scale(.45); }
  .palm { width: 160px; height: 240px; bottom: 78px; }
  .palm::before { left: 75px; width: 25px; height: 185px; }
  .palm::after { width: 165px; height: 105px; }
  .palm-left { left: -75px; }
  .palm-right { right: -70px; }
}

/* Credits page */
.site-nav .active-link { color: #07304a; }
.credits-main {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 112px);
  overflow: hidden;
  padding: 150px clamp(24px, 8vw, 130px) 110px;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 238, 135, .62), transparent 17%),
    linear-gradient(180deg, #68cdef 0%, #c9f1ed 58%, #fff1ca 100%);
}
.credits-main::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .28;
  background-image: radial-gradient(circle, #fff 0 2px, transparent 2.5px);
  background-size: 175px 175px;
}
.credits-main::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -5%;
  right: -5%;
  bottom: -38px;
  height: 105px;
  border-radius: 50% 50% 0 0;
  background: #fff8e5;
}
.credits-sun {
  position: absolute;
  z-index: -1;
  right: 11%;
  top: 16%;
  width: 130px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff5a8;
  box-shadow: 0 0 0 20px rgba(255,245,168,.13), 0 0 70px 34px rgba(255,224,105,.28);
}
.credits-cloud { right: 21%; top: 35%; transform: scale(.55); opacity: .55; }
.credits-shell { width: min(100%, 980px); margin: 0 auto; }
.credits-heading { max-width: 760px; }
.credits-heading h1 {
  margin: 0;
  max-width: 760px;
  color: #07334a;
  font-size: clamp(52px, 7vw, 94px);
  line-height: .96;
  letter-spacing: -.05em;
}
.credits-heading > p:last-child {
  max-width: 620px;
  margin: 28px 0 44px;
  color: #416f7d;
  font-size: 19px;
  line-height: 1.7;
}
.owner-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  align-items: center;
  gap: 38px;
  min-height: 250px;
  padding: 28px 48px 28px 30px;
  overflow: hidden;
  border: 1px solid rgba(6, 78, 102, .12);
  border-radius: 24px;
  background: rgba(255,255,255,.68);
  box-shadow: 0 28px 80px rgba(15, 108, 126, .13);
  backdrop-filter: blur(16px);
}
.owner-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(41, 197, 219, .16);
  filter: blur(22px);
}
.owner-logo-wrap {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(145deg, #0e4661, #06293e);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 18px 42px rgba(3, 66, 91, .18);
}
.owner-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  mix-blend-mode: normal;
}
.owner-role {
  color: #0d8dab;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
}
.owner-details h2 {
  margin: 8px 0 12px;
  color: #082f44;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -.04em;
}
.owner-details p { margin: 0; color: #628391; font-size: 17px; line-height: 1.6; }
.owner-sparkle { position: absolute; z-index: 2; right: 35px; top: 28px; color: #ff9a42; font-size: 31px; }
.credits-thanks { margin: 32px 0 18px; color: #416f7d; font-weight: 600; }
.back-home { display: inline-flex; align-items: center; gap: 9px; color: #087d9d; font-weight: 700; }
.back-home span { transition: transform .2s; }
.back-home:hover span { transform: translateX(-4px); }
.back-home b { font: inherit; }

@media (max-width: 900px) {
  .site-nav .active-link { color: #fff; }
  .credits-main { padding-top: 125px; }
}

@media (max-width: 620px) {
  .credits-main { padding: 115px 20px 90px; }
  .credits-sun { width: 80px; right: 6%; top: 13%; }
  .credits-heading > p:last-child { margin-bottom: 30px; font-size: 17px; }
  .owner-card { grid-template-columns: 1fr; gap: 22px; padding: 24px; }
  .owner-logo-wrap { width: 100%; max-width: 360px; }
  .owner-sparkle { right: 23px; top: 20px; }
}

/* Rules & guidelines page */
.rules-main { padding-bottom: 130px; }
.rules-shell { width: min(100%, 1080px); }
.rules-heading { max-width: 850px; }
.rules-heading h1 { max-width: 850px; }
.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.rule-card {
  position: relative;
  min-height: 220px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(6, 78, 102, .11);
  border-radius: 19px;
  background: rgba(255,255,255,.67);
  box-shadow: 0 18px 50px rgba(15, 108, 126, .08);
  backdrop-filter: blur(12px);
}
.rule-card::after {
  content: "";
  position: absolute;
  right: -48px;
  top: -55px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(42, 198, 219, .11);
}
.rule-number {
  color: #1594af;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
}
.rule-card h2 {
  margin: 26px 0 10px;
  color: #082f44;
  font-size: 24px;
}
.rule-card p {
  margin: 0;
  color: #5e7e8c;
  line-height: 1.65;
}
.guidelines-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
  margin-top: 18px;
  padding: 28px 32px;
  border: 1px solid rgba(242, 155, 50, .2);
  border-radius: 19px;
  background: linear-gradient(135deg, rgba(255,248,197,.82), rgba(255,255,255,.7));
  box-shadow: 0 18px 50px rgba(172, 119, 28, .08);
}
.guidelines-card > span { color: #ff9b3d; font-size: 34px; line-height: 1; }
.guidelines-card h2 { margin: 0 0 9px; color: #563e20; font-size: 22px; }
.guidelines-card p { margin: 0; color: #776443; line-height: 1.65; }
.rules-report {
  max-width: 780px;
  margin: 30px 0 20px;
  color: #416f7d;
  font-weight: 600;
  line-height: 1.65;
}

@media (max-width: 720px) {
  .rules-grid { grid-template-columns: 1fr; }
  .rule-card { min-height: 0; }
}

@media (max-width: 520px) {
  .rule-card { padding: 25px; }
  .guidelines-card { grid-template-columns: 1fr; padding: 25px; }
}
