@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: #080808;
  color: #f0ede8;
  font-family: 'DM Sans', sans-serif;
}

/* ── CURSOR ── */
#cur {
  width: 10px; height: 10px;
  background: #f0ede8; border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .15s, height .15s;
  mix-blend-mode: difference;
}
#cur.big { width: 28px; height: 28px; }
@media(hover:none) { #cur { display: none; } body { cursor: auto; } }

/* ── NOISE ── */
body::after {
  content: ''; position: fixed; inset: 0;
  pointer-events: none; z-index: 9990; opacity: .014;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(14px, 4vw, 52px);
  height: var(--nav-h, 54px);
  background: rgba(8, 8, 8, .9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: opacity .4s;
}
#nav.hidden { opacity: 0; pointer-events: none; }

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-weight: 700; color: #f0ede8;
  text-decoration: none; cursor: none; white-space: nowrap;
}
.nav-links { list-style: none; display: flex; gap: 24px; align-items: center; }
.nav-links a {
  color: rgba(240, 237, 232, .4); text-decoration: none;
  font-weight: 500; font-size: 13px;
  transition: color .2s; cursor: none; white-space: nowrap;
}
.nav-links a:hover { color: #f0ede8; }
.nav-cta {
  background: #f0ede8 !important; color: #080808 !important;
  padding: 7px 18px; border-radius: 999px;
  font-weight: 600 !important; font-size: 12px !important;
  transition: transform .2s cubic-bezier(.34, 1.56, .64, 1) !important;
}
.nav-cta:hover { transform: scale(1.05) rotate(-1.5deg) !important; }
@media(max-width:600px) { .nav-links li:not(:last-child) { display: none; } }

/* ── CLIP + TRACK ── */
#clip { position: fixed; inset: 0; overflow: hidden; }
#track {
  position: absolute; top: 0; left: 0; width: 100%;
  will-change: transform;
}

/* ── SLIDE BASE ── */
.slide {
  width: 100vw;
  height: var(--slide-h, 100vh);
  overflow: hidden; position: relative;
  display: flex; flex-direction: column;
}
.slide-rm { height: calc(var(--slide-h, 100vh) * 2); }

/* ── SLIDE BODY ── */
.slide-body {
  flex: 1; min-height: 0;
  display: flex; align-items: center; justify-content: center;
  padding: calc(var(--nav-h, 54px) + 10px) clamp(14px, 4vw, 52px) clamp(14px, 2vh, 28px);
  overflow: hidden;
}

/* ── ROADMAP SECTIONS ── */
.rm-sec {
  width: 100%; height: var(--slide-h, 100vh); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  padding: calc(var(--nav-h, 54px) + 10px) clamp(14px, 4vw, 52px) clamp(14px, 2vh, 28px);
  overflow: hidden;
}

/* ── INNER ── */
.inn { width: 100%; max-width: 1060px; }

/* ── PROGRESS BAR ── */
#bar {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: rgba(240, 237, 232, .18); z-index: 900;
  transition: width .85s cubic-bezier(.77, 0, .175, 1);
}

/* ── NAV DOTS ── */
#dots {
  position: fixed; right: clamp(10px, 2.5vw, 24px); top: 50%;
  transform: translateY(-50%); z-index: 700;
  display: flex; flex-direction: column; gap: 9px;
}
.dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(240, 237, 232, .15);
  cursor: none; position: relative;
  transition: background .3s, transform .3s cubic-bezier(.34, 1.56, .64, 1);
}
.dot.on { background: #f0ede8; transform: scale(1.9); }
.dot-tip {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  font-size: 8.5px; letter-spacing: 2.5px; text-transform: uppercase;
  color: transparent; white-space: nowrap; pointer-events: none;
  transition: color .2s;
}
.dot:hover .dot-tip { color: rgba(240, 237, 232, .4); }
@media(hover:none) { .dot-tip { display: none; } }

/* ── COUNTER ── */
#cnt {
  position: fixed; left: clamp(14px, 3.5vw, 52px); bottom: clamp(14px, 2.5vh, 26px);
  z-index: 700; display: flex; align-items: baseline; gap: 5px;
  font-size: 10px; letter-spacing: 3px; color: rgba(240, 237, 232, .18);
}
#cnt .n {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 700; color: rgba(240, 237, 232, .4);
}

/* ── RM INDICATOR ── */
#rmi {
  position: fixed; right: clamp(10px, 2.5vw, 24px); bottom: clamp(14px, 2.5vh, 26px);
  z-index: 700; display: flex; align-items: center; gap: 6px;
  opacity: 0; transition: opacity .3s;
}
#rmi.on { opacity: 1; }
.rmd { width: 5px; height: 5px; border-radius: 50%; background: rgba(240, 237, 232, .18); transition: background .3s, transform .3s; }
.rmd.a { background: #f0ede8; transform: scale(1.7); }
#rmi span { font-size: 8px; letter-spacing: 2px; text-transform: uppercase; color: rgba(240, 237, 232, .2); }

/* ── KEYFRAMES ── */
@keyframes bob {
  0%   { transform: translateY(0) rotate(0deg); }
  25%  { transform: translateY(-12px) rotate(4deg); }
  75%  { transform: translateY(5px) rotate(-3deg); }
  100% { transform: translateY(0) rotate(0deg); }
}
@keyframes ap {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}
@keyframes br {
  0%, 100% { opacity: .28; }
  50%       { opacity: .85; }
}
@keyframes pdp {
  0%   { transform: scale(1); opacity: .6; }
  70%  { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

/* ══ HERO ══ */
.hero-wrap {
  position: relative; width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; overflow: hidden; padding: 0 16px;
}

/* Floating jellyfish images */
.hero-jels { position: absolute; inset: 0; pointer-events: none; }
.fj {
  position: absolute;
  image-rendering: pixelated;
  animation: bob linear infinite;
  opacity: .55;
  /* crisp pixel art scaling */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.hero-tag {
  font-size: clamp(7px, 1.6vw, 9.5px); font-weight: 500;
  letter-spacing: 4px; text-transform: uppercase;
  color: rgba(240, 237, 232, .26);
  margin-bottom: clamp(10px, 1.8vh, 22px); position: relative;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(58px, 12vw, 140px); font-weight: 900;
  line-height: .88; margin-bottom: clamp(12px, 2vh, 24px); position: relative;
}
.hero-title .s { display: block; color: #f0ede8; }
.hero-title .h {
  display: block;
  -webkit-text-stroke: 2px rgba(240, 237, 232, .38);
  color: transparent;
}
.hero-desc {
  max-width: min(400px, 88vw); font-size: clamp(12px, 2vw, 14px);
  font-weight: 300; color: rgba(240, 237, 232, .4);
  line-height: 1.65; margin: 0 auto clamp(16px, 3vh, 30px); position: relative;
}
.hero-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; position: relative; }

.btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'DM Sans', sans-serif; font-weight: 600;
  font-size: clamp(11px, 1.8vw, 13px);
  text-decoration: none; cursor: none;
  transition: transform .2s cubic-bezier(.34, 1.56, .64, 1);
  border-radius: 999px;
  padding: clamp(9px, 1.4vh, 12px) clamp(18px, 3vw, 28px);
  letter-spacing: .2px; white-space: nowrap;
}
.btn-s { background: #f0ede8; color: #080808; }
.btn-s:hover { transform: scale(1.05) rotate(-1.5deg); }
.btn-o { background: transparent; color: rgba(240, 237, 232, .55); box-shadow: inset 0 0 0 1px rgba(240, 237, 232, .15); }
.btn-o:hover { transform: scale(1.05) rotate(1.5deg); color: #f0ede8; box-shadow: inset 0 0 0 1px rgba(240, 237, 232, .4); }

.scroll-hint {
  position: absolute; bottom: clamp(10px, 1.8vh, 22px); left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  color: rgba(240, 237, 232, .18); font-size: 8px; letter-spacing: 3px; text-transform: uppercase;
  animation: br 2.5s ease infinite;
}
.sa {
  width: 10px; height: 10px;
  border-right: 1px solid rgba(240, 237, 232, .2);
  border-bottom: 1px solid rgba(240, 237, 232, .2);
  transform: rotate(45deg); animation: ap 1.6s ease infinite;
}

/* ══ ABOUT ══ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 72px); align-items: start;
}
@media(max-width:680px) { .about-grid { grid-template-columns: 1fr; gap: 20px; } }

.ey {
  display: block; font-size: 8px; font-weight: 500;
  letter-spacing: 5px; text-transform: uppercase;
  color: rgba(240, 237, 232, .26); margin-bottom: clamp(8px, 1.2vh, 14px);
}
.sh {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 52px); font-weight: 900; line-height: 1.0;
  margin-bottom: clamp(8px, 1.2vh, 14px); letter-spacing: -.3px;
}
.sp { font-size: clamp(11px, 1.7vw, 13px); font-weight: 300; color: rgba(240, 237, 232, .46); line-height: 1.65; }

.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; margin-top: clamp(12px, 1.8vh, 22px);
}
.stat { padding: clamp(10px, 1.4vh, 16px) clamp(10px, 1.2vw, 14px); background: rgba(240, 237, 232, .03); transition: background .3s; cursor: none; }
.stat:hover { background: rgba(240, 237, 232, .065); }
.stat-n { font-family: 'Playfair Display', serif; font-size: clamp(20px, 3.5vw, 28px); font-weight: 900; line-height: 1; margin-bottom: 3px; letter-spacing: -1px; }
.stat-l { font-size: clamp(7.5px, 1.2vw, 9.5px); font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(240, 237, 232, .3); }

.feats { display: flex; flex-direction: column; gap: clamp(5px, .8vh, 8px); }
.feat { padding: clamp(10px, 1.3vh, 14px) clamp(12px, 1.3vw, 18px); background: rgba(240, 237, 232, .03); transition: background .25s, transform .25s cubic-bezier(.34, 1.56, .64, 1); cursor: none; }
.feat:hover { background: rgba(240, 237, 232, .06); transform: translateX(5px); }
.feat-n { font-family: 'Playfair Display', serif; font-size: 10px; font-weight: 400; color: rgba(240, 237, 232, .18); margin-bottom: 3px; letter-spacing: 2px; }
.feat-h { font-family: 'Playfair Display', serif; font-size: clamp(13px, 2vw, 16px); font-weight: 700; margin-bottom: 3px; }
.feat-p { font-size: clamp(10px, 1.5vw, 12px); font-weight: 300; color: rgba(240, 237, 232, .4); line-height: 1.55; }

/* ══ ROADMAP ══ */
.rm-head { margin-bottom: clamp(14px, 2.2vh, 32px); }
.rm-h { font-size: clamp(22px, 3.8vw, 48px); }

.rm-overview {
  background: rgba(240, 237, 232, .03);
  padding: clamp(20px, 3vh, 32px) clamp(20px, 3vw, 36px);
  border-left: 1px solid rgba(240, 237, 232, .1);
}
.rm-overview p {
  font-size: clamp(12px, 1.8vw, 15px); font-weight: 300;
  color: rgba(240, 237, 232, .55); line-height: 1.9;
  margin-bottom: 18px;
}
.rm-overview p:last-child { margin-bottom: 0; }
.rm-overview strong { color: #f0ede8; font-weight: 500; }

.rm-pills {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 22px;
}
.rm-pill {
  padding: 5px 14px;
  background: rgba(240, 237, 232, .06);
  border-radius: 999px;
  font-size: clamp(10px, 1.4vw, 12px); font-weight: 500;
  color: rgba(240, 237, 232, .5); letter-spacing: .3px;
}

/* ══ COMMUNITY ══ */
.comm-top { margin-bottom: clamp(10px, 1.6vh, 20px); }

.soc-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin-bottom: clamp(10px, 1.6vh, 18px);
}
@media(max-width:560px) { .soc-grid { grid-template-columns: 1fr; } }

.soc {
  display: block; padding: clamp(10px, 1.4vh, 18px) clamp(12px, 1.8vw, 24px);
  text-decoration: none; color: #f0ede8;
  background: rgba(240, 237, 232, .02);
  transition: background .25s; position: relative; overflow: hidden; cursor: none;
}
.soc:hover { background: rgba(240, 237, 232, .05); }
.soc::after {
  content: '↗'; position: absolute;
  top: clamp(10px, 1.4vh, 18px); right: clamp(12px, 1.8vw, 24px);
  font-size: 14px; color: rgba(240, 237, 232, .1);
  transition: color .2s, transform .2s cubic-bezier(.34, 1.56, .64, 1);
}
.soc:hover::after { color: rgba(240, 237, 232, .5); transform: scale(1.2); }
.soc:nth-child(1) { border-right: 1px solid rgba(240, 237, 232, .06); border-bottom: 1px solid rgba(240, 237, 232, .06); }
.soc:nth-child(2) { border-bottom: 1px solid rgba(240, 237, 232, .06); }
.soc:nth-child(3) { border-right: 1px solid rgba(240, 237, 232, .06); }
@media(max-width:560px) {
  .soc:nth-child(n) { border-right: none; border-bottom: 1px solid rgba(240, 237, 232, .06); }
  .soc:last-child { border-bottom: none; }
}
.soc-lbl { font-size: 8px; font-weight: 500; letter-spacing: 3.5px; text-transform: uppercase; color: rgba(240, 237, 232, .2); margin-bottom: 5px; }
.soc-h { font-family: 'Playfair Display', serif; font-size: clamp(16px, 2.5vw, 22px); font-weight: 700; letter-spacing: -.2px; margin-bottom: 4px; }
.soc-p { font-size: clamp(10px, 1.4vw, 11.5px); font-weight: 300; color: rgba(240, 237, 232, .36); line-height: 1.55; max-width: 220px; }
.soc-soon { font-size: clamp(9px, 1.3vw, 11px); font-weight: 500; color: rgba(240, 237, 232, .2); letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }

.cta-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(14px, 2vh, 22px) clamp(14px, 2.5vw, 32px);
  background: rgba(240, 237, 232, .04); gap: 18px; flex-wrap: wrap;
}
.cta-l h2 { font-family: 'Playfair Display', serif; font-size: clamp(14px, 2.5vw, 28px); font-weight: 900; line-height: 1.1; letter-spacing: -.3px; margin-bottom: 5px; }
.cta-l p { font-size: clamp(10px, 1.4vw, 12px); font-weight: 300; color: rgba(240, 237, 232, .36); max-width: 260px; line-height: 1.55; }
.cta-r { display: flex; flex-direction: column; align-items: flex-end; gap: 7px; flex-shrink: 0; }
@media(max-width:460px) { .cta-r { align-items: flex-start; } .cta-bar { flex-direction: column; } }
.price { font-family: 'Playfair Display', serif; font-size: clamp(20px, 4vw, 30px); font-weight: 900; letter-spacing: -1px; line-height: 1; }
.price-sub { font-size: 8.5px; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; color: rgba(240, 237, 232, .24); margin-top: 2px; }

/* ══ FOOTER ══ */
.foot-inn { display: flex; flex-direction: column; align-items: center; text-align: center; gap: clamp(12px, 2vh, 20px); }
.foot-logo { font-family: 'Playfair Display', serif; font-size: clamp(30px, 7vw, 48px); font-weight: 700; color: rgba(240, 237, 232, .06); letter-spacing: -1px; }
.foot-links { list-style: none; display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.foot-links a { color: rgba(240, 237, 232, .2); text-decoration: none; font-size: 11px; font-weight: 400; transition: color .2s; cursor: none; }
.foot-links a:hover { color: #f0ede8; }
.foot-copy { font-size: 10px; font-weight: 300; color: rgba(240, 237, 232, .1); letter-spacing: .2px; }
